├── .devcontainer ├── devcontainer.json └── setup.sh ├── .eslintrc.cjs ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── bug-report.yml.license │ ├── feature-request.yml │ └── feature-request.yml.license └── workflows │ ├── app-upgrade-mysql.yml │ ├── appstore-build-publish.yml │ ├── cypress-component.yml │ ├── cypress-custom.yml │ ├── fixup.yml │ ├── integration.yml │ ├── lint-eslint.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── lint-stylelint.yml │ ├── node.yml │ ├── npm-audit-fix.yml │ ├── openapi.yml │ ├── php-scoper-dependencies.yml │ ├── phpunit-mariadb.yml │ ├── phpunit-mysql.yml │ ├── phpunit-pgsql.yml │ ├── phpunit-sqlite.yml │ ├── pr-feedback.yml │ ├── psalm-matrix-custom.yml │ ├── renovate-approve-merge.yml │ ├── reuse.yml │ ├── update-nextcloud-ocp-approve-merge.yml │ └── update-nextcloud-ocp-matrix.yml ├── .gitignore ├── .l10nignore ├── .lib-vendor-organizer.php ├── .nextcloudignore ├── .php-cs-fixer.dist.php ├── .scoper-production-dependencies ├── .scripts └── release.sh ├── .tx └── config ├── AUTHORS.md ├── CHANGELOG.md ├── COPYING ├── LICENSES ├── AGPL-3.0-or-later.txt ├── Apache-2.0.txt ├── CC-BY-SA-2.0.txt ├── CC0-1.0.txt ├── LicenseRef-AppleAppStoreBadge.txt ├── LicenseRef-FacebookTrademarks.txt ├── LicenseRef-GooglePlayBadge.txt ├── LicenseRef-MastodonTrademarks.txt ├── LicenseRef-NextcloudTrademarks.txt ├── LicenseRef-XTrademarks.txt └── MIT.txt ├── Makefile ├── README.md ├── REUSE.toml ├── appinfo ├── info.xml └── routes.php ├── babel.config.cjs ├── composer.json ├── composer.lock ├── css ├── grid.css ├── modal.css └── tiptap.css ├── cypress.config.mjs ├── cypress ├── component │ └── ContentReferenceWidget.cy.js ├── e2e │ ├── ToDo list.json │ ├── column-datetime.cy.js │ ├── column-datetimeDate.cy.js │ ├── column-datetimeTime.cy.js │ ├── column-number-progress.cy.js │ ├── column-number-stars.cy.js │ ├── column-number.cy.js │ ├── column-selection-check.cy.js │ ├── column-selection-multi.cy.js │ ├── column-selection.cy.js │ ├── column-text-line.cy.js │ ├── column-text-link.cy.js │ ├── column-usergroup.cy.js │ ├── context-navigation.cy.js │ ├── context.cy.js │ ├── entity-not-found.cy.js │ ├── spec.cy.js │ ├── tables-archive.cy.js │ ├── tables-export-csv.cy.js │ ├── tables-favorite.cy.js │ ├── tables-fe-filters.cy.js │ ├── tables-import-export-scheme.cy.js │ ├── tables-import.cy.js │ ├── tables-rows.cy.js │ ├── tables-share.cy.js │ ├── tables-table.cy.js │ ├── tables.cy.js │ ├── view-filtering-datetime.cy.js │ ├── view-filtering-selection.cy.js │ ├── view-mandatory-state.cy.js │ └── view.cy.js ├── fixtures │ ├── NC_server_test.pdf │ ├── example.json │ ├── photo-test-1.jpeg │ ├── test-import.csv │ └── widgets │ │ ├── createRow.json │ │ ├── editRow.json │ │ └── richObject.json ├── integration │ └── api-v2 │ │ └── tables.spec.js ├── plugins │ └── index.js ├── styleguide │ ├── assets │ │ ├── additional.css │ │ ├── close.svg │ │ ├── default.css │ │ ├── icons.css │ │ ├── img │ │ │ ├── actions │ │ │ │ ├── add.svg │ │ │ │ ├── address.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── audio-off.svg │ │ │ │ ├── audio.svg │ │ │ │ ├── caret-white.svg │ │ │ │ ├── caret.svg │ │ │ │ ├── checkbox-mark-dark.svg │ │ │ │ ├── checkbox-mark-white.svg │ │ │ │ ├── checkbox-mark.svg │ │ │ │ ├── checkbox-mixed-dark.svg │ │ │ │ ├── checkbox-mixed-white.svg │ │ │ │ ├── checkbox-mixed.svg │ │ │ │ ├── checkmark-white.svg │ │ │ │ ├── checkmark.png │ │ │ │ ├── checkmark.svg │ │ │ │ ├── clippy.svg │ │ │ │ ├── close.svg │ │ │ │ ├── comment.png │ │ │ │ ├── comment.svg │ │ │ │ ├── confirm-fade.svg │ │ │ │ ├── confirm-white.svg │ │ │ │ ├── confirm.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── details.svg │ │ │ │ ├── disabled-user.svg │ │ │ │ ├── disabled-users.svg │ │ │ │ ├── download.png │ │ │ │ ├── download.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── error-white.svg │ │ │ │ ├── error.svg │ │ │ │ ├── external.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fullscreen.svg │ │ │ │ ├── group.svg │ │ │ │ ├── history.png │ │ │ │ ├── history.svg │ │ │ │ ├── info-white.svg │ │ │ │ ├── info.svg │ │ │ │ ├── logout.svg │ │ │ │ ├── mail.svg │ │ │ │ ├── menu-sidebar.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── more-white.svg │ │ │ │ ├── more.svg │ │ │ │ ├── password-white.svg │ │ │ │ ├── password.png │ │ │ │ ├── password.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play-add.svg │ │ │ │ ├── play-next.svg │ │ │ │ ├── play-previous.svg │ │ │ │ ├── play.svg │ │ │ │ ├── projects.svg │ │ │ │ ├── public-white.svg │ │ │ │ ├── public.svg │ │ │ │ ├── quota.svg │ │ │ │ ├── rename.svg │ │ │ │ ├── screen-off.svg │ │ │ │ ├── screen.svg │ │ │ │ ├── search.svg │ │ │ │ ├── settings-dark.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── share.png │ │ │ │ ├── share.svg │ │ │ │ ├── shared.svg │ │ │ │ ├── sound-off.svg │ │ │ │ ├── sound.svg │ │ │ │ ├── star-dark.svg │ │ │ │ ├── star.png │ │ │ │ ├── star.svg │ │ │ │ ├── starred.png │ │ │ │ ├── starred.svg │ │ │ │ ├── tag.png │ │ │ │ ├── tag.svg │ │ │ │ ├── timezone.svg │ │ │ │ ├── toggle-background.svg │ │ │ │ ├── toggle-filelist.svg │ │ │ │ ├── toggle-pictures.svg │ │ │ │ ├── toggle.svg │ │ │ │ ├── triangle-e.svg │ │ │ │ ├── triangle-n.svg │ │ │ │ ├── triangle-s.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-admin.svg │ │ │ │ ├── user.svg │ │ │ │ ├── verified.svg │ │ │ │ ├── verify.svg │ │ │ │ ├── verifying.svg │ │ │ │ ├── video-off.svg │ │ │ │ ├── video-switch.svg │ │ │ │ ├── video.svg │ │ │ │ ├── view-close.svg │ │ │ │ ├── view-download.svg │ │ │ │ ├── view-next.svg │ │ │ │ ├── view-pause.svg │ │ │ │ ├── view-play.svg │ │ │ │ └── view-previous.svg │ │ │ ├── app-background.jpg │ │ │ ├── appstore.svg │ │ │ ├── background.png │ │ │ ├── background.svg │ │ │ ├── background │ │ │ │ └── kamil-porembinski-clouds.jpg │ │ │ ├── breadcrumb.svg │ │ │ ├── caldav │ │ │ │ ├── attendees.svg │ │ │ │ ├── description.svg │ │ │ │ ├── link.svg │ │ │ │ ├── location.svg │ │ │ │ ├── organizer.svg │ │ │ │ ├── time.svg │ │ │ │ └── title.svg │ │ │ ├── categories │ │ │ │ ├── auth.svg │ │ │ │ ├── bundles.svg │ │ │ │ ├── customization.svg │ │ │ │ ├── dashboard.svg │ │ │ │ ├── files.svg │ │ │ │ ├── games.svg │ │ │ │ ├── integration.svg │ │ │ │ ├── monitoring.svg │ │ │ │ ├── multimedia.svg │ │ │ │ ├── office.svg │ │ │ │ ├── organization.svg │ │ │ │ ├── social.svg │ │ │ │ └── workflow.svg │ │ │ ├── clients │ │ │ │ ├── desktop.svg │ │ │ │ ├── phone.svg │ │ │ │ └── tablet.svg │ │ │ ├── desktopapp.svg │ │ │ ├── facebook.svg │ │ │ ├── favicon-fb.png │ │ │ ├── favicon-mask.svg │ │ │ ├── favicon-touch.png │ │ │ ├── favicon-touch.svg │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── favicon.svg │ │ │ ├── filetypes │ │ │ │ ├── application-pdf.svg │ │ │ │ ├── application.svg │ │ │ │ ├── audio.svg │ │ │ │ ├── file.svg │ │ │ │ ├── folder-drag-accept.svg │ │ │ │ ├── folder-encrypted.svg │ │ │ │ ├── folder-external.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-shared.svg │ │ │ │ ├── folder-starred.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── image.svg │ │ │ │ ├── link.svg │ │ │ │ ├── location.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-code.svg │ │ │ │ ├── text-vcard.svg │ │ │ │ ├── text.svg │ │ │ │ ├── video.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ ├── googleplay.png │ │ │ ├── loading-dark.gif │ │ │ ├── loading-small-dark.gif │ │ │ ├── loading-small.gif │ │ │ ├── loading.gif │ │ │ ├── logo │ │ │ │ ├── logo-enterprise.png │ │ │ │ ├── logo-enterprise.svg │ │ │ │ ├── logo-icon-175px.png │ │ │ │ ├── logo-mail.png │ │ │ │ ├── logo.png │ │ │ │ └── logo.svg │ │ │ ├── mail.svg │ │ │ ├── manifest.json │ │ │ ├── mastodon.svg │ │ │ ├── places │ │ │ │ ├── calendar-dark.png │ │ │ │ ├── calendar.svg │ │ │ │ ├── contacts.svg │ │ │ │ ├── default-app-icon.svg │ │ │ │ ├── files.svg │ │ │ │ ├── home.svg │ │ │ │ ├── link.svg │ │ │ │ ├── music.svg │ │ │ │ └── picture.svg │ │ │ ├── rating │ │ │ │ ├── s0.svg │ │ │ │ ├── s1.svg │ │ │ │ ├── s10.svg │ │ │ │ ├── s2.svg │ │ │ │ ├── s3.svg │ │ │ │ ├── s4.svg │ │ │ │ ├── s5.svg │ │ │ │ ├── s6.svg │ │ │ │ ├── s7.svg │ │ │ │ ├── s8.svg │ │ │ │ └── s9.svg │ │ │ ├── rss.svg │ │ │ └── twitter.svg │ │ └── server.css │ └── global.requires.js └── support │ ├── commands.js │ ├── component-index.html │ ├── component.js │ └── e2e.js ├── docs └── permissions-matrix.xlsx ├── img ├── app-dark.svg ├── app.svg ├── material │ ├── LICENSE │ ├── account.svg │ ├── adjust.svg │ ├── alarm.svg │ ├── album.svg │ ├── alert.svg │ ├── anchor.svg │ ├── android.svg │ ├── animation.svg │ ├── antenna.svg │ ├── api.svg │ ├── apps.svg │ ├── assistant.svg │ ├── at.svg │ ├── atm.svg │ ├── attachment.svg │ ├── atv.svg │ ├── autorenew.svg │ ├── baby.svg │ ├── backspace.svg │ ├── balcony.svg │ ├── ballot.svg │ ├── bandage.svg │ ├── bank.svg │ ├── barrel.svg │ ├── basket.svg │ ├── basketball.svg │ ├── bathtub.svg │ ├── battery.svg │ ├── bed.svg │ ├── bee.svg │ ├── bell.svg │ ├── biathlon.svg │ ├── bike.svg │ ├── blender.svg │ ├── blur.svg │ ├── book.svg │ ├── bookmark.svg │ ├── boombox.svg │ ├── briefcase.svg │ ├── broadcast.svg │ ├── brush.svg │ ├── bug.svg │ ├── bullhorn.svg │ ├── bus.svg │ ├── cached.svg │ ├── cake.svg │ ├── calendar.svg │ ├── camera.svg │ ├── cancel.svg │ ├── candle.svg │ ├── car.svg │ ├── carabiner.svg │ ├── cart.svg │ ├── cast.svg │ ├── cellphone.svg │ ├── charity.svg │ ├── check.svg │ ├── checkbook.svg │ ├── church.svg │ ├── city.svg │ ├── clock.svg │ ├── close.svg │ ├── cloud.svg │ ├── coffee.svg │ ├── cog.svg │ ├── cogs.svg │ ├── collage.svg │ ├── compare.svg │ ├── compass.svg │ ├── compost.svg │ ├── contacts.svg │ ├── controller.svg │ ├── cookie.svg │ ├── copyright.svg │ ├── countertop.svg │ ├── cradle.svg │ ├── creation.svg │ ├── cricket.svg │ ├── crop.svg │ ├── crosshairs.svg │ ├── crowd.svg │ ├── delete.svg │ ├── delta.svg │ ├── details.svg │ ├── devices.svg │ ├── dialpad.svg │ ├── directions.svg │ ├── dishwasher.svg │ ├── diving.svg │ ├── dns.svg │ ├── domain.svg │ ├── download.svg │ ├── dumbbell.svg │ ├── earth.svg │ ├── eject.svg │ ├── email.svg │ ├── emoticon.svg │ ├── equalizer.svg │ ├── eye.svg │ ├── fax.svg │ ├── fencing.svg │ ├── ferry.svg │ ├── file.svg │ ├── film.svg │ ├── filmstrip.svg │ ├── finance.svg │ ├── fingerprint.svg │ ├── fire.svg │ ├── firebase.svg │ ├── flag.svg │ ├── flare.svg │ ├── flash.svg │ ├── flower.svg │ ├── folder.svg │ ├── food.svg │ ├── football.svg │ ├── forest.svg │ ├── forum.svg │ ├── forward.svg │ ├── fullscreen.svg │ ├── gamepad.svg │ ├── gauge.svg │ ├── gesture.svg │ ├── gmail.svg │ ├── golf.svg │ ├── google.svg │ ├── grain.svg │ ├── grass.svg │ ├── grid.svg │ ├── grill.svg │ ├── gymnastics.svg │ ├── hail.svg │ ├── hammer.svg │ ├── handball.svg │ ├── hdr.svg │ ├── headphones.svg │ ├── headset.svg │ ├── heart.svg │ ├── hiking.svg │ ├── history.svg │ ├── home.svg │ ├── hub.svg │ ├── human.svg │ ├── hvac.svg │ ├── image.svg │ ├── inbox.svg │ ├── information.svg │ ├── iron.svg │ ├── kabaddi.svg │ ├── karate.svg │ ├── kayaking.svg │ ├── key.svg │ ├── keyboard.svg │ ├── kite.svg │ ├── kitesurfing.svg │ ├── label.svg │ ├── ladybug.svg │ ├── landslide.svg │ ├── laptop.svg │ ├── launch.svg │ ├── layers.svg │ ├── leak.svg │ ├── library.svg │ ├── license.svg │ ├── lightbulb.svg │ ├── link.svg │ ├── liquor.svg │ ├── lock.svg │ ├── login.svg │ ├── logout.svg │ ├── looks.svg │ ├── loupe.svg │ ├── magnify.svg │ ├── map.svg │ ├── marker.svg │ ├── medication.svg │ ├── meditation.svg │ ├── memory.svg │ ├── menu.svg │ ├── merge.svg │ ├── message.svg │ ├── meta.json │ ├── microphone.svg │ ├── minus.svg │ ├── monitor.svg │ ├── moped.svg │ ├── more.svg │ ├── mosque.svg │ ├── motion.svg │ ├── motorbike.svg │ ├── mouse.svg │ ├── movie.svg │ ├── mustache.svg │ ├── nature.svg │ ├── navigation.svg │ ├── newspaper.svg │ ├── noodles.svg │ ├── opacity.svg │ ├── overscan.svg │ ├── palette.svg │ ├── panorama.svg │ ├── paperclip.svg │ ├── paragliding.svg │ ├── parking.svg │ ├── pasta.svg │ ├── pause.svg │ ├── pencil.svg │ ├── phone.svg │ ├── piano.svg │ ├── pin.svg │ ├── pinwheel.svg │ ├── pizza.svg │ ├── play.svg │ ├── plus.svg │ ├── podcast.svg │ ├── polo.svg │ ├── post.svg │ ├── power.svg │ ├── printer.svg │ ├── publish.svg │ ├── puzzle.svg │ ├── racquetball.svg │ ├── radar.svg │ ├── radio.svg │ ├── raw.svg │ ├── redo.svg │ ├── refresh.svg │ ├── reminder.svg │ ├── remote.svg │ ├── rename.svg │ ├── repeat.svg │ ├── replay.svg │ ├── reply.svg │ ├── restart.svg │ ├── restore.svg │ ├── rewind.svg │ ├── ribbon.svg │ ├── rocket.svg │ ├── rodent.svg │ ├── rowing.svg │ ├── rss.svg │ ├── rugby.svg │ ├── run.svg │ ├── satellite.svg │ ├── saxophone.svg │ ├── scanner.svg │ ├── school.svg │ ├── scooter.svg │ ├── sd.svg │ ├── seat.svg │ ├── security.svg │ ├── segment.svg │ ├── send.svg │ ├── shape.svg │ ├── share.svg │ ├── shopping.svg │ ├── shuffle.svg │ ├── sigma.svg │ ├── silverware.svg │ ├── sim.svg │ ├── skate.svg │ ├── skateboard.svg │ ├── skateboarding.svg │ ├── ski.svg │ ├── sledding.svg │ ├── sleep.svg │ ├── smoking.svg │ ├── snowboard.svg │ ├── snowflake.svg │ ├── snowmobile.svg │ ├── snowshoeing.svg │ ├── soccer.svg │ ├── spa.svg │ ├── speaker.svg │ ├── spellcheck.svg │ ├── stadium.svg │ ├── star.svg │ ├── steering.svg │ ├── stop.svg │ ├── store.svg │ ├── subtitles.svg │ ├── subway.svg │ ├── surfing.svg │ ├── synagogue.svg │ ├── sync.svg │ ├── tab.svg │ ├── tablet.svg │ ├── tag.svg │ ├── taxi.svg │ ├── tea.svg │ ├── television.svg │ ├── tennis.svg │ ├── terrain.svg │ ├── text.svg │ ├── texture.svg │ ├── thermostat.svg │ ├── ticket.svg │ ├── timelapse.svg │ ├── toolbox.svg │ ├── train.svg │ ├── tram.svg │ ├── transition.svg │ ├── translate.svg │ ├── truck.svg │ ├── tsunami.svg │ ├── tune.svg │ ├── undo.svg │ ├── update.svg │ ├── upload.svg │ ├── usb.svg │ ├── vacuum.svg │ ├── vibrate.svg │ ├── video.svg │ ├── violin.svg │ ├── voicemail.svg │ ├── volcano.svg │ ├── volleyball.svg │ ├── vote.svg │ ├── walk.svg │ ├── wallet.svg │ ├── wallpaper.svg │ ├── watch.svg │ ├── water.svg │ ├── watermark.svg │ ├── web.svg │ ├── widgets.svg │ ├── wrench.svg │ └── youtube.svg ├── view-dark.svg └── view.svg ├── krankerl.toml ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── az.js ├── az.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── bn_BD.js ├── bn_BD.json ├── br.js ├── br.json ├── bs.js ├── bs.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── cy_GB.js ├── cy_GB.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gd.js ├── gd.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── hy.js ├── hy.json ├── ia.js ├── ia.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── kab.js ├── kab.json ├── km.js ├── km.json ├── ko.js ├── ko.json ├── lb.js ├── lb.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── mn.js ├── mn.json ├── ms_MY.js ├── ms_MY.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sr@latin.js ├── sr@latin.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── ta.js ├── ta.json ├── th.js ├── th.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── Activity │ ├── ActivityManager.php │ ├── ChangeSet.php │ ├── Filter.php │ ├── SettingChanges.php │ └── TablesProvider.php ├── Analytics │ └── AnalyticsDatasource.php ├── Api │ └── V1Api.php ├── AppInfo │ └── Application.php ├── BackgroundJob │ └── ConvertViewColumnsFormat.php ├── Capabilities.php ├── Command │ ├── AddTable.php │ ├── ChangeOwnershipTable.php │ ├── Clean.php │ ├── CleanLegacy.php │ ├── ListContexts.php │ ├── ListTables.php │ ├── RemoveTable.php │ ├── RenameTable.php │ ├── ShowContext.php │ └── TransferLegacyRows.php ├── Constants │ ├── ShareReceiverType.php │ └── UsergroupType.php ├── Controller │ ├── AOCSController.php │ ├── Api1Controller.php │ ├── ApiColumnsController.php │ ├── ApiFavoriteController.php │ ├── ApiGeneralController.php │ ├── ApiTablesController.php │ ├── ContextController.php │ ├── Errors.php │ ├── ImportController.php │ ├── NavigationController.php │ ├── PageController.php │ ├── RowController.php │ ├── RowOCSController.php │ ├── SearchController.php │ ├── ShareController.php │ ├── TableController.php │ ├── TableTemplateController.php │ └── ViewController.php ├── Db │ ├── Column.php │ ├── ColumnMapper.php │ ├── ColumnTypes │ │ ├── DatetimeColumnQB.php │ │ ├── IColumnTypeQB.php │ │ ├── NumberColumnQB.php │ │ ├── SelectionColumnQB.php │ │ ├── SuperColumnQB.php │ │ ├── TextColumnQB.php │ │ └── UsergroupColumnQB.php │ ├── Context.php │ ├── ContextMapper.php │ ├── ContextNavigation.php │ ├── ContextNavigationMapper.php │ ├── ContextNodeRelation.php │ ├── ContextNodeRelationMapper.php │ ├── EntitySuper.php │ ├── LegacyRow.php │ ├── LegacyRowMapper.php │ ├── LogItem.php │ ├── LogItemMapper.php │ ├── Page.php │ ├── PageContent.php │ ├── PageContentMapper.php │ ├── PageMapper.php │ ├── Row2.php │ ├── Row2Mapper.php │ ├── RowCellDatetime.php │ ├── RowCellDatetimeMapper.php │ ├── RowCellMapperSuper.php │ ├── RowCellNumber.php │ ├── RowCellNumberMapper.php │ ├── RowCellSelection.php │ ├── RowCellSelectionMapper.php │ ├── RowCellSuper.php │ ├── RowCellText.php │ ├── RowCellTextMapper.php │ ├── RowCellUsergroup.php │ ├── RowCellUsergroupMapper.php │ ├── RowSleeve.php │ ├── RowSleeveMapper.php │ ├── Share.php │ ├── ShareMapper.php │ ├── Table.php │ ├── TableMapper.php │ ├── View.php │ └── ViewMapper.php ├── Dto │ └── Column.php ├── Errors │ ├── BadRequestError.php │ ├── InternalError.php │ ├── NotFoundError.php │ └── PermissionError.php ├── Event │ ├── AbstractRowEvent.php │ ├── RowAddedEvent.php │ ├── RowDeletedEvent.php │ ├── RowUpdatedEvent.php │ ├── TableDeletedEvent.php │ ├── TableOwnershipTransferredEvent.php │ └── ViewDeletedEvent.php ├── Helper │ ├── CircleHelper.php │ ├── ColumnsHelper.php │ ├── ConversionHelper.php │ ├── GroupHelper.php │ └── UserHelper.php ├── Listener │ ├── AddMissingIndicesListener.php │ ├── AnalyticsDatasourceListener.php │ ├── BeforeTemplateRenderedListener.php │ ├── LoadAdditionalListener.php │ ├── TablesReferenceListener.php │ ├── UserDeletedListener.php │ ├── WhenRowDeletedAuditLogListener.php │ ├── WhenTableDeletedAuditLogListener.php │ ├── WhenTableTransferredAuditLogListener.php │ └── WhenViewDeletedAuditLogListener.php ├── Middleware │ ├── Attribute │ │ └── RequirePermission.php │ └── PermissionMiddleware.php ├── Migration │ ├── DbRowSleeveSequence.php │ ├── FixContextsDefaults.php │ ├── NewDbStructureRepairStep.php │ ├── Version000000Date20210921000000.php │ ├── Version000200Date20220428000000.php │ ├── Version000203Date20230124000000.php │ ├── Version000400Date20230406000000.php │ ├── Version000600Date20230703000000.php │ ├── Version000700Date20230916000000.php │ ├── Version000800Date20240213123743.php │ ├── Version000800Date20240222000000.php │ ├── Version000800Date20240712000000.php │ ├── Version000800Date20240828000000.php │ ├── Version000900Date20240314000000.php │ ├── Version000900Date20250408000000.php │ ├── Version000900Date20250710000000.php │ ├── Version000920Date20250422000000.php │ ├── Version001000Date20240328000000.php │ └── Version001000Date20250720000000.php ├── Model │ ├── Permissions.php │ ├── Public │ │ └── Row.php │ ├── RowDataInput.php │ └── TableScheme.php ├── Reference │ ├── ContentReferenceHelper.php │ ├── ContentReferenceProvider.php │ ├── ReferenceHelper.php │ └── ReferenceProvider.php ├── ResponseDefinitions.php ├── Search │ └── SearchTablesProvider.php ├── Service │ ├── ColumnService.php │ ├── ColumnTypes │ │ ├── DatetimeBusiness.php │ │ ├── DatetimeDateBusiness.php │ │ ├── DatetimeTimeBusiness.php │ │ ├── IColumnTypeBusiness.php │ │ ├── NumberBusiness.php │ │ ├── NumberProgressBusiness.php │ │ ├── NumberStarsBusiness.php │ │ ├── SelectionBusiness.php │ │ ├── SelectionCheckBusiness.php │ │ ├── SelectionMultiBusiness.php │ │ ├── SuperBusiness.php │ │ ├── TextLineBusiness.php │ │ ├── TextLinkBusiness.php │ │ ├── TextLongBusiness.php │ │ ├── TextRichBusiness.php │ │ └── UsergroupBusiness.php │ ├── ContextService.php │ ├── FavoritesService.php │ ├── ImportService.php │ ├── PermissionsService.php │ ├── RowService.php │ ├── SearchService.php │ ├── ShareService.php │ ├── SuperService.php │ ├── Support │ │ ├── AuditLogServiceInterface.php │ │ └── DefaultAuditLogService.php │ ├── TableService.php │ ├── TableTemplateService.php │ ├── ValueObject │ │ └── ViewColumnInformation.php │ └── ViewService.php └── UploadException.php ├── openapi.json ├── package.json ├── phpunit.integration.xml ├── phpunit.xml ├── psalm.xml ├── renovate.json ├── scoper.inc.php ├── screenshots ├── sh-tables-1-small.png ├── sh-tables-1.png ├── sh-tables-2.png ├── sh-tables-3.png ├── sh-tables-4.png ├── sh-tables-5.png ├── sh-tables-6.png └── sh-tables-7.png ├── src ├── App.vue ├── file-actions.js ├── main.js ├── modules │ ├── main │ │ ├── partials │ │ │ ├── ColumnFormComponent.vue │ │ │ ├── ColumnInfoPopover.vue │ │ │ ├── ColumnTypeSelection.vue │ │ │ ├── ErrorMessage.vue │ │ │ ├── TableView.vue │ │ │ └── editViewPartials │ │ │ │ ├── SelectedViewColumns.vue │ │ │ │ ├── filter │ │ │ │ ├── FilterEntry.vue │ │ │ │ ├── FilterForm.vue │ │ │ │ └── FilterGroup.vue │ │ │ │ └── sort │ │ │ │ ├── DeletedSortEntry.vue │ │ │ │ ├── SortEntry.vue │ │ │ │ └── SortForm.vue │ │ └── sections │ │ │ ├── Dashboard.vue │ │ │ ├── DataTable.vue │ │ │ ├── ElementTitle.vue │ │ │ ├── EmptyTable.vue │ │ │ ├── EmptyView.vue │ │ │ ├── MainWrapper.vue │ │ │ ├── Table.vue │ │ │ ├── TableDescription.vue │ │ │ ├── TableWrapper.vue │ │ │ └── View.vue │ ├── modals │ │ ├── CreateColumn.vue │ │ ├── CreateContext.vue │ │ ├── CreateRow.vue │ │ ├── CreateTable.vue │ │ ├── DeleteColumn.vue │ │ ├── DeleteContext.vue │ │ ├── DeleteRows.vue │ │ ├── DeleteTable.vue │ │ ├── DeleteView.vue │ │ ├── EditColumn.vue │ │ ├── EditContext.vue │ │ ├── EditRow.vue │ │ ├── EditTable.vue │ │ ├── FileActionImport.vue │ │ ├── Import.vue │ │ ├── ImportPreview.vue │ │ ├── ImportResults.vue │ │ ├── ImportScheme.vue │ │ ├── Modals.vue │ │ ├── TransferContext.vue │ │ ├── TransferTable.vue │ │ └── ViewSettings.vue │ ├── navigation │ │ ├── partials │ │ │ ├── NavigationContextItem.vue │ │ │ ├── NavigationTableItem.vue │ │ │ └── NavigationViewItem.vue │ │ └── sections │ │ │ └── Navigation.vue │ └── sidebar │ │ ├── mixins │ │ └── shareAPI.js │ │ ├── partials │ │ ├── ShareForm.vue │ │ ├── ShareInfoPopover.vue │ │ ├── ShareInternalLink.vue │ │ └── ShareList.vue │ │ └── sections │ │ ├── Sidebar.vue │ │ ├── SidebarActivity.vue │ │ ├── SidebarIntegration.vue │ │ └── SidebarSharing.vue ├── pages │ ├── Context.vue │ ├── Startpage.vue │ ├── Table.vue │ └── View.vue ├── reference.js ├── router.js ├── service │ └── rebuild-navigation.js ├── shared │ ├── assets │ │ └── icons │ │ │ └── IconTables.vue │ ├── components │ │ ├── ActivityEntry.vue │ │ ├── ActivityList.vue │ │ ├── ncContextResource │ │ │ ├── NcContextResource.vue │ │ │ ├── ResourceForm.vue │ │ │ ├── ResourceList.vue │ │ │ ├── ResourceSharePermissions.vue │ │ │ ├── ResourceSharees.vue │ │ │ └── mixins │ │ │ │ └── permissionBitmask.js │ │ ├── ncEditor │ │ │ └── NcEditor.vue │ │ ├── ncIconPicker │ │ │ ├── NcIconPicker.vue │ │ │ ├── mixins │ │ │ │ └── svgHelper.js │ │ │ └── partials │ │ │ │ ├── Icon.vue │ │ │ │ └── IconPicker.vue │ │ ├── ncIconTimerSand │ │ │ └── NcIconTimerSand.vue │ │ ├── ncSmallButton │ │ │ └── NcSmallButton.vue │ │ ├── ncTable │ │ │ ├── NcTable.vue │ │ │ ├── mixins │ │ │ │ ├── cellEditMixin.js │ │ │ │ ├── columnClass.js │ │ │ │ ├── columnHandler.js │ │ │ │ ├── columnParser.js │ │ │ │ ├── columnsTypes │ │ │ │ │ ├── datetime.js │ │ │ │ │ ├── datetimeDate.js │ │ │ │ │ ├── datetimeTime.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── numberProgress.js │ │ │ │ │ ├── numberStars.js │ │ │ │ │ ├── selection.js │ │ │ │ │ ├── selectionCheck.js │ │ │ │ │ ├── selectionMulti.js │ │ │ │ │ ├── textLine.js │ │ │ │ │ ├── textLink.js │ │ │ │ │ ├── textLong.js │ │ │ │ │ ├── textRich.js │ │ │ │ │ └── usergroup.js │ │ │ │ ├── exportTableMixin.js │ │ │ │ ├── filter.js │ │ │ │ ├── magicFields.js │ │ │ │ ├── metaColumns.js │ │ │ │ ├── permissionsMixin.js │ │ │ │ └── rowHelper.js │ │ │ ├── partials │ │ │ │ ├── FilterLabel.vue │ │ │ │ ├── LinkWidget.vue │ │ │ │ ├── RichEditor.vue │ │ │ │ ├── SearchForm.vue │ │ │ │ ├── TableCellDateTime.vue │ │ │ │ ├── TableCellEditor.vue │ │ │ │ ├── TableCellHtml.vue │ │ │ │ ├── TableCellLink.vue │ │ │ │ ├── TableCellMultiSelection.vue │ │ │ │ ├── TableCellNumber.vue │ │ │ │ ├── TableCellProgress.vue │ │ │ │ ├── TableCellSelection.vue │ │ │ │ ├── TableCellStars.vue │ │ │ │ ├── TableCellTextLine.vue │ │ │ │ ├── TableCellUsergroup.vue │ │ │ │ ├── TableCellYesNo.vue │ │ │ │ ├── TableHeader.vue │ │ │ │ ├── TableHeaderColumnOptions.vue │ │ │ │ ├── TableRow.vue │ │ │ │ ├── TiptapMenuBar.vue │ │ │ │ ├── columnTypePartials │ │ │ │ │ └── forms │ │ │ │ │ │ ├── DatetimeDateForm.vue │ │ │ │ │ │ ├── DatetimeForm.vue │ │ │ │ │ │ ├── DatetimeTimeForm.vue │ │ │ │ │ │ ├── MainForm.vue │ │ │ │ │ │ ├── NumberForm.vue │ │ │ │ │ │ ├── NumberProgressForm.vue │ │ │ │ │ │ ├── NumberStarsForm.vue │ │ │ │ │ │ ├── SelectionCheckForm.vue │ │ │ │ │ │ ├── SelectionForm.vue │ │ │ │ │ │ ├── SelectionMultiForm.vue │ │ │ │ │ │ ├── TextLineForm.vue │ │ │ │ │ │ ├── TextLinkForm.vue │ │ │ │ │ │ ├── TextLongForm.vue │ │ │ │ │ │ ├── TextRichForm.vue │ │ │ │ │ │ └── UsergroupForm.vue │ │ │ │ └── rowTypePartials │ │ │ │ │ ├── DatetimeDateForm.vue │ │ │ │ │ ├── DatetimeForm.vue │ │ │ │ │ ├── DatetimeTimeForm.vue │ │ │ │ │ ├── NumberForm.vue │ │ │ │ │ ├── NumberProgressForm.vue │ │ │ │ │ ├── NumberStarsForm.vue │ │ │ │ │ ├── RowFormWrapper.vue │ │ │ │ │ ├── SelectionCheckForm.vue │ │ │ │ │ ├── SelectionForm.vue │ │ │ │ │ ├── SelectionMultiForm.vue │ │ │ │ │ ├── TextLineForm.vue │ │ │ │ │ ├── TextLinkForm.vue │ │ │ │ │ ├── TextLongForm.vue │ │ │ │ │ ├── TextRichForm.vue │ │ │ │ │ └── UsergroupForm.vue │ │ │ └── sections │ │ │ │ ├── CustomTable.vue │ │ │ │ └── Options.vue │ │ ├── ncTile │ │ │ └── NcTile.vue │ │ └── ncUserPicker │ │ │ └── NcUserPicker.vue │ ├── constants.ts │ ├── mixins │ │ ├── activityMixin.js │ │ ├── copyToClipboard.js │ │ ├── formatting.js │ │ ├── generalHelper.js │ │ ├── readableDate.js │ │ ├── relativeDate.js │ │ ├── searchUserGroup.js │ │ ├── shareTypesMixin.js │ │ └── viewportHelper.js │ ├── modals │ │ └── DialogConfirmation.vue │ └── utils │ │ └── displayError.js ├── store │ ├── data.js │ └── store.js ├── styles │ └── smart-picker.scss ├── types │ └── openapi │ │ ├── openapi.ts │ │ └── openapi.ts.license └── views │ ├── ContentReferenceWidget.vue │ ├── LinkReferenceWidget.vue │ ├── SmartPicker.vue │ ├── partials │ └── SearchAndSelectOption.vue │ └── sections │ └── Search.vue ├── stylelint.config.cjs ├── templates └── main.php ├── tests ├── integration │ ├── base-query-count.txt │ ├── composer.json │ ├── composer.lock │ ├── config │ │ └── behat.yml │ ├── features │ │ ├── APIv1.feature │ │ ├── APIv2.feature │ │ └── bootstrap │ │ │ ├── CollectionManager.php │ │ │ └── FeatureContext.php │ ├── resources │ │ ├── import-from-libreoffice-optional-fields.csv │ │ ├── import-from-libreoffice-optional-fields.csv.license │ │ ├── import-from-libreoffice.csv │ │ ├── import-from-libreoffice.csv.license │ │ ├── import-from-libreoffice.ods │ │ ├── import-from-libreoffice.ods.license │ │ ├── import-from-libreoffice.xlsx │ │ ├── import-from-libreoffice.xlsx.license │ │ ├── import-from-ms365.xlsx │ │ └── import-from-ms365.xlsx.license │ └── run.sh ├── phan-config.php ├── phpcs.xml ├── psalm-baseline.xml ├── stub.phpstub └── unit │ ├── Database │ └── DatabaseTestCase.php │ ├── Db │ ├── EntityVirtualPropertiesTest.php │ ├── Row2MapperFilterTest.php │ ├── Row2MapperTest.php │ └── Row2MapperTestDependencies.php │ ├── Listener │ ├── WhenRowDeletedAuditLogTest.php │ ├── WhenTableDeletedAuditLogTest.php │ ├── WhenTableOwnerTransferredAuditLogTest.php │ └── WhenViewDeletedAuditLogTest.php │ ├── Service │ ├── ColumnTypes │ │ ├── SelectionBusinessTest.php │ │ └── TextLinkBusinessTest.php │ ├── LegacyRowMapperTest.php │ ├── PermissionsServiceTest.php │ └── Support │ │ └── DefaultAuditLogServiceTest.php │ ├── bootstrap.php │ └── phpunit.xml ├── tsconfig.json ├── update-scoper-dependencies.sh ├── vendor-bin ├── openapi-extractor │ ├── composer.json │ └── composer.lock └── php-scoper │ ├── composer.json │ └── composer.lock └── vite.config.ts /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.devcontainer/setup.sh -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/app-upgrade-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/app-upgrade-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/cypress-component.yml -------------------------------------------------------------------------------- /.github/workflows/cypress-custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/cypress-custom.yml -------------------------------------------------------------------------------- /.github/workflows/fixup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/fixup.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/lint-eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/lint-eslint.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/lint-stylelint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/lint-stylelint.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.github/workflows/npm-audit-fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/npm-audit-fix.yml -------------------------------------------------------------------------------- /.github/workflows/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/openapi.yml -------------------------------------------------------------------------------- /.github/workflows/php-scoper-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/php-scoper-dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mariadb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/phpunit-mariadb.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/phpunit-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/phpunit-pgsql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/phpunit-sqlite.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm-matrix-custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/psalm-matrix-custom.yml -------------------------------------------------------------------------------- /.github/workflows/renovate-approve-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/renovate-approve-merge.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.gitignore -------------------------------------------------------------------------------- /.l10nignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.l10nignore -------------------------------------------------------------------------------- /.lib-vendor-organizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.lib-vendor-organizer.php -------------------------------------------------------------------------------- /.nextcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.nextcloudignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.scoper-production-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.scoper-production-dependencies -------------------------------------------------------------------------------- /.scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.scripts/release.sh -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/CC-BY-SA-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-AppleAppStoreBadge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/LicenseRef-AppleAppStoreBadge.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-FacebookTrademarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/LicenseRef-FacebookTrademarks.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-GooglePlayBadge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/LicenseRef-GooglePlayBadge.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-MastodonTrademarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/LicenseRef-MastodonTrademarks.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-NextcloudTrademarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/LicenseRef-NextcloudTrademarks.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-XTrademarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/LicenseRef-XTrademarks.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/REUSE.toml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/composer.lock -------------------------------------------------------------------------------- /css/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/css/grid.css -------------------------------------------------------------------------------- /css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/css/modal.css -------------------------------------------------------------------------------- /css/tiptap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/css/tiptap.css -------------------------------------------------------------------------------- /cypress.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress.config.mjs -------------------------------------------------------------------------------- /cypress/e2e/ToDo list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/ToDo list.json -------------------------------------------------------------------------------- /cypress/e2e/column-datetime.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-datetime.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-datetimeDate.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-datetimeDate.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-datetimeTime.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-datetimeTime.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-number-progress.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-number-progress.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-number-stars.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-number-stars.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-number.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-number.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-selection-check.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-selection-check.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-selection-multi.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-selection-multi.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-selection.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-selection.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-text-line.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-text-line.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-text-link.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-text-link.cy.js -------------------------------------------------------------------------------- /cypress/e2e/column-usergroup.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/column-usergroup.cy.js -------------------------------------------------------------------------------- /cypress/e2e/context-navigation.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/context-navigation.cy.js -------------------------------------------------------------------------------- /cypress/e2e/context.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/context.cy.js -------------------------------------------------------------------------------- /cypress/e2e/entity-not-found.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/entity-not-found.cy.js -------------------------------------------------------------------------------- /cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-archive.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-archive.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-export-csv.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-export-csv.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-favorite.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-favorite.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-fe-filters.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-fe-filters.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-import-export-scheme.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-import-export-scheme.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-import.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-import.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-rows.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-rows.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-share.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-share.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables-table.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables-table.cy.js -------------------------------------------------------------------------------- /cypress/e2e/tables.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/tables.cy.js -------------------------------------------------------------------------------- /cypress/e2e/view-filtering-datetime.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/view-filtering-datetime.cy.js -------------------------------------------------------------------------------- /cypress/e2e/view-filtering-selection.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/view-filtering-selection.cy.js -------------------------------------------------------------------------------- /cypress/e2e/view-mandatory-state.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/view-mandatory-state.cy.js -------------------------------------------------------------------------------- /cypress/e2e/view.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/e2e/view.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/NC_server_test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/fixtures/NC_server_test.pdf -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/fixtures/photo-test-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/fixtures/photo-test-1.jpeg -------------------------------------------------------------------------------- /cypress/fixtures/test-import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/fixtures/test-import.csv -------------------------------------------------------------------------------- /cypress/fixtures/widgets/createRow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/fixtures/widgets/createRow.json -------------------------------------------------------------------------------- /cypress/fixtures/widgets/editRow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/fixtures/widgets/editRow.json -------------------------------------------------------------------------------- /cypress/fixtures/widgets/richObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/fixtures/widgets/richObject.json -------------------------------------------------------------------------------- /cypress/integration/api-v2/tables.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/integration/api-v2/tables.spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/styleguide/assets/additional.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/additional.css -------------------------------------------------------------------------------- /cypress/styleguide/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/close.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/default.css -------------------------------------------------------------------------------- /cypress/styleguide/assets/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/icons.css -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/actions/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/actions/add.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/actions/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/actions/tag.png -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/actions/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/actions/tag.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/appstore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/appstore.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/facebook.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/favicon.ico -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/favicon.png -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/favicon.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/loading.gif -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/logo/logo.png -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/logo/logo.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/mail.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/manifest.json -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/mastodon.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s0.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s1.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s2.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s3.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s4.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s5.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s6.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s7.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s8.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rating/s9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rating/s9.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/rss.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/img/twitter.svg -------------------------------------------------------------------------------- /cypress/styleguide/assets/server.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/assets/server.css -------------------------------------------------------------------------------- /cypress/styleguide/global.requires.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/styleguide/global.requires.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/support/component-index.html -------------------------------------------------------------------------------- /cypress/support/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/support/component.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /docs/permissions-matrix.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/docs/permissions-matrix.xlsx -------------------------------------------------------------------------------- /img/app-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/app-dark.svg -------------------------------------------------------------------------------- /img/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/app.svg -------------------------------------------------------------------------------- /img/material/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/LICENSE -------------------------------------------------------------------------------- /img/material/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/account.svg -------------------------------------------------------------------------------- /img/material/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/adjust.svg -------------------------------------------------------------------------------- /img/material/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/alarm.svg -------------------------------------------------------------------------------- /img/material/album.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/album.svg -------------------------------------------------------------------------------- /img/material/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/alert.svg -------------------------------------------------------------------------------- /img/material/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/anchor.svg -------------------------------------------------------------------------------- /img/material/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/android.svg -------------------------------------------------------------------------------- /img/material/animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/animation.svg -------------------------------------------------------------------------------- /img/material/antenna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/antenna.svg -------------------------------------------------------------------------------- /img/material/api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/api.svg -------------------------------------------------------------------------------- /img/material/apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/apps.svg -------------------------------------------------------------------------------- /img/material/assistant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/assistant.svg -------------------------------------------------------------------------------- /img/material/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/at.svg -------------------------------------------------------------------------------- /img/material/atm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/atm.svg -------------------------------------------------------------------------------- /img/material/attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/attachment.svg -------------------------------------------------------------------------------- /img/material/atv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/atv.svg -------------------------------------------------------------------------------- /img/material/autorenew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/autorenew.svg -------------------------------------------------------------------------------- /img/material/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/baby.svg -------------------------------------------------------------------------------- /img/material/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/backspace.svg -------------------------------------------------------------------------------- /img/material/balcony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/balcony.svg -------------------------------------------------------------------------------- /img/material/ballot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/ballot.svg -------------------------------------------------------------------------------- /img/material/bandage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bandage.svg -------------------------------------------------------------------------------- /img/material/bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bank.svg -------------------------------------------------------------------------------- /img/material/barrel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/barrel.svg -------------------------------------------------------------------------------- /img/material/basket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/basket.svg -------------------------------------------------------------------------------- /img/material/basketball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/basketball.svg -------------------------------------------------------------------------------- /img/material/bathtub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bathtub.svg -------------------------------------------------------------------------------- /img/material/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/battery.svg -------------------------------------------------------------------------------- /img/material/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bed.svg -------------------------------------------------------------------------------- /img/material/bee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bee.svg -------------------------------------------------------------------------------- /img/material/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bell.svg -------------------------------------------------------------------------------- /img/material/biathlon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/biathlon.svg -------------------------------------------------------------------------------- /img/material/bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bike.svg -------------------------------------------------------------------------------- /img/material/blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/blender.svg -------------------------------------------------------------------------------- /img/material/blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/blur.svg -------------------------------------------------------------------------------- /img/material/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/book.svg -------------------------------------------------------------------------------- /img/material/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bookmark.svg -------------------------------------------------------------------------------- /img/material/boombox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/boombox.svg -------------------------------------------------------------------------------- /img/material/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/briefcase.svg -------------------------------------------------------------------------------- /img/material/broadcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/broadcast.svg -------------------------------------------------------------------------------- /img/material/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/brush.svg -------------------------------------------------------------------------------- /img/material/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bug.svg -------------------------------------------------------------------------------- /img/material/bullhorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bullhorn.svg -------------------------------------------------------------------------------- /img/material/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/bus.svg -------------------------------------------------------------------------------- /img/material/cached.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cached.svg -------------------------------------------------------------------------------- /img/material/cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cake.svg -------------------------------------------------------------------------------- /img/material/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/calendar.svg -------------------------------------------------------------------------------- /img/material/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/camera.svg -------------------------------------------------------------------------------- /img/material/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cancel.svg -------------------------------------------------------------------------------- /img/material/candle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/candle.svg -------------------------------------------------------------------------------- /img/material/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/car.svg -------------------------------------------------------------------------------- /img/material/carabiner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/carabiner.svg -------------------------------------------------------------------------------- /img/material/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cart.svg -------------------------------------------------------------------------------- /img/material/cast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cast.svg -------------------------------------------------------------------------------- /img/material/cellphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cellphone.svg -------------------------------------------------------------------------------- /img/material/charity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/charity.svg -------------------------------------------------------------------------------- /img/material/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/check.svg -------------------------------------------------------------------------------- /img/material/checkbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/checkbook.svg -------------------------------------------------------------------------------- /img/material/church.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/church.svg -------------------------------------------------------------------------------- /img/material/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/city.svg -------------------------------------------------------------------------------- /img/material/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/clock.svg -------------------------------------------------------------------------------- /img/material/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/close.svg -------------------------------------------------------------------------------- /img/material/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cloud.svg -------------------------------------------------------------------------------- /img/material/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/coffee.svg -------------------------------------------------------------------------------- /img/material/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cog.svg -------------------------------------------------------------------------------- /img/material/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cogs.svg -------------------------------------------------------------------------------- /img/material/collage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/collage.svg -------------------------------------------------------------------------------- /img/material/compare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/compare.svg -------------------------------------------------------------------------------- /img/material/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/compass.svg -------------------------------------------------------------------------------- /img/material/compost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/compost.svg -------------------------------------------------------------------------------- /img/material/contacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/contacts.svg -------------------------------------------------------------------------------- /img/material/controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/controller.svg -------------------------------------------------------------------------------- /img/material/cookie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cookie.svg -------------------------------------------------------------------------------- /img/material/copyright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/copyright.svg -------------------------------------------------------------------------------- /img/material/countertop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/countertop.svg -------------------------------------------------------------------------------- /img/material/cradle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cradle.svg -------------------------------------------------------------------------------- /img/material/creation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/creation.svg -------------------------------------------------------------------------------- /img/material/cricket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/cricket.svg -------------------------------------------------------------------------------- /img/material/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/crop.svg -------------------------------------------------------------------------------- /img/material/crosshairs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/crosshairs.svg -------------------------------------------------------------------------------- /img/material/crowd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/crowd.svg -------------------------------------------------------------------------------- /img/material/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/delete.svg -------------------------------------------------------------------------------- /img/material/delta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/delta.svg -------------------------------------------------------------------------------- /img/material/details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/details.svg -------------------------------------------------------------------------------- /img/material/devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/devices.svg -------------------------------------------------------------------------------- /img/material/dialpad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/dialpad.svg -------------------------------------------------------------------------------- /img/material/directions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/directions.svg -------------------------------------------------------------------------------- /img/material/dishwasher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/dishwasher.svg -------------------------------------------------------------------------------- /img/material/diving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/diving.svg -------------------------------------------------------------------------------- /img/material/dns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/dns.svg -------------------------------------------------------------------------------- /img/material/domain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/domain.svg -------------------------------------------------------------------------------- /img/material/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/download.svg -------------------------------------------------------------------------------- /img/material/dumbbell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/dumbbell.svg -------------------------------------------------------------------------------- /img/material/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/earth.svg -------------------------------------------------------------------------------- /img/material/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/eject.svg -------------------------------------------------------------------------------- /img/material/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/email.svg -------------------------------------------------------------------------------- /img/material/emoticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/emoticon.svg -------------------------------------------------------------------------------- /img/material/equalizer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/equalizer.svg -------------------------------------------------------------------------------- /img/material/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/eye.svg -------------------------------------------------------------------------------- /img/material/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/fax.svg -------------------------------------------------------------------------------- /img/material/fencing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/fencing.svg -------------------------------------------------------------------------------- /img/material/ferry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/ferry.svg -------------------------------------------------------------------------------- /img/material/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/file.svg -------------------------------------------------------------------------------- /img/material/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/film.svg -------------------------------------------------------------------------------- /img/material/filmstrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/filmstrip.svg -------------------------------------------------------------------------------- /img/material/finance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/finance.svg -------------------------------------------------------------------------------- /img/material/fingerprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/fingerprint.svg -------------------------------------------------------------------------------- /img/material/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/fire.svg -------------------------------------------------------------------------------- /img/material/firebase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/firebase.svg -------------------------------------------------------------------------------- /img/material/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/flag.svg -------------------------------------------------------------------------------- /img/material/flare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/flare.svg -------------------------------------------------------------------------------- /img/material/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/flash.svg -------------------------------------------------------------------------------- /img/material/flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/flower.svg -------------------------------------------------------------------------------- /img/material/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/folder.svg -------------------------------------------------------------------------------- /img/material/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/food.svg -------------------------------------------------------------------------------- /img/material/football.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/football.svg -------------------------------------------------------------------------------- /img/material/forest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/forest.svg -------------------------------------------------------------------------------- /img/material/forum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/forum.svg -------------------------------------------------------------------------------- /img/material/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/forward.svg -------------------------------------------------------------------------------- /img/material/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/fullscreen.svg -------------------------------------------------------------------------------- /img/material/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/gamepad.svg -------------------------------------------------------------------------------- /img/material/gauge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/gauge.svg -------------------------------------------------------------------------------- /img/material/gesture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/gesture.svg -------------------------------------------------------------------------------- /img/material/gmail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/gmail.svg -------------------------------------------------------------------------------- /img/material/golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/golf.svg -------------------------------------------------------------------------------- /img/material/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/google.svg -------------------------------------------------------------------------------- /img/material/grain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/grain.svg -------------------------------------------------------------------------------- /img/material/grass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/grass.svg -------------------------------------------------------------------------------- /img/material/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/grid.svg -------------------------------------------------------------------------------- /img/material/grill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/grill.svg -------------------------------------------------------------------------------- /img/material/gymnastics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/gymnastics.svg -------------------------------------------------------------------------------- /img/material/hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/hail.svg -------------------------------------------------------------------------------- /img/material/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/hammer.svg -------------------------------------------------------------------------------- /img/material/handball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/handball.svg -------------------------------------------------------------------------------- /img/material/hdr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/hdr.svg -------------------------------------------------------------------------------- /img/material/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/headphones.svg -------------------------------------------------------------------------------- /img/material/headset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/headset.svg -------------------------------------------------------------------------------- /img/material/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/heart.svg -------------------------------------------------------------------------------- /img/material/hiking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/hiking.svg -------------------------------------------------------------------------------- /img/material/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/history.svg -------------------------------------------------------------------------------- /img/material/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/home.svg -------------------------------------------------------------------------------- /img/material/hub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/hub.svg -------------------------------------------------------------------------------- /img/material/human.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/human.svg -------------------------------------------------------------------------------- /img/material/hvac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/hvac.svg -------------------------------------------------------------------------------- /img/material/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/image.svg -------------------------------------------------------------------------------- /img/material/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/inbox.svg -------------------------------------------------------------------------------- /img/material/information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/information.svg -------------------------------------------------------------------------------- /img/material/iron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/iron.svg -------------------------------------------------------------------------------- /img/material/kabaddi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/kabaddi.svg -------------------------------------------------------------------------------- /img/material/karate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/karate.svg -------------------------------------------------------------------------------- /img/material/kayaking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/kayaking.svg -------------------------------------------------------------------------------- /img/material/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/key.svg -------------------------------------------------------------------------------- /img/material/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/keyboard.svg -------------------------------------------------------------------------------- /img/material/kite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/kite.svg -------------------------------------------------------------------------------- /img/material/kitesurfing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/kitesurfing.svg -------------------------------------------------------------------------------- /img/material/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/label.svg -------------------------------------------------------------------------------- /img/material/ladybug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/ladybug.svg -------------------------------------------------------------------------------- /img/material/landslide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/landslide.svg -------------------------------------------------------------------------------- /img/material/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/laptop.svg -------------------------------------------------------------------------------- /img/material/launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/launch.svg -------------------------------------------------------------------------------- /img/material/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/layers.svg -------------------------------------------------------------------------------- /img/material/leak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/leak.svg -------------------------------------------------------------------------------- /img/material/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/library.svg -------------------------------------------------------------------------------- /img/material/license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/license.svg -------------------------------------------------------------------------------- /img/material/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/lightbulb.svg -------------------------------------------------------------------------------- /img/material/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/link.svg -------------------------------------------------------------------------------- /img/material/liquor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/liquor.svg -------------------------------------------------------------------------------- /img/material/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/lock.svg -------------------------------------------------------------------------------- /img/material/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/login.svg -------------------------------------------------------------------------------- /img/material/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/logout.svg -------------------------------------------------------------------------------- /img/material/looks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/looks.svg -------------------------------------------------------------------------------- /img/material/loupe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/loupe.svg -------------------------------------------------------------------------------- /img/material/magnify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/magnify.svg -------------------------------------------------------------------------------- /img/material/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/map.svg -------------------------------------------------------------------------------- /img/material/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/marker.svg -------------------------------------------------------------------------------- /img/material/medication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/medication.svg -------------------------------------------------------------------------------- /img/material/meditation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/meditation.svg -------------------------------------------------------------------------------- /img/material/memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/memory.svg -------------------------------------------------------------------------------- /img/material/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/menu.svg -------------------------------------------------------------------------------- /img/material/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/merge.svg -------------------------------------------------------------------------------- /img/material/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/message.svg -------------------------------------------------------------------------------- /img/material/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/meta.json -------------------------------------------------------------------------------- /img/material/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/microphone.svg -------------------------------------------------------------------------------- /img/material/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/minus.svg -------------------------------------------------------------------------------- /img/material/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/monitor.svg -------------------------------------------------------------------------------- /img/material/moped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/moped.svg -------------------------------------------------------------------------------- /img/material/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/more.svg -------------------------------------------------------------------------------- /img/material/mosque.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/mosque.svg -------------------------------------------------------------------------------- /img/material/motion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/motion.svg -------------------------------------------------------------------------------- /img/material/motorbike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/motorbike.svg -------------------------------------------------------------------------------- /img/material/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/mouse.svg -------------------------------------------------------------------------------- /img/material/movie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/movie.svg -------------------------------------------------------------------------------- /img/material/mustache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/mustache.svg -------------------------------------------------------------------------------- /img/material/nature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/nature.svg -------------------------------------------------------------------------------- /img/material/navigation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/navigation.svg -------------------------------------------------------------------------------- /img/material/newspaper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/newspaper.svg -------------------------------------------------------------------------------- /img/material/noodles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/noodles.svg -------------------------------------------------------------------------------- /img/material/opacity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/opacity.svg -------------------------------------------------------------------------------- /img/material/overscan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/overscan.svg -------------------------------------------------------------------------------- /img/material/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/palette.svg -------------------------------------------------------------------------------- /img/material/panorama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/panorama.svg -------------------------------------------------------------------------------- /img/material/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/paperclip.svg -------------------------------------------------------------------------------- /img/material/paragliding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/paragliding.svg -------------------------------------------------------------------------------- /img/material/parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/parking.svg -------------------------------------------------------------------------------- /img/material/pasta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/pasta.svg -------------------------------------------------------------------------------- /img/material/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/pause.svg -------------------------------------------------------------------------------- /img/material/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/pencil.svg -------------------------------------------------------------------------------- /img/material/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/phone.svg -------------------------------------------------------------------------------- /img/material/piano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/piano.svg -------------------------------------------------------------------------------- /img/material/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/pin.svg -------------------------------------------------------------------------------- /img/material/pinwheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/pinwheel.svg -------------------------------------------------------------------------------- /img/material/pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/pizza.svg -------------------------------------------------------------------------------- /img/material/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/play.svg -------------------------------------------------------------------------------- /img/material/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/plus.svg -------------------------------------------------------------------------------- /img/material/podcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/podcast.svg -------------------------------------------------------------------------------- /img/material/polo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/polo.svg -------------------------------------------------------------------------------- /img/material/post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/post.svg -------------------------------------------------------------------------------- /img/material/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/power.svg -------------------------------------------------------------------------------- /img/material/printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/printer.svg -------------------------------------------------------------------------------- /img/material/publish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/publish.svg -------------------------------------------------------------------------------- /img/material/puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/puzzle.svg -------------------------------------------------------------------------------- /img/material/racquetball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/racquetball.svg -------------------------------------------------------------------------------- /img/material/radar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/radar.svg -------------------------------------------------------------------------------- /img/material/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/radio.svg -------------------------------------------------------------------------------- /img/material/raw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/raw.svg -------------------------------------------------------------------------------- /img/material/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/redo.svg -------------------------------------------------------------------------------- /img/material/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/refresh.svg -------------------------------------------------------------------------------- /img/material/reminder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/reminder.svg -------------------------------------------------------------------------------- /img/material/remote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/remote.svg -------------------------------------------------------------------------------- /img/material/rename.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/rename.svg -------------------------------------------------------------------------------- /img/material/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/repeat.svg -------------------------------------------------------------------------------- /img/material/replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/replay.svg -------------------------------------------------------------------------------- /img/material/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/reply.svg -------------------------------------------------------------------------------- /img/material/restart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/restart.svg -------------------------------------------------------------------------------- /img/material/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/restore.svg -------------------------------------------------------------------------------- /img/material/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/rewind.svg -------------------------------------------------------------------------------- /img/material/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/ribbon.svg -------------------------------------------------------------------------------- /img/material/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/rocket.svg -------------------------------------------------------------------------------- /img/material/rodent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/rodent.svg -------------------------------------------------------------------------------- /img/material/rowing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/rowing.svg -------------------------------------------------------------------------------- /img/material/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/rss.svg -------------------------------------------------------------------------------- /img/material/rugby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/rugby.svg -------------------------------------------------------------------------------- /img/material/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/run.svg -------------------------------------------------------------------------------- /img/material/satellite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/satellite.svg -------------------------------------------------------------------------------- /img/material/saxophone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/saxophone.svg -------------------------------------------------------------------------------- /img/material/scanner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/scanner.svg -------------------------------------------------------------------------------- /img/material/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/school.svg -------------------------------------------------------------------------------- /img/material/scooter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/scooter.svg -------------------------------------------------------------------------------- /img/material/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/sd.svg -------------------------------------------------------------------------------- /img/material/seat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/seat.svg -------------------------------------------------------------------------------- /img/material/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/security.svg -------------------------------------------------------------------------------- /img/material/segment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/segment.svg -------------------------------------------------------------------------------- /img/material/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/send.svg -------------------------------------------------------------------------------- /img/material/shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/shape.svg -------------------------------------------------------------------------------- /img/material/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/share.svg -------------------------------------------------------------------------------- /img/material/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/shopping.svg -------------------------------------------------------------------------------- /img/material/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/shuffle.svg -------------------------------------------------------------------------------- /img/material/sigma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/sigma.svg -------------------------------------------------------------------------------- /img/material/silverware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/silverware.svg -------------------------------------------------------------------------------- /img/material/sim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/sim.svg -------------------------------------------------------------------------------- /img/material/skate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/skate.svg -------------------------------------------------------------------------------- /img/material/skateboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/skateboard.svg -------------------------------------------------------------------------------- /img/material/skateboarding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/skateboarding.svg -------------------------------------------------------------------------------- /img/material/ski.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/ski.svg -------------------------------------------------------------------------------- /img/material/sledding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/sledding.svg -------------------------------------------------------------------------------- /img/material/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/sleep.svg -------------------------------------------------------------------------------- /img/material/smoking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/smoking.svg -------------------------------------------------------------------------------- /img/material/snowboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/snowboard.svg -------------------------------------------------------------------------------- /img/material/snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/snowflake.svg -------------------------------------------------------------------------------- /img/material/snowmobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/snowmobile.svg -------------------------------------------------------------------------------- /img/material/snowshoeing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/snowshoeing.svg -------------------------------------------------------------------------------- /img/material/soccer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/soccer.svg -------------------------------------------------------------------------------- /img/material/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/spa.svg -------------------------------------------------------------------------------- /img/material/speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/speaker.svg -------------------------------------------------------------------------------- /img/material/spellcheck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/spellcheck.svg -------------------------------------------------------------------------------- /img/material/stadium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/stadium.svg -------------------------------------------------------------------------------- /img/material/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/star.svg -------------------------------------------------------------------------------- /img/material/steering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/steering.svg -------------------------------------------------------------------------------- /img/material/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/stop.svg -------------------------------------------------------------------------------- /img/material/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/store.svg -------------------------------------------------------------------------------- /img/material/subtitles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/subtitles.svg -------------------------------------------------------------------------------- /img/material/subway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/subway.svg -------------------------------------------------------------------------------- /img/material/surfing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/surfing.svg -------------------------------------------------------------------------------- /img/material/synagogue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/synagogue.svg -------------------------------------------------------------------------------- /img/material/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/sync.svg -------------------------------------------------------------------------------- /img/material/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/tab.svg -------------------------------------------------------------------------------- /img/material/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/tablet.svg -------------------------------------------------------------------------------- /img/material/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/tag.svg -------------------------------------------------------------------------------- /img/material/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/taxi.svg -------------------------------------------------------------------------------- /img/material/tea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/tea.svg -------------------------------------------------------------------------------- /img/material/television.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/television.svg -------------------------------------------------------------------------------- /img/material/tennis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/tennis.svg -------------------------------------------------------------------------------- /img/material/terrain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/terrain.svg -------------------------------------------------------------------------------- /img/material/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/text.svg -------------------------------------------------------------------------------- /img/material/texture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/texture.svg -------------------------------------------------------------------------------- /img/material/thermostat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/thermostat.svg -------------------------------------------------------------------------------- /img/material/ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/ticket.svg -------------------------------------------------------------------------------- /img/material/timelapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/timelapse.svg -------------------------------------------------------------------------------- /img/material/toolbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/toolbox.svg -------------------------------------------------------------------------------- /img/material/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/train.svg -------------------------------------------------------------------------------- /img/material/tram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/tram.svg -------------------------------------------------------------------------------- /img/material/transition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/transition.svg -------------------------------------------------------------------------------- /img/material/translate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/translate.svg -------------------------------------------------------------------------------- /img/material/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/truck.svg -------------------------------------------------------------------------------- /img/material/tsunami.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/tsunami.svg -------------------------------------------------------------------------------- /img/material/tune.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/tune.svg -------------------------------------------------------------------------------- /img/material/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/undo.svg -------------------------------------------------------------------------------- /img/material/update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/update.svg -------------------------------------------------------------------------------- /img/material/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/upload.svg -------------------------------------------------------------------------------- /img/material/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/usb.svg -------------------------------------------------------------------------------- /img/material/vacuum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/vacuum.svg -------------------------------------------------------------------------------- /img/material/vibrate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/vibrate.svg -------------------------------------------------------------------------------- /img/material/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/video.svg -------------------------------------------------------------------------------- /img/material/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/violin.svg -------------------------------------------------------------------------------- /img/material/voicemail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/voicemail.svg -------------------------------------------------------------------------------- /img/material/volcano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/volcano.svg -------------------------------------------------------------------------------- /img/material/volleyball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/volleyball.svg -------------------------------------------------------------------------------- /img/material/vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/vote.svg -------------------------------------------------------------------------------- /img/material/walk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/walk.svg -------------------------------------------------------------------------------- /img/material/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/wallet.svg -------------------------------------------------------------------------------- /img/material/wallpaper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/wallpaper.svg -------------------------------------------------------------------------------- /img/material/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/watch.svg -------------------------------------------------------------------------------- /img/material/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/water.svg -------------------------------------------------------------------------------- /img/material/watermark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/watermark.svg -------------------------------------------------------------------------------- /img/material/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/web.svg -------------------------------------------------------------------------------- /img/material/widgets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/widgets.svg -------------------------------------------------------------------------------- /img/material/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/wrench.svg -------------------------------------------------------------------------------- /img/material/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/material/youtube.svg -------------------------------------------------------------------------------- /img/view-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/view-dark.svg -------------------------------------------------------------------------------- /img/view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/img/view.svg -------------------------------------------------------------------------------- /krankerl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/krankerl.toml -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/af.js -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/af.json -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/az.js -------------------------------------------------------------------------------- /l10n/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/az.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/bn_BD.js -------------------------------------------------------------------------------- /l10n/bn_BD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/bn_BD.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/bs.js -------------------------------------------------------------------------------- /l10n/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/bs.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/cy_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/cy_GB.js -------------------------------------------------------------------------------- /l10n/cy_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/cy_GB.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_419.js -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_419.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_CL.js -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_CL.json -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_CO.js -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_CO.json -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_CR.js -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_CR.json -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_DO.js -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_DO.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_HN.js -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_HN.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_NI.js -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_NI.json -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_PA.js -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_PA.json -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_PE.js -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_PE.json -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_PR.js -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_PR.json -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_PY.js -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_PY.json -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_SV.js -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_SV.json -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_UY.js -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/es_UY.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/gd.js -------------------------------------------------------------------------------- /l10n/gd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/gd.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/hy.js -------------------------------------------------------------------------------- /l10n/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/hy.json -------------------------------------------------------------------------------- /l10n/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ia.js -------------------------------------------------------------------------------- /l10n/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ia.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ka_GE.js -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ka_GE.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/km.js -------------------------------------------------------------------------------- /l10n/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/km.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/lb.js -------------------------------------------------------------------------------- /l10n/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/lb.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/mn.js -------------------------------------------------------------------------------- /l10n/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/mn.json -------------------------------------------------------------------------------- /l10n/ms_MY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ms_MY.js -------------------------------------------------------------------------------- /l10n/ms_MY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ms_MY.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/si.js -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/si.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sr@latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sr@latin.js -------------------------------------------------------------------------------- /l10n/sr@latin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sr@latin.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ta.js -------------------------------------------------------------------------------- /l10n/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ta.json -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/th.js -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/th.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/Activity/ActivityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Activity/ActivityManager.php -------------------------------------------------------------------------------- /lib/Activity/ChangeSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Activity/ChangeSet.php -------------------------------------------------------------------------------- /lib/Activity/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Activity/Filter.php -------------------------------------------------------------------------------- /lib/Activity/SettingChanges.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Activity/SettingChanges.php -------------------------------------------------------------------------------- /lib/Activity/TablesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Activity/TablesProvider.php -------------------------------------------------------------------------------- /lib/Analytics/AnalyticsDatasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Analytics/AnalyticsDatasource.php -------------------------------------------------------------------------------- /lib/Api/V1Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Api/V1Api.php -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/Capabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Capabilities.php -------------------------------------------------------------------------------- /lib/Command/AddTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/AddTable.php -------------------------------------------------------------------------------- /lib/Command/ChangeOwnershipTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/ChangeOwnershipTable.php -------------------------------------------------------------------------------- /lib/Command/Clean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/Clean.php -------------------------------------------------------------------------------- /lib/Command/CleanLegacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/CleanLegacy.php -------------------------------------------------------------------------------- /lib/Command/ListContexts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/ListContexts.php -------------------------------------------------------------------------------- /lib/Command/ListTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/ListTables.php -------------------------------------------------------------------------------- /lib/Command/RemoveTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/RemoveTable.php -------------------------------------------------------------------------------- /lib/Command/RenameTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/RenameTable.php -------------------------------------------------------------------------------- /lib/Command/ShowContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/ShowContext.php -------------------------------------------------------------------------------- /lib/Command/TransferLegacyRows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Command/TransferLegacyRows.php -------------------------------------------------------------------------------- /lib/Constants/ShareReceiverType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Constants/ShareReceiverType.php -------------------------------------------------------------------------------- /lib/Constants/UsergroupType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Constants/UsergroupType.php -------------------------------------------------------------------------------- /lib/Controller/AOCSController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/AOCSController.php -------------------------------------------------------------------------------- /lib/Controller/Api1Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/Api1Controller.php -------------------------------------------------------------------------------- /lib/Controller/ApiColumnsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/ApiColumnsController.php -------------------------------------------------------------------------------- /lib/Controller/ApiFavoriteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/ApiFavoriteController.php -------------------------------------------------------------------------------- /lib/Controller/ApiGeneralController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/ApiGeneralController.php -------------------------------------------------------------------------------- /lib/Controller/ApiTablesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/ApiTablesController.php -------------------------------------------------------------------------------- /lib/Controller/ContextController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/ContextController.php -------------------------------------------------------------------------------- /lib/Controller/Errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/Errors.php -------------------------------------------------------------------------------- /lib/Controller/ImportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/ImportController.php -------------------------------------------------------------------------------- /lib/Controller/NavigationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/NavigationController.php -------------------------------------------------------------------------------- /lib/Controller/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/PageController.php -------------------------------------------------------------------------------- /lib/Controller/RowController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/RowController.php -------------------------------------------------------------------------------- /lib/Controller/RowOCSController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/RowOCSController.php -------------------------------------------------------------------------------- /lib/Controller/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/SearchController.php -------------------------------------------------------------------------------- /lib/Controller/ShareController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/ShareController.php -------------------------------------------------------------------------------- /lib/Controller/TableController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/TableController.php -------------------------------------------------------------------------------- /lib/Controller/TableTemplateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/TableTemplateController.php -------------------------------------------------------------------------------- /lib/Controller/ViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Controller/ViewController.php -------------------------------------------------------------------------------- /lib/Db/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/Column.php -------------------------------------------------------------------------------- /lib/Db/ColumnMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ColumnMapper.php -------------------------------------------------------------------------------- /lib/Db/ColumnTypes/DatetimeColumnQB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ColumnTypes/DatetimeColumnQB.php -------------------------------------------------------------------------------- /lib/Db/ColumnTypes/IColumnTypeQB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ColumnTypes/IColumnTypeQB.php -------------------------------------------------------------------------------- /lib/Db/ColumnTypes/NumberColumnQB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ColumnTypes/NumberColumnQB.php -------------------------------------------------------------------------------- /lib/Db/ColumnTypes/SelectionColumnQB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ColumnTypes/SelectionColumnQB.php -------------------------------------------------------------------------------- /lib/Db/ColumnTypes/SuperColumnQB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ColumnTypes/SuperColumnQB.php -------------------------------------------------------------------------------- /lib/Db/ColumnTypes/TextColumnQB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ColumnTypes/TextColumnQB.php -------------------------------------------------------------------------------- /lib/Db/ColumnTypes/UsergroupColumnQB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ColumnTypes/UsergroupColumnQB.php -------------------------------------------------------------------------------- /lib/Db/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/Context.php -------------------------------------------------------------------------------- /lib/Db/ContextMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ContextMapper.php -------------------------------------------------------------------------------- /lib/Db/ContextNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ContextNavigation.php -------------------------------------------------------------------------------- /lib/Db/ContextNavigationMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ContextNavigationMapper.php -------------------------------------------------------------------------------- /lib/Db/ContextNodeRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ContextNodeRelation.php -------------------------------------------------------------------------------- /lib/Db/ContextNodeRelationMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ContextNodeRelationMapper.php -------------------------------------------------------------------------------- /lib/Db/EntitySuper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/EntitySuper.php -------------------------------------------------------------------------------- /lib/Db/LegacyRow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/LegacyRow.php -------------------------------------------------------------------------------- /lib/Db/LegacyRowMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/LegacyRowMapper.php -------------------------------------------------------------------------------- /lib/Db/LogItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/LogItem.php -------------------------------------------------------------------------------- /lib/Db/LogItemMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/LogItemMapper.php -------------------------------------------------------------------------------- /lib/Db/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/Page.php -------------------------------------------------------------------------------- /lib/Db/PageContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/PageContent.php -------------------------------------------------------------------------------- /lib/Db/PageContentMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/PageContentMapper.php -------------------------------------------------------------------------------- /lib/Db/PageMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/PageMapper.php -------------------------------------------------------------------------------- /lib/Db/Row2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/Row2.php -------------------------------------------------------------------------------- /lib/Db/Row2Mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/Row2Mapper.php -------------------------------------------------------------------------------- /lib/Db/RowCellDatetime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellDatetime.php -------------------------------------------------------------------------------- /lib/Db/RowCellDatetimeMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellDatetimeMapper.php -------------------------------------------------------------------------------- /lib/Db/RowCellMapperSuper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellMapperSuper.php -------------------------------------------------------------------------------- /lib/Db/RowCellNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellNumber.php -------------------------------------------------------------------------------- /lib/Db/RowCellNumberMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellNumberMapper.php -------------------------------------------------------------------------------- /lib/Db/RowCellSelection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellSelection.php -------------------------------------------------------------------------------- /lib/Db/RowCellSelectionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellSelectionMapper.php -------------------------------------------------------------------------------- /lib/Db/RowCellSuper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellSuper.php -------------------------------------------------------------------------------- /lib/Db/RowCellText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellText.php -------------------------------------------------------------------------------- /lib/Db/RowCellTextMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellTextMapper.php -------------------------------------------------------------------------------- /lib/Db/RowCellUsergroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellUsergroup.php -------------------------------------------------------------------------------- /lib/Db/RowCellUsergroupMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowCellUsergroupMapper.php -------------------------------------------------------------------------------- /lib/Db/RowSleeve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowSleeve.php -------------------------------------------------------------------------------- /lib/Db/RowSleeveMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/RowSleeveMapper.php -------------------------------------------------------------------------------- /lib/Db/Share.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/Share.php -------------------------------------------------------------------------------- /lib/Db/ShareMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ShareMapper.php -------------------------------------------------------------------------------- /lib/Db/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/Table.php -------------------------------------------------------------------------------- /lib/Db/TableMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/TableMapper.php -------------------------------------------------------------------------------- /lib/Db/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/View.php -------------------------------------------------------------------------------- /lib/Db/ViewMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Db/ViewMapper.php -------------------------------------------------------------------------------- /lib/Dto/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Dto/Column.php -------------------------------------------------------------------------------- /lib/Errors/BadRequestError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Errors/BadRequestError.php -------------------------------------------------------------------------------- /lib/Errors/InternalError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Errors/InternalError.php -------------------------------------------------------------------------------- /lib/Errors/NotFoundError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Errors/NotFoundError.php -------------------------------------------------------------------------------- /lib/Errors/PermissionError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Errors/PermissionError.php -------------------------------------------------------------------------------- /lib/Event/AbstractRowEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Event/AbstractRowEvent.php -------------------------------------------------------------------------------- /lib/Event/RowAddedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Event/RowAddedEvent.php -------------------------------------------------------------------------------- /lib/Event/RowDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Event/RowDeletedEvent.php -------------------------------------------------------------------------------- /lib/Event/RowUpdatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Event/RowUpdatedEvent.php -------------------------------------------------------------------------------- /lib/Event/TableDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Event/TableDeletedEvent.php -------------------------------------------------------------------------------- /lib/Event/ViewDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Event/ViewDeletedEvent.php -------------------------------------------------------------------------------- /lib/Helper/CircleHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Helper/CircleHelper.php -------------------------------------------------------------------------------- /lib/Helper/ColumnsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Helper/ColumnsHelper.php -------------------------------------------------------------------------------- /lib/Helper/ConversionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Helper/ConversionHelper.php -------------------------------------------------------------------------------- /lib/Helper/GroupHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Helper/GroupHelper.php -------------------------------------------------------------------------------- /lib/Helper/UserHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Helper/UserHelper.php -------------------------------------------------------------------------------- /lib/Listener/AddMissingIndicesListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Listener/AddMissingIndicesListener.php -------------------------------------------------------------------------------- /lib/Listener/LoadAdditionalListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Listener/LoadAdditionalListener.php -------------------------------------------------------------------------------- /lib/Listener/TablesReferenceListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Listener/TablesReferenceListener.php -------------------------------------------------------------------------------- /lib/Listener/UserDeletedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Listener/UserDeletedListener.php -------------------------------------------------------------------------------- /lib/Middleware/PermissionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Middleware/PermissionMiddleware.php -------------------------------------------------------------------------------- /lib/Migration/DbRowSleeveSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Migration/DbRowSleeveSequence.php -------------------------------------------------------------------------------- /lib/Migration/FixContextsDefaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Migration/FixContextsDefaults.php -------------------------------------------------------------------------------- /lib/Migration/NewDbStructureRepairStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Migration/NewDbStructureRepairStep.php -------------------------------------------------------------------------------- /lib/Model/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Model/Permissions.php -------------------------------------------------------------------------------- /lib/Model/Public/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Model/Public/Row.php -------------------------------------------------------------------------------- /lib/Model/RowDataInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Model/RowDataInput.php -------------------------------------------------------------------------------- /lib/Model/TableScheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Model/TableScheme.php -------------------------------------------------------------------------------- /lib/Reference/ContentReferenceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Reference/ContentReferenceHelper.php -------------------------------------------------------------------------------- /lib/Reference/ContentReferenceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Reference/ContentReferenceProvider.php -------------------------------------------------------------------------------- /lib/Reference/ReferenceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Reference/ReferenceHelper.php -------------------------------------------------------------------------------- /lib/Reference/ReferenceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Reference/ReferenceProvider.php -------------------------------------------------------------------------------- /lib/ResponseDefinitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/ResponseDefinitions.php -------------------------------------------------------------------------------- /lib/Search/SearchTablesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Search/SearchTablesProvider.php -------------------------------------------------------------------------------- /lib/Service/ColumnService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/ColumnService.php -------------------------------------------------------------------------------- /lib/Service/ColumnTypes/NumberBusiness.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/ColumnTypes/NumberBusiness.php -------------------------------------------------------------------------------- /lib/Service/ColumnTypes/SuperBusiness.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/ColumnTypes/SuperBusiness.php -------------------------------------------------------------------------------- /lib/Service/ContextService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/ContextService.php -------------------------------------------------------------------------------- /lib/Service/FavoritesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/FavoritesService.php -------------------------------------------------------------------------------- /lib/Service/ImportService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/ImportService.php -------------------------------------------------------------------------------- /lib/Service/PermissionsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/PermissionsService.php -------------------------------------------------------------------------------- /lib/Service/RowService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/RowService.php -------------------------------------------------------------------------------- /lib/Service/SearchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/SearchService.php -------------------------------------------------------------------------------- /lib/Service/ShareService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/ShareService.php -------------------------------------------------------------------------------- /lib/Service/SuperService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/SuperService.php -------------------------------------------------------------------------------- /lib/Service/TableService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/TableService.php -------------------------------------------------------------------------------- /lib/Service/TableTemplateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/TableTemplateService.php -------------------------------------------------------------------------------- /lib/Service/ViewService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/Service/ViewService.php -------------------------------------------------------------------------------- /lib/UploadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/lib/UploadException.php -------------------------------------------------------------------------------- /openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/openapi.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/phpunit.integration.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/phpunit.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/psalm.xml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/renovate.json -------------------------------------------------------------------------------- /scoper.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/scoper.inc.php -------------------------------------------------------------------------------- /screenshots/sh-tables-1-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/screenshots/sh-tables-1-small.png -------------------------------------------------------------------------------- /screenshots/sh-tables-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/screenshots/sh-tables-1.png -------------------------------------------------------------------------------- /screenshots/sh-tables-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/screenshots/sh-tables-2.png -------------------------------------------------------------------------------- /screenshots/sh-tables-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/screenshots/sh-tables-3.png -------------------------------------------------------------------------------- /screenshots/sh-tables-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/screenshots/sh-tables-4.png -------------------------------------------------------------------------------- /screenshots/sh-tables-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/screenshots/sh-tables-5.png -------------------------------------------------------------------------------- /screenshots/sh-tables-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/screenshots/sh-tables-6.png -------------------------------------------------------------------------------- /screenshots/sh-tables-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/screenshots/sh-tables-7.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/file-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/file-actions.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/main.js -------------------------------------------------------------------------------- /src/modules/main/partials/ErrorMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/partials/ErrorMessage.vue -------------------------------------------------------------------------------- /src/modules/main/partials/TableView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/partials/TableView.vue -------------------------------------------------------------------------------- /src/modules/main/sections/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/Dashboard.vue -------------------------------------------------------------------------------- /src/modules/main/sections/DataTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/DataTable.vue -------------------------------------------------------------------------------- /src/modules/main/sections/ElementTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/ElementTitle.vue -------------------------------------------------------------------------------- /src/modules/main/sections/EmptyTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/EmptyTable.vue -------------------------------------------------------------------------------- /src/modules/main/sections/EmptyView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/EmptyView.vue -------------------------------------------------------------------------------- /src/modules/main/sections/MainWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/MainWrapper.vue -------------------------------------------------------------------------------- /src/modules/main/sections/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/Table.vue -------------------------------------------------------------------------------- /src/modules/main/sections/TableWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/TableWrapper.vue -------------------------------------------------------------------------------- /src/modules/main/sections/View.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/main/sections/View.vue -------------------------------------------------------------------------------- /src/modules/modals/CreateColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/CreateColumn.vue -------------------------------------------------------------------------------- /src/modules/modals/CreateContext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/CreateContext.vue -------------------------------------------------------------------------------- /src/modules/modals/CreateRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/CreateRow.vue -------------------------------------------------------------------------------- /src/modules/modals/CreateTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/CreateTable.vue -------------------------------------------------------------------------------- /src/modules/modals/DeleteColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/DeleteColumn.vue -------------------------------------------------------------------------------- /src/modules/modals/DeleteContext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/DeleteContext.vue -------------------------------------------------------------------------------- /src/modules/modals/DeleteRows.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/DeleteRows.vue -------------------------------------------------------------------------------- /src/modules/modals/DeleteTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/DeleteTable.vue -------------------------------------------------------------------------------- /src/modules/modals/DeleteView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/DeleteView.vue -------------------------------------------------------------------------------- /src/modules/modals/EditColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/EditColumn.vue -------------------------------------------------------------------------------- /src/modules/modals/EditContext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/EditContext.vue -------------------------------------------------------------------------------- /src/modules/modals/EditRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/EditRow.vue -------------------------------------------------------------------------------- /src/modules/modals/EditTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/EditTable.vue -------------------------------------------------------------------------------- /src/modules/modals/FileActionImport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/FileActionImport.vue -------------------------------------------------------------------------------- /src/modules/modals/Import.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/Import.vue -------------------------------------------------------------------------------- /src/modules/modals/ImportPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/ImportPreview.vue -------------------------------------------------------------------------------- /src/modules/modals/ImportResults.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/ImportResults.vue -------------------------------------------------------------------------------- /src/modules/modals/ImportScheme.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/ImportScheme.vue -------------------------------------------------------------------------------- /src/modules/modals/Modals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/Modals.vue -------------------------------------------------------------------------------- /src/modules/modals/TransferContext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/TransferContext.vue -------------------------------------------------------------------------------- /src/modules/modals/TransferTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/TransferTable.vue -------------------------------------------------------------------------------- /src/modules/modals/ViewSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/modals/ViewSettings.vue -------------------------------------------------------------------------------- /src/modules/sidebar/mixins/shareAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/sidebar/mixins/shareAPI.js -------------------------------------------------------------------------------- /src/modules/sidebar/partials/ShareForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/sidebar/partials/ShareForm.vue -------------------------------------------------------------------------------- /src/modules/sidebar/partials/ShareList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/sidebar/partials/ShareList.vue -------------------------------------------------------------------------------- /src/modules/sidebar/sections/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/modules/sidebar/sections/Sidebar.vue -------------------------------------------------------------------------------- /src/pages/Context.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/pages/Context.vue -------------------------------------------------------------------------------- /src/pages/Startpage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/pages/Startpage.vue -------------------------------------------------------------------------------- /src/pages/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/pages/Table.vue -------------------------------------------------------------------------------- /src/pages/View.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/pages/View.vue -------------------------------------------------------------------------------- /src/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/reference.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/router.js -------------------------------------------------------------------------------- /src/service/rebuild-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/service/rebuild-navigation.js -------------------------------------------------------------------------------- /src/shared/assets/icons/IconTables.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/assets/icons/IconTables.vue -------------------------------------------------------------------------------- /src/shared/components/ActivityEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/components/ActivityEntry.vue -------------------------------------------------------------------------------- /src/shared/components/ActivityList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/components/ActivityList.vue -------------------------------------------------------------------------------- /src/shared/components/ncEditor/NcEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/components/ncEditor/NcEditor.vue -------------------------------------------------------------------------------- /src/shared/components/ncTable/NcTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/components/ncTable/NcTable.vue -------------------------------------------------------------------------------- /src/shared/components/ncTile/NcTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/components/ncTile/NcTile.vue -------------------------------------------------------------------------------- /src/shared/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/constants.ts -------------------------------------------------------------------------------- /src/shared/mixins/activityMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/activityMixin.js -------------------------------------------------------------------------------- /src/shared/mixins/copyToClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/copyToClipboard.js -------------------------------------------------------------------------------- /src/shared/mixins/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/formatting.js -------------------------------------------------------------------------------- /src/shared/mixins/generalHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/generalHelper.js -------------------------------------------------------------------------------- /src/shared/mixins/readableDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/readableDate.js -------------------------------------------------------------------------------- /src/shared/mixins/relativeDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/relativeDate.js -------------------------------------------------------------------------------- /src/shared/mixins/searchUserGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/searchUserGroup.js -------------------------------------------------------------------------------- /src/shared/mixins/shareTypesMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/shareTypesMixin.js -------------------------------------------------------------------------------- /src/shared/mixins/viewportHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/mixins/viewportHelper.js -------------------------------------------------------------------------------- /src/shared/modals/DialogConfirmation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/modals/DialogConfirmation.vue -------------------------------------------------------------------------------- /src/shared/utils/displayError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/shared/utils/displayError.js -------------------------------------------------------------------------------- /src/store/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/store/data.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/store/store.js -------------------------------------------------------------------------------- /src/styles/smart-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/styles/smart-picker.scss -------------------------------------------------------------------------------- /src/types/openapi/openapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/types/openapi/openapi.ts -------------------------------------------------------------------------------- /src/types/openapi/openapi.ts.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/types/openapi/openapi.ts.license -------------------------------------------------------------------------------- /src/views/ContentReferenceWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/views/ContentReferenceWidget.vue -------------------------------------------------------------------------------- /src/views/LinkReferenceWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/views/LinkReferenceWidget.vue -------------------------------------------------------------------------------- /src/views/SmartPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/views/SmartPicker.vue -------------------------------------------------------------------------------- /src/views/sections/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/src/views/sections/Search.vue -------------------------------------------------------------------------------- /stylelint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/stylelint.config.cjs -------------------------------------------------------------------------------- /templates/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/templates/main.php -------------------------------------------------------------------------------- /tests/integration/base-query-count.txt: -------------------------------------------------------------------------------- 1 | 180450 2 | -------------------------------------------------------------------------------- /tests/integration/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/integration/composer.json -------------------------------------------------------------------------------- /tests/integration/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/integration/composer.lock -------------------------------------------------------------------------------- /tests/integration/config/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/integration/config/behat.yml -------------------------------------------------------------------------------- /tests/integration/features/APIv1.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/integration/features/APIv1.feature -------------------------------------------------------------------------------- /tests/integration/features/APIv2.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/integration/features/APIv2.feature -------------------------------------------------------------------------------- /tests/integration/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/integration/run.sh -------------------------------------------------------------------------------- /tests/phan-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/phan-config.php -------------------------------------------------------------------------------- /tests/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/phpcs.xml -------------------------------------------------------------------------------- /tests/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/psalm-baseline.xml -------------------------------------------------------------------------------- /tests/stub.phpstub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/stub.phpstub -------------------------------------------------------------------------------- /tests/unit/Database/DatabaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/unit/Database/DatabaseTestCase.php -------------------------------------------------------------------------------- /tests/unit/Db/Row2MapperFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/unit/Db/Row2MapperFilterTest.php -------------------------------------------------------------------------------- /tests/unit/Db/Row2MapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/unit/Db/Row2MapperTest.php -------------------------------------------------------------------------------- /tests/unit/Service/LegacyRowMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/unit/Service/LegacyRowMapperTest.php -------------------------------------------------------------------------------- /tests/unit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/unit/bootstrap.php -------------------------------------------------------------------------------- /tests/unit/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tests/unit/phpunit.xml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update-scoper-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/update-scoper-dependencies.sh -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/vendor-bin/openapi-extractor/composer.json -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/vendor-bin/openapi-extractor/composer.lock -------------------------------------------------------------------------------- /vendor-bin/php-scoper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/vendor-bin/php-scoper/composer.json -------------------------------------------------------------------------------- /vendor-bin/php-scoper/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/vendor-bin/php-scoper/composer.lock -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/tables/HEAD/vite.config.ts --------------------------------------------------------------------------------