/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45/**6* User Interface specific constants7*/89// icon name used for shared files, only accessible for authenticated users10export const SHARE_AUTHENTICATED_ICON = "user";11export const SHARE_AUTHENTICATED_EXPLANATION =12"only visible to those who are signed in";13// boolean flags for various shared files visibility modes14export const SHARE_FLAGS = {15LISTED: { unlisted: false, disabled: false, authenticated: false }, // aka PUBLIC16UNLISTED: { unlisted: true, disabled: false, authenticated: false },17DISABLED: { unlisted: false, disabled: true, authenticated: false }, // aka PRIVATE18AUTHENTICATED: { unlisted: false, disabled: false, authenticated: true },19} as const;2021// documentation pages22export const DOC_AI = "https://doc.cocalc.com/ai.html";2324// How we call Posit's RStudio (rserver) IDE. They trademark "RStudio"25// see https://posit.co/about/trademark-guidelines/26// and a core principle of our company is to be as respectful as possible27// to all legal requirements. We thus don't use their trademark28// anywhere in our frontend.29export const R_IDE = "R IDE";303132