Commit Graph

305 Commits

Author SHA1 Message Date
David Benque 699922fae6 Fix icon of Rich Text settings 2022-09-29 16:57:49 +01:00
ansuz 71922dbae4 add noscript tags to apps 2022-09-05 19:15:32 +05:30
ansuz 8089698f4c remove noscript tags from inner.html
because inner.html should only ever load if javascript is enabled
2022-09-05 19:11:19 +05:30
ansuz 524ba22c46 update hardcoded preloading.js cache-busting version string 2022-08-30 14:27:10 +05:30
yflory d5272874fb Add version string to placeholder .js and .css files 2022-08-17 11:14:51 +02:00
Maxime Cesson 0d75a2a92a Load pre-loading script and stylesheet before every others 2022-08-02 16:19:38 +02:00
Maxime Cesson 24ccb6d9e7 Apply placeholder to all relevant applications on a slow connection #865
Made with the following command from the cryptpad/ root directory:

$ patternStatic='(<link href=\"\/customize\/src\/outer\.css.*$|<script async data-bootload=\"\/customize\/template\.js\".*$)';
$ pattern2='<style>$';
$ js='<script src=\"\/customize\/pre-loading\.js\"><\/script>';
$ css='<link href=\"\/customize\/src\/pre-loading\.css\" rel=\"stylesheet\" type=\"text\/css\">';
$ find . -name 'index.html' | grep -v -E '(onlyoffice|bower_components|node_modules)' | while read x; \
do if [ `grep -cE "$pattern" $x` -gt 0 ]; then sed -E "s/($pattern)/$js\n    \1\n    $css/" $x > tmp; \
mv tmp $x; y=`echo $x | sed 's/index\.html/inner\.html/'`; if [ -f "$y" ]; then \
sed -E "s/($pattern2)/$js\n    $css\n    \1/" $y > tmp; mv tmp $y; fi; fi; done
2022-07-13 13:21:38 +02:00
ansuz cfa4776c81 round off some more corners 2022-05-06 17:30:35 +05:30
ansuz 93a9c44b6e Merge branch 'main' into 4.15-candidate 2022-04-20 15:32:46 +05:30
ansuz 58b98a77e2 set titles for pages which still used the default 2022-04-11 17:49:13 +05:30
ansuz 841884c631 translated warnings for people that use AdGuard 2022-04-01 16:40:26 +05:30
ansuz 6253c7c61c don't panic if unsafeiframe is loaded with unsafe-eval 2022-03-25 12:01:50 +05:30
ansuz 83f721341f Merge branch 'sandpaper-static' into 4.15-candidate 2022-03-25 11:33:56 +05:30
ansuz 4c53d9b509 enforce only loading inner.html from nested contexts 2022-03-23 13:31:52 +05:30
ansuz 030585d26e clean up some code smell 2022-02-10 12:10:30 +05:30
David Benqué 612467ed92 Rounded settings page 2022-02-07 14:59:08 +00:00
yflory 777de599c3 Download spreadsheets as xlsx from the drive 2021-08-17 16:05:49 +02:00
ansuz 72bf3696ee correct some unncessary instances of raw HTML injection 2021-08-11 19:51:44 +05:30
ansuz 384d4be864 suppress browsers' password autocomplete for document passwords 2021-08-11 19:21:19 +05:30
ansuz d960c10a31 clear login token when deleting your account and before logging in 2021-08-10 18:46:10 +05:30
ansuz 9b373488ea remove some hardcoded translations 2021-06-11 14:51:51 +05:30
ansuz 1d4b4081db fix minor issues with home page redirect preference 2021-06-01 18:13:59 +05:30
ansuz 3fbb771b9c add a setting to preserve redirect-to-drive behaviour from the home page
disable it by default
2021-05-31 20:10:47 +05:30
ansuz bf65a577dd remove hardcoded translations
and add a contextmenu handler for the calendar sidebar
2021-04-30 08:10:12 +05:30
ansuz a603b7b365 reenable rich text links PR settings 2021-04-29 15:02:28 +05:30
yflory 71d5d05157 Merge branch 'soon' into staging 2021-04-21 17:21:11 +02:00
yflory bb454f22b1 Hide 'open link' option from settings temporarily 2021-04-21 16:20:38 +02:00
ansuz 509ef18a15 Merge branch 'soon' into staging 2021-04-20 15:46:29 +05:30
ansuz 21c378c05b
Merge pull request #718 from nilsgabriel/main
Add option to open links on first click.
2021-04-20 05:55:13 -04:00
Nils Gabriel 320c81492e Add option to open links on first click. 2021-04-20 09:10:21 +02:00
yflory 95c16f5c65 Custom reminders 2021-04-13 15:21:24 +02:00
yflory 94b5695346 Merge branch 'staging' into reminders 2021-04-13 11:37:48 +02:00
yflory 8ebc71cd96 Disable calendar notifications 2021-04-12 11:19:12 +02:00
ansuz 3b8f731f1e remove notes and hardcoded translations 2021-04-12 12:02:33 +05:30
yflory 7731cb603f Add a warning when a premium user is deleting their account 2021-03-31 11:35:13 +02:00
yflory 54fcd3cf13 Fix account deletion form multiple password attempts 2021-03-04 12:42:46 +01:00
yflory eb7f7aaa89 Delete block when deleting account 2021-03-02 17:47:05 +01:00
yflory c70f3888e0 Fix spinner not removed when account deletio is canceled 2021-03-02 10:44:34 +01:00
yflory f77e68f1a9 Fix type error 2021-03-01 17:56:16 +01:00
ansuz 6dcc471c81 annotate generated translation keys to suppress warnings 2021-03-01 10:15:47 +05:30
ansuz 6ab1c63a18 change non-blocking XXXs to FIXME or TODO 2021-02-10 15:46:41 +05:30
ansuz d523b0e6da remove a hardcoded translation 2021-02-09 19:18:24 +05:30
ansuz 559be30293 remove some hardcoded translations 2021-02-09 18:57:36 +05:30
ansuz a614994ce6 Merge branch 'richtext' into staging 2021-02-09 17:33:18 +05:30
ansuz 2a04194909 Merge branch 'dark' of github.com:xwiki-labs/cryptpad into dark 2021-02-08 16:29:03 +05:30
ansuz ea210c0ca1 create a translation key for the 'style' category in settings 2021-02-08 16:28:08 +05:30
yflory 5524cb444e Merge branch 'dark' of github.com:xwiki-labs/cryptpad into dark 2021-02-08 11:55:31 +01:00
yflory 49a844125c Clean Dark theme code 2021-02-08 11:55:22 +01:00
ansuz a9c1d4650f add an icon to the 'style' category in the settings sidebar 2021-02-08 16:24:09 +05:30
yflory e205ca281b Add pad settings popup to control default layout 2021-02-05 19:11:26 +01:00