Skip to content

Commit a3f85d1

Browse files
authored
Merge branch 'master' into feat/add-user-enabled-apps-ocs
2 parents 636a3d0 + b95f96a commit a3f85d1

File tree

303 files changed

+4734
-1350
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

303 files changed

+4734
-1350
lines changed

apps/dav/appinfo/routes.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
['name' => 'invitation_response#decline', 'url' => '/invitation/decline/{token}', 'verb' => 'GET'],
1212
['name' => 'invitation_response#options', 'url' => '/invitation/moreOptions/{token}', 'verb' => 'GET'],
1313
['name' => 'invitation_response#processMoreOptionsResult', 'url' => '/invitation/moreOptions/{token}', 'verb' => 'POST'],
14+
['name' => 'example_content#getDefaultContact', 'url' => '/api/defaultcontact/contact', 'verb' => 'GET'],
1415
['name' => 'example_content#setDefaultContact', 'url' => '/api/defaultcontact/contact', 'verb' => 'PUT'],
1516
['name' => 'example_content#setEnableDefaultContact', 'url' => '/api/defaultcontact/config', 'verb' => 'PUT'],
1617
],

apps/dav/composer/composer/autoload_classmap.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@
278278
'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => $baseDir . '/../lib/Events/SubscriptionCreatedEvent.php',
279279
'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => $baseDir . '/../lib/Events/SubscriptionDeletedEvent.php',
280280
'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => $baseDir . '/../lib/Events/SubscriptionUpdatedEvent.php',
281+
'OCA\\DAV\\Exception\\ExampleEventException' => $baseDir . '/../lib/Exception/ExampleEventException.php',
281282
'OCA\\DAV\\Exception\\ServerMaintenanceMode' => $baseDir . '/../lib/Exception/ServerMaintenanceMode.php',
282283
'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => $baseDir . '/../lib/Exception/UnsupportedLimitOnInitialSyncException.php',
283284
'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => $baseDir . '/../lib/Files/BrowserErrorPagePlugin.php',
@@ -349,6 +350,7 @@
349350
'OCA\\DAV\\Migration\\Version1029Date20231004091403' => $baseDir . '/../lib/Migration/Version1029Date20231004091403.php',
350351
'OCA\\DAV\\Migration\\Version1030Date20240205103243' => $baseDir . '/../lib/Migration/Version1030Date20240205103243.php',
351352
'OCA\\DAV\\Migration\\Version1031Date20240610134258' => $baseDir . '/../lib/Migration/Version1031Date20240610134258.php',
353+
'OCA\\DAV\\Model\\ExampleEvent' => $baseDir . '/../lib/Model/ExampleEvent.php',
352354
'OCA\\DAV\\Paginate\\LimitedCopyIterator' => $baseDir . '/../lib/Paginate/LimitedCopyIterator.php',
353355
'OCA\\DAV\\Paginate\\PaginateCache' => $baseDir . '/../lib/Paginate/PaginateCache.php',
354356
'OCA\\DAV\\Paginate\\PaginatePlugin' => $baseDir . '/../lib/Paginate/PaginatePlugin.php',
@@ -365,6 +367,7 @@
365367
'OCA\\DAV\\ServerFactory' => $baseDir . '/../lib/ServerFactory.php',
366368
'OCA\\DAV\\Service\\AbsenceService' => $baseDir . '/../lib/Service/AbsenceService.php',
367369
'OCA\\DAV\\Service\\DefaultContactService' => $baseDir . '/../lib/Service/DefaultContactService.php',
370+
'OCA\\DAV\\Service\\ExampleEventService' => $baseDir . '/../lib/Service/ExampleEventService.php',
368371
'OCA\\DAV\\Settings\\Admin\\SystemAddressBookSettings' => $baseDir . '/../lib/Settings/Admin/SystemAddressBookSettings.php',
369372
'OCA\\DAV\\Settings\\AvailabilitySettings' => $baseDir . '/../lib/Settings/AvailabilitySettings.php',
370373
'OCA\\DAV\\Settings\\CalDAVSettings' => $baseDir . '/../lib/Settings/CalDAVSettings.php',

