├── .editorconfig ├── .gitignore ├── .jshintrc ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── cordova-plugins ├── packages ├── platforms ├── release └── versions ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── History.md ├── README.md ├── README.nitrous.md ├── Roadmap.md ├── app.json ├── custom.css ├── custom.html ├── custom.js ├── get_file_list.sh ├── license.md ├── packages.json ├── packages ├── .gitignore ├── custom │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── callbacks.js │ │ ├── client │ │ │ ├── custom_templates.js │ │ │ ├── stylesheets │ │ │ │ └── custom.scss │ │ │ └── templates │ │ │ │ ├── custom_post_title.html │ │ │ │ ├── custom_post_title.js │ │ │ │ ├── hello.html │ │ │ │ └── hello.js │ │ ├── custom_fields.js │ │ ├── email_templates.js │ │ ├── server │ │ │ └── templates │ │ │ │ └── custom_emailPostItem.handlebars │ │ └── template_modules.js │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-api │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── TESTS.md │ ├── lib │ │ └── server │ │ │ ├── api.js │ │ │ └── routes.js │ ├── package.js │ └── versions.json ├── telescope-cloudinary │ ├── .npm │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ └── npm-shrinkwrap.json │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── custom_fields.js │ │ └── server │ │ │ └── cloudinary.js │ ├── package-tap.i18n │ └── package.js ├── telescope-comments │ ├── README.md │ ├── TESTS.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── callbacks.js │ │ ├── client │ │ │ └── templates │ │ │ │ ├── comment_controller │ │ │ │ ├── comment_controller.html │ │ │ │ └── comment_controller.js │ │ │ │ ├── comment_edit.html │ │ │ │ ├── comment_edit.js │ │ │ │ ├── comment_item.html │ │ │ │ ├── comment_item.js │ │ │ │ ├── comment_list.html │ │ │ │ ├── comment_list.js │ │ │ │ ├── comment_reply.html │ │ │ │ ├── comment_reply.js │ │ │ │ ├── comment_submit.html │ │ │ │ ├── comment_submit.js │ │ │ │ └── comments_list │ │ │ │ ├── comments_list.html │ │ │ │ ├── comments_list.js │ │ │ │ ├── comments_list_compact.html │ │ │ │ ├── comments_list_compact.js │ │ │ │ ├── comments_list_controller.html │ │ │ │ └── comments_list_controller.js │ │ ├── comments.js │ │ ├── helpers.js │ │ ├── methods.js │ │ ├── parameters.js │ │ ├── routes.js │ │ ├── server │ │ │ └── publications.js │ │ └── views.js │ └── package.js ├── telescope-core │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── callbacks.js │ │ ├── client │ │ │ ├── handlebars.js │ │ │ ├── main.html │ │ │ ├── main.js │ │ │ ├── scripts │ │ │ │ └── jquery.quickfit.js │ │ │ └── templates │ │ │ │ ├── admin │ │ │ │ ├── admin_menu.html │ │ │ │ ├── admin_menu.js │ │ │ │ └── admin_wrapper.html │ │ │ │ ├── common │ │ │ │ ├── checker.html │ │ │ │ ├── checker.js │ │ │ │ ├── css.html │ │ │ │ ├── css.js │ │ │ │ ├── footer_code.html │ │ │ │ ├── footer_code.js │ │ │ │ ├── layout.html │ │ │ │ ├── layout.js │ │ │ │ └── loader.html │ │ │ │ ├── errors │ │ │ │ ├── already_logged_in.html │ │ │ │ ├── loading.html │ │ │ │ ├── loading.js │ │ │ │ ├── no_account.html │ │ │ │ ├── no_account.js │ │ │ │ ├── no_invite.html │ │ │ │ ├── no_invite.js │ │ │ │ ├── no_rights.html │ │ │ │ ├── no_rights.js │ │ │ │ └── not_found.html │ │ │ │ ├── forms │ │ │ │ ├── urlCustomType.html │ │ │ │ └── urlCustomType.js │ │ │ │ ├── modules │ │ │ │ ├── modules.html │ │ │ │ └── modules.js │ │ │ │ └── nav │ │ │ │ ├── header.html │ │ │ │ ├── header.js │ │ │ │ ├── logo.html │ │ │ │ ├── logo.js │ │ │ │ ├── mobile_nav.html │ │ │ │ ├── mobile_nav.js │ │ │ │ └── submit_button.html │ │ ├── modules.js │ │ ├── server │ │ │ ├── fastrender.js │ │ │ ├── routes.js │ │ │ └── start.js │ │ ├── subscriptions.js │ │ └── vote.js │ ├── package.js │ ├── public │ │ └── img │ │ │ ├── favicon.ico │ │ │ ├── loading-balls.svg │ │ │ └── loading.svg │ └── scss.json ├── telescope-daily │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ ├── stylesheets │ │ │ │ └── daily.scss │ │ │ └── templates │ │ │ │ ├── after_day.html │ │ │ │ ├── before_day.html │ │ │ │ ├── day_heading.html │ │ │ │ ├── load_more_days.html │ │ │ │ ├── load_more_days.js │ │ │ │ ├── posts_daily.html │ │ │ │ └── posts_daily.js │ │ └── daily.js │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-datetimepicker │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── autoform-bs-datetimepicker.html │ ├── autoform-bs-datetimepicker.js │ ├── bootstrap-collapse-transitions.js │ ├── datetimepicker.scss │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── package.js │ └── versions.json ├── telescope-debug │ ├── README.md │ ├── lib │ │ ├── client │ │ │ ├── stylesheets │ │ │ │ └── highlight.scss │ │ │ └── templates.js │ │ └── debug.js │ └── package.js ├── telescope-email │ ├── .gitignore │ ├── .npm │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ └── npm-shrinkwrap.json │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ └── server │ │ │ ├── email.js │ │ │ ├── templates.js │ │ │ └── templates │ │ │ ├── emailTest.handlebars │ │ │ └── emailWrapper.handlebars │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-embedly │ ├── .gitignore │ ├── .versions │ ├── History.md │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ ├── autoform-postthumbnail.html │ │ │ ├── autoform-postthumbnail.js │ │ │ ├── js │ │ │ │ └── jquery.fitvids.js │ │ │ ├── post_thumbnail.html │ │ │ ├── post_thumbnail.js │ │ │ └── post_thumbnail.scss │ │ ├── embedly.js │ │ └── server │ │ │ └── get_embedly_data.js │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-events │ ├── README.md │ ├── lib │ │ ├── client │ │ │ └── analytics.js │ │ └── events.js │ └── package.js ├── telescope-getting-started │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── content │ │ ├── customizing_telescope.md │ │ ├── deploying_telescope.md │ │ ├── getting_help.md │ │ ├── images │ │ │ ├── stackoverflow.png │ │ │ └── telescope.png │ │ ├── read_this_first.md │ │ └── removing_getting_started_posts.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── getting_started.js │ │ └── server │ │ │ └── dummy_content.js │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-i18n │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n.js │ ├── package.js │ └── versions.json ├── telescope-invites │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── user_invites.html │ │ │ │ └── user_invites.js │ │ ├── invites.js │ │ └── server │ │ │ ├── invites.js │ │ │ ├── publications.js │ │ │ ├── routes.js │ │ │ ├── templates.js │ │ │ └── templates │ │ │ └── emailInvite.handlebars │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-kadira │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── kadira-settings.js │ │ └── server │ │ │ └── kadira.js │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-lib │ ├── .versions │ ├── README.md │ ├── lib │ │ ├── autolink.js │ │ ├── base.js │ │ ├── callbacks.js │ │ ├── client │ │ │ ├── jquery.exists.js │ │ │ └── template_replacement.js │ │ ├── collections.js │ │ ├── colors.js │ │ ├── config.js │ │ ├── core.js │ │ ├── custom_template_prefix.js │ │ ├── deep.js │ │ ├── deep_extend.js │ │ ├── icons.js │ │ ├── menus.js │ │ ├── modules.js │ │ ├── router.js │ │ ├── seo.js │ │ ├── templates.js │ │ ├── themes.js │ │ └── utils.js │ └── package.js ├── telescope-messages │ ├── .versions │ ├── README.md │ ├── lib │ │ ├── client │ │ │ ├── messages.js │ │ │ └── templates │ │ │ │ ├── message_item.html │ │ │ │ ├── message_item.js │ │ │ │ ├── messages.html │ │ │ │ └── messages.js │ │ └── modules.js │ └── package.js ├── telescope-migrations │ ├── README.md │ ├── lib │ │ └── server │ │ │ └── migrations.js │ └── package.js ├── telescope-newsletter │ ├── .gitignore │ ├── .npm │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ └── npm-shrinkwrap.json │ ├── .versions │ ├── History.md │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ ├── stylesheets │ │ │ │ └── newsletter_banner.scss │ │ │ └── templates │ │ │ │ ├── newsletter_banner.html │ │ │ │ └── newsletter_banner.js │ │ ├── newsletter.js │ │ └── server │ │ │ ├── campaign.js │ │ │ ├── cron.js │ │ │ ├── mailchimp.js │ │ │ ├── routes.js │ │ │ ├── templates.js │ │ │ └── templates │ │ │ ├── emailDigest.handlebars │ │ │ ├── emailDigestConfirmation.handlebars │ │ │ └── emailPostItem.handlebars │ ├── package-tap.i18n │ ├── package.js │ └── scss.json ├── telescope-notifications │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── callbacks.js │ │ ├── client │ │ │ └── templates │ │ │ │ ├── notification_item.html │ │ │ │ ├── notification_item.js │ │ │ │ ├── notification_new_comment.html │ │ │ │ ├── notification_new_reply.html │ │ │ │ ├── notification_post_approved.html │ │ │ │ ├── notifications_mark_as_read.html │ │ │ │ ├── notifications_mark_as_read.js │ │ │ │ ├── notifications_menu.html │ │ │ │ ├── notifications_menu.js │ │ │ │ ├── unsubscribe.html │ │ │ │ └── unsubscribe.js │ │ ├── custom_fields.js │ │ ├── helpers.js │ │ ├── herald.js │ │ ├── modules.js │ │ ├── notifications.js │ │ ├── routes.js │ │ └── server │ │ │ ├── notifications-server.js │ │ │ ├── routes.js │ │ │ ├── templates.js │ │ │ └── templates │ │ │ ├── emailAccountApproved.handlebars │ │ │ ├── emailNewComment.handlebars │ │ │ ├── emailNewPendingPost.handlebars │ │ │ ├── emailNewPost.handlebars │ │ │ ├── emailNewReply.handlebars │ │ │ ├── emailNewUser.handlebars │ │ │ └── emailPostApproved.handlebars │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-pages │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ ├── stylesheets │ │ │ │ └── pages.scss │ │ │ └── templates │ │ │ │ ├── page.html │ │ │ │ ├── page.js │ │ │ │ ├── page_item.html │ │ │ │ ├── page_item.js │ │ │ │ ├── pages.html │ │ │ │ ├── pages.js │ │ │ │ ├── pages_menu.html │ │ │ │ └── pages_menu.js │ │ ├── pages.js │ │ ├── routes.js │ │ └── server │ │ │ └── publications.js │ ├── package-tap.i18n │ ├── package.js │ └── scss.json ├── telescope-post-by-feed │ ├── .gitignore │ ├── .npm │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ └── npm-shrinkwrap.json │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── feed_item.html │ │ │ │ ├── feed_item.js │ │ │ │ ├── feeds.html │ │ │ │ └── feeds.js │ │ ├── feeds.js │ │ ├── routes.js │ │ └── server │ │ │ ├── cron.js │ │ │ ├── fetch_feeds.js │ │ │ └── publications.js │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-posts │ ├── .versions │ ├── README.md │ ├── TESTS.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── callbacks.js │ │ ├── client │ │ │ └── templates │ │ │ │ ├── after_post_item.html │ │ │ │ ├── before_post_item.html │ │ │ │ ├── main_posts_list.html │ │ │ │ ├── main_posts_list.js │ │ │ │ ├── modules │ │ │ │ ├── post_actions.html │ │ │ │ ├── post_actions.js │ │ │ │ ├── post_admin.html │ │ │ │ ├── post_admin.js │ │ │ │ ├── post_author.html │ │ │ │ ├── post_author.js │ │ │ │ ├── post_avatars.html │ │ │ │ ├── post_avatars.js │ │ │ │ ├── post_comments_link.html │ │ │ │ ├── post_content.html │ │ │ │ ├── post_content.js │ │ │ │ ├── post_discuss.html │ │ │ │ ├── post_domain.html │ │ │ │ ├── post_domain.js │ │ │ │ ├── post_info.html │ │ │ │ ├── post_info.js │ │ │ │ ├── post_rank.html │ │ │ │ ├── post_rank.js │ │ │ │ ├── post_title.html │ │ │ │ ├── post_vote.html │ │ │ │ └── post_vote.js │ │ │ │ ├── post_body.html │ │ │ │ ├── post_edit.html │ │ │ │ ├── post_edit.js │ │ │ │ ├── post_item.html │ │ │ │ ├── post_item.js │ │ │ │ ├── post_page.html │ │ │ │ ├── post_page.js │ │ │ │ ├── post_submit.html │ │ │ │ ├── post_submit.js │ │ │ │ ├── posts_list │ │ │ │ ├── posts_list.html │ │ │ │ ├── posts_list.js │ │ │ │ ├── posts_list_compact.html │ │ │ │ ├── posts_list_compact.js │ │ │ │ ├── posts_list_controller.html │ │ │ │ └── posts_list_controller.js │ │ │ │ ├── views_menu.html │ │ │ │ └── views_menu.js │ │ ├── config.js │ │ ├── helpers.js │ │ ├── menus.js │ │ ├── methods.js │ │ ├── modules.js │ │ ├── namespace.js │ │ ├── parameters.js │ │ ├── posts.js │ │ ├── routes.js │ │ ├── server │ │ │ ├── fastrender.js │ │ │ └── publications.js │ │ ├── transitions.js │ │ └── views.js │ └── package.js ├── telescope-prerender │ ├── .npm │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ └── npm-shrinkwrap.json │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── prerender-setting.js │ │ └── server │ │ │ └── prerender.js │ ├── package-tap.i18n │ └── package.js ├── telescope-releases │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── current_release.html │ │ │ │ └── current_release.js │ │ ├── releases.js │ │ └── server │ │ │ ├── import_releases.js │ │ │ └── publications.js │ ├── package-tap.i18n │ ├── package.js │ ├── releases │ │ ├── 0.11.0.md │ │ ├── 0.11.1.md │ │ ├── 0.12.0.md │ │ ├── 0.13.0.md │ │ ├── 0.14.0.md │ │ ├── 0.14.1.md │ │ ├── 0.14.2.md │ │ ├── 0.14.3.md │ │ ├── 0.15.0.md │ │ ├── 0.15.1.md │ │ ├── 0.20.4.md │ │ ├── 0.20.5.md │ │ ├── 0.20.6.md │ │ ├── 0.21.1.md │ │ ├── 0.22.1.md │ │ ├── 0.22.2.md │ │ ├── 0.23.0.md │ │ ├── 0.24.0.md │ │ ├── 0.25.0.md │ │ ├── 0.25.2.md │ │ ├── 0.25.3.md │ │ ├── 0.25.4.md │ │ ├── 0.25.5.md │ │ ├── 0.25.6.md │ │ └── 0.25.7.md │ └── versions.json ├── telescope-rss │ ├── .gitignore │ ├── .npm │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ └── npm-shrinkwrap.json │ ├── .versions │ ├── README.md │ ├── lib │ │ └── server │ │ │ ├── routes.js │ │ │ └── rss.js │ ├── package.js │ └── versions.json ├── telescope-scoring │ ├── README.md │ ├── lib │ │ ├── scoring.js │ │ └── server │ │ │ └── cron.js │ └── package.js ├── telescope-search │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ ├── stylesheets │ │ │ │ └── search.scss │ │ │ └── templates │ │ │ │ ├── search.html │ │ │ │ └── search.js │ │ ├── parameters.js │ │ └── search.js │ ├── package-tap.i18n │ ├── package.js │ ├── scss.json │ └── versions.json ├── telescope-settings │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ ├── helpers.js │ │ │ ├── language_changer.js │ │ │ └── templates │ │ │ │ ├── settings.html │ │ │ │ └── settings.js │ │ ├── menus.js │ │ ├── routes.js │ │ ├── server │ │ │ └── publications.js │ │ └── settings.js │ ├── package-tap.i18n │ └── package.js ├── telescope-share │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── lib │ │ ├── client │ │ │ ├── post_share.html │ │ │ ├── post_share.js │ │ │ └── post_share.scss │ │ └── share.js │ ├── package.js │ └── versions.json ├── telescope-singleday │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── single_day.html │ │ │ │ ├── single_day.js │ │ │ │ ├── single_day_nav.html │ │ │ │ └── single_day_nav.js │ │ └── singleday.js │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-sitemap │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── lib │ │ └── server │ │ │ └── sitemaps.js │ ├── package.js │ └── versions.json ├── telescope-spiderable │ ├── README.md │ └── package.js ├── telescope-subscribe-to-posts │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── post_subscribe.html │ │ │ │ ├── post_subscribe.js │ │ │ │ ├── user_subscribed_posts.html │ │ │ │ └── user_subscribed_posts.js │ │ ├── server │ │ │ └── publications.js │ │ └── subscribe-to-posts.js │ ├── package-tap.i18n │ ├── package.js │ └── versions.json ├── telescope-tagline-banner │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── client │ │ │ ├── stylesheets │ │ │ │ └── tagline_banner.scss │ │ │ └── templates │ │ │ │ ├── tagline_banner.html │ │ │ │ └── tagline_banner.js │ │ └── tagline.js │ ├── package-tap.i18n │ └── package.js ├── telescope-tags │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── fa.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── lv-LV.i18n.json │ │ ├── lv.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── se.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── th.i18n.json │ │ ├── tr-TR.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ └── zh-CN.i18n.json │ ├── lib │ │ ├── callbacks.js │ │ ├── categories.js │ │ ├── client │ │ │ ├── scss │ │ │ │ └── categories.scss │ │ │ └── templates │ │ │ │ ├── autoform_category.html │ │ │ │ ├── autoform_category.js │ │ │ │ ├── categories_admin.html │ │ │ │ ├── categories_admin.js │ │ │ │ ├── categories_menu.html │ │ │ │ ├── categories_menu.js │ │ │ │ ├── categories_menu_item.html │ │ │ │ ├── categories_menu_item.js │ │ │ │ ├── category_item.html │ │ │ │ ├── category_item.js │ │ │ │ ├── category_title.html │ │ │ │ ├── category_title.js │ │ │ │ ├── post_categories.html │ │ │ │ ├── post_categories.js │ │ │ │ └── posts_category.html │ │ ├── custom_fields.js │ │ ├── helpers.js │ │ ├── methods.js │ │ ├── modules.js │ │ ├── parameters.js │ │ ├── routes.js │ │ └── server │ │ │ └── publications.js │ ├── package-tap.i18n │ ├── package.js │ ├── scss.json │ └── versions.json ├── telescope-theme-base │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── lib │ │ └── client │ │ │ └── scss │ │ │ ├── global │ │ │ ├── _forms.scss │ │ │ ├── _icons.scss │ │ │ ├── _links.scss │ │ │ ├── _main.scss │ │ │ ├── _markdown.scss │ │ │ ├── _tables.scss │ │ │ └── _typography.scss │ │ │ ├── includes │ │ │ ├── _breakpoints.scss │ │ │ ├── _colors.scss │ │ │ └── _mixins.scss │ │ │ ├── screen.scss │ │ │ └── specific │ │ │ ├── _admin.scss │ │ │ ├── _avatars.scss │ │ │ ├── _banners.scss │ │ │ ├── _errors.scss │ │ │ ├── _layout.scss │ │ │ ├── _loading.scss │ │ │ ├── _menus.scss │ │ │ ├── _mobile_nav.scss │ │ │ ├── _nav.scss │ │ │ ├── _notifications.scss │ │ │ ├── _posts.scss │ │ │ └── _users.scss │ ├── package.js │ ├── scss.json │ └── versions.json ├── telescope-theme-hubble │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── lib │ │ ├── client │ │ │ └── scss │ │ │ │ ├── modules │ │ │ │ ├── _accounts.scss │ │ │ │ ├── _banners.scss │ │ │ │ ├── _comments.scss │ │ │ │ ├── _dialogs.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _posts.scss │ │ │ │ └── _user-profile.scss │ │ │ │ ├── partials │ │ │ │ ├── _colors.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _tooltips.scss │ │ │ │ └── _typography.scss │ │ │ │ └── screen.scss │ │ └── hubble.js │ ├── package.js │ ├── scss.json │ └── versions.json ├── telescope-update-prompt │ ├── .gitignore │ ├── .versions │ ├── README.md │ ├── lib │ │ ├── client │ │ │ ├── templates │ │ │ │ ├── update_banner.css │ │ │ │ ├── update_banner.html │ │ │ │ └── update_banner.js │ │ │ └── update.js │ │ ├── package_versions.js │ │ └── server │ │ │ └── phone_home.js │ ├── package.js │ └── versions.json └── telescope-users │ ├── .versions │ ├── README.md │ ├── TESTS.md │ ├── i18n │ ├── ar.i18n.json │ ├── bg.i18n.json │ ├── cs.i18n.json │ ├── da.i18n.json │ ├── de.i18n.json │ ├── el.i18n.json │ ├── en.i18n.json │ ├── es.i18n.json │ ├── et.i18n.json │ ├── fa.i18n.json │ ├── fr.i18n.json │ ├── hu.i18n.json │ ├── id.i18n.json │ ├── it.i18n.json │ ├── ja.i18n.json │ ├── kk.i18n.json │ ├── ko.i18n.json │ ├── lv-LV.i18n.json │ ├── lv.i18n.json │ ├── nl.i18n.json │ ├── pl.i18n.json │ ├── pt-BR.i18n.json │ ├── ro.i18n.json │ ├── ru.i18n.json │ ├── se.i18n.json │ ├── sl.i18n.json │ ├── sv.i18n.json │ ├── th.i18n.json │ ├── tr-TR.i18n.json │ ├── tr.i18n.json │ ├── vi.i18n.json │ └── zh-CN.i18n.json │ ├── lib │ ├── avatars.js │ ├── callbacks.js │ ├── client │ │ └── templates │ │ │ ├── account │ │ │ ├── user_account.html │ │ │ ├── user_account.js │ │ │ ├── user_password.html │ │ │ └── user_password.js │ │ │ ├── dashboard │ │ │ ├── users-dashboard.html │ │ │ ├── users-dashboard.js │ │ │ ├── users_list_actions.html │ │ │ ├── users_list_actions.js │ │ │ ├── users_list_avatar.html │ │ │ ├── users_list_created_at.html │ │ │ ├── users_list_display_name.html │ │ │ ├── users_list_email.html │ │ │ └── users_list_username.html │ │ │ ├── nav │ │ │ ├── user_menu.html │ │ │ ├── user_menu.js │ │ │ ├── user_menu_label.html │ │ │ └── user_menu_label.js │ │ │ ├── profile │ │ │ ├── user_comments.html │ │ │ ├── user_comments.js │ │ │ ├── user_downvoted_posts.html │ │ │ ├── user_downvoted_posts.js │ │ │ ├── user_info.html │ │ │ ├── user_info.js │ │ │ ├── user_posts.html │ │ │ ├── user_posts.js │ │ │ ├── user_profile_bio.html │ │ │ ├── user_profile_twitter.html │ │ │ ├── user_upvoted_posts.html │ │ │ └── user_upvoted_posts.js │ │ │ ├── sign_out.html │ │ │ ├── user_complete.html │ │ │ ├── user_complete.js │ │ │ ├── user_controller │ │ │ ├── user_controller.html │ │ │ └── user_controller.js │ │ │ ├── user_edit.html │ │ │ ├── user_item.html │ │ │ ├── user_item.js │ │ │ ├── user_profile.html │ │ │ └── user_profile.js │ ├── config.js │ ├── helpers.js │ ├── menus.js │ ├── methods.js │ ├── modules.js │ ├── namespace.js │ ├── permissions.js │ ├── pubsub.js │ ├── roles.js │ ├── routes.js │ ├── server │ │ ├── create_user.js │ │ └── publications.js │ └── users.js │ ├── package-tap.i18n │ └── package.js ├── project-tap.i18n ├── public └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── publish_packages.sh └── tests └── jasmine ├── client ├── integration │ └── mobileNavSpec.js └── unit │ ├── commentItemSpec.js │ └── navSpec.js └── server └── integration └── packages └── telescope-lib └── permissionsSpec.js /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | meteorite 3 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- 1 | # This file contains a token that is unique to your project. 2 | # Check it into your repository along with the rest of this directory. 3 | # It can be used for purposes such as: 4 | # - ensuring you don't accidentally deploy one app on top of another 5 | # - providing package authors with aggregated statistics 6 | 7 | 4ibiemui4bqn1j744h7 8 | -------------------------------------------------------------------------------- /.meteor/cordova-plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/.meteor/cordova-plugins -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.1 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Before starting on a new feature, please [check out the roadmap](https://trello.com/b/oLMMqjVL/telescope-roadmap) and come check-in in the [Telescope Slack channel](http://slack.telescopeapp.org/). 2 | 3 | Also, all PRs should be made to the `devel` branch, not `master`. -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM meteorhacks/meteord:onbuild -------------------------------------------------------------------------------- /get_file_list.sh: -------------------------------------------------------------------------------- 1 | for f in $(find $1); do 2 | echo \'$f\', 3 | done -------------------------------------------------------------------------------- /packages.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/.gitignore: -------------------------------------------------------------------------------- 1 | /bootstrap3-datepicker 2 | /npm-container -------------------------------------------------------------------------------- /packages/custom/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/custom/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "Vlastní odkaz pro zobrazení", 3 | "customAdminLink" : "Vlastní odkaz administrátora", 4 | "customPostField" : "Vlastní pole příspěvku", 5 | "customCommentField" : "Vlastní pole komentáře", 6 | "customUserField" : "Vlastní pole uživatele", 7 | "customSettingsField" : "Vlastní pole nastavení" 8 | } -------------------------------------------------------------------------------- /packages/custom/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "Custom View Link", 3 | "customAdminLink" : "Custom Admin Link", 4 | "customPostField" : "My Custom Post Field", 5 | "customCommentField" : "My Custom Comment Field", 6 | "customUserField" : "My Custom User Field", 7 | "customSettingsField" : "My Custom Settings Field" 8 | } -------------------------------------------------------------------------------- /packages/custom/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "Custom Vaate Link", 3 | "customAdminLink" : "Custom Vaate Link", 4 | "customPostField" : "Minu Custom Postituse Väli", 5 | "customCommentField" : "Custom Kommentaari Väli", 6 | "customUserField" : "Custom Kasutaja Väli", 7 | "customSettingsField" : "Custom Seadete Väli" 8 | } -------------------------------------------------------------------------------- /packages/custom/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "پیوند نمایش سفارشی", 3 | "customAdminLink" : "پیوند مدیریت سفارشی", 4 | "customPostField" : "گزینه سفارشی پست من", 5 | "customCommentField" : "گزینه سفارشی نظر من", 6 | "customUserField" : "گزینه سفارشی کاربر من", 7 | "customSettingsField" : "تنظیمات گزینه سفارشی من" 8 | } -------------------------------------------------------------------------------- /packages/custom/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "Egyéni nézet link", 3 | "customAdminLink" : "Egyéni Adminisztrátor link", 4 | "customPostField" : "Egyéni bejegyzés mezőm", 5 | "customCommentField" : "Egyéni hozzászólás mezőm", 6 | "customUserField" : "Egyéni felhasználói mezőm", 7 | "customSettingsField" : "Egyéni beállítás mezőm" 8 | } -------------------------------------------------------------------------------- /packages/custom/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "커스텀 View 링크", 3 | "customAdminLink" : "커스텀 어드민 링크" 4 | } -------------------------------------------------------------------------------- /packages/custom/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "Uyarlanmış Görünüm Bağlantısı", 3 | "customAdminLink" : "Uyarlanmış Yönetici Bağlantısı", 4 | "customPostField" : "Benim kişisel gönderi alanım" 5 | } -------------------------------------------------------------------------------- /packages/custom/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/lib/callbacks.js: -------------------------------------------------------------------------------- 1 | function alertThanks (post) { 2 | alert("Thanks for submitting a post!"); 3 | return post; 4 | } 5 | Telescope.callbacks.add("postSubmitClient", alertThanks); -------------------------------------------------------------------------------- /packages/custom/lib/client/custom_templates.js: -------------------------------------------------------------------------------- 1 | // Override "post_title" template 2 | Template.custom_post_title.replaces("post_title"); -------------------------------------------------------------------------------- /packages/custom/lib/client/stylesheets/custom.scss: -------------------------------------------------------------------------------- 1 | .custom-hero-banner{ 2 | text-align: center; 3 | color: purple; 4 | } -------------------------------------------------------------------------------- /packages/custom/lib/client/templates/custom_post_title.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/custom/lib/client/templates/custom_post_title.js: -------------------------------------------------------------------------------- 1 | // important: the helper must be defined on the *old* "post_title" template 2 | 3 | Template.post_title.helpers({ 4 | randomEmoji: function () { 5 | return _.sample(["😀", "😰", "👮", " 🌸", "🐮", "⛅️", "🍟", "🍌", "🎃", "⚽️", "🎵"]); 6 | } 7 | }); -------------------------------------------------------------------------------- /packages/custom/lib/client/templates/hello.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/custom/lib/client/templates/hello.js: -------------------------------------------------------------------------------- 1 | Template.hello.helpers({ 2 | name: function () { 3 | if (Meteor.user()) { 4 | return Users.getDisplayName(Meteor.user()); 5 | } else { 6 | return "You"; 7 | } 8 | } 9 | }); -------------------------------------------------------------------------------- /packages/custom/lib/email_templates.js: -------------------------------------------------------------------------------- 1 | Telescope.email.addTemplates({ 2 | custom_emailPostItem: Assets.getText("lib/server/templates/custom_emailPostItem.handlebars"), 3 | }); 4 | -------------------------------------------------------------------------------- /packages/custom/lib/template_modules.js: -------------------------------------------------------------------------------- 1 | // add template module to the hero zone 2 | Telescope.modules.add("hero", { 3 | template: 'hello', 4 | order: 1 5 | }); -------------------------------------------------------------------------------- /packages/custom/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-api/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-api/README.md: -------------------------------------------------------------------------------- 1 | Telescope API package, used internally. -------------------------------------------------------------------------------- /packages/telescope-api/TESTS.md: -------------------------------------------------------------------------------- 1 | - Test that `/api/` returns the 20 latest approved posts. 2 | - Test that `/api/:limit` returns `:limit` items. -------------------------------------------------------------------------------- /packages/telescope-api/lib/server/routes.js: -------------------------------------------------------------------------------- 1 | // for backwards compatibility's sake, accept a "limit" segment 2 | Picker.route('/api/:limit?', function(params, req, res, next) { 3 | if (typeof params.limit !== "undefined") { 4 | params.query.limit = params.limit; 5 | } 6 | res.end(serveAPI(params.query)); 7 | }); -------------------------------------------------------------------------------- /packages/telescope-cloudinary/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-cloudinary/README.md: -------------------------------------------------------------------------------- 1 | Telescope file upload package, used internally. -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "cloudinaryCloudName" : "Cloud Name", 3 | "cloudinaryAPIKey" : "API Key", 4 | "cloudinaryAPISecret" : "API Secret" 5 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "cloudinaryCloudName" : "Pilve Nimi", 3 | "cloudinaryAPIKey" : "API Key", 4 | "cloudinaryAPISecret" : "API Secret" 5 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "cloudinaryCloudName" : "Nom du nuage", 3 | "cloudinaryAPIKey" : "Clé API", 4 | "cloudinaryAPISecret" : "Secret API" 5 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-cloudinary/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-comments/README.md: -------------------------------------------------------------------------------- 1 | Telescope comments package, used internally. -------------------------------------------------------------------------------- /packages/telescope-comments/TESTS.md: -------------------------------------------------------------------------------- 1 | ### Single Post Page 2 | 3 | - `/posts/:postId` should show a list of comments. 4 | - `/posts/:postId` should subscribe to the `postComments` publication. 5 | 6 | ### Comment Submit 7 | 8 | - 9 | 10 | ### Comment Edit 11 | 12 | ### Comment Delete -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "add_comment" : "Tilføj kommentar", 3 | "link" : "link", 4 | "reply" : "Svar" 5 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment_" : "ความเห็น", 3 | "delete_comment" : "ลบความเห็น", 4 | "add_comment" : "เพิ่มความเห็น", 5 | "link" : "ลิงก์", 6 | "edit" : "แก้ไข", 7 | "reply" : "ตอบ", 8 | "no_comments" : "ไม่มีความเห็น" 9 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comment_controller/comment_controller.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comment_list.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comment_reply.js: -------------------------------------------------------------------------------- 1 | Template.comment_reply.helpers({ 2 | post: function () { 3 | if(this.comment){ 4 | var post = Posts.findOne(this.comment.postId); 5 | return post; 6 | } 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comments_list/comments_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-comments/lib/client/templates/comments_list/comments_list.html -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comments_list/comments_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-comments/lib/client/templates/comments_list/comments_list.js -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comments_list/comments_list_controller.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/README.md: -------------------------------------------------------------------------------- 1 | Telescope core package, used internally. -------------------------------------------------------------------------------- /packages/telescope-core/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-core/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-core/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-core/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-core/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "menu" : "เมนู", 3 | "please_wait" : "กรุณารอสักครู่", 4 | "seconds_before_commenting_again" : " วินาทีจนกว่าจะแสดงความเห็นอีกครั้ง", 5 | "read_more" : "อ่านเพิ่มเติม" 6 | } -------------------------------------------------------------------------------- /packages/telescope-core/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/main.html: -------------------------------------------------------------------------------- 1 | 2 | Loading... 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/admin/admin_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/admin/admin_menu.js: -------------------------------------------------------------------------------- 1 | Template.admin_menu.helpers({ 2 | adminMenuItems: function () { 3 | return Telescope.menuItems.get("adminMenu"); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/admin/admin_wrapper.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/common/checker.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/common/checker.js: -------------------------------------------------------------------------------- 1 | Template.checker.helpers({ 2 | allow: function () { 3 | return Users.can[this.check](Meteor.user(), this.doc); 4 | } 5 | }); -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/common/footer_code.js: -------------------------------------------------------------------------------- 1 | Template.footer_code.helpers({ 2 | footerCode: function(){ 3 | return Settings.get('footerCode'); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/common/loader.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/already_logged_in.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/loading.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/loading.js: -------------------------------------------------------------------------------- 1 | Template.loading.helpers({ 2 | log: function () { 3 | console.log('loading…'); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/no_invite.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/no_invite.js: -------------------------------------------------------------------------------- 1 | Template.no_invite.helpers({ 2 | afterSignupText: function(){ 3 | return Settings.get("afterSignupText"); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/no_rights.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/no_rights.js: -------------------------------------------------------------------------------- 1 | Template.no_rights.helpers({ 2 | errorMessage: function () { 3 | return !!this.message ? i18n.t(this.message) : i18n.t("sorry_you_dont_have_the_rights_to_view_this_page"); 4 | } 5 | }); -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/not_found.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/forms/urlCustomType.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/nav/logo.js: -------------------------------------------------------------------------------- 1 | Template.logo.helpers({ 2 | logoUrl: function(){ 3 | return Settings.get("logoUrl"); 4 | } 5 | }); 6 | 7 | Template.logo.onRendered(function () { 8 | $(".side-nav .logo-text").quickfit({ 9 | min: 16, 10 | max: 40, 11 | truncate: false 12 | }); 13 | }); -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/nav/mobile_nav.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/nav/mobile_nav.js: -------------------------------------------------------------------------------- 1 | Template.mobile_nav.events({ 2 | 'click .mobile-nav a': function (e) { 3 | if ($(e.target).closest("a").attr("href") !== "#"){ 4 | $('body').removeClass('mobile-nav-open'); 5 | } 6 | } 7 | }); 8 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/nav/submit_button.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-core/public/img/favicon.ico -------------------------------------------------------------------------------- /packages/telescope-core/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-daily/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-daily/README.md: -------------------------------------------------------------------------------- 1 | Telescope daily package. -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Den po dni", 3 | "day_by_day_view" : "Nejoblíbenější příspěvky dne.", 4 | "load_next_days" : "Načíst další dny" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Daily" 3 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Daily", 3 | "day_by_day_view" : "The most popular posts of each day.", 4 | "load_next_days" : "Load Next Days" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Diario", 3 | "day_by_day_view" : "Los posts mas populares de cada día.", 4 | "load_next_days" : "Cargar días siguientes" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Päeviti", 3 | "day_by_day_view" : "Kõige populaarsemad postitused.", 4 | "load_next_days" : "Laadi Järgmised Päevad" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "روزانه", 3 | "day_by_day_view" : "محبوب ترین پست های هر روز.", 4 | "load_next_days" : "بارگزاری در روزهای آتی" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Jour par jour", 3 | "day_by_day_view" : "Les posts les plus populaires de chaque jour.", 4 | "load_next_days" : "Chargez les jours suivants" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Harian", 3 | "day_by_day_view" : "Postingan terpopuler per hari.", 4 | "load_next_days" : "Memuat Hari Berikutnya" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Giornaliero", 3 | "day_by_day_view" : "I post più popolari di ogni giorno.", 4 | "load_next_days" : "Carica i Giorni Successivi" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "데일리", 3 | "day_by_day_view" : "매일 가장 인기있는 게시물.", 4 | "load_next_days" : "다음날 보기" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Dziennie", 3 | "day_by_day_view" : "Najpopularniejsze posty każdego dnia.", 4 | "load_next_days" : "Wczytaj kolejne dni" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Diário", 3 | "day_by_day_view" : "As postagens mais populares de cada dia.", 4 | "load_next_days" : "Carregar Próximos Dias" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Zilnic", 3 | "day_by_day_view" : "Cele mai populare posturi din fiecare zi.", 4 | "load_next_days" : "Încărcați următoarele zile" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Dnevno", 3 | "day_by_day_view" : "Najbolj priljubljene objave posameznih dni.", 4 | "load_next_days" : "Prikaži več dni" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Dagligen", 3 | "day_by_day_view" : "De mest populära inläggen varje dag.", 4 | "load_next_days" : "Hämta nästkommande dagar." 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "day_by_day_view" : "Her gün için en sevilen gönderiler" 3 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Daily" 3 | } -------------------------------------------------------------------------------- /packages/telescope-daily/lib/client/templates/after_day.html: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /packages/telescope-daily/lib/client/templates/before_day.html: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /packages/telescope-daily/lib/client/templates/day_heading.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-daily/lib/client/templates/load_more_days.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-daily/lib/daily.js: -------------------------------------------------------------------------------- 1 | daysPerPage = 5; 2 | 3 | Telescope.menuItems.add("viewsMenu", { 4 | route: Posts.getRoute, 5 | name: 'daily', 6 | label: 'daily', 7 | description: 'day_by_day_view', 8 | viewTemplate: 'posts_daily' 9 | }); -------------------------------------------------------------------------------- /packages/telescope-daily/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/README.md: -------------------------------------------------------------------------------- 1 | Telescope datetime picker package, used internally. -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/autoform-bs-datetimepicker.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/telescope-debug/README.md: -------------------------------------------------------------------------------- 1 | Telescope debug package, used internally. -------------------------------------------------------------------------------- /packages/telescope-debug/lib/debug.js: -------------------------------------------------------------------------------- 1 | Telescope.debug = {}; -------------------------------------------------------------------------------- /packages/telescope-email/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-email/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-email/README.md: -------------------------------------------------------------------------------- 1 | Telescope email package, used internally. -------------------------------------------------------------------------------- /packages/telescope-email/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "قم باضافة جديدة" 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Започнете да публикувате." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Právě jste byli pozváni.", 3 | "start_posting" : "Začněte vkládat příspěvky!" 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Fang an Links einzutragen." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Ξεκινήστε να δημοσιεύετε." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "You've just been invited.", 3 | "start_posting" : "Start posting!" 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Has sido invitado.", 3 | "start_posting" : "¡Empezar a publicar!" 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Sa oled kutsutud.", 3 | "start_posting" : "Alusta postitamist!" 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "شروع به پست کردن!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Vous venez d'être invité.", 3 | "start_posting" : "Commencer à poster." 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Anda baru saja diundang.", 3 | "start_posting" : "Mulai posting!" 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Sei appena stato invitato.", 3 | "start_posting" : "Inizia a postare." 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Begin met plaatsen." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Zacznij pisać." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Comece a postar." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Poți începe să publici." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Начать пост." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Börja skapa inlägg." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Pravkar ste bili povabljeni.", 3 | "start_posting" : "Začnite objavljati!" 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Du har just blivit inbjuden.", 3 | "start_posting" : "Börja skapa inlägg!" 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Davet edildin.", 3 | "start_posting" : "Paylaşıma başlayın!" 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Bắt đầu đăng bài." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "开始发布." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/lib/server/templates.js: -------------------------------------------------------------------------------- 1 | Telescope.email.addTemplates({ 2 | emailTest: Assets.getText("lib/server/templates/emailTest.handlebars"), 3 | emailWrapper: Assets.getText("lib/server/templates/emailWrapper.handlebars") 4 | }); -------------------------------------------------------------------------------- /packages/telescope-email/lib/server/templates/emailTest.handlebars: -------------------------------------------------------------------------------- 1 | This is just a test

