Send/app
Dylan Derr 2f491fac86 Added the following ENVIRONMENT VARIABLES > send.ftl - if not set it will use translate().
CUSTOM_INTRO_TITLE > introTitle
CUSTOM_INTRO_DESCRIPTION: > introDescription
CUSTOM_DOWNLOAD_DESCRIPTION: downloadDescription
CUSTOM_TRY_SEND_DESCRIPTION: trySendDescription
CUSTOM_SEND_YOUR_FILES_LINK: sendYourFilesLink

CUSTOM_INTRO_TITLE: "Secure & Simple"
CUSTOM_INTRO_DESCRIPTION: "Share files with end-to-end encryption and a link that expires."
CUSTOM_DOWNLOAD_DESCRIPTION: "Shared with end-to-end encryption and a link that expires."
CUSTOM_TRY_SEND_DESCRIPTION: "Secure, Simple file sharing"
CUSTOM_SEND_YOUR_FILES_LINK: "Upload Files"
2025-02-08 12:37:18 -06:00
..
ui Added the following ENVIRONMENT VARIABLES > send.ftl - if not set it will use translate(). 2025-02-08 12:37:18 -06:00
.eslintrc.yml Revert "Update eslint & plugins" 2022-09-04 12:26:10 +02:00
api.js Remove metrics #4 2021-03-15 19:56:51 +01:00
archive.js Reset download limit to default after uplaoding files 2023-01-06 17:42:45 +09:00
capabilities.js Revert "Remove some polyfills" 2022-09-04 12:26:12 +02:00
controller.js Merge branch 'remove-fxa-dialog-on-big-file' into 'master' 2021-03-15 20:15:27 +00:00
dragManager.js fixes #1013. dragging page elements 2018-11-19 10:48:52 -08:00
ece.js Revert "Remove some polyfills" 2022-09-04 12:26:12 +02:00
experiments.js Add ability to change the branding 2022-05-02 13:38:16 +02:00
fileReceiver.js fix: remove iOS saveFile workaround #20 2021-07-08 23:05:39 +02:00
fileSender.js added size and duration to connection error reporting 2019-08-08 09:52:22 -07:00
fxa.js fixed some old TODOs 2018-12-18 13:55:46 -08:00
keychain.js removed old encryption key implementation 2019-04-11 10:24:29 -07:00
locale.js Update fluent 2022-07-26 11:03:10 +00:00
main.css Fix stylelint errors 2022-08-09 09:12:32 +00:00
main.js Revert "Further dependency cleanup" 2022-09-04 12:26:07 +02:00
ownedFile.js error if file from localStorage is old (no manifest) 2019-03-12 07:39:50 -07:00
pasteManager.js fixed paste email bug 2019-03-12 08:37:43 -07:00
qrcode.js Update qrcode snippet 2021-07-08 21:20:27 +02:00
readme.md Fixes link to routes file 2019-11-12 19:09:07 +01:00
routes.js Create static robots.txt file, remove dynamic route 2021-05-19 16:00:58 +02:00
serviceWorker.js added hmac auth to report route 2020-10-16 15:50:36 +02:00
storage.js Revert "Update eslint & plugins" 2022-09-04 12:26:10 +02:00
streams.js Revert "Update eslint & plugins" 2022-09-04 12:26:10 +02:00
user.js Remove obsolete anonymous limits 2021-04-12 15:19:02 +02:00
utils.js Revert "Remove some polyfills" 2022-09-04 12:26:12 +02:00
zip.js Fix garbled filenames on Windows with ZIP files due to missing UTF-8 flag 2022-03-04 16:48:58 +01:00

Application Code

app/ contains the browser code that gets bundled into app.[hash].js. It's got all the logic, crypto, and UI. All of it gets used in the browser, and some of it by the server for server side rendering.

The main entrypoint for the browser is main.js and on the server routes.js is imported by /server/routes/pages.js

  • pages contains display logic an markup for pages
  • routes contains route definitions and logic
  • templates contains ui elements smaller than pages