├── .dockerignore ├── .editorconfig ├── .env.default ├── .env.dev.default ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── plugin-request-template.md │ ├── security-issue.md │ └── security.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── backend-tests.yml │ ├── build-and-deploy-docs.yml │ ├── codeql-analysis.yml │ ├── dependency-review.yml │ ├── docker.yml │ ├── frontend-admin-tests.yml │ ├── frontend-tests.yml │ ├── handleRelease.yml │ ├── load-test.yml │ ├── perform-type-check.yml │ ├── rate-limit.yml │ ├── release.yml │ ├── releaseEtherpad.yml │ ├── stale.yml │ └── upgrade-from-latest-release.yml ├── .gitignore ├── .lgtm.yml ├── .npmrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── admin ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public │ ├── Karla-Bold.ttf │ ├── Karla-BoldItalic.ttf │ ├── Karla-ExtraBold.ttf │ ├── Karla-ExtraBoldItalic.ttf │ ├── Karla-ExtraLight.ttf │ ├── Karla-ExtraLightItalic.ttf │ ├── Karla-Italic.ttf │ ├── Karla-Light.ttf │ ├── Karla-LightItalic.ttf │ ├── Karla-Medium.ttf │ ├── Karla-MediumItalic.ttf │ ├── Karla-Regular.ttf │ ├── Karla-SemiBold.ttf │ ├── Karla-SemiBoldItalic.ttf │ ├── brand.svg │ ├── ep_admin_pads │ │ ├── ar.json │ │ ├── bn.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── cy.json │ │ ├── da.json │ │ ├── de.json │ │ ├── diq.json │ │ ├── dsb.json │ │ ├── el.json │ │ ├── en.json │ │ ├── eu.json │ │ ├── ff.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── gl.json │ │ ├── he.json │ │ ├── hsb.json │ │ ├── hu.json │ │ ├── ia.json │ │ ├── it.json │ │ ├── kn.json │ │ ├── ko.json │ │ ├── krc.json │ │ ├── lb.json │ │ ├── lt.json │ │ ├── mk.json │ │ ├── my.json │ │ ├── nb.json │ │ ├── nl.json │ │ ├── oc.json │ │ ├── pms.json │ │ ├── pt-br.json │ │ ├── pt.json │ │ ├── qqq.json │ │ ├── ru.json │ │ ├── sc.json │ │ ├── sdc.json │ │ ├── sk.json │ │ ├── skr-arab.json │ │ ├── sl.json │ │ ├── smn.json │ │ ├── sms.json │ │ ├── sq.json │ │ ├── sv.json │ │ ├── sw.json │ │ ├── th.json │ │ ├── tl.json │ │ ├── tr.json │ │ ├── uk.json │ │ ├── zh-hans.json │ │ └── zh-hant.json │ └── fond.jpg ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── IconButton.tsx │ │ ├── SearchField.tsx │ │ └── ShoutType.ts │ ├── index.css │ ├── localization │ │ └── i18n.ts │ ├── main.tsx │ ├── pages │ │ ├── HelpPage.tsx │ │ ├── HomePage.tsx │ │ ├── LoginScreen.tsx │ │ ├── PadPage.tsx │ │ ├── Plugin.ts │ │ ├── SettingsPage.tsx │ │ └── ShoutPage.tsx │ ├── store │ │ └── store.ts │ ├── utils │ │ ├── AnimationFrameHook.ts │ │ ├── LoadingScreen.tsx │ │ ├── PadSearch.ts │ │ ├── Toast.tsx │ │ ├── brand.svg │ │ ├── sorting.ts │ │ ├── useDebounce.ts │ │ └── utils.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── bin ├── buildDebian.sh ├── buildForWindows.sh ├── checkAllPads.ts ├── checkPad.ts ├── cleanRun.sh ├── commonPlugins.ts ├── convertSettings.json.template ├── createRelease.sh ├── createUserSession.ts ├── deb-src │ ├── DEBIAN │ │ ├── control │ │ ├── postinst │ │ ├── preinst │ │ └── prerm │ └── sysroot │ │ └── etc │ │ └── init │ │ └── etherpad.conf ├── debugRun.sh ├── deleteAllGroupSessions.ts ├── deletePad.ts ├── extractPadData.ts ├── fastRun.sh ├── functions.sh ├── generateReleaseNotes.ts ├── importSqlFile.ts ├── installDeps.sh ├── installLocalPlugins.sh ├── installOnWindows.bat ├── make_docs.ts ├── migrateDB.ts ├── migrateDirtyDBtoRealDB.ts ├── nsis │ ├── README.md │ ├── brand.ico │ └── etherpad.nsi ├── package.json ├── plugins.ts ├── plugins │ ├── README.md │ ├── checkPlugin.ts │ ├── getCorePlugins.sh │ ├── lib │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend-tests.yml │ │ ├── dependabot.yml │ │ ├── eslintrc.cjs │ │ ├── frontend-tests.yml │ │ ├── gitignore │ │ ├── npmpublish.yml │ │ └── test-and-release.yml │ ├── listOfficialPlugins │ ├── reTestAllPlugins.sh │ ├── stalePlugins.ts │ ├── updateAllPluginsScript.sh │ └── updateCorePlugins.sh ├── push-after-release.sh ├── rebuildPad.ts ├── release.ts ├── repairPad.ts ├── run.sh ├── safeRun.sh ├── tsconfig.json └── updatePlugins.sh ├── doc ├── .gitignore ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── components │ │ └── SvgImage.vue │ │ ├── index.ts │ │ └── styles │ │ └── vars.css ├── api │ ├── api.adoc │ ├── changeset_library.adoc │ ├── changeset_library.md │ ├── editbar.adoc │ ├── editbar.md │ ├── editorInfo.adoc │ ├── editorInfo.md │ ├── embed_parameters.adoc │ ├── embed_parameters.md │ ├── hooks_client-side.adoc │ ├── hooks_client-side.md │ ├── hooks_overview.adoc │ ├── hooks_overview.md │ ├── hooks_server-side.adoc │ ├── hooks_server-side.md │ ├── http_api.adoc │ ├── http_api.md │ ├── index.md │ ├── pluginfw.adoc │ ├── pluginfw.md │ ├── toolbar.adoc │ └── toolbar.md ├── assets │ └── style.css ├── cli.md ├── cookies.adoc ├── cookies.md ├── database.adoc ├── demo.md ├── docker.adoc ├── docker.md ├── documentation.adoc ├── documentation.md ├── index.adoc ├── index.md ├── localization.adoc ├── localization.md ├── package.json ├── plugins.adoc ├── plugins.md ├── public │ ├── easysync │ │ ├── README.md │ │ ├── easysync-full-description.pdf │ │ ├── easysync-full-description.tex │ │ ├── easysync-notes.pdf │ │ ├── easysync-notes.tex │ │ └── easysync-notes.txt │ ├── etherpad_basic.png │ ├── etherpad_demo.gif │ ├── etherpad_full_features.png │ ├── etherpad_skin_variants.gif │ └── favicon.ico ├── skins.adoc ├── skins.md ├── stats.adoc └── stats.md ├── docker-compose.dev.yml ├── docker-compose.yml ├── local_plugins └── .gitignore ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── settings.json.docker ├── settings.json.template ├── src ├── .eslintrc.cjs ├── .npmrc ├── README.md ├── ep.json ├── etherpad_icon.svg ├── locales │ ├── af.json │ ├── ar.json │ ├── ast.json │ ├── awa.json │ ├── az.json │ ├── azb.json │ ├── bcc.json │ ├── be-tarask.json │ ├── bg.json │ ├── bgn.json │ ├── bn.json │ ├── br.json │ ├── bs.json │ ├── ca.json │ ├── ce.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── diq.json │ ├── dsb.json │ ├── dty.json │ ├── el.json │ ├── en-gb.json │ ├── en.json │ ├── eo.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── ff.json │ ├── fi.json │ ├── fo.json │ ├── fr.json │ ├── fy.json │ ├── gl.json │ ├── got.json │ ├── gu.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── hrx.json │ ├── hsb.json │ ├── hu.json │ ├── hy.json │ ├── ia.json │ ├── id.json │ ├── is.json │ ├── it.json │ ├── ja.json │ ├── kab.json │ ├── km.json │ ├── kn.json │ ├── ko.json │ ├── krc.json │ ├── ksh.json │ ├── ku-latn.json │ ├── lb.json │ ├── lki.json │ ├── lrc.json │ ├── lt.json │ ├── lv.json │ ├── map-bms.json │ ├── mg.json │ ├── mk.json │ ├── ml.json │ ├── mn.json │ ├── mnw.json │ ├── mr.json │ ├── ms.json │ ├── my.json │ ├── nah.json │ ├── nap.json │ ├── nb.json │ ├── nds.json │ ├── ne.json │ ├── nl.json │ ├── nn.json │ ├── oc.json │ ├── olo.json │ ├── os.json │ ├── pa.json │ ├── pl.json │ ├── pms.json │ ├── ps.json │ ├── pt-br.json │ ├── pt.json │ ├── qqq.json │ ├── ro.json │ ├── ru.json │ ├── sc.json │ ├── sco.json │ ├── sd.json │ ├── sh-latn.json │ ├── shn.json │ ├── sk.json │ ├── skr-arab.json │ ├── sl.json │ ├── sms.json │ ├── sq.json │ ├── sr-ec.json │ ├── sr-el.json │ ├── sro.json │ ├── sv.json │ ├── sw.json │ ├── ta.json │ ├── tcy.json │ ├── te.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vec.json │ ├── vi.json │ ├── zh-hans.json │ └── zh-hant.json ├── node │ ├── README.md │ ├── db │ │ ├── API.ts │ │ ├── AuthorManager.ts │ │ ├── DB.ts │ │ ├── GroupManager.ts │ │ ├── Pad.ts │ │ ├── PadManager.ts │ │ ├── ReadOnlyManager.ts │ │ ├── SecurityManager.ts │ │ ├── SessionManager.ts │ │ └── SessionStore.ts │ ├── eejs │ │ └── index.ts │ ├── handler │ │ ├── APIHandler.ts │ │ ├── APIKeyHandler.ts │ │ ├── ExportHandler.ts │ │ ├── ImportHandler.ts │ │ ├── PadMessageHandler.ts │ │ ├── RestAPI.ts │ │ └── SocketIORouter.ts │ ├── hooks │ │ ├── express.ts │ │ ├── express │ │ │ ├── admin.ts │ │ │ ├── adminplugins.ts │ │ │ ├── adminsettings.ts │ │ │ ├── apicalls.ts │ │ │ ├── errorhandling.ts │ │ │ ├── importexport.ts │ │ │ ├── openapi.ts │ │ │ ├── padurlsanitize.ts │ │ │ ├── pwa.ts │ │ │ ├── socketio.ts │ │ │ ├── specialpages.ts │ │ │ ├── static.ts │ │ │ ├── tokenTransfer.ts │ │ │ └── webaccess.ts │ │ └── i18n.ts │ ├── metrics.ts │ ├── padaccess.ts │ ├── prometheus.ts │ ├── security │ │ ├── OAuth2Provider.ts │ │ ├── OAuth2User.ts │ │ ├── OIDCAdapter.ts │ │ ├── SecretRotator.ts │ │ └── crypto.ts │ ├── server.ts │ ├── stats.ts │ ├── types │ │ ├── APIHandlerType.ts │ │ ├── ArgsExpressType.ts │ │ ├── AsyncQueueTask.ts │ │ ├── ChangeSet.ts │ │ ├── DeriveModel.ts │ │ ├── ErrorCaused.ts │ │ ├── I18nPluginDefs.ts │ │ ├── LegacyParams.ts │ │ ├── MapType.ts │ │ ├── PackageInfo.ts │ │ ├── PadSearchQuery.ts │ │ ├── PadType.ts │ │ ├── PartType.ts │ │ ├── Plugin.ts │ │ ├── PromiseWithStd.ts │ │ ├── QueryType.ts │ │ ├── Revision.ts │ │ ├── RunCMDOptions.ts │ │ ├── SecretRotatorType.ts │ │ ├── SettingsUser.ts │ │ ├── SocketAcknowledge.ts │ │ ├── SocketClientRequest.ts │ │ ├── SocketModule.ts │ │ ├── SwaggerUIResource.ts │ │ ├── UserSettingsObject.ts │ │ └── WebAccessTypes.ts │ └── utils │ │ ├── Abiword.ts │ │ ├── AbsolutePaths.ts │ │ ├── Cleanup.ts │ │ ├── Cli.ts │ │ ├── ExportEtherpad.ts │ │ ├── ExportHelper.ts │ │ ├── ExportHtml.ts │ │ ├── ExportTxt.ts │ │ ├── ImportEtherpad.ts │ │ ├── ImportHtml.ts │ │ ├── LibreOffice.ts │ │ ├── Minify.ts │ │ ├── MinifyWorker.ts │ │ ├── NodeVersion.ts │ │ ├── Settings.ts │ │ ├── SettingsTree.ts │ │ ├── Stream.ts │ │ ├── UpdateCheck.ts │ │ ├── checkValidRev.ts │ │ ├── customError.ts │ │ ├── padDiff.ts │ │ ├── path_exists.ts │ │ ├── promises.ts │ │ ├── randomstring.ts │ │ ├── run_cmd.ts │ │ ├── sanitizePathname.ts │ │ ├── tar.json │ │ └── toolbar.ts ├── package.json ├── playwright.config.ts ├── static │ ├── css │ │ ├── admin.css │ │ ├── iframe_editor.css │ │ ├── lists_and_indents.css │ │ ├── pad.css │ │ ├── pad │ │ │ ├── chat.css │ │ │ ├── fonts.css │ │ │ ├── form.css │ │ │ ├── gritter.css │ │ │ ├── icons.css │ │ │ ├── layout.css │ │ │ ├── loadingbox.css │ │ │ ├── normalize.css │ │ │ ├── popup.css │ │ │ ├── popup_connectivity.css │ │ │ ├── popup_import_export.css │ │ │ ├── popup_users.css │ │ │ └── toolbar.css │ │ └── timeslider.css │ ├── empty.html │ ├── favicon.ico │ ├── font │ │ ├── Aleygreya-ExtraBold.woff │ │ ├── Aleygreya-ExtraBold.woff2 │ │ ├── Aleygreya-Medium.woff │ │ ├── Aleygreya-Medium.woff2 │ │ ├── Montserrat-Light.otf │ │ ├── Montserrat-Regular.otf │ │ ├── Quicksand-Bold.ttf │ │ ├── Quicksand-Medium.ttf │ │ ├── Quicksand-Regular.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── RobotoMono-Bold.ttf │ │ ├── RobotoMono-Regular.ttf │ │ ├── config.json │ │ ├── fontawesome-etherpad.eot │ │ ├── fontawesome-etherpad.svg │ │ ├── fontawesome-etherpad.ttf │ │ ├── fontawesome-etherpad.woff │ │ ├── fontawesome-etherpad.woff2 │ │ └── opendyslexic.otf │ ├── img │ │ └── brand.svg │ ├── js │ │ ├── AttributeManager.ts │ │ ├── AttributeMap.ts │ │ ├── AttributePool.ts │ │ ├── Builder.ts │ │ ├── Changeset.ts │ │ ├── ChangesetUtils.ts │ │ ├── ChatMessage.ts │ │ ├── MergingOpAssembler.ts │ │ ├── Op.ts │ │ ├── OpAssembler.ts │ │ ├── OpIter.ts │ │ ├── SmartOpAssembler.ts │ │ ├── StringAssembler.ts │ │ ├── StringIterator.ts │ │ ├── TextLinesMutator.ts │ │ ├── ace.ts │ │ ├── ace2_common.ts │ │ ├── ace2_inner.ts │ │ ├── attributes.ts │ │ ├── basic_error_handler.ts │ │ ├── broadcast.ts │ │ ├── broadcast_revisions.ts │ │ ├── broadcast_slider.ts │ │ ├── caretPosition.ts │ │ ├── changesettracker.ts │ │ ├── chat.ts │ │ ├── collab_client.ts │ │ ├── colorutils.ts │ │ ├── contentcollector.ts │ │ ├── cssmanager.ts │ │ ├── domline.ts │ │ ├── index.ts │ │ ├── l10n.ts │ │ ├── linestylefilter.ts │ │ ├── pad.ts │ │ ├── pad_automatic_reconnect.ts │ │ ├── pad_connectionstatus.ts │ │ ├── pad_cookie.ts │ │ ├── pad_editbar.ts │ │ ├── pad_editor.ts │ │ ├── pad_impexp.ts │ │ ├── pad_modals.ts │ │ ├── pad_savedrevs.ts │ │ ├── pad_userlist.ts │ │ ├── pad_utils.ts │ │ ├── pluginfw │ │ │ ├── LinkInstaller.ts │ │ │ ├── client_plugins.ts │ │ │ ├── hooks.ts │ │ │ ├── installer.ts │ │ │ ├── plugin_defs.ts │ │ │ ├── plugins.ts │ │ │ ├── shared.ts │ │ │ └── tsort.ts │ │ ├── rjquery.ts │ │ ├── scroll.ts │ │ ├── security.ts │ │ ├── skin_variants.ts │ │ ├── skiplist.ts │ │ ├── socketio.ts │ │ ├── timeslider.ts │ │ ├── types │ │ │ ├── AText.ts │ │ │ ├── Attribute.ts │ │ │ ├── ChangeSet.ts │ │ │ ├── ChangeSetBuilder.ts │ │ │ ├── PadRevision.ts │ │ │ ├── RepModel.ts │ │ │ └── SocketIOMessage.ts │ │ ├── underscore.ts │ │ ├── undomodule.ts │ │ ├── vendors │ │ │ ├── browser.ts │ │ │ ├── farbtastic.ts │ │ │ ├── gritter.ts │ │ │ ├── html10n.ts │ │ │ ├── jquery.ts │ │ │ └── nice-select.ts │ │ └── welcome.ts │ ├── robots.txt │ ├── skins │ │ ├── colibris │ │ │ ├── images │ │ │ │ ├── Designlayout.png │ │ │ │ ├── fond.jpg │ │ │ │ └── screenshot.png │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── pad.css │ │ │ ├── pad.js │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── buttons.css │ │ │ │ │ ├── chat.css │ │ │ │ │ ├── form.css │ │ │ │ │ ├── gritter.css │ │ │ │ │ ├── import-export.css │ │ │ │ │ ├── popup.css │ │ │ │ │ ├── scrollbars.css │ │ │ │ │ ├── sidediv.css │ │ │ │ │ ├── table-of-content.css │ │ │ │ │ ├── toolbar.css │ │ │ │ │ └── users.css │ │ │ │ ├── general.css │ │ │ │ ├── layout.css │ │ │ │ ├── pad-editor.css │ │ │ │ ├── pad-variants.css │ │ │ │ └── plugins │ │ │ │ │ ├── author_hover.css │ │ │ │ │ ├── brightcolorpicker.css │ │ │ │ │ ├── comments.css │ │ │ │ │ ├── font_color.css │ │ │ │ │ ├── set_title_on_pad.css │ │ │ │ │ └── tables2.css │ │ │ ├── timeslider.css │ │ │ └── timeslider.js │ │ └── no-skin │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── pad.css │ │ │ ├── pad.js │ │ │ ├── timeslider.css │ │ │ └── timeslider.js │ └── tests.html ├── templates │ ├── export_html.html │ ├── index.html │ ├── indexBootstrap.js │ ├── javascript.html │ ├── pad.html │ ├── padBootstrap.js │ ├── padViteBootstrap.js │ ├── timeSliderBootstrap.js │ └── timeslider.html ├── tests │ ├── README.md │ ├── backend-new │ │ ├── easysync-helper.ts │ │ └── specs │ │ │ ├── AttributeMap.ts │ │ │ ├── StringIteratorTest.ts │ │ │ ├── admin_utils.ts │ │ │ ├── attributes.ts │ │ │ ├── easysync-assembler.ts │ │ │ ├── easysync-compose.ts │ │ │ ├── easysync-inverseRandom.ts │ │ │ ├── easysync-mutations.ts │ │ │ ├── easysync-other.test.ts │ │ │ ├── easysync-subAttribution.ts │ │ │ ├── pad_utils.ts │ │ │ ├── path_exists.ts │ │ │ ├── promises.ts │ │ │ ├── sanitizePathname.ts │ │ │ └── skiplist.ts │ ├── backend │ │ ├── common.ts │ │ ├── fuzzImportTest.ts │ │ └── specs │ │ │ ├── ExportEtherpad.ts │ │ │ ├── ImportEtherpad.ts │ │ │ ├── Pad.ts │ │ │ ├── SecretRotator.ts │ │ │ ├── SessionStore.ts │ │ │ ├── Stream.ts │ │ │ ├── api │ │ │ ├── api.ts │ │ │ ├── characterEncoding.ts │ │ │ ├── chat.ts │ │ │ ├── emojis.html │ │ │ ├── fuzzImportTest.ts │ │ │ ├── image.png │ │ │ ├── importexport.ts │ │ │ ├── importexportGetPost.ts │ │ │ ├── instance.ts │ │ │ ├── pad.ts │ │ │ ├── restoreRevision.ts │ │ │ ├── sessionsAndGroups.ts │ │ │ ├── test.doc │ │ │ ├── test.docx │ │ │ ├── test.etherpad │ │ │ ├── test.odt │ │ │ ├── test.pdf │ │ │ └── test.txt │ │ │ ├── chat.ts │ │ │ ├── contentcollector.ts │ │ │ ├── crypto.ts │ │ │ ├── export.ts │ │ │ ├── favicon-test-custom.png │ │ │ ├── favicon-test-skin.png │ │ │ ├── favicon.ts │ │ │ ├── health.ts │ │ │ ├── hooks.ts │ │ │ ├── lowerCasePadIds.ts │ │ │ ├── messages.ts │ │ │ ├── pads-with-spaces.ts │ │ │ ├── regression-db.ts │ │ │ ├── settings.json │ │ │ ├── settings.ts │ │ │ ├── socketio.ts │ │ │ ├── specialpages.ts │ │ │ └── webaccess.ts │ ├── container │ │ ├── loadSettings.js │ │ └── specs │ │ │ └── api │ │ │ └── pad.js │ ├── frontend-new │ │ ├── admin-spec │ │ │ ├── adminsettings.spec.ts │ │ │ ├── admintroubleshooting.spec.ts │ │ │ └── adminupdateplugins.spec.ts │ │ ├── helper │ │ │ ├── adminhelper.ts │ │ │ ├── padHelper.ts │ │ │ ├── settingsHelper.ts │ │ │ └── timeslider.ts │ │ └── specs │ │ │ ├── alphabet.spec.ts │ │ │ ├── bold.spec.ts │ │ │ ├── change_user_color.spec.ts │ │ │ ├── change_user_name.spec.ts │ │ │ ├── chat.spec.ts │ │ │ ├── clear_authorship_color.spec.ts │ │ │ ├── collab_client.spec.ts │ │ │ ├── delete.spec.ts │ │ │ ├── editbar.spec.ts │ │ │ ├── embed_value.spec.ts │ │ │ ├── enter.spec.ts │ │ │ ├── font_type.spec.ts │ │ │ ├── indentation.spec.ts │ │ │ ├── inner_height.spec.ts │ │ │ ├── italic.spec.ts │ │ │ ├── language.spec.ts │ │ │ ├── ordered_list.spec.ts │ │ │ ├── redo.spec.ts │ │ │ ├── strikethrough.spec.ts │ │ │ ├── timeslider.spec.ts │ │ │ ├── timeslider_follow.spec.ts │ │ │ ├── undo.spec.ts │ │ │ ├── unordered_list.spec.ts │ │ │ └── urls_become_clickable.spec.ts │ ├── frontend │ │ ├── cypress │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── cypress.config.js │ │ │ └── integration │ │ │ │ └── test.js │ │ ├── easysync-helper.js │ │ ├── helper.js │ │ ├── helper │ │ │ ├── methods.ts │ │ │ ├── multipleUsers.ts │ │ │ └── ui.ts │ │ ├── index.html │ │ ├── runner.css │ │ ├── runner.js │ │ ├── specs │ │ │ ├── authorship_of_editions.js │ │ │ ├── chat_hooks.js │ │ │ ├── chat_load_messages.js │ │ │ ├── drag_and_drop.js │ │ │ ├── easysync-follow.js │ │ │ ├── helper.js │ │ │ ├── importexport.js │ │ │ ├── importindents.js │ │ │ ├── multiple_authors_clear_authorship_colors.js │ │ │ ├── pad_modal.js │ │ │ ├── responsiveness.js │ │ │ ├── scrollTo.js │ │ │ ├── select_formatting_buttons.js │ │ │ ├── timeslider_labels.js │ │ │ ├── timeslider_numeric_padID.js │ │ │ ├── timeslider_revisions.js │ │ │ └── xxauto_reconnect.js │ │ └── travis │ │ │ ├── .gitignore │ │ │ ├── adminrunner.sh │ │ │ ├── remote_runner.js │ │ │ ├── runner.sh │ │ │ ├── runnerBackend.sh │ │ │ └── runnerLoadTest.sh │ ├── ratelimit │ │ ├── Dockerfile.anotherip │ │ ├── Dockerfile.nginx │ │ ├── nginx.conf │ │ ├── send_changesets.js │ │ └── testlimits.sh │ └── settings.json ├── tsconfig.json ├── vitest.config.ts └── web.config ├── start.bat ├── tests ├── ui ├── .gitignore ├── consent.html ├── login.html ├── package.json ├── pad.html ├── src │ ├── consent.ts │ ├── main.ts │ ├── style.css │ ├── typescript.svg │ └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts └── var └── .gitignore /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.env.default -------------------------------------------------------------------------------- /.env.dev.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.env.dev.default -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/plugin-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/ISSUE_TEMPLATE/plugin-request-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/security-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/ISSUE_TEMPLATE/security-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/ISSUE_TEMPLATE/security.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backend-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/backend-tests.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/build-and-deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/frontend-admin-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/frontend-admin-tests.yml -------------------------------------------------------------------------------- /.github/workflows/frontend-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/frontend-tests.yml -------------------------------------------------------------------------------- /.github/workflows/handleRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/handleRelease.yml -------------------------------------------------------------------------------- /.github/workflows/load-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/load-test.yml -------------------------------------------------------------------------------- /.github/workflows/perform-type-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/perform-type-check.yml -------------------------------------------------------------------------------- /.github/workflows/rate-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/rate-limit.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/releaseEtherpad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/releaseEtherpad.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade-from-latest-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.github/workflows/upgrade-from-latest-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.gitignore -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/SECURITY.md -------------------------------------------------------------------------------- /admin/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/.eslintrc.cjs -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/.gitignore -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/README.md -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/index.html -------------------------------------------------------------------------------- /admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/package.json -------------------------------------------------------------------------------- /admin/public/Karla-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-Bold.ttf -------------------------------------------------------------------------------- /admin/public/Karla-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-BoldItalic.ttf -------------------------------------------------------------------------------- /admin/public/Karla-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-ExtraBold.ttf -------------------------------------------------------------------------------- /admin/public/Karla-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /admin/public/Karla-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-ExtraLight.ttf -------------------------------------------------------------------------------- /admin/public/Karla-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /admin/public/Karla-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-Italic.ttf -------------------------------------------------------------------------------- /admin/public/Karla-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-Light.ttf -------------------------------------------------------------------------------- /admin/public/Karla-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-LightItalic.ttf -------------------------------------------------------------------------------- /admin/public/Karla-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-Medium.ttf -------------------------------------------------------------------------------- /admin/public/Karla-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-MediumItalic.ttf -------------------------------------------------------------------------------- /admin/public/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-Regular.ttf -------------------------------------------------------------------------------- /admin/public/Karla-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-SemiBold.ttf -------------------------------------------------------------------------------- /admin/public/Karla-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/Karla-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /admin/public/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/brand.svg -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/ar.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/bn.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/ca.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/cs.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/cy.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/da.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/de.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/diq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/diq.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/dsb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/dsb.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/el.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/en.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/eu.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/ff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/ff.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/fi.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/fr.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/gl.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/he.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/hsb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/hsb.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/hu.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/ia.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/it.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/kn.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/ko.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/krc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/krc.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/lb.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/lt.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/mk.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/my.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/nb.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/nl.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/oc.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/pms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/pms.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/pt-br.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/pt.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/qqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/qqq.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/ru.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/sc.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/sdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/sdc.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/sk.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/skr-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/skr-arab.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/sl.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/smn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/smn.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/sms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/sms.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/sq.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/sv.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/sw.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/th.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/tl.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/tr.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/uk.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/zh-hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/zh-hans.json -------------------------------------------------------------------------------- /admin/public/ep_admin_pads/zh-hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/ep_admin_pads/zh-hant.json -------------------------------------------------------------------------------- /admin/public/fond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/public/fond.jpg -------------------------------------------------------------------------------- /admin/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/App.tsx -------------------------------------------------------------------------------- /admin/src/components/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/components/IconButton.tsx -------------------------------------------------------------------------------- /admin/src/components/SearchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/components/SearchField.tsx -------------------------------------------------------------------------------- /admin/src/components/ShoutType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/components/ShoutType.ts -------------------------------------------------------------------------------- /admin/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/index.css -------------------------------------------------------------------------------- /admin/src/localization/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/localization/i18n.ts -------------------------------------------------------------------------------- /admin/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/main.tsx -------------------------------------------------------------------------------- /admin/src/pages/HelpPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/pages/HelpPage.tsx -------------------------------------------------------------------------------- /admin/src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /admin/src/pages/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/pages/LoginScreen.tsx -------------------------------------------------------------------------------- /admin/src/pages/PadPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/pages/PadPage.tsx -------------------------------------------------------------------------------- /admin/src/pages/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/pages/Plugin.ts -------------------------------------------------------------------------------- /admin/src/pages/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/pages/SettingsPage.tsx -------------------------------------------------------------------------------- /admin/src/pages/ShoutPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/pages/ShoutPage.tsx -------------------------------------------------------------------------------- /admin/src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/store/store.ts -------------------------------------------------------------------------------- /admin/src/utils/AnimationFrameHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/utils/AnimationFrameHook.ts -------------------------------------------------------------------------------- /admin/src/utils/LoadingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/utils/LoadingScreen.tsx -------------------------------------------------------------------------------- /admin/src/utils/PadSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/utils/PadSearch.ts -------------------------------------------------------------------------------- /admin/src/utils/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/utils/Toast.tsx -------------------------------------------------------------------------------- /admin/src/utils/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/utils/brand.svg -------------------------------------------------------------------------------- /admin/src/utils/sorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/utils/sorting.ts -------------------------------------------------------------------------------- /admin/src/utils/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/utils/useDebounce.ts -------------------------------------------------------------------------------- /admin/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/utils/utils.ts -------------------------------------------------------------------------------- /admin/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/src/vite-env.d.ts -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/tsconfig.node.json -------------------------------------------------------------------------------- /admin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/admin/vite.config.ts -------------------------------------------------------------------------------- /bin/buildDebian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/buildDebian.sh -------------------------------------------------------------------------------- /bin/buildForWindows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/buildForWindows.sh -------------------------------------------------------------------------------- /bin/checkAllPads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/checkAllPads.ts -------------------------------------------------------------------------------- /bin/checkPad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/checkPad.ts -------------------------------------------------------------------------------- /bin/cleanRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/cleanRun.sh -------------------------------------------------------------------------------- /bin/commonPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/commonPlugins.ts -------------------------------------------------------------------------------- /bin/convertSettings.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/convertSettings.json.template -------------------------------------------------------------------------------- /bin/createRelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/createRelease.sh -------------------------------------------------------------------------------- /bin/createUserSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/createUserSession.ts -------------------------------------------------------------------------------- /bin/deb-src/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/deb-src/DEBIAN/control -------------------------------------------------------------------------------- /bin/deb-src/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/deb-src/DEBIAN/postinst -------------------------------------------------------------------------------- /bin/deb-src/DEBIAN/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/deb-src/DEBIAN/preinst -------------------------------------------------------------------------------- /bin/deb-src/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/deb-src/DEBIAN/prerm -------------------------------------------------------------------------------- /bin/deb-src/sysroot/etc/init/etherpad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/deb-src/sysroot/etc/init/etherpad.conf -------------------------------------------------------------------------------- /bin/debugRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/debugRun.sh -------------------------------------------------------------------------------- /bin/deleteAllGroupSessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/deleteAllGroupSessions.ts -------------------------------------------------------------------------------- /bin/deletePad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/deletePad.ts -------------------------------------------------------------------------------- /bin/extractPadData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/extractPadData.ts -------------------------------------------------------------------------------- /bin/fastRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/fastRun.sh -------------------------------------------------------------------------------- /bin/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/functions.sh -------------------------------------------------------------------------------- /bin/generateReleaseNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/generateReleaseNotes.ts -------------------------------------------------------------------------------- /bin/importSqlFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/importSqlFile.ts -------------------------------------------------------------------------------- /bin/installDeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/installDeps.sh -------------------------------------------------------------------------------- /bin/installLocalPlugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/installLocalPlugins.sh -------------------------------------------------------------------------------- /bin/installOnWindows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/installOnWindows.bat -------------------------------------------------------------------------------- /bin/make_docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/make_docs.ts -------------------------------------------------------------------------------- /bin/migrateDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/migrateDB.ts -------------------------------------------------------------------------------- /bin/migrateDirtyDBtoRealDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/migrateDirtyDBtoRealDB.ts -------------------------------------------------------------------------------- /bin/nsis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/nsis/README.md -------------------------------------------------------------------------------- /bin/nsis/brand.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/nsis/brand.ico -------------------------------------------------------------------------------- /bin/nsis/etherpad.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/nsis/etherpad.nsi -------------------------------------------------------------------------------- /bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/package.json -------------------------------------------------------------------------------- /bin/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins.ts -------------------------------------------------------------------------------- /bin/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/README.md -------------------------------------------------------------------------------- /bin/plugins/checkPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/checkPlugin.ts -------------------------------------------------------------------------------- /bin/plugins/getCorePlugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/getCorePlugins.sh -------------------------------------------------------------------------------- /bin/plugins/lib/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/CONTRIBUTING.md -------------------------------------------------------------------------------- /bin/plugins/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/LICENSE -------------------------------------------------------------------------------- /bin/plugins/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/README.md -------------------------------------------------------------------------------- /bin/plugins/lib/backend-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/backend-tests.yml -------------------------------------------------------------------------------- /bin/plugins/lib/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/dependabot.yml -------------------------------------------------------------------------------- /bin/plugins/lib/eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/eslintrc.cjs -------------------------------------------------------------------------------- /bin/plugins/lib/frontend-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/frontend-tests.yml -------------------------------------------------------------------------------- /bin/plugins/lib/gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /bin/plugins/lib/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/npmpublish.yml -------------------------------------------------------------------------------- /bin/plugins/lib/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/lib/test-and-release.yml -------------------------------------------------------------------------------- /bin/plugins/listOfficialPlugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/listOfficialPlugins -------------------------------------------------------------------------------- /bin/plugins/reTestAllPlugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/reTestAllPlugins.sh -------------------------------------------------------------------------------- /bin/plugins/stalePlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/stalePlugins.ts -------------------------------------------------------------------------------- /bin/plugins/updateAllPluginsScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/updateAllPluginsScript.sh -------------------------------------------------------------------------------- /bin/plugins/updateCorePlugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/plugins/updateCorePlugins.sh -------------------------------------------------------------------------------- /bin/push-after-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/push-after-release.sh -------------------------------------------------------------------------------- /bin/rebuildPad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/rebuildPad.ts -------------------------------------------------------------------------------- /bin/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/release.ts -------------------------------------------------------------------------------- /bin/repairPad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/repairPad.ts -------------------------------------------------------------------------------- /bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/run.sh -------------------------------------------------------------------------------- /bin/safeRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/safeRun.sh -------------------------------------------------------------------------------- /bin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/tsconfig.json -------------------------------------------------------------------------------- /bin/updatePlugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/bin/updatePlugins.sh -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | .vitepress/cache 2 | dist 3 | -------------------------------------------------------------------------------- /doc/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/.vitepress/config.mts -------------------------------------------------------------------------------- /doc/.vitepress/theme/components/SvgImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/.vitepress/theme/components/SvgImage.vue -------------------------------------------------------------------------------- /doc/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /doc/.vitepress/theme/styles/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/.vitepress/theme/styles/vars.css -------------------------------------------------------------------------------- /doc/api/api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/api.adoc -------------------------------------------------------------------------------- /doc/api/changeset_library.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/changeset_library.adoc -------------------------------------------------------------------------------- /doc/api/changeset_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/changeset_library.md -------------------------------------------------------------------------------- /doc/api/editbar.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/editbar.adoc -------------------------------------------------------------------------------- /doc/api/editbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/editbar.md -------------------------------------------------------------------------------- /doc/api/editorInfo.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/editorInfo.adoc -------------------------------------------------------------------------------- /doc/api/editorInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/editorInfo.md -------------------------------------------------------------------------------- /doc/api/embed_parameters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/embed_parameters.adoc -------------------------------------------------------------------------------- /doc/api/embed_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/embed_parameters.md -------------------------------------------------------------------------------- /doc/api/hooks_client-side.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/hooks_client-side.adoc -------------------------------------------------------------------------------- /doc/api/hooks_client-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/hooks_client-side.md -------------------------------------------------------------------------------- /doc/api/hooks_overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/hooks_overview.adoc -------------------------------------------------------------------------------- /doc/api/hooks_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/hooks_overview.md -------------------------------------------------------------------------------- /doc/api/hooks_server-side.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/hooks_server-side.adoc -------------------------------------------------------------------------------- /doc/api/hooks_server-side.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/hooks_server-side.md -------------------------------------------------------------------------------- /doc/api/http_api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/http_api.adoc -------------------------------------------------------------------------------- /doc/api/http_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/http_api.md -------------------------------------------------------------------------------- /doc/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/index.md -------------------------------------------------------------------------------- /doc/api/pluginfw.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/pluginfw.adoc -------------------------------------------------------------------------------- /doc/api/pluginfw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/pluginfw.md -------------------------------------------------------------------------------- /doc/api/toolbar.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/toolbar.adoc -------------------------------------------------------------------------------- /doc/api/toolbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/api/toolbar.md -------------------------------------------------------------------------------- /doc/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/assets/style.css -------------------------------------------------------------------------------- /doc/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/cli.md -------------------------------------------------------------------------------- /doc/cookies.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/cookies.adoc -------------------------------------------------------------------------------- /doc/cookies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/cookies.md -------------------------------------------------------------------------------- /doc/database.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/database.adoc -------------------------------------------------------------------------------- /doc/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/demo.md -------------------------------------------------------------------------------- /doc/docker.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/docker.adoc -------------------------------------------------------------------------------- /doc/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/docker.md -------------------------------------------------------------------------------- /doc/documentation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/documentation.adoc -------------------------------------------------------------------------------- /doc/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/documentation.md -------------------------------------------------------------------------------- /doc/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/index.adoc -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/localization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/localization.adoc -------------------------------------------------------------------------------- /doc/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/localization.md -------------------------------------------------------------------------------- /doc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/package.json -------------------------------------------------------------------------------- /doc/plugins.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/plugins.adoc -------------------------------------------------------------------------------- /doc/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/plugins.md -------------------------------------------------------------------------------- /doc/public/easysync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/easysync/README.md -------------------------------------------------------------------------------- /doc/public/easysync/easysync-full-description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/easysync/easysync-full-description.pdf -------------------------------------------------------------------------------- /doc/public/easysync/easysync-full-description.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/easysync/easysync-full-description.tex -------------------------------------------------------------------------------- /doc/public/easysync/easysync-notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/easysync/easysync-notes.pdf -------------------------------------------------------------------------------- /doc/public/easysync/easysync-notes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/easysync/easysync-notes.tex -------------------------------------------------------------------------------- /doc/public/easysync/easysync-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/easysync/easysync-notes.txt -------------------------------------------------------------------------------- /doc/public/etherpad_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/etherpad_basic.png -------------------------------------------------------------------------------- /doc/public/etherpad_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/etherpad_demo.gif -------------------------------------------------------------------------------- /doc/public/etherpad_full_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/etherpad_full_features.png -------------------------------------------------------------------------------- /doc/public/etherpad_skin_variants.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/etherpad_skin_variants.gif -------------------------------------------------------------------------------- /doc/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/public/favicon.ico -------------------------------------------------------------------------------- /doc/skins.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/skins.adoc -------------------------------------------------------------------------------- /doc/skins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/skins.md -------------------------------------------------------------------------------- /doc/stats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/stats.adoc -------------------------------------------------------------------------------- /doc/stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/doc/stats.md -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /local_plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/local_plugins/.gitignore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /settings.json.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/settings.json.docker -------------------------------------------------------------------------------- /settings.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/settings.json.template -------------------------------------------------------------------------------- /src/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/.eslintrc.cjs -------------------------------------------------------------------------------- /src/.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers=false 2 | -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/README.md -------------------------------------------------------------------------------- /src/ep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/ep.json -------------------------------------------------------------------------------- /src/etherpad_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/etherpad_icon.svg -------------------------------------------------------------------------------- /src/locales/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/af.json -------------------------------------------------------------------------------- /src/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ar.json -------------------------------------------------------------------------------- /src/locales/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ast.json -------------------------------------------------------------------------------- /src/locales/awa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/awa.json -------------------------------------------------------------------------------- /src/locales/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/az.json -------------------------------------------------------------------------------- /src/locales/azb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/azb.json -------------------------------------------------------------------------------- /src/locales/bcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/bcc.json -------------------------------------------------------------------------------- /src/locales/be-tarask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/be-tarask.json -------------------------------------------------------------------------------- /src/locales/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/bg.json -------------------------------------------------------------------------------- /src/locales/bgn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/bgn.json -------------------------------------------------------------------------------- /src/locales/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/bn.json -------------------------------------------------------------------------------- /src/locales/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/br.json -------------------------------------------------------------------------------- /src/locales/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/bs.json -------------------------------------------------------------------------------- /src/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ca.json -------------------------------------------------------------------------------- /src/locales/ce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ce.json -------------------------------------------------------------------------------- /src/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/cs.json -------------------------------------------------------------------------------- /src/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/da.json -------------------------------------------------------------------------------- /src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/de.json -------------------------------------------------------------------------------- /src/locales/diq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/diq.json -------------------------------------------------------------------------------- /src/locales/dsb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/dsb.json -------------------------------------------------------------------------------- /src/locales/dty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/dty.json -------------------------------------------------------------------------------- /src/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/el.json -------------------------------------------------------------------------------- /src/locales/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/en-gb.json -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/eo.json -------------------------------------------------------------------------------- /src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/es.json -------------------------------------------------------------------------------- /src/locales/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/et.json -------------------------------------------------------------------------------- /src/locales/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/eu.json -------------------------------------------------------------------------------- /src/locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/fa.json -------------------------------------------------------------------------------- /src/locales/ff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ff.json -------------------------------------------------------------------------------- /src/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/fi.json -------------------------------------------------------------------------------- /src/locales/fo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/fo.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/locales/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/fy.json -------------------------------------------------------------------------------- /src/locales/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/gl.json -------------------------------------------------------------------------------- /src/locales/got.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/got.json -------------------------------------------------------------------------------- /src/locales/gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/gu.json -------------------------------------------------------------------------------- /src/locales/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/he.json -------------------------------------------------------------------------------- /src/locales/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/hi.json -------------------------------------------------------------------------------- /src/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/hr.json -------------------------------------------------------------------------------- /src/locales/hrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/hrx.json -------------------------------------------------------------------------------- /src/locales/hsb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/hsb.json -------------------------------------------------------------------------------- /src/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/hu.json -------------------------------------------------------------------------------- /src/locales/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/hy.json -------------------------------------------------------------------------------- /src/locales/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ia.json -------------------------------------------------------------------------------- /src/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/id.json -------------------------------------------------------------------------------- /src/locales/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/is.json -------------------------------------------------------------------------------- /src/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/it.json -------------------------------------------------------------------------------- /src/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ja.json -------------------------------------------------------------------------------- /src/locales/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/kab.json -------------------------------------------------------------------------------- /src/locales/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/km.json -------------------------------------------------------------------------------- /src/locales/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/kn.json -------------------------------------------------------------------------------- /src/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ko.json -------------------------------------------------------------------------------- /src/locales/krc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/krc.json -------------------------------------------------------------------------------- /src/locales/ksh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ksh.json -------------------------------------------------------------------------------- /src/locales/ku-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ku-latn.json -------------------------------------------------------------------------------- /src/locales/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/lb.json -------------------------------------------------------------------------------- /src/locales/lki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/lki.json -------------------------------------------------------------------------------- /src/locales/lrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/lrc.json -------------------------------------------------------------------------------- /src/locales/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/lt.json -------------------------------------------------------------------------------- /src/locales/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/lv.json -------------------------------------------------------------------------------- /src/locales/map-bms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/map-bms.json -------------------------------------------------------------------------------- /src/locales/mg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/mg.json -------------------------------------------------------------------------------- /src/locales/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/mk.json -------------------------------------------------------------------------------- /src/locales/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ml.json -------------------------------------------------------------------------------- /src/locales/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/mn.json -------------------------------------------------------------------------------- /src/locales/mnw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/mnw.json -------------------------------------------------------------------------------- /src/locales/mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/mr.json -------------------------------------------------------------------------------- /src/locales/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ms.json -------------------------------------------------------------------------------- /src/locales/my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/my.json -------------------------------------------------------------------------------- /src/locales/nah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/nah.json -------------------------------------------------------------------------------- /src/locales/nap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/nap.json -------------------------------------------------------------------------------- /src/locales/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/nb.json -------------------------------------------------------------------------------- /src/locales/nds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/nds.json -------------------------------------------------------------------------------- /src/locales/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ne.json -------------------------------------------------------------------------------- /src/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/nl.json -------------------------------------------------------------------------------- /src/locales/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/nn.json -------------------------------------------------------------------------------- /src/locales/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/oc.json -------------------------------------------------------------------------------- /src/locales/olo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/olo.json -------------------------------------------------------------------------------- /src/locales/os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/os.json -------------------------------------------------------------------------------- /src/locales/pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/pa.json -------------------------------------------------------------------------------- /src/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/pl.json -------------------------------------------------------------------------------- /src/locales/pms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/pms.json -------------------------------------------------------------------------------- /src/locales/ps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ps.json -------------------------------------------------------------------------------- /src/locales/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/pt-br.json -------------------------------------------------------------------------------- /src/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/pt.json -------------------------------------------------------------------------------- /src/locales/qqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/qqq.json -------------------------------------------------------------------------------- /src/locales/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ro.json -------------------------------------------------------------------------------- /src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ru.json -------------------------------------------------------------------------------- /src/locales/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sc.json -------------------------------------------------------------------------------- /src/locales/sco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sco.json -------------------------------------------------------------------------------- /src/locales/sd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sd.json -------------------------------------------------------------------------------- /src/locales/sh-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sh-latn.json -------------------------------------------------------------------------------- /src/locales/shn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/shn.json -------------------------------------------------------------------------------- /src/locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sk.json -------------------------------------------------------------------------------- /src/locales/skr-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/skr-arab.json -------------------------------------------------------------------------------- /src/locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sl.json -------------------------------------------------------------------------------- /src/locales/sms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sms.json -------------------------------------------------------------------------------- /src/locales/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sq.json -------------------------------------------------------------------------------- /src/locales/sr-ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sr-ec.json -------------------------------------------------------------------------------- /src/locales/sr-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sr-el.json -------------------------------------------------------------------------------- /src/locales/sro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sro.json -------------------------------------------------------------------------------- /src/locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sv.json -------------------------------------------------------------------------------- /src/locales/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/sw.json -------------------------------------------------------------------------------- /src/locales/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/ta.json -------------------------------------------------------------------------------- /src/locales/tcy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/tcy.json -------------------------------------------------------------------------------- /src/locales/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/te.json -------------------------------------------------------------------------------- /src/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/th.json -------------------------------------------------------------------------------- /src/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/tr.json -------------------------------------------------------------------------------- /src/locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/uk.json -------------------------------------------------------------------------------- /src/locales/vec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/vec.json -------------------------------------------------------------------------------- /src/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/vi.json -------------------------------------------------------------------------------- /src/locales/zh-hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/zh-hans.json -------------------------------------------------------------------------------- /src/locales/zh-hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/locales/zh-hant.json -------------------------------------------------------------------------------- /src/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/README.md -------------------------------------------------------------------------------- /src/node/db/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/API.ts -------------------------------------------------------------------------------- /src/node/db/AuthorManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/AuthorManager.ts -------------------------------------------------------------------------------- /src/node/db/DB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/DB.ts -------------------------------------------------------------------------------- /src/node/db/GroupManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/GroupManager.ts -------------------------------------------------------------------------------- /src/node/db/Pad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/Pad.ts -------------------------------------------------------------------------------- /src/node/db/PadManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/PadManager.ts -------------------------------------------------------------------------------- /src/node/db/ReadOnlyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/ReadOnlyManager.ts -------------------------------------------------------------------------------- /src/node/db/SecurityManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/SecurityManager.ts -------------------------------------------------------------------------------- /src/node/db/SessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/SessionManager.ts -------------------------------------------------------------------------------- /src/node/db/SessionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/db/SessionStore.ts -------------------------------------------------------------------------------- /src/node/eejs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/eejs/index.ts -------------------------------------------------------------------------------- /src/node/handler/APIHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/handler/APIHandler.ts -------------------------------------------------------------------------------- /src/node/handler/APIKeyHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/handler/APIKeyHandler.ts -------------------------------------------------------------------------------- /src/node/handler/ExportHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/handler/ExportHandler.ts -------------------------------------------------------------------------------- /src/node/handler/ImportHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/handler/ImportHandler.ts -------------------------------------------------------------------------------- /src/node/handler/PadMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/handler/PadMessageHandler.ts -------------------------------------------------------------------------------- /src/node/handler/RestAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/handler/RestAPI.ts -------------------------------------------------------------------------------- /src/node/handler/SocketIORouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/handler/SocketIORouter.ts -------------------------------------------------------------------------------- /src/node/hooks/express.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express.ts -------------------------------------------------------------------------------- /src/node/hooks/express/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/admin.ts -------------------------------------------------------------------------------- /src/node/hooks/express/adminplugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/adminplugins.ts -------------------------------------------------------------------------------- /src/node/hooks/express/adminsettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/adminsettings.ts -------------------------------------------------------------------------------- /src/node/hooks/express/apicalls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/apicalls.ts -------------------------------------------------------------------------------- /src/node/hooks/express/errorhandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/errorhandling.ts -------------------------------------------------------------------------------- /src/node/hooks/express/importexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/importexport.ts -------------------------------------------------------------------------------- /src/node/hooks/express/openapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/openapi.ts -------------------------------------------------------------------------------- /src/node/hooks/express/padurlsanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/padurlsanitize.ts -------------------------------------------------------------------------------- /src/node/hooks/express/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/pwa.ts -------------------------------------------------------------------------------- /src/node/hooks/express/socketio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/socketio.ts -------------------------------------------------------------------------------- /src/node/hooks/express/specialpages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/specialpages.ts -------------------------------------------------------------------------------- /src/node/hooks/express/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/static.ts -------------------------------------------------------------------------------- /src/node/hooks/express/tokenTransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/tokenTransfer.ts -------------------------------------------------------------------------------- /src/node/hooks/express/webaccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/express/webaccess.ts -------------------------------------------------------------------------------- /src/node/hooks/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/hooks/i18n.ts -------------------------------------------------------------------------------- /src/node/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/metrics.ts -------------------------------------------------------------------------------- /src/node/padaccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/padaccess.ts -------------------------------------------------------------------------------- /src/node/prometheus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/prometheus.ts -------------------------------------------------------------------------------- /src/node/security/OAuth2Provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/security/OAuth2Provider.ts -------------------------------------------------------------------------------- /src/node/security/OAuth2User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/security/OAuth2User.ts -------------------------------------------------------------------------------- /src/node/security/OIDCAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/security/OIDCAdapter.ts -------------------------------------------------------------------------------- /src/node/security/SecretRotator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/security/SecretRotator.ts -------------------------------------------------------------------------------- /src/node/security/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/security/crypto.ts -------------------------------------------------------------------------------- /src/node/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/server.ts -------------------------------------------------------------------------------- /src/node/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/stats.ts -------------------------------------------------------------------------------- /src/node/types/APIHandlerType.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/node/types/ArgsExpressType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/ArgsExpressType.ts -------------------------------------------------------------------------------- /src/node/types/AsyncQueueTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/AsyncQueueTask.ts -------------------------------------------------------------------------------- /src/node/types/ChangeSet.ts: -------------------------------------------------------------------------------- 1 | export type ChangeSet = { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/node/types/DeriveModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/DeriveModel.ts -------------------------------------------------------------------------------- /src/node/types/ErrorCaused.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/ErrorCaused.ts -------------------------------------------------------------------------------- /src/node/types/I18nPluginDefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/I18nPluginDefs.ts -------------------------------------------------------------------------------- /src/node/types/LegacyParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/LegacyParams.ts -------------------------------------------------------------------------------- /src/node/types/MapType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/MapType.ts -------------------------------------------------------------------------------- /src/node/types/PackageInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/PackageInfo.ts -------------------------------------------------------------------------------- /src/node/types/PadSearchQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/PadSearchQuery.ts -------------------------------------------------------------------------------- /src/node/types/PadType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/PadType.ts -------------------------------------------------------------------------------- /src/node/types/PartType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/PartType.ts -------------------------------------------------------------------------------- /src/node/types/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/Plugin.ts -------------------------------------------------------------------------------- /src/node/types/PromiseWithStd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/PromiseWithStd.ts -------------------------------------------------------------------------------- /src/node/types/QueryType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/QueryType.ts -------------------------------------------------------------------------------- /src/node/types/Revision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/Revision.ts -------------------------------------------------------------------------------- /src/node/types/RunCMDOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/RunCMDOptions.ts -------------------------------------------------------------------------------- /src/node/types/SecretRotatorType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/SecretRotatorType.ts -------------------------------------------------------------------------------- /src/node/types/SettingsUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/SettingsUser.ts -------------------------------------------------------------------------------- /src/node/types/SocketAcknowledge.ts: -------------------------------------------------------------------------------- 1 | export type SocketAcknowledge = { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/node/types/SocketClientRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/SocketClientRequest.ts -------------------------------------------------------------------------------- /src/node/types/SocketModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/SocketModule.ts -------------------------------------------------------------------------------- /src/node/types/SwaggerUIResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/SwaggerUIResource.ts -------------------------------------------------------------------------------- /src/node/types/UserSettingsObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/UserSettingsObject.ts -------------------------------------------------------------------------------- /src/node/types/WebAccessTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/types/WebAccessTypes.ts -------------------------------------------------------------------------------- /src/node/utils/Abiword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/Abiword.ts -------------------------------------------------------------------------------- /src/node/utils/AbsolutePaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/AbsolutePaths.ts -------------------------------------------------------------------------------- /src/node/utils/Cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/Cleanup.ts -------------------------------------------------------------------------------- /src/node/utils/Cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/Cli.ts -------------------------------------------------------------------------------- /src/node/utils/ExportEtherpad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/ExportEtherpad.ts -------------------------------------------------------------------------------- /src/node/utils/ExportHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/ExportHelper.ts -------------------------------------------------------------------------------- /src/node/utils/ExportHtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/ExportHtml.ts -------------------------------------------------------------------------------- /src/node/utils/ExportTxt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/ExportTxt.ts -------------------------------------------------------------------------------- /src/node/utils/ImportEtherpad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/ImportEtherpad.ts -------------------------------------------------------------------------------- /src/node/utils/ImportHtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/ImportHtml.ts -------------------------------------------------------------------------------- /src/node/utils/LibreOffice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/LibreOffice.ts -------------------------------------------------------------------------------- /src/node/utils/Minify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/Minify.ts -------------------------------------------------------------------------------- /src/node/utils/MinifyWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/MinifyWorker.ts -------------------------------------------------------------------------------- /src/node/utils/NodeVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/NodeVersion.ts -------------------------------------------------------------------------------- /src/node/utils/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/Settings.ts -------------------------------------------------------------------------------- /src/node/utils/SettingsTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/SettingsTree.ts -------------------------------------------------------------------------------- /src/node/utils/Stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/Stream.ts -------------------------------------------------------------------------------- /src/node/utils/UpdateCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/UpdateCheck.ts -------------------------------------------------------------------------------- /src/node/utils/checkValidRev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/checkValidRev.ts -------------------------------------------------------------------------------- /src/node/utils/customError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/customError.ts -------------------------------------------------------------------------------- /src/node/utils/padDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/padDiff.ts -------------------------------------------------------------------------------- /src/node/utils/path_exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/path_exists.ts -------------------------------------------------------------------------------- /src/node/utils/promises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/promises.ts -------------------------------------------------------------------------------- /src/node/utils/randomstring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/randomstring.ts -------------------------------------------------------------------------------- /src/node/utils/run_cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/run_cmd.ts -------------------------------------------------------------------------------- /src/node/utils/sanitizePathname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/sanitizePathname.ts -------------------------------------------------------------------------------- /src/node/utils/tar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/tar.json -------------------------------------------------------------------------------- /src/node/utils/toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/node/utils/toolbar.ts -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/package.json -------------------------------------------------------------------------------- /src/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/playwright.config.ts -------------------------------------------------------------------------------- /src/static/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/admin.css -------------------------------------------------------------------------------- /src/static/css/iframe_editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/iframe_editor.css -------------------------------------------------------------------------------- /src/static/css/lists_and_indents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/lists_and_indents.css -------------------------------------------------------------------------------- /src/static/css/pad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad.css -------------------------------------------------------------------------------- /src/static/css/pad/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/chat.css -------------------------------------------------------------------------------- /src/static/css/pad/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/fonts.css -------------------------------------------------------------------------------- /src/static/css/pad/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/form.css -------------------------------------------------------------------------------- /src/static/css/pad/gritter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/gritter.css -------------------------------------------------------------------------------- /src/static/css/pad/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/icons.css -------------------------------------------------------------------------------- /src/static/css/pad/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/layout.css -------------------------------------------------------------------------------- /src/static/css/pad/loadingbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/loadingbox.css -------------------------------------------------------------------------------- /src/static/css/pad/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/normalize.css -------------------------------------------------------------------------------- /src/static/css/pad/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/popup.css -------------------------------------------------------------------------------- /src/static/css/pad/popup_connectivity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/popup_connectivity.css -------------------------------------------------------------------------------- /src/static/css/pad/popup_import_export.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/popup_import_export.css -------------------------------------------------------------------------------- /src/static/css/pad/popup_users.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/popup_users.css -------------------------------------------------------------------------------- /src/static/css/pad/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/pad/toolbar.css -------------------------------------------------------------------------------- /src/static/css/timeslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/css/timeslider.css -------------------------------------------------------------------------------- /src/static/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/empty.html -------------------------------------------------------------------------------- /src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/favicon.ico -------------------------------------------------------------------------------- /src/static/font/Aleygreya-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Aleygreya-ExtraBold.woff -------------------------------------------------------------------------------- /src/static/font/Aleygreya-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Aleygreya-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/static/font/Aleygreya-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Aleygreya-Medium.woff -------------------------------------------------------------------------------- /src/static/font/Aleygreya-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Aleygreya-Medium.woff2 -------------------------------------------------------------------------------- /src/static/font/Montserrat-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Montserrat-Light.otf -------------------------------------------------------------------------------- /src/static/font/Montserrat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Montserrat-Regular.otf -------------------------------------------------------------------------------- /src/static/font/Quicksand-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Quicksand-Bold.ttf -------------------------------------------------------------------------------- /src/static/font/Quicksand-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Quicksand-Medium.ttf -------------------------------------------------------------------------------- /src/static/font/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /src/static/font/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/static/font/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/static/font/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /src/static/font/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /src/static/font/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/config.json -------------------------------------------------------------------------------- /src/static/font/fontawesome-etherpad.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/fontawesome-etherpad.eot -------------------------------------------------------------------------------- /src/static/font/fontawesome-etherpad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/fontawesome-etherpad.svg -------------------------------------------------------------------------------- /src/static/font/fontawesome-etherpad.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/fontawesome-etherpad.ttf -------------------------------------------------------------------------------- /src/static/font/fontawesome-etherpad.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/fontawesome-etherpad.woff -------------------------------------------------------------------------------- /src/static/font/fontawesome-etherpad.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/fontawesome-etherpad.woff2 -------------------------------------------------------------------------------- /src/static/font/opendyslexic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/font/opendyslexic.otf -------------------------------------------------------------------------------- /src/static/img/brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/img/brand.svg -------------------------------------------------------------------------------- /src/static/js/AttributeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/AttributeManager.ts -------------------------------------------------------------------------------- /src/static/js/AttributeMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/AttributeMap.ts -------------------------------------------------------------------------------- /src/static/js/AttributePool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/AttributePool.ts -------------------------------------------------------------------------------- /src/static/js/Builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/Builder.ts -------------------------------------------------------------------------------- /src/static/js/Changeset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/Changeset.ts -------------------------------------------------------------------------------- /src/static/js/ChangesetUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/ChangesetUtils.ts -------------------------------------------------------------------------------- /src/static/js/ChatMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/ChatMessage.ts -------------------------------------------------------------------------------- /src/static/js/MergingOpAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/MergingOpAssembler.ts -------------------------------------------------------------------------------- /src/static/js/Op.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/Op.ts -------------------------------------------------------------------------------- /src/static/js/OpAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/OpAssembler.ts -------------------------------------------------------------------------------- /src/static/js/OpIter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/OpIter.ts -------------------------------------------------------------------------------- /src/static/js/SmartOpAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/SmartOpAssembler.ts -------------------------------------------------------------------------------- /src/static/js/StringAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/StringAssembler.ts -------------------------------------------------------------------------------- /src/static/js/StringIterator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/StringIterator.ts -------------------------------------------------------------------------------- /src/static/js/TextLinesMutator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/TextLinesMutator.ts -------------------------------------------------------------------------------- /src/static/js/ace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/ace.ts -------------------------------------------------------------------------------- /src/static/js/ace2_common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/ace2_common.ts -------------------------------------------------------------------------------- /src/static/js/ace2_inner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/ace2_inner.ts -------------------------------------------------------------------------------- /src/static/js/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/attributes.ts -------------------------------------------------------------------------------- /src/static/js/basic_error_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/basic_error_handler.ts -------------------------------------------------------------------------------- /src/static/js/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/broadcast.ts -------------------------------------------------------------------------------- /src/static/js/broadcast_revisions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/broadcast_revisions.ts -------------------------------------------------------------------------------- /src/static/js/broadcast_slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/broadcast_slider.ts -------------------------------------------------------------------------------- /src/static/js/caretPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/caretPosition.ts -------------------------------------------------------------------------------- /src/static/js/changesettracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/changesettracker.ts -------------------------------------------------------------------------------- /src/static/js/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/chat.ts -------------------------------------------------------------------------------- /src/static/js/collab_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/collab_client.ts -------------------------------------------------------------------------------- /src/static/js/colorutils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/colorutils.ts -------------------------------------------------------------------------------- /src/static/js/contentcollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/contentcollector.ts -------------------------------------------------------------------------------- /src/static/js/cssmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/cssmanager.ts -------------------------------------------------------------------------------- /src/static/js/domline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/domline.ts -------------------------------------------------------------------------------- /src/static/js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/index.ts -------------------------------------------------------------------------------- /src/static/js/l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/l10n.ts -------------------------------------------------------------------------------- /src/static/js/linestylefilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/linestylefilter.ts -------------------------------------------------------------------------------- /src/static/js/pad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad.ts -------------------------------------------------------------------------------- /src/static/js/pad_automatic_reconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_automatic_reconnect.ts -------------------------------------------------------------------------------- /src/static/js/pad_connectionstatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_connectionstatus.ts -------------------------------------------------------------------------------- /src/static/js/pad_cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_cookie.ts -------------------------------------------------------------------------------- /src/static/js/pad_editbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_editbar.ts -------------------------------------------------------------------------------- /src/static/js/pad_editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_editor.ts -------------------------------------------------------------------------------- /src/static/js/pad_impexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_impexp.ts -------------------------------------------------------------------------------- /src/static/js/pad_modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_modals.ts -------------------------------------------------------------------------------- /src/static/js/pad_savedrevs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_savedrevs.ts -------------------------------------------------------------------------------- /src/static/js/pad_userlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_userlist.ts -------------------------------------------------------------------------------- /src/static/js/pad_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pad_utils.ts -------------------------------------------------------------------------------- /src/static/js/pluginfw/LinkInstaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pluginfw/LinkInstaller.ts -------------------------------------------------------------------------------- /src/static/js/pluginfw/client_plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pluginfw/client_plugins.ts -------------------------------------------------------------------------------- /src/static/js/pluginfw/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pluginfw/hooks.ts -------------------------------------------------------------------------------- /src/static/js/pluginfw/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pluginfw/installer.ts -------------------------------------------------------------------------------- /src/static/js/pluginfw/plugin_defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pluginfw/plugin_defs.ts -------------------------------------------------------------------------------- /src/static/js/pluginfw/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pluginfw/plugins.ts -------------------------------------------------------------------------------- /src/static/js/pluginfw/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pluginfw/shared.ts -------------------------------------------------------------------------------- /src/static/js/pluginfw/tsort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/pluginfw/tsort.ts -------------------------------------------------------------------------------- /src/static/js/rjquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/rjquery.ts -------------------------------------------------------------------------------- /src/static/js/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/scroll.ts -------------------------------------------------------------------------------- /src/static/js/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/security.ts -------------------------------------------------------------------------------- /src/static/js/skin_variants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/skin_variants.ts -------------------------------------------------------------------------------- /src/static/js/skiplist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/skiplist.ts -------------------------------------------------------------------------------- /src/static/js/socketio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/socketio.ts -------------------------------------------------------------------------------- /src/static/js/timeslider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/timeslider.ts -------------------------------------------------------------------------------- /src/static/js/types/AText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/types/AText.ts -------------------------------------------------------------------------------- /src/static/js/types/Attribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/types/Attribute.ts -------------------------------------------------------------------------------- /src/static/js/types/ChangeSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/types/ChangeSet.ts -------------------------------------------------------------------------------- /src/static/js/types/ChangeSetBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/types/ChangeSetBuilder.ts -------------------------------------------------------------------------------- /src/static/js/types/PadRevision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/types/PadRevision.ts -------------------------------------------------------------------------------- /src/static/js/types/RepModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/types/RepModel.ts -------------------------------------------------------------------------------- /src/static/js/types/SocketIOMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/types/SocketIOMessage.ts -------------------------------------------------------------------------------- /src/static/js/underscore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/underscore.ts -------------------------------------------------------------------------------- /src/static/js/undomodule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/undomodule.ts -------------------------------------------------------------------------------- /src/static/js/vendors/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/vendors/browser.ts -------------------------------------------------------------------------------- /src/static/js/vendors/farbtastic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/vendors/farbtastic.ts -------------------------------------------------------------------------------- /src/static/js/vendors/gritter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/vendors/gritter.ts -------------------------------------------------------------------------------- /src/static/js/vendors/html10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/vendors/html10n.ts -------------------------------------------------------------------------------- /src/static/js/vendors/jquery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/vendors/jquery.ts -------------------------------------------------------------------------------- /src/static/js/vendors/nice-select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/vendors/nice-select.ts -------------------------------------------------------------------------------- /src/static/js/welcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/js/welcome.ts -------------------------------------------------------------------------------- /src/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /p/ 3 | -------------------------------------------------------------------------------- /src/static/skins/colibris/images/Designlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/images/Designlayout.png -------------------------------------------------------------------------------- /src/static/skins/colibris/images/fond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/images/fond.jpg -------------------------------------------------------------------------------- /src/static/skins/colibris/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/images/screenshot.png -------------------------------------------------------------------------------- /src/static/skins/colibris/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/index.css -------------------------------------------------------------------------------- /src/static/skins/colibris/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/index.js -------------------------------------------------------------------------------- /src/static/skins/colibris/pad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/pad.css -------------------------------------------------------------------------------- /src/static/skins/colibris/pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/pad.js -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/buttons.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/chat.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/form.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/gritter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/gritter.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/import-export.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/import-export.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/popup.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/scrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/scrollbars.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/sidediv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/sidediv.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/table-of-content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/table-of-content.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/toolbar.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/components/users.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/components/users.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/general.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/layout.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/pad-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/pad-editor.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/pad-variants.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/pad-variants.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/plugins/author_hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/plugins/author_hover.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/plugins/brightcolorpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/plugins/brightcolorpicker.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/plugins/comments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/plugins/comments.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/plugins/font_color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/plugins/font_color.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/plugins/set_title_on_pad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/plugins/set_title_on_pad.css -------------------------------------------------------------------------------- /src/static/skins/colibris/src/plugins/tables2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/src/plugins/tables2.css -------------------------------------------------------------------------------- /src/static/skins/colibris/timeslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/colibris/timeslider.css -------------------------------------------------------------------------------- /src/static/skins/colibris/timeslider.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | window.customStart = () => { 4 | }; 5 | -------------------------------------------------------------------------------- /src/static/skins/no-skin/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/no-skin/index.css -------------------------------------------------------------------------------- /src/static/skins/no-skin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/no-skin/index.js -------------------------------------------------------------------------------- /src/static/skins/no-skin/pad.css: -------------------------------------------------------------------------------- 1 | /* intentionally empty */ 2 | -------------------------------------------------------------------------------- /src/static/skins/no-skin/pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/no-skin/pad.js -------------------------------------------------------------------------------- /src/static/skins/no-skin/timeslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/no-skin/timeslider.css -------------------------------------------------------------------------------- /src/static/skins/no-skin/timeslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/skins/no-skin/timeslider.js -------------------------------------------------------------------------------- /src/static/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/static/tests.html -------------------------------------------------------------------------------- /src/templates/export_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/export_html.html -------------------------------------------------------------------------------- /src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/index.html -------------------------------------------------------------------------------- /src/templates/indexBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/indexBootstrap.js -------------------------------------------------------------------------------- /src/templates/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/javascript.html -------------------------------------------------------------------------------- /src/templates/pad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/pad.html -------------------------------------------------------------------------------- /src/templates/padBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/padBootstrap.js -------------------------------------------------------------------------------- /src/templates/padViteBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/padViteBootstrap.js -------------------------------------------------------------------------------- /src/templates/timeSliderBootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/timeSliderBootstrap.js -------------------------------------------------------------------------------- /src/templates/timeslider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/templates/timeslider.html -------------------------------------------------------------------------------- /src/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/README.md -------------------------------------------------------------------------------- /src/tests/backend-new/easysync-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/easysync-helper.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/AttributeMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/AttributeMap.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/StringIteratorTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/StringIteratorTest.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/admin_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/admin_utils.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/attributes.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/easysync-assembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/easysync-assembler.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/easysync-compose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/easysync-compose.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/easysync-inverseRandom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/easysync-inverseRandom.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/easysync-mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/easysync-mutations.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/easysync-other.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/easysync-other.test.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/easysync-subAttribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/easysync-subAttribution.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/pad_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/pad_utils.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/path_exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/path_exists.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/promises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/promises.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/sanitizePathname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/sanitizePathname.ts -------------------------------------------------------------------------------- /src/tests/backend-new/specs/skiplist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend-new/specs/skiplist.ts -------------------------------------------------------------------------------- /src/tests/backend/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/common.ts -------------------------------------------------------------------------------- /src/tests/backend/fuzzImportTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/fuzzImportTest.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/ExportEtherpad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/ExportEtherpad.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/ImportEtherpad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/ImportEtherpad.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/Pad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/Pad.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/SecretRotator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/SecretRotator.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/SessionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/SessionStore.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/Stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/Stream.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/api.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/characterEncoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/characterEncoding.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/chat.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/emojis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/emojis.html -------------------------------------------------------------------------------- /src/tests/backend/specs/api/fuzzImportTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/fuzzImportTest.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/image.png -------------------------------------------------------------------------------- /src/tests/backend/specs/api/importexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/importexport.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/importexportGetPost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/importexportGetPost.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/instance.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/pad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/pad.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/restoreRevision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/restoreRevision.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/sessionsAndGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/sessionsAndGroups.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/api/test.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/test.doc -------------------------------------------------------------------------------- /src/tests/backend/specs/api/test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/test.docx -------------------------------------------------------------------------------- /src/tests/backend/specs/api/test.etherpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/test.etherpad -------------------------------------------------------------------------------- /src/tests/backend/specs/api/test.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/test.odt -------------------------------------------------------------------------------- /src/tests/backend/specs/api/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/test.pdf -------------------------------------------------------------------------------- /src/tests/backend/specs/api/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/api/test.txt -------------------------------------------------------------------------------- /src/tests/backend/specs/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/chat.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/contentcollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/contentcollector.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/crypto.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/export.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/favicon-test-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/favicon-test-custom.png -------------------------------------------------------------------------------- /src/tests/backend/specs/favicon-test-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/favicon-test-skin.png -------------------------------------------------------------------------------- /src/tests/backend/specs/favicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/favicon.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/health.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/hooks.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/lowerCasePadIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/lowerCasePadIds.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/messages.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/pads-with-spaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/pads-with-spaces.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/regression-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/regression-db.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/settings.json -------------------------------------------------------------------------------- /src/tests/backend/specs/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/settings.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/socketio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/socketio.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/specialpages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/specialpages.ts -------------------------------------------------------------------------------- /src/tests/backend/specs/webaccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/backend/specs/webaccess.ts -------------------------------------------------------------------------------- /src/tests/container/loadSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/container/loadSettings.js -------------------------------------------------------------------------------- /src/tests/container/specs/api/pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/container/specs/api/pad.js -------------------------------------------------------------------------------- /src/tests/frontend-new/admin-spec/adminsettings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/admin-spec/adminsettings.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/admin-spec/admintroubleshooting.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/admin-spec/admintroubleshooting.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/admin-spec/adminupdateplugins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/admin-spec/adminupdateplugins.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/helper/adminhelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/helper/adminhelper.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/helper/padHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/helper/padHelper.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/helper/settingsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/helper/settingsHelper.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/helper/timeslider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/helper/timeslider.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/alphabet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/alphabet.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/bold.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/bold.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/change_user_color.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/change_user_color.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/change_user_name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/change_user_name.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/chat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/chat.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/clear_authorship_color.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/clear_authorship_color.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/collab_client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/collab_client.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/delete.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/delete.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/editbar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/editbar.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/embed_value.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/embed_value.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/enter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/enter.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/font_type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/font_type.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/indentation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/indentation.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/inner_height.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/inner_height.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/italic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/italic.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/language.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/language.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/ordered_list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/ordered_list.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/redo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/redo.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/strikethrough.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/strikethrough.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/timeslider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/timeslider.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/timeslider_follow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/timeslider_follow.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/undo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/undo.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/unordered_list.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/unordered_list.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend-new/specs/urls_become_clickable.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend-new/specs/urls_become_clickable.spec.ts -------------------------------------------------------------------------------- /src/tests/frontend/cypress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/cypress/.gitignore -------------------------------------------------------------------------------- /src/tests/frontend/cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/cypress/README.md -------------------------------------------------------------------------------- /src/tests/frontend/cypress/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/cypress/cypress.config.js -------------------------------------------------------------------------------- /src/tests/frontend/cypress/integration/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/cypress/integration/test.js -------------------------------------------------------------------------------- /src/tests/frontend/easysync-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/easysync-helper.js -------------------------------------------------------------------------------- /src/tests/frontend/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/helper.js -------------------------------------------------------------------------------- /src/tests/frontend/helper/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/helper/methods.ts -------------------------------------------------------------------------------- /src/tests/frontend/helper/multipleUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/helper/multipleUsers.ts -------------------------------------------------------------------------------- /src/tests/frontend/helper/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/helper/ui.ts -------------------------------------------------------------------------------- /src/tests/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/index.html -------------------------------------------------------------------------------- /src/tests/frontend/runner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/runner.css -------------------------------------------------------------------------------- /src/tests/frontend/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/runner.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/authorship_of_editions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/authorship_of_editions.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/chat_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/chat_hooks.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/chat_load_messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/chat_load_messages.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/drag_and_drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/drag_and_drop.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/easysync-follow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/easysync-follow.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/helper.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/importexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/importexport.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/importindents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/importindents.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/multiple_authors_clear_authorship_colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/multiple_authors_clear_authorship_colors.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/pad_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/pad_modal.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/responsiveness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/responsiveness.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/scrollTo.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/select_formatting_buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/select_formatting_buttons.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/timeslider_labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/timeslider_labels.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/timeslider_numeric_padID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/timeslider_numeric_padID.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/timeslider_revisions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/timeslider_revisions.js -------------------------------------------------------------------------------- /src/tests/frontend/specs/xxauto_reconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/specs/xxauto_reconnect.js -------------------------------------------------------------------------------- /src/tests/frontend/travis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/travis/.gitignore -------------------------------------------------------------------------------- /src/tests/frontend/travis/adminrunner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/travis/adminrunner.sh -------------------------------------------------------------------------------- /src/tests/frontend/travis/remote_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/travis/remote_runner.js -------------------------------------------------------------------------------- /src/tests/frontend/travis/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/travis/runner.sh -------------------------------------------------------------------------------- /src/tests/frontend/travis/runnerBackend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/travis/runnerBackend.sh -------------------------------------------------------------------------------- /src/tests/frontend/travis/runnerLoadTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/frontend/travis/runnerLoadTest.sh -------------------------------------------------------------------------------- /src/tests/ratelimit/Dockerfile.anotherip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/ratelimit/Dockerfile.anotherip -------------------------------------------------------------------------------- /src/tests/ratelimit/Dockerfile.nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/ratelimit/Dockerfile.nginx -------------------------------------------------------------------------------- /src/tests/ratelimit/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/ratelimit/nginx.conf -------------------------------------------------------------------------------- /src/tests/ratelimit/send_changesets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/ratelimit/send_changesets.js -------------------------------------------------------------------------------- /src/tests/ratelimit/testlimits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/ratelimit/testlimits.sh -------------------------------------------------------------------------------- /src/tests/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tests/settings.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/vitest.config.ts -------------------------------------------------------------------------------- /src/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/src/web.config -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/start.bat -------------------------------------------------------------------------------- /tests: -------------------------------------------------------------------------------- 1 | src/tests -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/consent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/consent.html -------------------------------------------------------------------------------- /ui/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/login.html -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/pad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/pad.html -------------------------------------------------------------------------------- /ui/src/consent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/src/consent.ts -------------------------------------------------------------------------------- /ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/src/main.ts -------------------------------------------------------------------------------- /ui/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/src/style.css -------------------------------------------------------------------------------- /ui/src/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/src/typescript.svg -------------------------------------------------------------------------------- /ui/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/tsconfig.json -------------------------------------------------------------------------------- /ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/ui/vite.config.ts -------------------------------------------------------------------------------- /var/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ether/etherpad-lite/HEAD/var/.gitignore --------------------------------------------------------------------------------