2 | 3 | Sent at {{date}}.

-------------------------------------------------------------------------------- /packages/telescope-email/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_" 4 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-embedly/History.md: -------------------------------------------------------------------------------- 1 | ### v0.2.9 2 | 3 | - Update to Meteor 0.9.0. 4 | 5 | ### v0.2.8 6 | 7 | - Don't display image if it cannot be found. -------------------------------------------------------------------------------- /packages/telescope-embedly/README.md: -------------------------------------------------------------------------------- 1 | Telescope Embedly package, used internally. -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "thumbnail" : "미리보기", 3 | "thumbnailUrl" : "미리보기", 4 | "regenerate_thumbnail" : "미리보기 생성", 5 | "clear_thumbnail" : "미리보기 지우기", 6 | "please_ask_your_admin_to_fill_in_embedly_key" : "잠시만 기다려주세요.", 7 | "thumbnailWidth" : "미리보기 가로", 8 | "thumbnailHeight" : "미리보기 세로" 9 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "thumbnail" : "Miniatura", 3 | "thumbnailUrl" : "Miniatura", 4 | "regenerate_thumbnail" : "Przeładuj miniaturę", 5 | "clear_thumbnail" : "Usuń miniaturę", 6 | "please_fill_in_embedly_key" : "Podaj swój klucz API z Embedly aby włączyć miniatury obrazków." 7 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "thumbnail" : "Thumbnail", 3 | "thumbnailUrl" : "Thumbnail", 4 | "regenerate_thumbnail" : "Regenerar Thumbnail", 5 | "clear_thumbnail" : "Limpar Thumbnail", 6 | "please_fill_in_embedly_key" : "Por fabor, coloque sua API Embedly para permitir thumbnails." 7 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "thumbnail" : "Görüntü" 3 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-events/README.md: -------------------------------------------------------------------------------- 1 | Telescope events package, used internally. -------------------------------------------------------------------------------- /packages/telescope-getting-started/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-getting-started/README.md: -------------------------------------------------------------------------------- 1 | Telescope getting started package, used internally. -------------------------------------------------------------------------------- /packages/telescope-getting-started/content/images/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-getting-started/content/images/stackoverflow.png -------------------------------------------------------------------------------- /packages/telescope-getting-started/content/images/telescope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-getting-started/content/images/telescope.png -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Jaká skvělá aplikace!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "What an awesome app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "¡Que App tan genial!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Mis vinge app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Super app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Aplikasi keren!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Che applicazione stupenda!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Kak carski app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Vilken fantastisk app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Ne harika bir uygulama!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-i18n/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-i18n/README.md: -------------------------------------------------------------------------------- 1 | Telescope i18n package, used internally. -------------------------------------------------------------------------------- /packages/telescope-invites/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-invites/README.md: -------------------------------------------------------------------------------- 1 | Telescope invites package, used internally. -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "Proměnná překladu" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "tõlkimise string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "رشته ترجمه" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "traduire une chaîne de caractères" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "аударма текст" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "번역 문자열" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "chave de tradução" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "preveden niz" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "översättningstext" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "çeviri dizgisi" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/lib/server/publications.js: -------------------------------------------------------------------------------- 1 | Meteor.publish('invites', function (userId) { 2 | var invites = Invites.find({invitingUserId: userId}); 3 | return (this.userId === userId || Users.is.adminById(this.userId)) ? invites : []; 4 | }); 5 | -------------------------------------------------------------------------------- /packages/telescope-invites/lib/server/templates.js: -------------------------------------------------------------------------------- 1 | Telescope.email.addTemplates({ 2 | emailInvite: Assets.getText("lib/server/templates/emailInvite.handlebars") 3 | }); -------------------------------------------------------------------------------- /packages/telescope-invites/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-kadira/README.md: -------------------------------------------------------------------------------- 1 | Telescope Kadira package, used internally. -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App ID", 3 | "kadiraAppSecret" : "Kadira App Secret" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App ID", 3 | "kadiraAppSecret" : "Kadira App Secret" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App ID", 3 | "kadiraAppSecret" : "Kadira App Secret" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "شناسه نرم افزار کادیرا", 3 | "kadiraAppSecret" : "رمز نرم افزار کادیرا" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Identifiant Kadira de l'application", 3 | "kadiraAppSecret" : "Secret Kadira de l'application" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App ID", 3 | "kadiraAppSecret" : "Kadira App Secret" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App ID", 3 | "kadiraAppSecret" : "Kadira App Secret" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App ID", 3 | "kadiraAppSecret" : "Kadira App Skrivnost" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App-ID", 3 | "kadiraAppSecret" : "Kadira App-hemlighet" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/lib/server/kadira.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function() { 2 | if(!!Settings.get('kadiraAppId') && !!Settings.get('kadiraAppSecret')){ 3 | Kadira.connect(Settings.get('kadiraAppId'), Settings.get('kadiraAppSecret')); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /packages/telescope-kadira/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-lib/.versions: -------------------------------------------------------------------------------- 1 | aldeed:simple-schema@1.3.2 2 | base64@1.0.3 3 | check@1.0.5 4 | deps@1.0.7 5 | ejson@1.0.6 6 | jquery@1.11.3_2 7 | json@1.0.3 8 | meteor@1.1.6 9 | random@1.0.3 10 | telescope:lib@0.3.1 11 | tracker@1.0.7 12 | underscore@1.0.3 13 | -------------------------------------------------------------------------------- /packages/telescope-lib/README.md: -------------------------------------------------------------------------------- 1 | Telescope libraries package, used internally. -------------------------------------------------------------------------------- /packages/telescope-lib/lib/client/jquery.exists.js: -------------------------------------------------------------------------------- 1 | $.fn.exists = function () { 2 | return this.length !== 0; 3 | } -------------------------------------------------------------------------------- /packages/telescope-lib/lib/core.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kick off the global namespace for Telescope. 3 | * @namespace Telescope 4 | */ 5 | 6 | Telescope = {}; 7 | 8 | Telescope.VERSION = '0.25.7'; -------------------------------------------------------------------------------- /packages/telescope-lib/lib/custom_template_prefix.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function () { 2 | 3 | // "custom_" is always loaded last, so it takes priority over every other prefix 4 | Telescope.config.addCustomPrefix("custom_"); 5 | 6 | }); 7 | 8 | -------------------------------------------------------------------------------- /packages/telescope-lib/lib/templates.js: -------------------------------------------------------------------------------- 1 | Telescope.config.customPrefixes = []; 2 | 3 | Telescope.config.addCustomPrefix = function (prefix) { 4 | Telescope.config.customPrefixes.push(prefix); 5 | }; -------------------------------------------------------------------------------- /packages/telescope-messages/README.md: -------------------------------------------------------------------------------- 1 | Telescope messages package, used internally. -------------------------------------------------------------------------------- /packages/telescope-messages/lib/client/templates/message_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-messages/lib/client/templates/message_item.js: -------------------------------------------------------------------------------- 1 | Template.message_item.onCreated(function(){ 2 | var messageId=this.data._id; 3 | 4 | Meteor.setTimeout(function(){ 5 | Messages.collection.update(messageId, {$set: {seen:true}}); 6 | }, 100); 7 | }); 8 | -------------------------------------------------------------------------------- /packages/telescope-messages/lib/client/templates/messages.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-messages/lib/client/templates/messages.js: -------------------------------------------------------------------------------- 1 | Template.messages.helpers({ 2 | messages: function(){ 3 | return Messages.collection.find({show: true}); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /packages/telescope-messages/lib/modules.js: -------------------------------------------------------------------------------- 1 | Telescope.modules.add("contentTop", { 2 | template: "messages", 3 | order: 1 4 | }); -------------------------------------------------------------------------------- /packages/telescope-migrations/README.md: -------------------------------------------------------------------------------- 1 | Telescope migrations package, used internally. -------------------------------------------------------------------------------- /packages/telescope-newsletter/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-newsletter/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-newsletter/History.md: -------------------------------------------------------------------------------- 1 | ## v0.1.6 2 | 3 | - Return error message or campaign subject for cron job. 4 | - Change Newsletter Frequency option to a `select` input. 5 | 6 | ## v0.1.5 7 | 8 | - Added option to show/hide newsletter sign-up banner -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "receive_the_best_of" : "Receive the best of", 3 | "right_in_your_inbox" : "right in your inbox.", 4 | "get_newsletter" : "Get Newsletter", 5 | "thanks_for_subscribing" : "Thanks for subscribing!" 6 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "receive_the_best_of" : "Reciba lo mejor de", 3 | "right_in_your_inbox" : "directo en tu correo electrónico.", 4 | "get_newsletter" : "Obtén la Newsletter", 5 | "thanks_for_subscribing" : "¡Gracias por suscribirse!", 6 | "newsletter" : "newsletter" 7 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "thanks_for_subscribing" : "구독 해주셔서 감사합니다!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "newsletter" : "Bildirgeç", 3 | "newsletterFrequency" : "Bildirgeç sıklığı", 4 | "newsletterTime" : "Bildirgeç zamanı", 5 | "enableNewsletter" : "Bildirgeci etkinleştir" 6 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "receive_the_best_of" : "Receive the best of", 3 | "right_in_your_inbox" : "right in your inbox.", 4 | "get_newsletter" : "Get Newsletter", 5 | "thanks_for_subscribing" : "Thanks for subscribing!" 6 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/lib/server/templates/emailDigestConfirmation.handlebars: -------------------------------------------------------------------------------- 1 | Newsletter scheduled for {{time}}

2 | 3 | {{subject}}

-------------------------------------------------------------------------------- /packages/telescope-newsletter/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-notifications/README.md: -------------------------------------------------------------------------------- 1 | Telescope notifications package, used internally. -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notification_new_comment.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notification_new_reply.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notification_post_approved.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notifications_mark_as_read.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/unsubscribe.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/modules.js: -------------------------------------------------------------------------------- 1 | Telescope.modules.add("secondaryNav", { 2 | template:'notifications_menu', 3 | order: 20 4 | }); 5 | 6 | Telescope.modules.add("mobileNav", { 7 | template:'notifications_menu', 8 | order: 20 9 | }); -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/routes.js: -------------------------------------------------------------------------------- 1 | FlowRouter.route('/unsubscribe/:hash', { 2 | name: "unsubscribe", 3 | action: function(params, queryParams) { 4 | Meteor.logout(); 5 | BlazeLayout.render("layout", {main: "unsubscribe"}); 6 | } 7 | }); -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/server/templates/emailAccountApproved.handlebars: -------------------------------------------------------------------------------- 1 | {{username}}, welcome to {{siteTitle}}!

2 | 3 | You've just been invited. Start posting.

-------------------------------------------------------------------------------- /packages/telescope-notifications/lib/server/templates/emailNewUser.handlebars: -------------------------------------------------------------------------------- 1 | A new user account has been created: {{username}}

-------------------------------------------------------------------------------- /packages/telescope-notifications/lib/server/templates/emailPostApproved.handlebars: -------------------------------------------------------------------------------- 1 | 2 | Congratulations, your post has been approved: 3 | 4 |

5 | {{postTitle}} 6 |

-------------------------------------------------------------------------------- /packages/telescope-notifications/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-pages/README.md: -------------------------------------------------------------------------------- 1 | Telescope pages package, used internally. -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Správa statických stránek" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages" : "Pages", 3 | "manage_static_pages" : "Manage static pages" 4 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Administrar páginas estáticas" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages" : "Leheküljed", 3 | "manage_static_pages" : "Muuda staatilisi lehekülgi" 4 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "مدیریت صفحات آماری" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages" : "Pages", 3 | "manage_static_pages" : "Gérer les pages statiques" 4 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Mengelola halaman statis" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Gestire le pagine statiche" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Upravljajte statične strani" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Hantera statiska sidor" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/lib/client/templates/page.js: -------------------------------------------------------------------------------- 1 | Template.page.onCreated(function () { 2 | Telescope.SEO.setTitle(Pages.findOne({slug: FlowRouter.getParam("slug")}).title); 3 | }); 4 | 5 | Template.page.helpers({ 6 | page: function () { 7 | return Pages.findOne({slug: FlowRouter.getParam("slug")}); 8 | } 9 | }); -------------------------------------------------------------------------------- /packages/telescope-pages/lib/client/templates/pages.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function () { 2 | Template.pages.helpers({ 3 | pages: function(){ 4 | return Pages.find({}, {sort: {order: 1}}); 5 | } 6 | }); 7 | }); 8 | -------------------------------------------------------------------------------- /packages/telescope-pages/lib/client/templates/pages_menu.js: -------------------------------------------------------------------------------- 1 | Template.pages_menu.helpers({ 2 | hasPages: function () { 3 | return Pages.find().count(); 4 | }, 5 | pages: function () { 6 | return Pages.find(); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /packages/telescope-pages/lib/server/publications.js: -------------------------------------------------------------------------------- 1 | Meteor.publish('pages', function() { 2 | return Pages.find({}); 3 | }); 4 | -------------------------------------------------------------------------------- /packages/telescope-pages/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-pages/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/README.md: -------------------------------------------------------------------------------- 1 | Telescope post by feed package, used internally. -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Feed s toutu URL již existuje.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Pro přidání nového feedu musíte být přihlášený administrátor.", 4 | "import_new_posts_from_feeds" : "Importovat nové příspěvky z feedů." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feeds" : "Feeds", 3 | "feed_already_exists" : "A feed with the same URL already exists.", 4 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "You need to log in and be an admin to add a new feed.", 5 | "import_new_posts_from_feeds" : "Import new posts from feeds." 6 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Un feed con la misma URL ya existe.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Tienes que iniciar sesión y ser un administrador para agregar un nuevo feed.", 4 | "import_new_posts_from_feeds" : "Importar nuevos posts desde los feeds." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feeds" : "Feeds", 3 | "feed_already_exists" : "Feed sama URLiga on juba olemas.", 4 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Sa pead sisse logima ja olema admin, et lisada uus feed.", 5 | "import_new_posts_from_feeds" : "Import uusi postitusi feedist." 6 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "یک فید با پیوند مشابه قبلا وجود داشته است.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "برای اضافه کردن فید جدید, شما نیاز به ورود به سامانه به صورت مدیر را دارید.", 4 | "import_new_posts_from_feeds" : "پستهای جدید از فیدها وارد شوند." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Sebuah newsfeed dengan URL yang sama sudah ada.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Anda harus login dan menjadi admin untuk menambahkan newsfeed baru.", 4 | "import_new_posts_from_feeds" : "Impor postingan baru dari newsfeed." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Un feed con lo stesso URL esiste già.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Devi accedere ed essere un amministratore per aggiungere un nuovo feed.", 4 | "import_new_posts_from_feeds" : "Importa nuovi post dai feed." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "같은 게시물(URL)이 존재합니다." 3 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Kanał z tym samym URL już istnieje.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Musisz się zalogować jako admin aby dodawać nowe kanały.", 4 | "import_new_posts_from_feeds" : "Zaimportuj nowe posty z kanałów." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Um feed com a mesma URL já existe.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Você precisa se logar e ser um admin para adicionar um novo feed.", 4 | "import_new_posts_from_feeds" : "Importar novas postagens dos feeds." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Pregled objav z istim URL že obstaja.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Morate se prijaviti in biti admin, da dodate nov pregled objav.", 4 | "import_new_posts_from_feeds" : "Uvozi nove objave iz pregleda objav." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Ett flöde med samma webbaddress finns redan.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Du måste logga in och vara en admin för att lägga till en ny ström.", 4 | "import_new_posts_from_feeds" : "Importera nya inlägg från flöden." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/lib/client/templates/feeds.js: -------------------------------------------------------------------------------- 1 | Template.feeds.onCreated(function () { 2 | var template = this; 3 | template.subscribe('feeds'); 4 | template.subscribe('allUsersAdmin'); 5 | }); 6 | 7 | Template.feeds.helpers({ 8 | feeds: function(){ 9 | return Feeds.find({}, {sort: {url: 1}}); 10 | } 11 | }); 12 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/lib/routes.js: -------------------------------------------------------------------------------- 1 | Telescope.adminRoutes.route('/feeds', { 2 | name: "adminFeeds", 3 | action: function(params, queryParams) { 4 | BlazeLayout.render("layout", {main: "admin_wrapper", admin: "feeds"}); 5 | } 6 | }); -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/lib/server/publications.js: -------------------------------------------------------------------------------- 1 | Meteor.publish('feeds', function() { 2 | if(Users.is.adminById(this.userId)){ 3 | return Feeds.find(); 4 | } 5 | return []; 6 | }); 7 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-posts/README.md: -------------------------------------------------------------------------------- 1 | Telescope posts package, used internally. -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "share" : "Del", 3 | "clicks" : "klik", 4 | "views" : "visninger", 5 | "comment" : "kommentar", 6 | "point" : "point", 7 | "points" : "point" 8 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "createdAt" : "สร้างเมื่อ", 3 | "url" : "URL" 4 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/after_post_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/before_post_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_actions.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_author.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_author.js: -------------------------------------------------------------------------------- 1 | Template.post_author.helpers({ 2 | displayName: function () { 3 | var user = Meteor.users.findOne(this.userId); 4 | if (user) { 5 | return Users.getDisplayName(user); 6 | } else { 7 | return this.author; 8 | } 9 | } 10 | }); -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/packages/telescope-posts/lib/client/templates/modules/post_content.js -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_domain.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_domain.js: -------------------------------------------------------------------------------- 1 | Template.post_domain.helpers({ 2 | domain: function(){ 3 | var a = document.createElement('a'); 4 | a.href = this.url; 5 | return a.hostname; 6 | } 7 | }); -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_info.js: -------------------------------------------------------------------------------- 1 | Template.post_info.helpers({ 2 | pointsUnitDisplayText: function(){ 3 | return this.upvotes === 1 ? i18n.t('point') : i18n.t('points'); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_rank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_rank.js: -------------------------------------------------------------------------------- 1 | Template.post_rank.helpers({ 2 | oneBasedRank: function(){ 3 | if (typeof this.rank !== 'undefined') { 4 | return this.rank + 1; 5 | } 6 | } 7 | }); -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_title.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/post_body.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/post_item.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/posts_list/posts_list_controller.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/views_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/namespace.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The global namespace/collection for Posts. 3 | * @namespace Posts 4 | */ 5 | Posts = new Mongo.Collection("posts"); 6 | -------------------------------------------------------------------------------- /packages/telescope-prerender/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-prerender/README.md: -------------------------------------------------------------------------------- 1 | Telescope package for http://prerender.io integration. -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "prerenderIOToken" : "Prerender.io Token" 3 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "prerenderIOToken" : "Prerender.io Token" 3 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "prerenderIOToken" : "Token Prerender.io" 3 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-prerender/lib/prerender-setting.js: -------------------------------------------------------------------------------- 1 | Settings.addField({ 2 | fieldName: "prerenderIOToken", 3 | propertyGroup: "prerender", 4 | fieldSchema: { 5 | type: String, 6 | optional: true, 7 | private: true, 8 | autoform: { 9 | group: "prerender", 10 | class: "private-field" 11 | } 12 | } 13 | }); 14 | -------------------------------------------------------------------------------- /packages/telescope-prerender/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-releases/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-releases/README.md: -------------------------------------------------------------------------------- 1 | Telescope releases package, used internally. -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Aplikace byla aktualizována." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope has been updated." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope ha sido actualizado." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Teleskoop on uuenenud." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "تلسکوپ به روز شده است." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope a été mis à jour" 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope telah diperbarui." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope è stato aggiornato." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope foi atualizado." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope je bil posodobljen" 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope har uppdaterats." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope güncellendi." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/lib/server/publications.js: -------------------------------------------------------------------------------- 1 | Meteor.publish('currentRelease', function() { 2 | if(Users.is.adminById(this.userId)){ 3 | return Releases.find({}, {sort: {number: -1}, limit: 1}); 4 | } 5 | return []; 6 | }); 7 | -------------------------------------------------------------------------------- /packages/telescope-releases/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-releases/releases/0.15.1.md: -------------------------------------------------------------------------------- 1 | ### v0.15.1 “FixesScope” 2 | 3 | * Settings now have their own `telescope:settings` package (thanks @delgermurun!). 4 | * Swedish translation (thanks @Alekzanther!) 5 | * Various fixes (thanks @azizur, @ndarilek, @kai101, @saimeunt, @Kikobeats!). -------------------------------------------------------------------------------- /packages/telescope-releases/releases/0.20.4.md: -------------------------------------------------------------------------------- 1 | ### v0.20.4 “RefactorScope” 2 | 3 | See [blog](http://telescopeapp.org/blog/telescope-v020-refactorscope/) for more details. -------------------------------------------------------------------------------- /packages/telescope-releases/releases/0.20.6.md: -------------------------------------------------------------------------------- 1 | ### v0.20.6 “AutoScope” 2 | 3 | * Add Extra CSS field (thanks @johnthepink!) 4 | * Fix security issue with Settings (thanks @jshimko!) 5 | * Add automatic template replacement -------------------------------------------------------------------------------- /packages/telescope-releases/releases/0.22.2.md: -------------------------------------------------------------------------------- 1 | ## v0.22.2 2 | 3 | * Made `approvePost` and `unapprovePost` methods take `postId` instead of `post` as argument and fixed approve/unapprove bug. 4 | * Now sorting email newsletter posts by `baseScore` (time-independent), not `score`. -------------------------------------------------------------------------------- /packages/telescope-releases/releases/0.25.5.md: -------------------------------------------------------------------------------- 1 | ### v0.25.5 “PrefixerScope” 2 | 3 | * Various small bug fixes. 4 | * Added `seba:minifiers-autoprefixer` to re-enable CSS prefixing. 5 | -------------------------------------------------------------------------------- /packages/telescope-releases/releases/0.25.6.md: -------------------------------------------------------------------------------- 1 | ### v0.25.6 “CloudinaryScope” 2 | 3 | * Added support for thumbnail caching with Cloudinary (requires adding `telescope:cloudinary` package). 4 | * Various bug fixes and i18n updates. 5 | -------------------------------------------------------------------------------- /packages/telescope-releases/releases/0.25.7.md: -------------------------------------------------------------------------------- 1 | ### v0.25.7 “UnblockScope” 2 | 3 | * Switched from `handlebars-server` to `spacebars-tohtml`, 4 | * Fixed increasePostViews bug. 5 | * Attached data to post for spam detection package (thanks @queso!). 6 | * Unblocked post publications (thanks @queso!). -------------------------------------------------------------------------------- /packages/telescope-rss/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-rss/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-rss/README.md: -------------------------------------------------------------------------------- 1 | Telescope RSS package, used internally. -------------------------------------------------------------------------------- /packages/telescope-scoring/README.md: -------------------------------------------------------------------------------- 1 | Telescope scoring package, used internally. -------------------------------------------------------------------------------- /packages/telescope-search/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-search/README.md: -------------------------------------------------------------------------------- 1 | Telescope search package, used internally. -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "تحميل أكثر" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Зареди повече" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Načíst další", 3 | "search" : "Hledat", 4 | "search_logs" : "Prohledat logy", 5 | "see_what_people_are_searching_for" : "Prohlédněte si, co lidé hledají." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "search" : "Søg" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Mehr Laden", 3 | "search" : "Suchen" 4 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Περισσότερα" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Load more", 3 | "search" : "Search", 4 | "search_logs" : "Search Logs", 5 | "see_what_people_are_searching_for" : "See what people are searching for." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Cargar más", 3 | "search" : "Búsqueda", 4 | "search_logs" : "Buscar Registros", 5 | "see_what_people_are_searching_for" : "Vea lo que la gente está buscando." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Laa", 3 | "search" : "Otsing", 4 | "search_logs" : "Otsi Logidest", 5 | "see_what_people_are_searching_for" : "Vaata, mida inimesed otsivad." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "بارگذاری بیشتر", 3 | "search" : "جستجو", 4 | "search_logs" : "گزارشهای جستجو", 5 | "see_what_people_are_searching_for" : "مشاهده آنچه دیگران جستجو کرده اند" 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Charger la suite", 3 | "search" : "Rechercher", 4 | "search_logs" : "Historique de recherches", 5 | "see_what_people_are_searching_for" : "Voir ce que les gens recherchent." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Buka Lagi", 3 | "search" : "Pencarian", 4 | "search_logs" : "Catatan pencarian", 5 | "see_what_people_are_searching_for" : "Lihat apa yang telah orang cari" 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Carica altro", 3 | "search" : "Ricerca", 4 | "see_what_people_are_searching_for" : "Vedi cosa le persone stanno cercando." 5 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "더 보기", 3 | "search" : "검색", 4 | "search_logs" : "검색 로그" 5 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Meer laden" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Wczytaj więcej", 3 | "search" : "Szukaj", 4 | "search_logs" : "Historia wyszukiwań", 5 | "see_what_people_are_searching_for" : "Zobacz co wyszukują użytkownicy." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Carregar mais", 3 | "search" : "Busca", 4 | "search_logs" : "Logs de Busca", 5 | "see_what_people_are_searching_for" : "Veja o que as pessoas estão procurando." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Afișează noutăți" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Загрузить ещё" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Ladda mer" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Prikaži več", 3 | "search" : "Iskanje", 4 | "search_logs" : "Išči Zapisnike", 5 | "see_what_people_are_searching_for" : "Oglejte si, kaj ljudje iščejo." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Hämta mer", 3 | "search" : "Sök", 4 | "search_logs" : "Sökloggar", 5 | "see_what_people_are_searching_for" : "Se vad folk söker efter." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Daha Fazla yükle", 3 | "search" : "Search", 4 | "search_logs" : "Arama Günlükleri", 5 | "see_what_people_are_searching_for" : "Başkalarının neler aradığına bakın." 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Xem thêm" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "加载更多", 3 | "search" : "Search" 4 | } -------------------------------------------------------------------------------- /packages/telescope-search/lib/client/templates/search.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-search/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-search/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-settings/README.md: -------------------------------------------------------------------------------- 1 | Telescope settings package, used internally. -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Заглавие", 3 | "invites" : "Покани" 4 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Titel" 3 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Titlu", 3 | "invites" : "Invitații trimise" 4 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "ชื่อเรื่อง" 3 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Tiêu đề", 3 | "siteUrl" : "Địa chỉ URL", 4 | "invites" : "Mời" 5 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "标题", 3 | "invites" : "邀请" 4 | } -------------------------------------------------------------------------------- /packages/telescope-settings/lib/menus.js: -------------------------------------------------------------------------------- 1 | Telescope.menuItems.add("adminMenu", [ 2 | { 3 | route: 'adminSettings', 4 | label: 'settings', 5 | description: 'telescope_settings_panel' 6 | } 7 | ]); -------------------------------------------------------------------------------- /packages/telescope-settings/lib/routes.js: -------------------------------------------------------------------------------- 1 | Telescope.adminRoutes.route('/settings', { 2 | name: "adminSettings", 3 | action: function(params, queryParams) { 4 | BlazeLayout.render("layout", {main: "admin_wrapper", admin: "settings"}); 5 | } 6 | }); 7 | -------------------------------------------------------------------------------- /packages/telescope-settings/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-share/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-share/README.md: -------------------------------------------------------------------------------- 1 | Telescope share module package, used internally. -------------------------------------------------------------------------------- /packages/telescope-share/lib/share.js: -------------------------------------------------------------------------------- 1 | Telescope.modules.add("postComponents", { 2 | template: 'post_share', 3 | order: 25 4 | }); -------------------------------------------------------------------------------- /packages/telescope-singleday/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-singleday/README.md: -------------------------------------------------------------------------------- 1 | Telescope single day package. -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "previous_day" : "Forrige dag", 3 | "next_day" : "Næste dag", 4 | "today" : "I dag", 5 | "yesterday" : "I går" 6 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleday" : "일간인기", 3 | "previous_day" : "이전날", 4 | "next_day" : "다음날", 5 | "today" : "오늘", 6 | "yesterday" : "어제", 7 | "single_day" : "일간인기" 8 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "the_top_5_posts_of_each_day" : "Her günün en üst 5 paylaşımı", 3 | "previous_day" : "Önceki gün", 4 | "next_day" : "Sonraki gün", 5 | "sorry_no_posts_for_today" : "Özür dileriz, paylaşım yok", 6 | "today" : "Bugün", 7 | "yesterday" : "Dün" 8 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "the_top_5_posts_of_each_day" : "每天前5名的帖子", 3 | "previous_day" : "前一天", 4 | "next_day" : "后一天", 5 | "sorry_no_posts_for_today" : "抱歉今天没有新的帖子", 6 | "today" : "今天", 7 | "yesterday" : "昨天" 8 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/lib/client/templates/single_day.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/telescope-singleday/lib/singleday.js: -------------------------------------------------------------------------------- 1 | Telescope.menuItems.add("viewsMenu", { 2 | route: Posts.getRoute, 3 | label: 'singleday', 4 | description: 'posts_of_a_single_day', 5 | viewTemplate: 'single_day' 6 | }); -------------------------------------------------------------------------------- /packages/telescope-singleday/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-sitemap/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-sitemap/README.md: -------------------------------------------------------------------------------- 1 | Telescope sitemap package, used internally. -------------------------------------------------------------------------------- /packages/telescope-spiderable/README.md: -------------------------------------------------------------------------------- 1 | Telescope spiderable package, used internally. -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/README.md: -------------------------------------------------------------------------------- 1 | Telescope subscribe to posts package, used internally. -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Odebírané příspěvky", 3 | "subscribe_to_thread" : "Odebírat komentáře", 4 | "unsubscribe_from_thread" : "Odhlásit se z odběru komentářů" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Subscribed Posts", 3 | "subscribe_to_thread" : "Subscribe to comment thread", 4 | "unsubscribe_from_thread" : "Unsubscribe from comment thread" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Posts suscritos", 3 | "subscribe_to_thread" : "Suscribirse a esta conversación", 4 | "unsubscribe_from_thread" : "Cancelar la suscripción a esta conversación" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Tellitud postitused", 3 | "subscribe_to_thread" : "Liitu, et teemat kommenteerida", 4 | "unsubscribe_from_thread" : "Loobu teema kommenteerimisest" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "مشترک پست ها", 3 | "subscribe_to_thread" : "مشترک شدن به رشته نظرات", 4 | "unsubscribe_from_thread" : "لغو اشتراک از رشته نظرات" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Posts auxquels vous êtes abonnés", 3 | "subscribe_to_thread" : "S'abonner au fil de commentaires", 4 | "unsubscribe_from_thread" : "Se désabonner du fil de commentaires" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Postingan yang Terlanggan", 3 | "subscribe_to_thread" : "Berlangganan komentar thread ini", 4 | "unsubscribe_from_thread" : "Berhenti berlangganan dari komentar thread ini" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "구독 게시물", 3 | "subscribe_to_thread" : "댓글 구독하기", 4 | "unsubscribe_from_thread" : "댓글 구독취소" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Posty które subskrybujesz", 3 | "subscribe_to_thread" : "Subskrybuj", 4 | "unsubscribe_from_thread" : "Nie subskrybuj" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Postagens inscritas", 3 | "subscribe_to_thread" : "Inscreva-se aos comentários", 4 | "unsubscribe_from_thread" : "Desinscreva-se dos comentários" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Naročnine na Objave", 3 | "subscribe_to_thread" : "Naročite se na komentarje", 4 | "unsubscribe_from_thread" : "Odjavite se od komentarjev" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "Bevakade inlägg", 3 | "subscribe_to_thread" : "Prenumerera på kommentarstråd", 4 | "unsubscribe_from_thread" : "Avprenumerera på kommentarstråd" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "İzlenen Gönderiler", 3 | "subscribe_to_thread" : "Yorum dizisini izle", 4 | "unsubscribe_from_thread" : "Yorum dizisini izlemeyi bırak" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/lib/client/templates/user_subscribed_posts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/README.md: -------------------------------------------------------------------------------- 1 | Telescope tagline package, used internally. -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Zobrazit claim webu" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Show Tagline Banner" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Mostrar Banner con Lema" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Näita Märksõnade Bännerit" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "نمایش بنر خط برچسبها" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Afficher le slogan" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Tampilkan Banner Tagline" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Prikaži slogan" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Visa tagline banner" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/lib/client/templates/tagline_banner.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/lib/client/templates/tagline_banner.js: -------------------------------------------------------------------------------- 1 | Template.tagline_banner.helpers({ 2 | showTaglineBanner: function () { 3 | return !!Settings.get('tagline') && !!Settings.get('showTaglineBanner'); 4 | } 5 | }); 6 | 7 | -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-tags/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-tags/README.md: -------------------------------------------------------------------------------- 1 | Telescope tags package, used internally. -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Kategorie", 3 | "add_and_remove_categories" : "Přidat a odebrat kategorie.", 4 | "all_categories" : "Vše", 5 | "invalid_category" : "Litujeme, toto není platná kategorie" 6 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "all_categories" : "Alle" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Kategorien" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Categorías", 3 | "add_and_remove_categories" : "Agregar y eliminar categorías", 4 | "all_categories" : "Todos", 5 | "invalid_category" : "Lo sentimos, esa no es una categoría válida" 6 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/fa.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "دسته بندی ها", 3 | "add_and_remove_categories" : "اضافه کردن و حذف دسته بندی ها.", 4 | "all_categories" : "همه", 5 | "invalid_category" : "با عرض پوزش، این دسته بندی معتبر نیست" 6 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Kategori", 3 | "add_and_remove_categories" : "Menambah dan menghapus kategori.", 4 | "all_categories" : "Semua", 5 | "invalid_category" : "Maaf, ini bukan kategori valid" 6 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Categorie", 3 | "add_and_remove_categories" : "Aggiungi e rimuovi categorie.", 4 | "all_categories" : "Tutti", 5 | "invalid_category" : "Ci spiace, questa non è una categoria valida" 6 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "카테고리", 3 | "add_and_remove_categories" : "카테고리 추가/삭제" 4 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Kategorie", 3 | "add_and_remove_categories" : "Dodaj/Usuń kategorie." 4 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Categorias", 3 | "add_and_remove_categories" : "Adicionar e remover categorias." 4 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Kategorije", 3 | "add_and_remove_categories" : "Dodaj in odstrani kategorije.", 4 | "all_categories" : "Vse", 5 | "invalid_category" : "Žal, to ni veljavna kategorija" 6 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Kategorier", 3 | "add_and_remove_categories" : "Lägg till och ta bort kategorier.", 4 | "all_categories" : "Allt", 5 | "invalid_category" : "Tyvärr är detta inte en giltig kategori" 6 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "all_categories" : "Hepsi" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "分类" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tags/lib/client/templates/post_categories.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-tags/lib/client/templates/posts_category.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-tags/lib/routes.js: -------------------------------------------------------------------------------- 1 | Telescope.adminRoutes.route('/categories', { 2 | name: "adminCategories", 3 | action: function(params, queryParams) { 4 | BlazeLayout.render("layout", {main: "admin_wrapper", admin: "categories_admin"}); 5 | } 6 | }); 7 | -------------------------------------------------------------------------------- /packages/telescope-tags/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-tags/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-theme-base/.versions: -------------------------------------------------------------------------------- 1 | aldeed:simple-schema@1.3.2 2 | base64@1.0.3 3 | check@1.0.5 4 | deps@1.0.7 5 | ejson@1.0.6 6 | fourseven:scss@2.1.1 7 | jquery@1.11.3_2 8 | json@1.0.3 9 | meteor@1.1.6 10 | random@1.0.3 11 | telescope:lib@0.3.1 12 | telescope:theme-base@0.1.0 13 | tracker@1.0.7 14 | underscore@1.0.3 15 | -------------------------------------------------------------------------------- /packages/telescope-theme-base/README.md: -------------------------------------------------------------------------------- 1 | Telescope base theme package, used internally. -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/global/_links.scss: -------------------------------------------------------------------------------- 1 | a{ 2 | text-decoration: none; 3 | &, &:link, &:visited, &:active{ 4 | color: currentColor; 5 | font-weight: bold; 6 | } 7 | &:hover{ 8 | color: $red; 9 | } 10 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/specific/_errors.scss: -------------------------------------------------------------------------------- 1 | .error, .at-error{ 2 | background: $red; 3 | @extend .grid-block; 4 | margin-bottom:$grid-margin; 5 | text-align:center; 6 | color:white; 7 | padding: 20px; 8 | a{ 9 | &:link, &:hover{ 10 | color: white; 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/specific/_loading.scss: -------------------------------------------------------------------------------- 1 | .loading-module{ 2 | height: 70px; 3 | position: relative; 4 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/specific/_menus.scss: -------------------------------------------------------------------------------- 1 | .menu-dropdown{ 2 | .menu-items{ 3 | color: #333; 4 | } 5 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/specific/_notifications.scss: -------------------------------------------------------------------------------- 1 | .notification-item{ 2 | margin-bottom: 10px; 3 | } 4 | 5 | .side-nav .mark-as-read{ 6 | display: block; 7 | width: 100%; 8 | } 9 | 10 | .mark-as-read{ 11 | width: 100%; 12 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/specific/_posts.scss: -------------------------------------------------------------------------------- 1 | .posts-wrapper{ 2 | background: none; 3 | } 4 | .more-button{ 5 | display: block; 6 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | 3 | config.codekit 4 | lib/client/config.codekit -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/.versions: -------------------------------------------------------------------------------- 1 | aldeed:simple-schema@1.3.2 2 | base64@1.0.3 3 | check@1.0.5 4 | deps@1.0.7 5 | ejson@1.0.6 6 | fourseven:scss@2.1.1 7 | jquery@1.11.3_2 8 | json@1.0.3 9 | meteor@1.1.6 10 | random@1.0.3 11 | telescope:lib@0.3.1 12 | telescope:theme-hubble@0.1.0 13 | tracker@1.0.7 14 | underscore@1.0.3 15 | -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/README.md: -------------------------------------------------------------------------------- 1 | Telescope Hubble theme package, used internally. -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/lib/client/scss/modules/_banners.scss: -------------------------------------------------------------------------------- 1 | .banner.banner{ 2 | border-radius: 3px; 3 | } -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/lib/client/scss/modules/_dialogs.scss: -------------------------------------------------------------------------------- 1 | .dialog{ 2 | h2{ 3 | text-align:center; 4 | padding-bottom:$grid-padding; 5 | margin-bottom:$grid-margin; 6 | } 7 | margin-bottom:$grid-margin; 8 | } 9 | .footer-notice{ 10 | text-align:center; 11 | } -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/lib/client/scss/modules/_user-profile.scss: -------------------------------------------------------------------------------- 1 | .user-profile { 2 | .user-avatar { 3 | height: 80px; 4 | width: 80px; 5 | display: block; 6 | border-radius: 80px; 7 | } 8 | } -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/lib/hubble.js: -------------------------------------------------------------------------------- 1 | Telescope.theme.settings.useDropdowns = true; // not strictly needed since "true" is the current default 2 | -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-update-prompt/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-update-prompt/README.md: -------------------------------------------------------------------------------- 1 | Telescope update prompt package, used internally. Also phones home with a few stats. -------------------------------------------------------------------------------- /packages/telescope-users/README.md: -------------------------------------------------------------------------------- 1 | Telescope users package, used internally. -------------------------------------------------------------------------------- /packages/telescope-users/TESTS.md: -------------------------------------------------------------------------------- 1 | ### Creating An Account -------------------------------------------------------------------------------- /packages/telescope-users/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/lv-LV.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/lv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/se.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments_" : "ความเห็น", 3 | "postedAt" : "โพสต์เมื่อ" 4 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/tr-TR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/lib/avatars.js: -------------------------------------------------------------------------------- 1 | Avatar.setOptions({ 2 | fallbackType: 'initials', 3 | emailHashProperty: 'telescope.emailHash' 4 | }); 5 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/account/user_password.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/account/user_password.js: -------------------------------------------------------------------------------- 1 | Template.user_password.helpers({ 2 | isUsingPassword: function () { 3 | return !!this.services.password 4 | } 5 | }); -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/dashboard/users-dashboard.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/dashboard/users_list_avatar.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/dashboard/users_list_created_at.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/dashboard/users_list_display_name.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/dashboard/users_list_email.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/dashboard/users_list_username.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/nav/user_menu_label.js: -------------------------------------------------------------------------------- 1 | Template.user_menu_label.helpers({ 2 | user: function () { 3 | return Meteor.user(); 4 | } 5 | }); -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_comments.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_downvoted_posts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_posts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_profile_bio.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_profile_twitter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_upvoted_posts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/sign_out.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/user_controller/user_controller.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/user_edit.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/user_profile.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/user_profile.js: -------------------------------------------------------------------------------- 1 | Template.user_profile.onCreated(function () { 2 | var user = this.data.user; 3 | Telescope.SEO.setTitle(user.getDisplayName()); 4 | }); -------------------------------------------------------------------------------- /packages/telescope-users/lib/server/create_user.js: -------------------------------------------------------------------------------- 1 | Accounts.onCreateUser(function(options, user){ 2 | user = Telescope.callbacks.run("onCreateUser", user, options); 3 | return user; 4 | }); -------------------------------------------------------------------------------- /packages/telescope-users/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /project-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "helper_name": "_" 3 | } 4 | -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphific/creativeAI/467ce41c585dca2f3b5285597b98e07db0ab45fc/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /publish_packages.sh: -------------------------------------------------------------------------------- 1 | for d in packages/* ; do 2 | echo "$d" 3 | cd $d 4 | meteor publish 5 | cd ../../ 6 | done --------------------------------------------------------------------------------