Commit graph

210 commits

Author SHA1 Message Date
yflory
d68dde07a9 Remove translation XXX 2023-09-28 18:33:03 +02:00
yflory
b78ec996ec Deduplicate code for iframe title 2023-09-19 16:40:22 +02:00
yflory
48446d2482 Fix broken classes from previous commit 2023-09-19 16:12:29 +02:00
yflory
b977b759b4 Fix syntax inconsistencies 2023-09-19 16:07:17 +02:00
yflory
c5259c561d Add maxlength attribute to team name (see 608488a) 2023-09-19 15:54:21 +02:00
daria
edae09ddf7 removed empty title tags 2023-09-07 13:40:24 +03:00
daria
d930934368 added error message when trying to update the team's name with the same name
fixed #1228
2023-09-01 15:23:03 +03:00
daria
bfd37735f2 added id to label
fixed #1194
2023-08-30 14:20:10 +03:00
daria
511bd730aa added space to fa elements 2023-08-30 13:49:58 +03:00
daria
e3f84c0de3 added title limit when updating team title #1223 2023-08-30 13:36:19 +03:00
daria
608488abab added title limit when creating a team #1223 2023-08-30 13:26:12 +03:00
daria
e83e6a8c4c loading icon spaced out evenly #1225 2023-08-30 13:02:16 +03:00
daria
89b4229a4f team title splits when it gets too long #1223 2023-08-29 17:29:41 +03:00
daria
590f5e7d5c added title to Teams inner page #1159 2023-08-17 13:02:33 +03:00
yflory
09bce8d852 Merge branch 'staging' into 5.4-rc 2023-07-13 14:13:34 +02:00
Ahmed Mazen
4e32a9ac06 add favicons statically in each application
The last commit added `.ico` versions of the `png` favicons. This commit
adds each favicon statically to each application's `index.html` file.

By statically, I mean it is not inserted through Javascript and instead
is present in the file already.

This fixes favicons not displaying on Firefox.
2023-07-03 08:46:12 +08:00
Pamplemousse
9019d92291 removing bower: migrate nthen
Signed-off-by: Pamplemousse <git@xaviermaso.com>
2023-01-07 13:50:42 +01:00
Pamplemousse
6c10407802 removing bower: migrate bootstrap
Signed-off-by: Pamplemousse <git@xaviermaso.com>
2023-01-07 13:50:41 +01:00
Pamplemousse
a847a5300a removing bower: migrate file-saver
Signed-off-by: Pamplemousse <git@xaviermaso.com>
2023-01-07 13:50:41 +01:00
Pamplemousse
dd25b85554 removing bower: migrate requirejs and requirejs-plugins
Signed-off-by: Pamplemousse <git@xaviermaso.com>
2023-01-07 13:50:40 +01:00
Pamplemousse
c8859524ee removing bower: migrate components-font-awesome
Signed-off-by: Pamplemousse <git@xaviermaso.com>
2023-01-07 13:50:40 +01:00
David Benque
830281fd68 Remove temporary translation strings 2022-12-12 15:34:50 +00:00
David Benque
cc852cc505 Adjust UI for team invite links 2022-12-12 14:52:12 +00:00
yflory
ad0c2e90dc Fix UI issues with team invitation links 2022-12-07 15:03:55 +01:00
yflory
fb079c49bf Team invitation link improvements 2022-11-04 16:42:04 +01:00
ansuz
71922dbae4 add noscript tags to apps 2022-09-05 19:15:32 +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
0e9a9ddfe0 preserve multi-line formatting of team invite messages 2022-05-31 19:30:32 +05:30
David Benqué
11c2d8b3bf Fix team invite message 2022-05-31 10:39:58 +01:00
David Benqué
cf01bd8215 Clean up and lint 2022-05-09 13:53:39 +01:00
ansuz
93a9c44b6e Merge branch 'main' into 4.15-candidate 2022-04-20 15:32:46 +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
David Benqué
d4bb7743c0 Rounded teams 2022-02-07 16:10:42 +00:00
yflory
07b31dc84d Merge branch 'testtheme' into exportSheet 2021-10-04 12:50:05 +02:00
ansuz
ae7e5e0636 remove more XXX notes, add stricter team invite link content validation 2021-09-07 18:59:01 +05:30
ansuz
f6eb6d5ca6 remove some hardcoded translations 2021-09-06 18:25:47 +05:30
ansuz
95869b84c9 emoji avatars in the contacts app
and handling of empty display names
2021-08-25 13:38:05 +05:30
ansuz
4b0cebb0fd animal emojis in the team roster
and fall back to default username in teams when members are unnamed
in various places where it was not handled
2021-08-25 13:20:11 +05:30
yflory
777de599c3 Download spreadsheets as xlsx from the drive 2021-08-17 16:05:49 +02:00
ansuz
2019e1d70a implement minor fixes and add comments following code review 2021-07-26 13:05:47 +05:30
yflory
0fc2269a3a Create links in the drive 2021-07-20 10:40:40 +02:00
ansuz
bceff56d02 remove hardcoded translation 2021-07-06 15:00:54 +05:30
yflory
bca1c08653 Fix team pending owner issues 2021-07-02 18:46:03 +02:00
yflory
a2959b2561 Improve offline banner in teams 2021-03-01 16:08:16 +01:00