apps/dav/composer/composer/autoload_static.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ class ComposerStaticInitDAV
293293
'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionCreatedEvent.php',
294294
'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionDeletedEvent.php',
295295
'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionUpdatedEvent.php',
296+
'OCA\\DAV\\Exception\\ExampleEventException' => __DIR__ . '/..' . '/../lib/Exception/ExampleEventException.php',
296297
'OCA\\DAV\\Exception\\ServerMaintenanceMode' => __DIR__ . '/..' . '/../lib/Exception/ServerMaintenanceMode.php',
297298
'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => __DIR__ . '/..' . '/../lib/Exception/UnsupportedLimitOnInitialSyncException.php',
298299
'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => __DIR__ . '/..' . '/../lib/Files/BrowserErrorPagePlugin.php',
@@ -364,6 +365,7 @@ class ComposerStaticInitDAV
364365
'OCA\\DAV\\Migration\\Version1029Date20231004091403' => __DIR__ . '/..' . '/../lib/Migration/Version1029Date20231004091403.php',
365366
'OCA\\DAV\\Migration\\Version1030Date20240205103243' => __DIR__ . '/..' . '/../lib/Migration/Version1030Date20240205103243.php',
366367
'OCA\\DAV\\Migration\\Version1031Date20240610134258' => __DIR__ . '/..' . '/../lib/Migration/Version1031Date20240610134258.php',
368+
'OCA\\DAV\\Model\\ExampleEvent' => __DIR__ . '/..' . '/../lib/Model/ExampleEvent.php',
367369
'OCA\\DAV\\Paginate\\LimitedCopyIterator' => __DIR__ . '/..' . '/../lib/Paginate/LimitedCopyIterator.php',
368370
'OCA\\DAV\\Paginate\\PaginateCache' => __DIR__ . '/..' . '/../lib/Paginate/PaginateCache.php',
369371
'OCA\\DAV\\Paginate\\PaginatePlugin' => __DIR__ . '/..' . '/../lib/Paginate/PaginatePlugin.php',
@@ -380,6 +382,7 @@ class ComposerStaticInitDAV
380382
'OCA\\DAV\\ServerFactory' => __DIR__ . '/..' . '/../lib/ServerFactory.php',
381383
'OCA\\DAV\\Service\\AbsenceService' => __DIR__ . '/..' . '/../lib/Service/AbsenceService.php',
382384
'OCA\\DAV\\Service\\DefaultContactService' => __DIR__ . '/..' . '/../lib/Service/DefaultContactService.php',
385+
'OCA\\DAV\\Service\\ExampleEventService' => __DIR__ . '/..' . '/../lib/Service/ExampleEventService.php',
383386
'OCA\\DAV\\Settings\\Admin\\SystemAddressBookSettings' => __DIR__ . '/..' . '/../lib/Settings/Admin/SystemAddressBookSettings.php',
384387
'OCA\\DAV\\Settings\\AvailabilitySettings' => __DIR__ . '/..' . '/../lib/Settings/AvailabilitySettings.php',
385388
'OCA\\DAV\\Settings\\CalDAVSettings' => __DIR__ . '/..' . '/../lib/Settings/CalDAVSettings.php',

