Skip to content

Commit

Permalink
Merge 8d040cb into 88fb047
Browse files Browse the repository at this point in the history
  • Loading branch information
haug-den-lucas committed Aug 16, 2018
2 parents 88fb047 + 8d040cb commit 7b967fe
Show file tree
Hide file tree
Showing 355 changed files with 22 additions and 9 deletions.
Empty file modified .editorconfig
100644 β†’ 100755
Empty file.
Empty file modified .gitignore
100644 β†’ 100755
Empty file.
Empty file modified .scrutinizer.yml
100644 β†’ 100755
Empty file.
Empty file modified .travis.yml
100644 β†’ 100755
Empty file.
Empty file modified .tx/config
100644 β†’ 100755
Empty file.
Empty file modified CHANGELOG.md
100644 β†’ 100755
Empty file.
Empty file modified COPYING
100644 β†’ 100755
Empty file.
Empty file modified Makefile
100644 β†’ 100755
Empty file.
Empty file modified README.md
100644 β†’ 100755
Empty file.
Empty file modified appinfo/app.php
100644 β†’ 100755
Empty file.
Empty file modified appinfo/application.php
100644 β†’ 100755
Empty file.
Empty file modified appinfo/info.xml
100644 β†’ 100755
Empty file.
Empty file modified appinfo/routes.php
100644 β†’ 100755
Empty file.
Empty file modified composer.json
100644 β†’ 100755
Empty file.
Empty file modified controller/contactcontroller.php
100644 β†’ 100755
Empty file.
Empty file modified controller/emailcontroller.php
100644 β†’ 100755
Empty file.
Empty file modified controller/proxycontroller.php
100644 β†’ 100755
Empty file.
Empty file modified controller/settingscontroller.php
100644 β†’ 100755
Empty file.
Empty file modified controller/viewcontroller.php
100644 β†’ 100755
Empty file.
Empty file modified css/app/calendar.scss
100644 β†’ 100755
Empty file.
Empty file modified css/app/calendarlist.scss
100644 β†’ 100755
Empty file.
Empty file modified css/app/datepicker.scss
100644 β†’ 100755
Empty file.
Empty file modified css/app/eventdialog.scss
100644 β†’ 100755
Empty file.
Empty file modified css/app/globals.scss
100644 β†’ 100755
Empty file.
Empty file modified css/app/print.scss
100644 β†’ 100755
Empty file.
Empty file modified css/app/settings.scss
100644 β†’ 100755
Empty file.
Empty file modified http/streamresponse.php
100644 β†’ 100755
Empty file.
Empty file modified img/calendar.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/calendar.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/color_picker.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/embed.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/favicon-mask.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/favicon-touch.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/favicon-touch.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/favicon.ico
100644 β†’ 100755
Empty file.
Empty file modified img/favicon.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/favicon.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/leftarrow.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/loading.gif
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/random.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/rightarrow.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/timezone.svg
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified issue_template.md
100644 β†’ 100755
Empty file.
Empty file modified js/.jshintrc
100644 β†’ 100755
Empty file.
Empty file modified js/.stylelintrc
100644 β†’ 100755
Empty file.
Empty file modified js/app/controllers/attendeecontroller.js
100644 β†’ 100755
Empty file.
27 changes: 22 additions & 5 deletions js/app/controllers/calcontroller.js
100644 β†’ 100755
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ app.controller('CalController', ['$scope', 'Calendar', 'CalendarService', 'VEven
fc.elm.fullCalendar('option', 'timezone', 'UTC');
});


