├── .meteor ├── cordova-plugins ├── release ├── .gitignore ├── platforms ├── .id └── .finished-upgraders ├── packages.json ├── packages ├── custom │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── es.i18n.json │ │ ├── fr.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── ko.i18n.json │ │ ├── en.i18n.json │ │ ├── et.i18n.json │ │ ├── hu.i18n.json │ │ ├── cs.i18n.json │ │ ├── sv.i18n.json │ │ └── sl.i18n.json │ ├── lib │ │ ├── client │ │ │ ├── stylesheets │ │ │ │ └── custom.scss │ │ │ ├── custom_templates.js │ │ │ └── templates │ │ │ │ ├── hello.html │ │ │ │ ├── custom_post_title.html │ │ │ │ ├── hello.js │ │ │ │ └── custom_post_title.js │ │ ├── template_modules.js │ │ └── callbacks.js │ └── package-tap.i18n ├── screenings │ ├── i18n │ │ └── en.i18n.json │ ├── .npm │ │ └── package │ │ │ └── .gitignore │ ├── assets │ │ ├── bg.jpg │ │ ├── favicon.ico │ │ ├── screenings.png │ │ ├── screeningsb.png │ │ └── screeningsc.png │ ├── package-tap.i18n │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── placeholder.html │ │ │ │ ├── tagline.html │ │ │ │ ├── typekit.html │ │ │ │ ├── intro.html │ │ │ │ ├── views_menu.html │ │ │ │ ├── views_menu_item.html │ │ │ │ ├── categories_menu_item.html │ │ │ │ ├── categories_menu.html │ │ │ │ ├── categories_menu.js │ │ │ │ └── main_posts_list.html │ │ └── server │ │ │ └── prerender.js │ └── scss.json ├── telescope-api │ ├── .gitignore │ ├── README.md │ ├── TESTS.md │ ├── lib │ │ └── server │ │ │ └── routes.js │ └── package.js ├── telescope-core │ ├── i18n │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ └── th.i18n.json │ ├── README.md │ ├── public │ │ └── img │ │ │ └── favicon.ico │ ├── lib │ │ ├── client │ │ │ ├── main.html │ │ │ └── templates │ │ │ │ ├── errors │ │ │ │ ├── loading.html │ │ │ │ ├── loading.js │ │ │ │ ├── no_invite.js │ │ │ │ ├── already_logged_in.html │ │ │ │ ├── no_rights.js │ │ │ │ ├── not_found.html │ │ │ │ ├── no_rights.html │ │ │ │ ├── no_invite.html │ │ │ │ ├── no_account.js │ │ │ │ └── no_account.html │ │ │ │ ├── common │ │ │ │ ├── footer_code.js │ │ │ │ ├── checker.js │ │ │ │ ├── loader.html │ │ │ │ ├── checker.html │ │ │ │ └── footer_code.html │ │ │ │ ├── forms │ │ │ │ └── urlCustomType.html │ │ │ │ ├── admin │ │ │ │ ├── admin_menu.js │ │ │ │ ├── admin_menu.html │ │ │ │ └── admin_wrapper.html │ │ │ │ └── nav │ │ │ │ ├── mobile_nav.js │ │ │ │ ├── submit_button.html │ │ │ │ ├── logo.js │ │ │ │ ├── mobile_nav.html │ │ │ │ └── logo.html │ │ ├── server │ │ │ ├── start.js │ │ │ └── fastrender.js │ │ └── modules.js │ └── scss.json ├── telescope-daily │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── nl.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── de.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── ko.i18n.json │ │ ├── cs.i18n.json │ │ ├── en.i18n.json │ │ ├── et.i18n.json │ │ ├── es.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ ├── it.i18n.json │ │ ├── ro.i18n.json │ │ └── fr.i18n.json │ ├── README.md │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── after_day.html │ │ │ │ ├── before_day.html │ │ │ │ ├── day_heading.html │ │ │ │ ├── load_more_days.html │ │ │ │ └── posts_daily.html │ │ └── daily.js │ └── package-tap.i18n ├── telescope-email │ ├── .gitignore │ ├── i18n │ │ ├── da.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── th.i18n.json │ │ ├── ru.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── ar.i18n.json │ │ ├── pl.i18n.json │ │ ├── vi.i18n.json │ │ ├── nl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── tr.i18n.json │ │ ├── bg.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── ro.i18n.json │ │ ├── es.i18n.json │ │ ├── et.i18n.json │ │ ├── en.i18n.json │ │ ├── it.i18n.json │ │ ├── fr.i18n.json │ │ ├── sl.i18n.json │ │ ├── sv.i18n.json │ │ └── cs.i18n.json │ ├── .npm │ │ └── package │ │ │ └── .gitignore │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ └── server │ │ └── templates │ │ ├── emailTest.handlebars │ │ └── emailInvite.handlebars ├── telescope-i18n │ ├── .gitignore │ └── README.md ├── telescope-kadira │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── es.i18n.json │ │ ├── fr.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── cs.i18n.json │ │ ├── en.i18n.json │ │ ├── et.i18n.json │ │ ├── it.i18n.json │ │ ├── sl.i18n.json │ │ └── sv.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ └── server │ │ └── kadira.js ├── telescope-rss │ ├── .gitignore │ ├── .npm │ │ └── package │ │ │ └── .gitignore │ ├── README.md │ └── package.js ├── telescope-search │ ├── .gitignore │ ├── i18n │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── th.i18n.json │ │ ├── da.i18n.json │ │ ├── ar.i18n.json │ │ ├── nl.i18n.json │ │ ├── vi.i18n.json │ │ ├── el.i18n.json │ │ ├── ru.i18n.json │ │ ├── ro.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── de.i18n.json │ │ ├── tr.i18n.json │ │ ├── ko.i18n.json │ │ ├── it.i18n.json │ │ ├── sv.i18n.json │ │ ├── et.i18n.json │ │ ├── en.i18n.json │ │ ├── bg.i18n.json │ │ ├── cs.i18n.json │ │ ├── sl.i18n.json │ │ ├── es.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ └── fr.i18n.json │ ├── README.md │ ├── package-tap.i18n │ ├── scss.json │ └── lib │ │ ├── client │ │ └── templates │ │ │ └── search.html │ │ └── search.js ├── telescope-share │ ├── .gitignore │ ├── README.md │ └── lib │ │ └── share.js ├── telescope-tags │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── nl.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── ko.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── cs.i18n.json │ │ ├── sl.i18n.json │ │ ├── et.i18n.json │ │ ├── fr.i18n.json │ │ ├── sv.i18n.json │ │ ├── es.i18n.json │ │ └── it.i18n.json │ ├── README.md │ ├── package-tap.i18n │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── posts_category.html │ │ │ │ ├── post_categories.html │ │ │ │ ├── category_item.html │ │ │ │ ├── categories_menu.html │ │ │ │ └── post_categories.js │ │ └── routes.js │ └── scss.json ├── telescope-comments │ ├── i18n │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── da.i18n.json │ │ ├── th.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── tr.i18n.json │ │ ├── ko.i18n.json │ │ └── vi.i18n.json │ ├── README.md │ ├── lib │ │ └── client │ │ │ └── templates │ │ │ ├── comments_list │ │ │ ├── comments_list.html │ │ │ ├── comments_list.js │ │ │ └── comments_list_controller.html │ │ │ ├── comment_reply.js │ │ │ ├── comment_controller │ │ │ └── comment_controller.html │ │ │ └── comment_list.html │ └── TESTS.md ├── telescope-embedly │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── nl.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ └── ko.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── History.md ├── telescope-invites │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── el.i18n.json │ │ ├── es.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── nl.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── ko.i18n.json │ │ ├── sl.i18n.json │ │ ├── cs.i18n.json │ │ ├── de.i18n.json │ │ ├── en.i18n.json │ │ ├── et.i18n.json │ │ ├── fr.i18n.json │ │ ├── it.i18n.json │ │ ├── pl.i18n.json │ │ ├── sv.i18n.json │ │ ├── pt-BR.i18n.json │ │ └── zh-CN.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ └── server │ │ └── publications.js ├── telescope-newsletter │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── nl.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── ko.i18n.json │ │ ├── de.i18n.json │ │ ├── zh-CN.i18n.json │ │ └── es.i18n.json │ ├── .npm │ │ └── package │ │ │ └── .gitignore │ ├── package-tap.i18n │ ├── scss.json │ ├── lib │ │ └── server │ │ │ └── templates │ │ │ └── emailDigestConfirmation.handlebars │ └── History.md ├── telescope-pages │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── en.i18n.json │ │ ├── cs.i18n.json │ │ ├── et.i18n.json │ │ ├── fr.i18n.json │ │ ├── it.i18n.json │ │ ├── sv.i18n.json │ │ ├── es.i18n.json │ │ └── sl.i18n.json │ ├── README.md │ ├── lib │ │ ├── server │ │ │ └── publications.js │ │ └── client │ │ │ └── templates │ │ │ ├── pages.js │ │ │ ├── pages_menu.js │ │ │ ├── page.js │ │ │ ├── page_item.html │ │ │ ├── page.html │ │ │ ├── pages_menu.html │ │ │ ├── pages.html │ │ │ └── page_item.js │ ├── package-tap.i18n │ └── scss.json ├── telescope-posts │ ├── i18n │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── th.i18n.json │ │ └── da.i18n.json │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── modules │ │ │ │ ├── post_content.js │ │ │ │ ├── post_domain.html │ │ │ │ ├── post_info.js │ │ │ │ ├── post_rank.js │ │ │ │ ├── post_domain.js │ │ │ │ ├── post_author.html │ │ │ │ ├── post_title.html │ │ │ │ ├── post_rank.html │ │ │ │ ├── post_actions.html │ │ │ │ ├── post_author.js │ │ │ │ ├── post_info.html │ │ │ │ ├── post_comments_link.html │ │ │ │ ├── post_avatars.js │ │ │ │ ├── post_vote.html │ │ │ │ ├── post_discuss.html │ │ │ │ └── post_content.html │ │ │ │ ├── after_post_item.html │ │ │ │ ├── before_post_item.html │ │ │ │ ├── post_body.html │ │ │ │ ├── posts_list │ │ │ │ └── posts_list_controller.html │ │ │ │ ├── post_item.html │ │ │ │ ├── views_menu.html │ │ │ │ ├── post_submit.html │ │ │ │ ├── main_posts_list.html │ │ │ │ └── post_item.js │ │ └── namespace.js │ └── README.md ├── telescope-releases │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── fr.i18n.json │ │ ├── et.i18n.json │ │ ├── sv.i18n.json │ │ ├── cs.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── it.i18n.json │ │ ├── pt-BR.i18n.json │ │ └── sl.i18n.json │ ├── README.md │ ├── package-tap.i18n │ ├── releases │ │ ├── 0.20.4.md │ │ ├── 0.20.6.md │ │ ├── 0.22.2.md │ │ ├── 0.15.1.md │ │ └── 0.11.1.md │ └── lib │ │ ├── server │ │ └── publications.js │ │ └── releases.js ├── telescope-settings │ ├── i18n │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── de.i18n.json │ │ ├── th.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── bg.i18n.json │ │ ├── tr.i18n.json │ │ ├── ro.i18n.json │ │ ├── vi.i18n.json │ │ ├── da.i18n.json │ │ └── ko.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ ├── menus.js │ │ ├── routes.js │ │ └── client │ │ └── language_changer.js ├── telescope-singleday │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── vi.i18n.json │ │ ├── da.i18n.json │ │ ├── ko.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── tr.i18n.json │ │ ├── de.i18n.json │ │ └── pl.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ ├── client │ │ └── templates │ │ │ └── single_day.html │ │ └── singleday.js ├── telescope-sitemap │ ├── .gitignore │ └── README.md ├── telescope-theme-base │ ├── .gitignore │ ├── README.md │ ├── lib │ │ └── client │ │ │ └── scss │ │ │ ├── specific │ │ │ ├── _loading.scss │ │ │ ├── _menus.scss │ │ │ ├── _posts.scss │ │ │ ├── _notifications.scss │ │ │ └── _errors.scss │ │ │ └── global │ │ │ ├── _links.scss │ │ │ ├── _icons.scss │ │ │ └── _tables.scss │ ├── scss.json │ └── .versions ├── telescope-users │ ├── i18n │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ └── th.i18n.json │ ├── TESTS.md │ ├── README.md │ ├── lib │ │ ├── client │ │ │ └── templates │ │ │ │ ├── profile │ │ │ │ ├── user_profile_bio.html │ │ │ │ ├── user_profile_twitter.html │ │ │ │ ├── user_comments.html │ │ │ │ ├── user_posts.html │ │ │ │ ├── user_upvoted_posts.html │ │ │ │ └── user_downvoted_posts.html │ │ │ │ ├── nav │ │ │ │ └── user_menu_label.js │ │ │ │ ├── account │ │ │ │ ├── user_password.js │ │ │ │ └── user_password.html │ │ │ │ ├── dashboard │ │ │ │ ├── users_list_email.html │ │ │ │ ├── users_list_username.html │ │ │ │ ├── users_list_display_name.html │ │ │ │ ├── users_list_avatar.html │ │ │ │ ├── users_list_created_at.html │ │ │ │ └── users-dashboard.html │ │ │ │ ├── user_profile.js │ │ │ │ ├── user_profile.html │ │ │ │ ├── sign_out.html │ │ │ │ ├── user_controller │ │ │ │ └── user_controller.html │ │ │ │ └── user_edit.html │ │ ├── avatars.js │ │ └── server │ │ │ └── create_user.js │ └── package-tap.i18n ├── telescope-datetimepicker │ ├── .gitignore │ ├── README.md │ ├── autoform-bs-datetimepicker.html │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff ├── telescope-debug │ ├── lib │ │ └── debug.js │ └── README.md ├── telescope-getting-started │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── fr.i18n.json │ │ ├── et.i18n.json │ │ ├── sl.i18n.json │ │ ├── cs.i18n.json │ │ ├── en.i18n.json │ │ ├── es.i18n.json │ │ ├── it.i18n.json │ │ └── sv.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── content │ │ └── images │ │ ├── telescope.png │ │ └── stackoverflow.png ├── telescope-notifications │ ├── .gitignore │ ├── i18n │ │ ├── da.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ └── th.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ ├── server │ │ └── templates │ │ │ ├── emailNewUser.handlebars │ │ │ ├── emailAccountApproved.handlebars │ │ │ ├── emailPostApproved.handlebars │ │ │ ├── emailNewComment.handlebars │ │ │ └── emailNewReply.handlebars │ │ ├── client │ │ └── templates │ │ │ ├── unsubscribe.html │ │ │ ├── notifications_mark_as_read.html │ │ │ ├── notification_post_approved.html │ │ │ ├── notification_new_comment.html │ │ │ ├── notification_new_reply.html │ │ │ ├── notification_item.html │ │ │ ├── notifications_menu.html │ │ │ └── notifications_mark_as_read.js │ │ ├── modules.js │ │ └── routes.js ├── telescope-post-by-feed │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── nl.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── ko.i18n.json │ │ ├── en.i18n.json │ │ ├── et.i18n.json │ │ ├── cs.i18n.json │ │ ├── pl.i18n.json │ │ ├── it.i18n.json │ │ ├── sl.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── sv.i18n.json │ │ ├── es.i18n.json │ │ └── fr.i18n.json │ ├── .npm │ │ └── package │ │ │ └── .gitignore │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ ├── server │ │ └── publications.js │ │ └── client │ │ ├── templates │ │ ├── feeds.js │ │ ├── feed_item.html │ │ └── feed_item.js │ │ └── routes.js ├── telescope-tagline-banner │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── ko.i18n.json │ │ ├── nl.i18n.json │ │ ├── pl.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── sl.i18n.json │ │ ├── cs.i18n.json │ │ ├── en.i18n.json │ │ ├── fr.i18n.json │ │ ├── sv.i18n.json │ │ ├── es.i18n.json │ │ └── et.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ └── client │ │ └── templates │ │ ├── tagline_banner.js │ │ └── tagline_banner.html ├── telescope-update-prompt │ ├── .gitignore │ ├── README.md │ └── lib │ │ └── client │ │ └── templates │ │ └── update_banner.js ├── .gitignore ├── telescope-subscribe-to-posts │ ├── .gitignore │ ├── i18n │ │ ├── ar.i18n.json │ │ ├── bg.i18n.json │ │ ├── da.i18n.json │ │ ├── de.i18n.json │ │ ├── el.i18n.json │ │ ├── hu.i18n.json │ │ ├── id.i18n.json │ │ ├── it.i18n.json │ │ ├── ja.i18n.json │ │ ├── kk.i18n.json │ │ ├── nl.i18n.json │ │ ├── ro.i18n.json │ │ ├── ru.i18n.json │ │ ├── th.i18n.json │ │ ├── tr.i18n.json │ │ ├── vi.i18n.json │ │ ├── zh-CN.i18n.json │ │ ├── ko.i18n.json │ │ ├── pl.i18n.json │ │ ├── cs.i18n.json │ │ ├── en.i18n.json │ │ ├── et.i18n.json │ │ ├── pt-BR.i18n.json │ │ ├── sv.i18n.json │ │ ├── sl.i18n.json │ │ ├── es.i18n.json │ │ └── fr.i18n.json │ ├── README.md │ ├── package-tap.i18n │ └── lib │ │ ├── client │ │ └── templates │ │ │ └── user_subscribed_posts.html │ │ └── server │ │ └── publications.js ├── telescope-events │ └── README.md ├── telescope-lib │ ├── README.md │ ├── lib │ │ ├── client │ │ │ └── jquery.exists.js │ │ ├── core.js │ │ ├── templates.js │ │ └── custom_template_prefix.js │ └── .versions ├── telescope-messages │ ├── README.md │ └── lib │ │ ├── modules.js │ │ └── client │ │ └── templates │ │ ├── messages.js │ │ ├── messages.html │ │ ├── message_item.js │ │ └── message_item.html ├── telescope-scoring │ └── README.md ├── telescope-migrations │ └── README.md ├── telescope-spiderable │ ├── README.md │ └── package.js └── telescope-theme-hubble │ ├── README.md │ ├── .gitignore │ ├── lib │ ├── client │ │ └── scss │ │ │ ├── modules │ │ │ ├── _banners.scss │ │ │ ├── _user-profile.scss │ │ │ └── _dialogs.scss │ │ │ └── screen.scss │ └── hubble.js │ ├── scss.json │ └── .versions ├── Dockerfile ├── project-tap.i18n ├── get_file_list.sh ├── publish_packages.sh ├── .travis.yml ├── .editorconfig └── .tx └── config /.meteor/cordova-plugins: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.0.2 2 | -------------------------------------------------------------------------------- /packages/custom/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | meteorite 3 | -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM meteorhacks/meteord:onbuild -------------------------------------------------------------------------------- /packages/custom/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/kk.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/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/custom/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/screenings/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-api/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-core/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-core/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-core/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-email/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-i18n/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-kadira/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-rss/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-search/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-share/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-tags/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /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/id.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/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/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/th.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-newsletter/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/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/th.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-posts/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-posts/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/id.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/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-sitemap/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-theme-base/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-users/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/ja.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-users/i18n/kk.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-daily/README.md: -------------------------------------------------------------------------------- 1 | Telescope daily package. -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-debug/lib/debug.js: -------------------------------------------------------------------------------- 1 | Telescope.debug = {}; -------------------------------------------------------------------------------- /packages/telescope-embedly/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /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/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/id.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/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/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/i18n/id.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/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /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/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/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/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/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/pl.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/th.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-update-prompt/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /packages/telescope-users/TESTS.md: -------------------------------------------------------------------------------- 1 | ### Creating An Account -------------------------------------------------------------------------------- /project-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "helper_name": "_" 3 | } 4 | -------------------------------------------------------------------------------- /packages/.gitignore: -------------------------------------------------------------------------------- 1 | /bootstrap3-datepicker 2 | /npm-container -------------------------------------------------------------------------------- /packages/screenings/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /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/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/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/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/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-rss/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /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/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/hu.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/id.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /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/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /get_file_list.sh: -------------------------------------------------------------------------------- 1 | for f in $(find $1); do 2 | echo \'$f\', 3 | done -------------------------------------------------------------------------------- /packages/telescope-email/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-singleday/README.md: -------------------------------------------------------------------------------- 1 | Telescope single day package. -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/telescope-api/README.md: -------------------------------------------------------------------------------- 1 | Telescope API package, used internally. -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Daily" 3 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_content.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-rss/README.md: -------------------------------------------------------------------------------- 1 | Telescope RSS package, used internally. -------------------------------------------------------------------------------- /packages/telescope-search/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "search" : "Søg" 3 | } -------------------------------------------------------------------------------- /packages/telescope-core/README.md: -------------------------------------------------------------------------------- 1 | Telescope core package, used internally. -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Daily" 3 | } -------------------------------------------------------------------------------- /packages/telescope-debug/README.md: -------------------------------------------------------------------------------- 1 | Telescope debug package, used internally. -------------------------------------------------------------------------------- /packages/telescope-email/README.md: -------------------------------------------------------------------------------- 1 | Telescope email package, used internally. -------------------------------------------------------------------------------- /packages/telescope-events/README.md: -------------------------------------------------------------------------------- 1 | Telescope events package, used internally. -------------------------------------------------------------------------------- /packages/telescope-i18n/README.md: -------------------------------------------------------------------------------- 1 | Telescope i18n package, used internally. -------------------------------------------------------------------------------- /packages/telescope-kadira/README.md: -------------------------------------------------------------------------------- 1 | Telescope Kadira package, used internally. -------------------------------------------------------------------------------- /packages/telescope-lib/README.md: -------------------------------------------------------------------------------- 1 | Telescope libraries package, used internally. -------------------------------------------------------------------------------- /packages/telescope-pages/README.md: -------------------------------------------------------------------------------- 1 | Telescope pages package, used internally. -------------------------------------------------------------------------------- /packages/telescope-posts/README.md: -------------------------------------------------------------------------------- 1 | Telescope posts package, used internally. -------------------------------------------------------------------------------- /packages/telescope-search/README.md: -------------------------------------------------------------------------------- 1 | Telescope search package, used internally. -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Titel" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tags/README.md: -------------------------------------------------------------------------------- 1 | Telescope tags package, used internally. -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "分类" 3 | } -------------------------------------------------------------------------------- /packages/telescope-users/README.md: -------------------------------------------------------------------------------- 1 | Telescope users package, used internally. -------------------------------------------------------------------------------- /packages/telescope-comments/README.md: -------------------------------------------------------------------------------- 1 | Telescope comments package, used internally. -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comments_list/comments_list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comments_list/comments_list.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-embedly/README.md: -------------------------------------------------------------------------------- 1 | Telescope Embedly package, used internally. -------------------------------------------------------------------------------- /packages/telescope-invites/README.md: -------------------------------------------------------------------------------- 1 | Telescope invites package, used internally. -------------------------------------------------------------------------------- /packages/telescope-messages/README.md: -------------------------------------------------------------------------------- 1 | Telescope messages package, used internally. -------------------------------------------------------------------------------- /packages/telescope-releases/README.md: -------------------------------------------------------------------------------- 1 | Telescope releases package, used internally. -------------------------------------------------------------------------------- /packages/telescope-scoring/README.md: -------------------------------------------------------------------------------- 1 | Telescope scoring package, used internally. -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "تحميل أكثر" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Meer laden" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Xem thêm" 3 | } -------------------------------------------------------------------------------- /packages/telescope-settings/README.md: -------------------------------------------------------------------------------- 1 | Telescope settings package, used internally. -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "ชื่อเรื่อง" 3 | } -------------------------------------------------------------------------------- /packages/telescope-share/README.md: -------------------------------------------------------------------------------- 1 | Telescope share module package, used internally. -------------------------------------------------------------------------------- /packages/telescope-sitemap/README.md: -------------------------------------------------------------------------------- 1 | Telescope sitemap package, used internally. -------------------------------------------------------------------------------- /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-users/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments_" : "ความเห็น" 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Начать пост." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "开始发布." 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "번역 문자열" 3 | } -------------------------------------------------------------------------------- /packages/telescope-migrations/README.md: -------------------------------------------------------------------------------- 1 | Telescope migrations package, used internally. -------------------------------------------------------------------------------- /packages/telescope-search/i18n/el.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Περισσότερα" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ru.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Загрузить ещё" 3 | } -------------------------------------------------------------------------------- /packages/telescope-spiderable/README.md: -------------------------------------------------------------------------------- 1 | Telescope spiderable package, used internally. -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/README.md: -------------------------------------------------------------------------------- 1 | Telescope tagline package, used internally. -------------------------------------------------------------------------------- /packages/telescope-theme-base/README.md: -------------------------------------------------------------------------------- 1 | Telescope base theme package, used internally. -------------------------------------------------------------------------------- /packages/telescope-email/i18n/ar.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "قم باضافة جديدة" 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Zacznij pisać." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Bắt đầu đăng bài." 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "preveden niz" 3 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/README.md: -------------------------------------------------------------------------------- 1 | Telescope notifications package, used internally. -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/README.md: -------------------------------------------------------------------------------- 1 | Telescope post by feed package, used internally. -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Afișează noutăți" 3 | } -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/README.md: -------------------------------------------------------------------------------- 1 | Telescope Hubble theme package, used internally. -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/README.md: -------------------------------------------------------------------------------- 1 | Telescope datetime picker package, used internally. -------------------------------------------------------------------------------- /packages/telescope-email/i18n/nl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Begin met plaatsen." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Comece a postar." 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Paylaşıma başlayın" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/README.md: -------------------------------------------------------------------------------- 1 | Telescope getting started package, used internally. -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "Proměnná překladu" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "tõlkimise string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/fr.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/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "översättningstext" 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Tele" 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Започнете да публикувате." 3 | } -------------------------------------------------------------------------------- /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/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "start_posting" : "Poți începe să publici." 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Super app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "chave de tradução" 3 | } -------------------------------------------------------------------------------- /packages/telescope-invites/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "translation_key" : "translation string" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Manage static pages" 3 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "标题", 3 | "invites" : "邀请" 4 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/README.md: -------------------------------------------------------------------------------- 1 | Telescope subscribe to posts package, used internally. -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Prikaži slogan" 3 | } -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | 3 | config.codekit 4 | lib/client/config.codekit -------------------------------------------------------------------------------- /packages/telescope-daily/lib/client/templates/after_day.html: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Mis vinge app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Kak carski app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-newsletter/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "thanks_for_subscribing" : "구독 해주셔서 감사합니다!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Správa statických stránek" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Muuda staatilisi lehekülgi" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Gérer les pages statiques" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Gestire le pagine statiche" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Hantera statiska sidor" 3 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "같은 게시물(URL)이 존재합니다." 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "加载更多", 3 | "search" : "Search" 4 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Заглавие", 3 | "invites" : "Покани" 4 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Zobrazit claim webu" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Show Tagline Banner" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Afficher le slogan" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Visa tagline banner" 3 | } -------------------------------------------------------------------------------- /packages/telescope-daily/lib/client/templates/before_day.html: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Jaká skvělá aplikace!" 3 | } -------------------------------------------------------------------------------- /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-pages/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Administrar páginas estáticas" 3 | } -------------------------------------------------------------------------------- /packages/telescope-pages/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "manage_static_pages" : "Upravljajte statične strani" 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Mehr Laden", 3 | "search" : "Suchen" 4 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Başlık", 3 | "invites" : "Davetiyeler" 4 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/es.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Mostrar Banner con Lema" 3 | } -------------------------------------------------------------------------------- /packages/telescope-email/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_" 4 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Che applicazione stupenda!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-getting-started/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "what_an_awesome_app" : "Vilken fantastisk app!" 3 | } -------------------------------------------------------------------------------- /packages/telescope-lib/lib/client/jquery.exists.js: -------------------------------------------------------------------------------- 1 | $.fn.exists = function () { 2 | return this.length !== 0; 3 | } -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/after_post_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/before_post_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Teleskoop on uuenenud." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope har uppdaterats." 3 | } -------------------------------------------------------------------------------- /packages/telescope-search/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Daha Fazla yükle", 3 | "search" : "Search" 4 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/ro.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Titlu", 3 | "invites" : "Invitații trimise" 4 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "showTaglineBanner" : "Näita Märksõnade Bännerit" 3 | } -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/lib/client/scss/modules/_banners.scss: -------------------------------------------------------------------------------- 1 | .banner.banner{ 2 | border-radius: 3px; 3 | } -------------------------------------------------------------------------------- /publish_packages.sh: -------------------------------------------------------------------------------- 1 | for d in packages/* ; do 2 | echo "$d" 3 | cd $d 4 | meteor publish 5 | cd ../../ 6 | done -------------------------------------------------------------------------------- /packages/custom/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "커스텀 View 링크", 3 | "customAdminLink" : "커스텀 어드민 링크" 4 | } -------------------------------------------------------------------------------- /packages/custom/lib/client/stylesheets/custom.scss: -------------------------------------------------------------------------------- 1 | .custom-hero-banner{ 2 | text-align: center; 3 | color: purple; 4 | } -------------------------------------------------------------------------------- /packages/screenings/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/bg.jpg -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Aplikace byla aktualizována." 3 | } -------------------------------------------------------------------------------- /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/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope è stato aggiornato." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope foi atualizado." 3 | } -------------------------------------------------------------------------------- /packages/telescope-releases/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "telescope_has_been_updated" : "Telescope je bil posodobljen" 3 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "카테고리", 3 | "add_and_remove_categories" : "카테고리 추가/삭제" 4 | } -------------------------------------------------------------------------------- /packages/telescope-update-prompt/README.md: -------------------------------------------------------------------------------- 1 | Telescope update prompt package, used internally. Also phones home with a few stats. -------------------------------------------------------------------------------- /packages/screenings/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/favicon.ico -------------------------------------------------------------------------------- /packages/telescope-messages/lib/modules.js: -------------------------------------------------------------------------------- 1 | Telescope.modules.add("contentTop", { 2 | template: "messages", 3 | order: 1 4 | }); -------------------------------------------------------------------------------- /packages/telescope-pages/lib/server/publications.js: -------------------------------------------------------------------------------- 1 | Meteor.publish('pages', function() { 2 | return Pages.find({}); 3 | }); 4 | -------------------------------------------------------------------------------- /packages/telescope-search/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "더 보기", 3 | "search" : "검색", 4 | "search_logs" : "검색 로그" 5 | } -------------------------------------------------------------------------------- /packages/telescope-share/lib/share.js: -------------------------------------------------------------------------------- 1 | Telescope.modules.add("postComponents", { 2 | template: 'post_share', 3 | order: 25 4 | }); -------------------------------------------------------------------------------- /packages/custom/lib/client/custom_templates.js: -------------------------------------------------------------------------------- 1 | // Override "post_title" template 2 | Template.custom_post_title.replaces("post_title"); -------------------------------------------------------------------------------- /packages/custom/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/screenings/assets/screenings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/screenings.png -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/cs.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App ID", 3 | "kadiraAppSecret" : "Kadira App Secret" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "kadiraAppId" : "Kadira App ID", 3 | "kadiraAppSecret" : "Kadira App Secret" 4 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/i18n/et.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/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-posts/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "postedAt" : "โพสต์เมื่อ", 3 | "createdAt" : "สร้างเมื่อ", 4 | "url" : "URL" 5 | } -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Tiêu đề", 3 | "siteUrl" : "Địa chỉ URL", 4 | "invites" : "Mời" 5 | } -------------------------------------------------------------------------------- /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/screenings/assets/screeningsb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/screeningsb.png -------------------------------------------------------------------------------- /packages/screenings/assets/screeningsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/screenings/assets/screeningsc.png -------------------------------------------------------------------------------- /packages/screenings/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /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-comments/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "add_comment" : "Tilføj kommentar", 3 | "link" : "link", 4 | "reply" : "Svar" 5 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Kategorie", 3 | "add_and_remove_categories" : "Dodaj/Usuń kategorie." 4 | } -------------------------------------------------------------------------------- /packages/telescope-tags/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_profile_bio.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/custom/lib/client/templates/hello.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/telescope-core/public/img/favicon.ico -------------------------------------------------------------------------------- /packages/telescope-daily/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-embedly/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-invites/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-kadira/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-pages/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-releases/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-search/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-settings/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-tags/lib/client/templates/posts_category.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-daily/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "데일리", 3 | "day_by_day_view" : "매일 가장 인기있는 게시물.", 4 | "load_next_days" : "다음날 보기" 5 | } -------------------------------------------------------------------------------- /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-newsletter/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-notifications/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-tagline-banner/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-users/lib/avatars.js: -------------------------------------------------------------------------------- 1 | Avatar.setOptions({ 2 | fallbackType: 'initials', 3 | emailHashProperty: 'telescope.emailHash' 4 | }); 5 | -------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/placeholder.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/tagline.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/main.html: -------------------------------------------------------------------------------- 1 | 2 | Loading... 3 | 4 | 5 | -------------------------------------------------------------------------------- /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/it.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "you_ve_just_been_invited" : "Sei appena stato invitato.", 3 | "start_posting" : "Inizia a postare." 4 | } -------------------------------------------------------------------------------- /packages/telescope-email/lib/server/templates/emailTest.handlebars: -------------------------------------------------------------------------------- 1 | This is just a test

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