apps/dav/l10n/ar.js

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,17 @@ OC.L10N.register(
290290
"Pick a start time for {dayName}" : "إختَر وقت البدء ليوم {dayName}",
291291
"Pick a end time for {dayName}" : "إختَر وقت الانتهاء ليوم {dayName}",
292292
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications." : "قم بتعيين حالة المستخدم تلقائيًا على \"عدم الإزعاج\" خارج نطاق أوقات التواجد لكتم جميع الإشعارات",
293+
"Cancel" : "إلغاء",
294+
"Import" : "إستيراد",
295+
"Error while saving settings" : "خطأ أثناء حفظ الإعدادات",
296+
"Contact reset successfully" : "تمّت إعادة تعيين جهة الاتصال بنجاحٍ",
297+
"Error while resetting contact" : "خطأ أثناء إعادة تعيين جهة الاتصال",
298+
"Contact imported successfully" : "تمّ استيراد جهة الاتصال بنجاحٍ",
299+
"Error while importing contact" : "خطأ أثناء استيراد جهة الاتصال",
300+
"Import contact" : "استيراد جهة اتصال",
301+
"Reset to default" : "اعادة تعيين الافتراضيات",
302+
"Import contacts" : "استيراد جهات اتصال",
303+
"Importing a new .vcf file will delete the existing default contact and replace it with the new one. Do you want to continue?" : "استيراد ملف .cvf جديد سوف يؤدي إلى حذف جهات الاتصال التلقائية الحالية واستبدالها بالجديدة. هل ترغب في الاستمرار؟",
293304
"Availability" : "أوقات التواجد ",
294305
"If you configure your working hours, other people will see when you are out of office when they book a meeting." : "إذا قمت بضبط ساعات عملك، سيرى الآخرون متى تكون خارج المكتب عندما يقومون بحجز اجتماع معك.",
295306
"Absence" : "غياب",
@@ -306,19 +317,6 @@ OC.L10N.register(
306317
"Send reminder notifications to calendar sharees as well" : "أرسل إشعارات للتذكير إلى المشتركين بالتقويم كذلك",
307318
"Reminders are always sent to organizers and attendees." : "إشعارات التذكير يتم إرسالها دائماً إلى مُنظّم أو مُنظّمي الحدث و المستهدفين بحضوره.",
308319
"Enable notifications for events via push" : "تمكين الإشعارات حول الأحداث عن طريق أسلوب دفع الإشعارات Push",
309-
"Cancel" : "إلغاء",
310-
"Import" : "إستيراد",
311-
"Error while saving settings" : "خطأ أثناء حفظ الإعدادات",
312-
"Contact reset successfully" : "تمّت إعادة تعيين جهة الاتصال بنجاحٍ",
313-
"Error while resetting contact" : "خطأ أثناء إعادة تعيين جهة الاتصال",
314-
"Contact imported successfully" : "تمّ استيراد جهة الاتصال بنجاحٍ",
315-
"Error while importing contact" : "خطأ أثناء استيراد جهة الاتصال",
316-
"Example Content" : "نموذج للمحتوى",
317-
"Set example content to be created on new user first login." : "عيِّن نموذجاً للمحتوى ليتم إنشاؤه عند تسجيل المستخدِم دخوله لأول مرةٍ.",
318-
"Import contact" : "استيراد جهة اتصال",
319-
"Reset to default contact" : "إعادة التعيين لجهة اتصال تلقائية ",
320-
"Import contacts" : "استيراد جهات اتصال",
321-
"Importing a new .vcf file will delete the existing default contact and replace it with the new one. Do you want to continue?" : "استيراد ملف .cvf جديد سوف يؤدي إلى حذف جهات الاتصال التلقائية الحالية واستبدالها بالجديدة. هل ترغب في الاستمرار؟",
322320
"There was an error updating your attendance status." : "حدث خطأ في تحديث حالة حضورك.",
323321
"Please contact the organizer directly." : "يرجى الاتصال بالمنظم مباشرةً",
324322
"Are you accepting the invitation?" : "هل تقبل الدعوة؟",

apps/dav/l10n/ar.json

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,17 @@
288288
"Pick a start time for {dayName}" : "إختَر وقت البدء ليوم {dayName}",
289289
"Pick a end time for {dayName}" : "إختَر وقت الانتهاء ليوم {dayName}",
290290
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications." : "قم بتعيين حالة المستخدم تلقائيًا على \"عدم الإزعاج\" خارج نطاق أوقات التواجد لكتم جميع الإشعارات",
291+
"Cancel" : "إلغاء",
292+
"Import" : "إستيراد",
293+
"Error while saving settings" : "خطأ أثناء حفظ الإعدادات",
294+
"Contact reset successfully" : "تمّت إعادة تعيين جهة الاتصال بنجاحٍ",
295+
"Error while resetting contact" : "خطأ أثناء إعادة تعيين جهة الاتصال",
296+
"Contact imported successfully" : "تمّ استيراد جهة الاتصال بنجاحٍ",
297+
"Error while importing contact" : "خطأ أثناء استيراد جهة الاتصال",
298+
"Import contact" : "استيراد جهة اتصال",
299+
"Reset to default" : "اعادة تعيين الافتراضيات",
300+
"Import contacts" : "استيراد جهات اتصال",
301+
"Importing a new .vcf file will delete the existing default contact and replace it with the new one. Do you want to continue?" : "استيراد ملف .cvf جديد سوف يؤدي إلى حذف جهات الاتصال التلقائية الحالية واستبدالها بالجديدة. هل ترغب في الاستمرار؟",
291302
"Availability" : "أوقات التواجد ",
292303
"If you configure your working hours, other people will see when you are out of office when they book a meeting." : "إذا قمت بضبط ساعات عملك، سيرى الآخرون متى تكون خارج المكتب عندما يقومون بحجز اجتماع معك.",
293304
"Absence" : "غياب",
@@ -304,19 +315,6 @@
304315
"Send reminder notifications to calendar sharees as well" : "أرسل إشعارات للتذكير إلى المشتركين بالتقويم كذلك",
305316
"Reminders are always sent to organizers and attendees." : "إشعارات التذكير يتم إرسالها دائماً إلى مُنظّم أو مُنظّمي الحدث و المستهدفين بحضوره.",
306317
"Enable notifications for events via push" : "تمكين الإشعارات حول الأحداث عن طريق أسلوب دفع الإشعارات Push",
307-
"Cancel" : "إلغاء",
308-
"Import" : "إستيراد",
309-
"Error while saving settings" : "خطأ أثناء حفظ الإعدادات",
310-
"Contact reset successfully" : "تمّت إعادة تعيين جهة الاتصال بنجاحٍ",
311-
"Error while resetting contact" : "خطأ أثناء إعادة تعيين جهة الاتصال",
312-
"Contact imported successfully" : "تمّ استيراد جهة الاتصال بنجاحٍ",
313-
"Error while importing contact" : "خطأ أثناء استيراد جهة الاتصال",
314-
"Example Content" : "نموذج للمحتوى",
315-
"Set example content to be created on new user first login." : "عيِّن نموذجاً للمحتوى ليتم إنشاؤه عند تسجيل المستخدِم دخوله لأول مرةٍ.",
316-
"Import contact" : "استيراد جهة اتصال",
317-
"Reset to default contact" : "إعادة التعيين لجهة اتصال تلقائية ",
318-
"Import contacts" : "استيراد جهات اتصال",
319-
"Importing a new .vcf file will delete the existing default contact and replace it with the new one. Do you want to continue?" : "استيراد ملف .cvf جديد سوف يؤدي إلى حذف جهات الاتصال التلقائية الحالية واستبدالها بالجديدة. هل ترغب في الاستمرار؟",
320318
"There was an error updating your attendance status." : "حدث خطأ في تحديث حالة حضورك.",
321319
"Please contact the organizer directly." : "يرجى الاتصال بالمنظم مباشرةً",
322320
"Are you accepting the invitation?" : "هل تقبل الدعوة؟",

apps/dav/l10n/ast.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,10 @@ OC.L10N.register(
195195
"Pick a start time for {dayName}" : "Escueyi una hora de comienzu pal {dayName}",
196196
"Pick a end time for {dayName}" : "Escueyi una hora de fin pal {dayName}",
197197
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications." : "Afitar automáticamente l'estáu a «Nun molestar» fuera de la disponibilidá pa desactivar tolos avisos.",
198+
"Cancel" : "Encaboxar",
199+
"Import" : "Importa",
200+
"Error while saving settings" : "Hebo un error mentanto se guardaba la configuración",
201+
"Reset to default" : "Reafitar los valores",
198202
"Availability" : "Disponibilidá",
199203
"If you configure your working hours, other people will see when you are out of office when they book a meeting." : "Si configures les hores llaborales, les demás persones van ver cuando coles de la oficina al acutar una reunión.",
200204
"Absence" : "Ausencia",
@@ -211,9 +215,6 @@ OC.L10N.register(
211215
"Send reminder notifications to calendar sharees as well" : "Unvia tamién avisos de recordatoriu pa les persones coles que se compartiere'l calendariu",
212216
"Reminders are always sent to organizers and attendees." : "Los recordatorios únviense siempres a organizadores y asistentes",
213217
"Enable notifications for events via push" : "Acriva los avisos automáticos pa los eventos",
214-
"Cancel" : "Encaboxar",
215-
"Import" : "Importa",
216-
"Error while saving settings" : "Hebo un error mentanto se guardaba la configuración",
217218
"There was an error updating your attendance status." : "Hebo un error al anovar l'estáu de l'asistencia.",
218219
"Please contact the organizer directly." : "Ponte en contautu direutamente cola organización.",
219220
"Are you accepting the invitation?" : "¿Aceptes la invitación?",

apps/dav/l10n/ast.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,10 @@
193193
"Pick a start time for {dayName}" : "Escueyi una hora de comienzu pal {dayName}",
194194
"Pick a end time for {dayName}" : "Escueyi una hora de fin pal {dayName}",
195195
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications." : "Afitar automáticamente l'estáu a «Nun molestar» fuera de la disponibilidá pa desactivar tolos avisos.",
196+
"Cancel" : "Encaboxar",
197+
"Import" : "Importa",
198+
"Error while saving settings" : "Hebo un error mentanto se guardaba la configuración",
199+
"Reset to default" : "Reafitar los valores",
196200
"Availability" : "Disponibilidá",
197201
"If you configure your working hours, other people will see when you are out of office when they book a meeting." : "Si configures les hores llaborales, les demás persones van ver cuando coles de la oficina al acutar una reunión.",
198202
"Absence" : "Ausencia",
@@ -209,9 +213,6 @@
209213
"Send reminder notifications to calendar sharees as well" : "Unvia tamién avisos de recordatoriu pa les persones coles que se compartiere'l calendariu",
210214
"Reminders are always sent to organizers and attendees." : "Los recordatorios únviense siempres a organizadores y asistentes",
211215
"Enable notifications for events via push" : "Acriva los avisos automáticos pa los eventos",
212-
"Cancel" : "Encaboxar",
213-
"Import" : "Importa",
214-
"Error while saving settings" : "Hebo un error mentanto se guardaba la configuración",
215216
"There was an error updating your attendance status." : "Hebo un error al anovar l'estáu de l'asistencia.",
216217
"Please contact the organizer directly." : "Ponte en contautu direutamente cola organización.",
217218
"Are you accepting the invitation?" : "¿Aceptes la invitación?",

0 commit comments

Comments
 (0)