if (!isPublic) {
$scope.calendarsPromise = CalendarService.getAll().then(function (calendars) {
$scope.calendars = calendars;
Expand All @@ -140,17 +141,33 @@ app.controller('CalController', ['$scope', 'Calendar', 'CalendarService', 'VEven
$scope.$apply();
});
} else {
$scope.calendarsPromise = CalendarService.getPublicCalendar(constants.publicSharingToken).then(function(calendar) {
$scope.calendars = [calendar];
$scope.calendars = [];
var tokens = constants.publicSharingToken.split(".");
var promises = [];

tokens.forEach(function(token){
promises.push(CalendarService.getPublicCalendar(token).then(function(calendar) {
$scope.calendars.push(calendar);
}).catch((reason => {
OC.Notification.showTemporary(t('calendar', 'Calendar does not exist'));
})));
});

$scope.calendarsPromise = Promise.all(promises).then().catch().then(() => {
is.loading = false;
// TODO - scope.apply should not be necessary here
if($scope.calendars.length===0){
angular.element('#header-right').css('display', 'none');
angular.element('#emptycontent-container').css('display', 'block');
}
$scope.$apply();
}).catch((reason) => {
angular.element('#header-right').css('display', 'none');
angular.element('#emptycontent-container').css('display', 'block');
});
}

$scope.integration = function () {
return '<iframe width="400" height="215" src="' + $scope.$parent.root + 'embed/' + constants.publicSharingToken + '"></iframe>';
};


/**
* Calendar UI Configuration.
Expand Down
4 changes: 0 additions & 4 deletions js/app/controllers/calendarlistcontroller.js
100644 β†’ 100755
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ app.controller('CalendarListController', ['$scope', '$rootScope', '$window', 'Ha
$window.open(item.calendar.downloadUrl);
};

$scope.integration = function (item) {
return '<iframe width="400" height="215" src="' + item.publicEmbedURL + '"></iframe>';
};

$scope.$watch('publicdav', function (newvalue) {
if ($scope.$parent.calendars[0]) {
if (newvalue === 'CalDAV') { // CalDAV address
Expand Down
Empty file modified js/app/controllers/datepickercontroller.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/controllers/editorcontroller.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/controllers/importcontroller.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/controllers/recurrencecontroller.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/controllers/settingscontroller.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/controllers/valarmcontroller.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/directives/avatarDirective.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/directives/colorpickerDirective.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/directives/confirmationDirective.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/directives/datetimepickerDirective.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/directives/fullCalendarDirective.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/directives/loadingDirective.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/directives/modalDirective.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/directives/onToggleShowDirective.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/factory/calendarFactory.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/factory/icalFactory.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/CalendarListFilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/SubscriptionListFilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/attendeefilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/attendeenotorganizerfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/calendarfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/calendarselectorfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/datepickerfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/importcalendarfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/importerrorfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/reminderfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/subscriptionfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/timezonefilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/filters/timezonewithoutcontinentfilter.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/ImportFileWrapperModel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/calendarListItemModel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/calendarmodel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/fcEventModel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/hookModel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/simpleEventModel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/splittedICalModel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/timezonemodel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/veventModel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/models/webcalModel.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/autocompletionservice.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/calendarService.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/davClient.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/eventseditordialogservice.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/hashService.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/is.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/mailerservice.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/settingsservice.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/timezoneService.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/veventService.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/service/webcalService.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/utility/colorUtility.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/utility/iCalSplitterUtility.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/utility/popoverPositioningUtility.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/utility/stringUtility.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/utility/webcalUtility.js
100644 β†’ 100755
Empty file.
Empty file modified js/app/utility/xmlUtility.js
100644 β†’ 100755
Empty file.
Empty file modified js/config/app.js
100644 β†’ 100755
Empty file.
Empty file modified js/config/config.js
100644 β†’ 100755
Empty file.
Empty file modified js/config/run.js
100644 β†’ 100755
Empty file.
Empty file modified js/gulpfile.js
100644 β†’ 100755
Empty file.
Empty file modified js/licenses/hsl_rgb_converter.js
100644 β†’ 100755
Empty file.
Empty file modified js/licenses/jquery.timepicker.css
100644 β†’ 100755
Empty file.
Empty file modified js/package.json
100644 β†’ 100755
Empty file.
Empty file modified js/timezones/README.md
100644 β†’ 100755
Empty file.
Empty file modified js/timezones/zones.json
100644 β†’ 100755
Empty file.
Empty file modified js/yarn.lock
100644 β†’ 100755
Empty file.
Empty file modified l10n/.gitkeep
100644 β†’ 100755
Empty file.
Empty file modified l10n/af.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/af.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ar.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ar.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ast.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ast.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/bg.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/bg.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ca.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ca.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/cs.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/cs.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/da.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/da.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/de.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/de.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/de_DE.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/de_DE.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/el.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/el.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/en_GB.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/en_GB.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/eo.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/eo.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_419.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_419.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_AR.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_AR.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_CL.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_CL.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_CO.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_CO.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_CR.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_CR.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_DO.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_DO.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_EC.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_EC.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_GT.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_GT.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_HN.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_HN.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_MX.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_MX.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_NI.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_NI.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_PA.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_PA.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_PE.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_PE.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_PR.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_PR.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_PY.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_PY.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_SV.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_SV.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_UY.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/es_UY.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/et_EE.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/et_EE.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/eu.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/eu.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/fa.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/fa.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/fi.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/fi.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/fr.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/fr.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/gl.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/gl.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/he.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/he.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/hr.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/hr.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/hu.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/hu.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/hy.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/hy.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ia.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ia.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/is.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/is.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/it.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/it.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ja.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ja.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ka_GE.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ka_GE.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ko.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ko.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/lb.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/lb.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/lt_LT.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/lt_LT.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/lv.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/lv.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/mk.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/mk.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/mn.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/mn.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/nb.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/nb.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/nl.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/nl.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/no-php
100644 β†’ 100755
Empty file.
Empty file modified l10n/oc.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/oc.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/pl.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/pl.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/pt_BR.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/pt_BR.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/pt_PT.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/pt_PT.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ro.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ro.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/ru.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/ru.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/sk.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/sk.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/sl.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/sl.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/sq.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/sq.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/sr.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/sr.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/sv.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/sv.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/th.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/th.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/tr.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/tr.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/uk.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/uk.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/vi.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/vi.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/zh_CN.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/zh_CN.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/zh_HK.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/zh_HK.json
100644 β†’ 100755
Empty file.
Empty file modified l10n/zh_TW.js
100644 β†’ 100755
Empty file.
Empty file modified l10n/zh_TW.json
100644 β†’ 100755
Empty file.
Empty file modified screenshots/1.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/2.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/3.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/4.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/COPYING
100644 β†’ 100755
Empty file.
Empty file modified screenshots/README.md
100644 β†’ 100755
Empty file.
Empty file modified screenshots/calendar_dropdown.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/calendar_editing.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/calendar_sharing.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/calendarlist_datepicker.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/drag_create_event.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/editor_attendee.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/editor_details.png
100644 β†’ 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified screenshots/editor_reminder.png
100644 β†’ 100755
Empty file modified screenshots/editor_repeating.png
100644 β†’ 100755
Empty file modified screenshots/import.png
100644 β†’ 100755
Empty file modified screenshots/import_in_progress.png
100644 β†’ 100755
Empty file modified screenshots/popover.png
100644 β†’ 100755
Empty file modified screenshots/public_sharing.png
100644 β†’ 100755
Empty file modified screenshots/public_sharing_embed.png
100644 β†’ 100755
Empty file modified screenshots/settings.png
100644 β†’ 100755
Empty file modified screenshots/sidebar.png
100644 β†’ 100755
Empty file modified screenshots/sidebar_attendees.png
100644 β†’ 100755
Empty file modified screenshots/sidebar_reminders.png
100644 β†’ 100755
Empty file modified screenshots/view_day.png
100644 β†’ 100755
Empty file modified screenshots/view_month.png
100644 β†’ 100755
Empty file modified screenshots/view_week.png
100644 β†’ 100755
Empty file modified templates/colorpicker.html
100644 β†’ 100755
Empty file.
Empty file modified templates/editor.popover.php
100644 β†’ 100755
Empty file.
Empty file modified templates/editor.sidebar.php
100644 β†’ 100755
Empty file.
Empty file modified templates/mail.publication.html.php
100644 β†’ 100755
Empty file.
Empty file modified templates/mail.publication.text.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.buttonarea.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.calendarlist.item.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.calendarlist.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.createcalendar.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.createsubscription.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.datepicker.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.emptycontent.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.event.dialog.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.eventsalarms.php
100644 β†’ 100755
Empty file.
Empty file modified templates/part.eventsattendees.php
100644 β†’ 100755
Empty file.
Loading

0 comments on commit 7b967fe

Please sign in to comment.