-------------------------------------------------------------------------------- /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-getting-started/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/package-tap.i18n: -------------------------------------------------------------------------------- 1 | { 2 | "translation_function_name": "__", 3 | "helper_name": "_", 4 | "namespace": "project" 5 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/pt-BR.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Categorias", 3 | "add_and_remove_categories" : "Adicionar e remover categorias." 4 | } -------------------------------------------------------------------------------- /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-hubble/lib/hubble.js: -------------------------------------------------------------------------------- 1 | Telescope.theme.settings.useDropdowns = true; // not strictly needed since "true" is the current default 2 | -------------------------------------------------------------------------------- /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/screenings/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-core/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /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/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-tags/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /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-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-pages/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-search/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/autoform-bs-datetimepicker.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-newsletter/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /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-theme-base/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/scss.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableAutoprefixer": true, 3 | "outputStyle": "compressed", 4 | "sourceComments": true, 5 | "sourceMap": true 6 | } -------------------------------------------------------------------------------- /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-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-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-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/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-getting-started/content/images/telescope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/telescope-getting-started/content/images/telescope.png -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/post_body.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/typekit.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /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-subscribe-to-posts/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "subscribed_posts" : "구독 게시물", 3 | "subscribe_to_thread" : "댓글 구독하기", 4 | "unsubscribe_from_thread" : "댓글 구독취소" 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/forms/urlCustomType.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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/lib/client/templates/day_heading.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-getting-started/content/images/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/telescope-getting-started/content/images/stackoverflow.png -------------------------------------------------------------------------------- /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.2'; -------------------------------------------------------------------------------- /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-notifications/lib/server/templates/emailNewUser.handlebars: -------------------------------------------------------------------------------- 1 | A new user account has been created: {{username}}

-------------------------------------------------------------------------------- /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/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/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/errors/no_invite.js: -------------------------------------------------------------------------------- 1 | Template.no_invite.helpers({ 2 | afterSignupText: function(){ 3 | return Settings.get("afterSignupText"); 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /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/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "daily" : "Dnevno", 3 | "day_by_day_view" : "Najbolj priljubljene objave posameznih dni.", 4 | "load_next_days" : "Naloži Naslednje 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-posts/lib/client/templates/posts_list/posts_list_controller.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-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-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/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-datetimepicker/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulcanJS/Screenings/HEAD/packages/telescope-datetimepicker/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /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-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/user_profile.js: -------------------------------------------------------------------------------- 1 | Template.user_profile.onCreated(function () { 2 | var user = this.data.user; 3 | Telescope.SEO.setTitle(user.getDisplayName()); 4 | }); -------------------------------------------------------------------------------- /packages/telescope-comments/lib/client/templates/comments_list/comments_list_controller.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-users/lib/client/templates/dashboard/users_list_display_name.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_profile_twitter.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/custom/lib/client/templates/custom_post_title.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/common/loader.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-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/lib/client/templates/single_day.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /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-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-users/lib/client/templates/user_profile.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /packages/telescope-messages/lib/client/templates/messages.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-newsletter/lib/server/templates/emailDigestConfirmation.handlebars: -------------------------------------------------------------------------------- 1 | Newsletter scheduled for {{time}}

2 | 3 | {{subject}}

-------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_domain.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/dashboard/users_list_avatar.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/sign_out.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/unsubscribe.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /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-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-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-core/i18n/th.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "menu" : "เมนู", 3 | "please_wait" : "กรุณารอสักครู่", 4 | "seconds_before_commenting_again" : " วินาทีจนกว่าจะแสดงความเห็นอีกครั้ง", 5 | "read_more" : "อ่านเพิ่มเติม" 6 | } -------------------------------------------------------------------------------- /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-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/post_item.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /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-core/lib/client/templates/common/checker.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/already_logged_in.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-daily/lib/client/templates/load_more_days.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notifications_mark_as_read.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-search/i18n/bg.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Зареди още", 3 | "search" : "Търси", 4 | "search_logs" : "История на търсенето", 5 | "see_what_people_are_searching_for" : "Виж какво търсят потребителите" 6 | } -------------------------------------------------------------------------------- /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/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "load_more" : "Nalož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-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-core/lib/client/templates/admin/admin_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-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-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-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-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/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/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/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/screenings/lib/client/templates/intro.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-notifications/lib/server/templates/emailAccountApproved.handlebars: -------------------------------------------------------------------------------- 1 | {{username}}, welcome to {{siteTitle}}!

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

-------------------------------------------------------------------------------- /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-settings/lib/menus.js: -------------------------------------------------------------------------------- 1 | Telescope.menuItems.add("adminMenu", [ 2 | { 3 | route: 'adminSettings', 4 | label: _.partial(i18n.t, 'settings'), 5 | description: _.partial(i18n.t, 'telescope_settings_panel') 6 | } 7 | ]); -------------------------------------------------------------------------------- /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 niz komentarjev", 4 | "unsubscribe_from_thread" : "Odjavite se od niza komentarjev" 5 | } -------------------------------------------------------------------------------- /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/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-posts/lib/client/templates/modules/post_author.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-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-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-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-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/server/templates/emailPostApproved.handlebars: -------------------------------------------------------------------------------- 1 | 2 | Congratulations, your post has been approved: 3 | 4 |

5 | {{postTitle}}} 6 |

-------------------------------------------------------------------------------- /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-tags/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Kategooriad", 3 | "add_and_remove_categories" : "Lisa ja eemalda kategooriaid.", 4 | "all_categories" : "Kõik", 5 | "invalid_category" : "Vabandame, see ei ole kehtiv kategooria" 6 | } -------------------------------------------------------------------------------- /packages/telescope-tags/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "categories" : "Catégories", 3 | "add_and_remove_categories" : "Ajoutez et supprimez des catégories.", 4 | "all_categories" : "Tous", 5 | "invalid_category" : "Cette catégorie n'est pas valide" 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-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-users/lib/client/templates/dashboard/users_list_created_at.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /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-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/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-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-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-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/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-comments/lib/client/templates/comment_reply.js: -------------------------------------------------------------------------------- 1 | Template.comment_reply.helpers({ 2 | post: function () { 3 | if(this.comment){ // XXX 4 | var post = Posts.findOne(this.comment.postId); 5 | return post; 6 | } 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /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-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-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-users/lib/client/templates/user_controller/user_controller.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-posts/lib/client/templates/modules/post_title.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-users/lib/client/templates/profile/user_comments.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_posts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/not_found.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-comments/lib/client/templates/comment_controller/comment_controller.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/nav/submit_button.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_rank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/views_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-users/lib/client/templates/dashboard/users-dashboard.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_upvoted_posts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/views_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-messages/lib/client/templates/message_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-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-posts/lib/client/templates/modules/post_actions.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notification_post_approved.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/user_edit.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/views_menu_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/no_rights.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-tagline-banner/lib/client/templates/tagline_banner.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/telescope-daily/lib/daily.js: -------------------------------------------------------------------------------- 1 | daysPerPage = 5; 2 | 3 | Telescope.menuItems.add("viewsMenu", { 4 | route: Posts.getRoute, 5 | name: 'daily', 6 | label: function () { return i18n.t('daily'); }, 7 | description: function () { return i18n.t('day_by_day_view'); }, 8 | viewTemplate: 'posts_daily' 9 | }); -------------------------------------------------------------------------------- /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-post-by-feed/i18n/en.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "A feed with the same URL already exists.", 3 | "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.", 4 | "import_new_posts_from_feeds" : "Import new posts from feeds." 5 | } -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/i18n/et.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Feed sama URLiga on juba olemas.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Sa pead sisse logima ja olema admin, et lisada uus feed.", 4 | "import_new_posts_from_feeds" : "Import uusi postitusi feedist." 5 | } -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/lib/client/templates/user_subscribed_posts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-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-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/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-tags/lib/client/templates/post_categories.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/account/user_password.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/admin/admin_wrapper.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /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/screenings/lib/client/templates/categories_menu_item.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-notifications/lib/client/templates/notification_new_comment.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /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/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-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-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-notifications/lib/client/templates/notification_new_reply.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /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-search/lib/client/templates/search.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-subscribe-to-posts/lib/server/publications.js: -------------------------------------------------------------------------------- 1 | Meteor.publish('userSubscribedPosts', function(terms) { 2 | 3 | terms.userId = this.userId; // add userId to terms 4 | 5 | var parameters = Posts.parameters.get(terms); 6 | var posts = Posts.find(parameters.find, parameters.options); 7 | return posts; 8 | }); 9 | -------------------------------------------------------------------------------- /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-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-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-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/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/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/telescope-core/lib/client/templates/errors/no_invite.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-comments/lib/client/templates/comment_list.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /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-core/lib/client/templates/nav/mobile_nav.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/telescope-users/lib/client/templates/profile/user_downvoted_posts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /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/telescope-post-by-feed/i18n/fr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "feed_already_exists" : "Un flux avec la même URL existe déjà.", 3 | "you_need_to_login_and_be_an_admin_to_add_a_new_feed" : "Vous devez vous connecter et être un administrateur pour ajouter un nouveau flux.", 4 | "import_new_posts_from_feeds" : "Importez de nouveaux posts à partir de flux." 5 | } -------------------------------------------------------------------------------- /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/sv.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "Anpassad Vylänk", 3 | "customAdminLink" : "Anpassad Admin-länk", 4 | "customPostField" : "Mina anpassade fält", 5 | "customCommentField" : "Mina anpassade kommentarsfält", 6 | "customUserField" : "Mina anpassade användarfält", 7 | "customSettingsField" : "Mina anpassade inställningsfält" 8 | } -------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/categories_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-pages/lib/client/templates/page_item.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notification_item.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notifications_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-pages/lib/client/templates/page.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-search/lib/search.js: -------------------------------------------------------------------------------- 1 | // push "search" template to primaryNav 2 | Telescope.modules.add("primaryNav", { 3 | template: 'search', 4 | order: 100 5 | }); 6 | 7 | Telescope.modules.add("mobileNav", { 8 | template: 'search', 9 | order: 1 10 | }); 11 | 12 | Telescope.colorElements.add('.search.empty .search-field', 'secondaryContrastColor'); -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/da.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "description" : "Beskrivelse", 3 | "logoHeight" : "Logo Højde", 4 | "logoWidth" : "Logo Bredde", 5 | "language" : "Sprog", 6 | "backgroundCSS" : "Baggrund CSS", 7 | "footerCode" : "Footer kode", 8 | "extraCode" : "Ekstra kode", 9 | "emailFooter" : "Email Footer", 10 | "extras" : "Ekstra" 11 | } -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/common/footer_code.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/lib/client/templates/feed_item.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_info.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/de.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "the_top_5_posts_of_each_day" : "Die Top-5-Links eines jeden Tages.", 3 | "previous_day" : "Einen Tag zurück", 4 | "next_day" : "Einen Tag vor", 5 | "sorry_no_posts_for_today" : "Heute gibt es keine Links.", 6 | "sorry_no_posts_for" : "Keine Links für", 7 | "today" : "Heute", 8 | "yesterday" : "Gestern" 9 | } -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_comments_link.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-settings/lib/client/language_changer.js: -------------------------------------------------------------------------------- 1 | var query = Settings.find(); 2 | 3 | query.observeChanges({ 4 | added: function (id, fields) { 5 | if (fields.language) 6 | i18n.setLanguage(fields.language); 7 | }, 8 | changed: function (id, fields) { 9 | if (fields.language) 10 | i18n.setLanguage(fields.language); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /packages/telescope-tags/lib/client/templates/category_item.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/no_account.js: -------------------------------------------------------------------------------- 1 | Template.no_account.helpers({ 2 | landingPageText: function(){ 3 | return Settings.get("landingPageText"); 4 | } 5 | }); 6 | Template.no_account.events({ 7 | 'click .twitter-button': function(){ 8 | Meteor.loginWithTwitter(function(){ 9 | FlowRouter.go("postsDefault"); 10 | }); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /packages/telescope-email/lib/server/templates/emailInvite.handlebars: -------------------------------------------------------------------------------- 1 | 2 | {{invitedBy}} 3 | invited you to join {{communityName}} 4 |

5 | 6 | {{#if newUser}} 7 | Join {{communityName}} 8 | {{else}} 9 | Sign in to {{communityName}} 10 | {{/if}} 11 |

12 | -------------------------------------------------------------------------------- /packages/telescope-pages/lib/client/templates/pages_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/server/start.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function () { 2 | Events.log({ 3 | name: "firstRun", 4 | unique: true, // will only get logged a single time 5 | important: true 6 | }); 7 | }); 8 | 9 | if (Settings.get('mailUrl')) 10 | process.env.MAIL_URL = Settings.get('mailUrl'); 11 | 12 | Meteor.startup(function() { 13 | SyncedCron.start(); 14 | }); 15 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/post_submit.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_avatars.js: -------------------------------------------------------------------------------- 1 | Template.post_avatars.helpers({ 2 | commenters: function () { 3 | // remove post author ID from commenters to avoid showing author's avatar again 4 | // limit to 4 commenters in case there's more 5 | // TODO: show a "..." sign or something 6 | return _.first(_.without(this.commenters, this.userId), 4); 7 | } 8 | }); -------------------------------------------------------------------------------- /packages/custom/i18n/sl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "customViewLink" : "Povezava do Pogleda po Meri", 3 | "customAdminLink" : "Povezava do Skrbniškega Pogleda po Meri", 4 | "customPostField" : "Polje Moje Objave po Meri", 5 | "customCommentField" : "Polje Mojega Komentarja po Meri", 6 | "customUserField" : "Moje Uporabniško Polje po Meri", 7 | "customSettingsField" : "Moje Polje za Nastavitve po meri" 8 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/zh-CN.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "sorry_you_cannot_edit_this_comment" : "对不起你不能编辑这个评论", 3 | "your_comment_has_been_deleted" : "你的评论已经被删除", 4 | "comment_" : "评论", 5 | "delete_comment" : "删除评论", 6 | "add_comment" : "评论", 7 | "upvote" : "顶", 8 | "downvote" : "踩", 9 | "link" : "链接", 10 | "edit" : "编辑", 11 | "reply" : "回复", 12 | "no_comments" : "暂时没有评论" 13 | } -------------------------------------------------------------------------------- /packages/telescope-spiderable/package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: "telescope:spiderable", 3 | summary: "Telescope Spiderable package.", 4 | version: "0.25.2", 5 | git: "https://github.com/TelescopeJS/Telescope.git" 6 | }); 7 | 8 | Package.onUse(function (api) { 9 | 10 | api.versionsFrom("METEOR@1.0"); 11 | 12 | api.use(['telescope:core@0.25.2', 'spiderable']); 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /packages/telescope-tags/lib/client/templates/categories_menu.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/screenings/lib/server/prerender.js: -------------------------------------------------------------------------------- 1 | if (Meteor.settings.PrerenderIO && Meteor.settings.PrerenderIO.token) { 2 | var prerender = Npm.require('prerender-node') 3 | .set('protocol', 'http') 4 | .set('host', 'screenings.io') 5 | .set('prerenderToken', Meteor.settings.PrerenderIO.token); 6 | 7 | Meteor.startup(function() { 8 | WebApp.rawConnectHandlers.use(prerender); 9 | }); 10 | } -------------------------------------------------------------------------------- /packages/telescope-pages/lib/client/templates/pages.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_vote.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | before_install: 5 | - curl https://install.meteor.com | /bin/sh 6 | 7 | before_script: 8 | - export DISPLAY=:99.0 9 | - sh -e /etc/init.d/xvfb start 10 | # Add testing package since it's not currently enabled in Telescope 11 | - printf "sanjo:jasmine@0.11.0" >> .meteor/packages 12 | 13 | script: 14 | - JASMINE_BROWSER=Firefox meteor --test -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/errors/no_account.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*.{js,html}] 6 | 7 | charset = utf-8 8 | end_of_line = lf 9 | indent_brace_style = 1TBS 10 | indent_size = 2 11 | indent_style = space 12 | insert_final_newline = true 13 | max_line_length = 80 14 | quote_type = auto 15 | spaces_around_operators = true 16 | trim_trailing_whitespace = true 17 | 18 | [*.md] 19 | 20 | trim_trailing_whitespace = false 21 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/server/templates/emailNewComment.handlebars: -------------------------------------------------------------------------------- 1 | 2 | {{authorName}} 3 | left a new comment on 4 | {{postTitle}}: 5 | 6 |

7 | 8 |
9 | {{{htmlBody}}} 10 |
11 |
12 | 13 | Reply

-------------------------------------------------------------------------------- /packages/telescope-notifications/lib/server/templates/emailNewReply.handlebars: -------------------------------------------------------------------------------- 1 | {{authorName}} 2 | has replied to your comment on 3 | {{postTitle}}: 4 | 5 |

6 | 7 |
8 | {{{htmlBody}}} 9 |
10 |
11 | 12 | Reply

-------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/categories_menu.js: -------------------------------------------------------------------------------- 1 | Template.categories_menu.helpers({ 2 | customMenuItems: function () { 3 | // note: is there a better way to call another helper from a helper? 4 | var menuItems = Template.categories_menu.__helpers[" menuItems"](); 5 | menuItems[0].template = "categories_menu_item"; 6 | menuItems[0].data = {slug: "all_categories"}; 7 | return menuItems; 8 | } 9 | }); -------------------------------------------------------------------------------- /packages/telescope-releases/lib/releases.js: -------------------------------------------------------------------------------- 1 | Releases = new Meteor.Collection('releases'); 2 | 3 | Telescope.modules.add("hero", { 4 | template: 'current_release' 5 | }); 6 | 7 | Telescope.subscriptions.preload('currentRelease'); 8 | 9 | Meteor.startup(function () { 10 | Releases.allow({ 11 | insert: Users.is.adminById, 12 | update: Users.is.adminById, 13 | remove: Users.is.adminById 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /packages/telescope-notifications/lib/client/templates/notifications_mark_as_read.js: -------------------------------------------------------------------------------- 1 | Template.notifications_mark_as_read.events({ 2 | 'click .mark-as-read': function(e, t){ 3 | e.preventDefault(); 4 | t.$('li').parents('.dropdown').removeClass('dropdown-open'); 5 | Meteor.call('heraldMarkAllAsRead', 6 | function(error, result){ 7 | error && console.log(error); 8 | } 9 | ); 10 | } 11 | }); 12 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/main_posts_list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_discuss.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-settings/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "제목", 3 | "siteUrl" : "사이트 URL", 4 | "tagline" : "태그 라인", 5 | "defaultEmail" : "기본 이메일", 6 | "logoUrl" : "로고 URL", 7 | "logoHeight" : "로고 세로길이", 8 | "logoWidth" : "로고 가로길이", 9 | "language" : "언어", 10 | "fontUrl" : "폰트 URL", 11 | "fontFamily" : "폰트 (Font Family)", 12 | "faviconUrl" : "파비콘 URL", 13 | "mailURL" : "메일주소(URL)", 14 | "logo" : "로고" 15 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/global/_icons.scss: -------------------------------------------------------------------------------- 1 | .icon-circle{ 2 | border-radius: 100%; 3 | border: 1px solid currentColor; 4 | // padding: 6px; 5 | // line-height: 0; 6 | &:before{ 7 | // height: 12px; 8 | // width: 12px; 9 | // text-align: center; 10 | // line-height: 12px; 11 | // font-size: 10px; 12 | // display: inline-block; 13 | } 14 | } 15 | 16 | .fa-fw{ 17 | width: 1.5em; 18 | } -------------------------------------------------------------------------------- /packages/telescope-theme-base/lib/client/scss/global/_tables.scss: -------------------------------------------------------------------------------- 1 | table{ 2 | width: 100%; 3 | tr{ 4 | border-bottom: 1px solid #eee; 5 | td, th{ 6 | padding:4px; 7 | vertical-align: middle; 8 | } 9 | } 10 | thead{ 11 | tr{ 12 | td, th{ 13 | font-weight:bold; 14 | } 15 | } 16 | } 17 | tbody{ 18 | tr{ 19 | td{ 20 | 21 | } 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- 1 | # This file contains information which helps Meteor properly upgrade your 2 | # app when you run 'meteor update'. You should check it into version control 3 | # with your project. 4 | 5 | notices-for-0.9.0 6 | notices-for-0.9.1 7 | 0.9.4-platform-file 8 | notices-for-facebook-graph-api-2 9 | 1.2.0-standard-minifiers-package 10 | 1.2.0-meteor-platform-split 11 | 1.2.0-cordova-changes 12 | 1.2.0-breaking-changes 13 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/modules.js: -------------------------------------------------------------------------------- 1 | // array containing nav items; 2 | 3 | Telescope.modules.add("secondaryNav", [ 4 | { 5 | template: "submit_button", 6 | order: 30 7 | } 8 | ]); 9 | 10 | Telescope.modules.add("mobileNav", [ 11 | { 12 | template: "submit_button", 13 | order: 30 14 | } 15 | ]); 16 | 17 | Telescope.modules.add("footer", [ 18 | { 19 | template: "footer_code", 20 | order: 10 21 | } 22 | ]); -------------------------------------------------------------------------------- /packages/telescope-api/package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: "telescope:api", 3 | summary: "Telescope API package", 4 | version: "0.25.2", 5 | git: "https://github.com/TelescopeJS/Telescope.git" 6 | }); 7 | 8 | Package.onUse(function (api) { 9 | 10 | api.versionsFrom(['METEOR@1.0']); 11 | 12 | api.use(['telescope:core@0.25.2']); 13 | 14 | api.addFiles(['lib/server/api.js', 'lib/server/routes.js'], ['server']); 15 | 16 | }); 17 | -------------------------------------------------------------------------------- /packages/telescope-daily/lib/client/templates/posts_daily.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/lib/client/routes.js: -------------------------------------------------------------------------------- 1 | Telescope.menuItems.add("adminMenu", { 2 | route: "adminFeeds", 3 | label: _.partial(i18n.t, "feeds"), 4 | description: _.partial(i18n.t, "import_new_posts_from_feeds") 5 | }); 6 | 7 | Telescope.adminRoutes.route('/feeds', { 8 | name: "adminFeeds", 9 | action: function(params, queryParams) { 10 | BlazeLayout.render("layout", {main: "admin_wrapper", admin: "feeds"}); 11 | } 12 | }); -------------------------------------------------------------------------------- /packages/telescope-rss/package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: "telescope:rss", 3 | summary: "Telescope RSS package", 4 | version: "0.25.2", 5 | git: "https://github.com/TelescopeJS/telescope-rss.git" 6 | }); 7 | 8 | Npm.depends({rss: "1.1.1"}); 9 | 10 | Package.onUse(function (api) { 11 | 12 | api.use(['telescope:core@0.25.2']); 13 | 14 | api.addFiles(['lib/server/rss.js', 'lib/server/routes.js'], ['server']); 15 | 16 | }); 17 | -------------------------------------------------------------------------------- /packages/telescope-theme-hubble/lib/client/scss/screen.scss: -------------------------------------------------------------------------------- 1 | 2 | @import "partials/grid"; 3 | @import "partials/colors"; 4 | @import "partials/mixins"; 5 | @import "partials/typography"; 6 | @import "partials/tooltips"; 7 | 8 | @import "modules/accounts"; 9 | @import "modules/nav"; 10 | @import "modules/posts"; 11 | @import "modules/comments"; 12 | @import "modules/dialogs"; 13 | @import "modules/user-profile"; 14 | @import "modules/banners"; 15 | -------------------------------------------------------------------------------- /packages/telescope-update-prompt/lib/client/templates/update_banner.js: -------------------------------------------------------------------------------- 1 | Template.update_banner.helpers({ 2 | showBanner: function () { 3 | return Session.get('updateVersion'); 4 | }, 5 | version: function () { 6 | return Session.get('updateVersion'); 7 | }, 8 | currentVersion: function () { 9 | return Telescope.VERSION; 10 | }, 11 | message: function () { 12 | return Session.get('updateMessage'); 13 | } 14 | }); 15 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/server/fastrender.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function () { 2 | 3 | FastRender.onAllRoutes(function(path) { 4 | 5 | var fr = this; 6 | 7 | Telescope.subscriptions.forEach(function (sub) { 8 | 9 | if (typeof sub === 'object'){ 10 | 11 | fr.subscribe(sub.subName, sub.subArguments); 12 | 13 | }else{ 14 | 15 | fr.subscribe(sub); 16 | 17 | } 18 | 19 | }); 20 | 21 | }); 22 | 23 | }); -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/post_item.js: -------------------------------------------------------------------------------- 1 | Template.post_item.helpers({ 2 | postClass: function () { 3 | var post = this; 4 | var postClass = "post "; 5 | 6 | postClass += "author-"+Telescope.utils.slugify(post.author)+" "; 7 | 8 | if (this.sticky) { 9 | postClass += "sticky "; 10 | } 11 | postClass = Telescope.callbacks.run("postClass", postClass, post); 12 | return postClass; 13 | } 14 | }); 15 | -------------------------------------------------------------------------------- /packages/telescope-tags/lib/client/templates/post_categories.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function () { 2 | Template.post_categories.helpers({ 3 | categoriesArray: function(){ 4 | return _.map(this.categories, function (categoryId) { // note: this.categories maybe be undefined 5 | return Categories.findOne(categoryId); 6 | }); 7 | }, 8 | categoryLink: function(){ 9 | return Categories.getUrl(this); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [telescope.daily] 5 | file_filter = packages/telescope-daily/i18n/.i18n.json 6 | source_file = packages/telescope-daily/i18n/en.i18n.json 7 | source_lang = en 8 | type = KEYVALUEJSON 9 | 10 | [telescope.email] 11 | file_filter = packages/telescope-email/i18n/.i18n.json 12 | source_file = packages/telescope-email/i18n/en.i18n.json 13 | source_lang = en 14 | type = KEYVALUEJSON 15 | 16 | -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/tr.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "sorry_you_cannot_edit_this_comment" : "Özür dileriz, bu yorumu değiştiremezsiniz", 3 | "your_comment_has_been_deleted" : "Yorumunuz silindi", 4 | "comment_" : "Yorum", 5 | "delete_comment" : "Yorumu Sil", 6 | "add_comment" : "Yorum Ekle", 7 | "upvote" : "1", 8 | "downvote" : "-1", 9 | "link" : "link", 10 | "edit" : "Düzenle", 11 | "reply" : "Cevap", 12 | "no_comments" : "Yorum yok" 13 | } -------------------------------------------------------------------------------- /packages/telescope-singleday/i18n/pl.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "the_top_5_posts_of_each_day" : "Najlepsze 5 postów z każdego dnia.", 3 | "previous_day" : "Poprzedni dzień", 4 | "next_day" : "Następny dzień", 5 | "sorry_no_posts_for_today" : "Brak postów na dzisiaj", 6 | "sorry_no_posts_for" : "Brak postów na ", 7 | "today" : "Dzisiaj", 8 | "yesterday" : "Wczoraj", 9 | "single_day" : "Jeden dzień", 10 | "posts_of_a_single_day" : "Posty z jednego dnia." 11 | } -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/ko.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "sorry_you_cannot_edit_this_comment" : "죄송합니다. 이 댓글을 편집 할 수 없습니다.", 3 | "your_comment_has_been_deleted" : "댓글이 삭제되었습니다.", 4 | "comment_" : "댓글", 5 | "delete_comment" : "댓글 삭제", 6 | "add_comment" : "댓글 달기", 7 | "upvote" : "추천", 8 | "downvote" : "반대", 9 | "link" : "링크", 10 | "edit" : "편집", 11 | "reply" : "댓글", 12 | "no_comments" : "댓글 없음.", 13 | "please_sign_in_to_reply" : "댓글을 쓰시려면 로그인해주세요" 14 | } -------------------------------------------------------------------------------- /packages/telescope-pages/lib/client/templates/page_item.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function () { 2 | Template.page_item.helpers({ 3 | formId: function () { 4 | return 'updatePage-'+ this._id 5 | } 6 | }); 7 | 8 | Template.page_item.events({ 9 | 'click .delete-link': function(e, instance){ 10 | e.preventDefault(); 11 | if (confirm("Delete page?")) { 12 | Pages.remove(instance.data._id); 13 | } 14 | } 15 | }); 16 | }); 17 | -------------------------------------------------------------------------------- /packages/telescope-core/lib/client/templates/nav/logo.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /packages/telescope-releases/releases/0.11.1.md: -------------------------------------------------------------------------------- 1 | ### v0.11.1 “FeedScope” 2 | 3 | * Post submit and edit forms now submit to their respective methods directly. 4 | * Removed `postSubmitRenderedCallbacks` and `postEditRenderedCallbacks`. 5 | * `telescope-post-by-feed` package now lets you import posts from RSS feeds. 6 | * Adding limit of 200 posts to post list request. 7 | * Refactoring post and comment submit to fix latency compensation issues. 8 | * Tags package now using Autoform. -------------------------------------------------------------------------------- /packages/telescope-post-by-feed/lib/client/templates/feed_item.js: -------------------------------------------------------------------------------- 1 | Meteor.startup(function () { 2 | Template.feed_item.helpers({ 3 | formId: function () { 4 | return 'updateFeed-'+ this._id; 5 | } 6 | }); 7 | 8 | Template.feed_item.events({ 9 | 'click .delete-link': function(e, instance){ 10 | e.preventDefault(); 11 | if (confirm("Delete feed?")) { 12 | Feeds.remove(instance.data._id); 13 | } 14 | } 15 | }); 16 | }); 17 | -------------------------------------------------------------------------------- /packages/telescope-posts/lib/client/templates/modules/post_content.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /packages/screenings/lib/client/templates/main_posts_list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/telescope-comments/i18n/vi.i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "sorry_you_cannot_edit_this_comment" : "Xin lỗi, bạn không thể sửa ý kiến này.", 3 | "your_comment_has_been_deleted" : "Ý kiến của bạn đã được xóa.", 4 | "comment_" : "Ý kiến", 5 | "delete_comment" : "Xóa ý kiến", 6 | "add_comment" : "Thêm ý kiến", 7 | "upvote" : "Thích", 8 | "downvote" : "Không thích", 9 | "link" : "link", 10 | "edit" : "Sửa", 11 | "reply" : "Trả lời", 12 | "no_comments" : "Không ý kiến." 13 | } --------------------------------------------------------------------------------