text
stringlengths
1
2.83M
id
stringlengths
16
152
metadata
dict
__index_level_0__
int64
0
949
/* eslint-disable node/handle-callback-err, max-len, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * DS207: Consider shorter variations...
overleaf/web/test/acceptance/src/UserReconfirmTests.js/0
{ "file_path": "overleaf/web/test/acceptance/src/UserReconfirmTests.js", "repo_id": "overleaf", "token_count": 734 }
550
const OError = require('@overleaf/o-error') const express = require('express') const bodyParser = require('body-parser') /** * Abstract class for running a mock API via Express. Handles setting up of * the server on a specific port, and provides an overridable method to * initialise routes. * * Mocks are singleto...
overleaf/web/test/acceptance/src/mocks/AbstractMockApi.js/0
{ "file_path": "overleaf/web/test/acceptance/src/mocks/AbstractMockApi.js", "repo_id": "overleaf", "token_count": 2253 }
551
import sinon from 'sinon' import { expect } from 'chai' import { screen, render, fireEvent } from '@testing-library/react' import MessageList from '../../../../../frontend/js/features/chat/components/message-list' import { stubMathJax, tearDownMathJaxStubs } from './stubs' describe('<MessageList />', function () { ...
overleaf/web/test/frontend/features/chat/components/message-list.test.js/0
{ "file_path": "overleaf/web/test/frontend/features/chat/components/message-list.test.js", "repo_id": "overleaf", "token_count": 1053 }
552
import { expect } from 'chai' import sinon from 'sinon' import { screen, fireEvent } from '@testing-library/react' import renderWithContext from '../../helpers/render-with-context' import FileTreeitemInner from '../../../../../../frontend/js/features/file-tree/components/file-tree-item/file-tree-item-inner' import Fil...
overleaf/web/test/frontend/features/file-tree/components/file-tree-item/file-tree-item-inner.test.js/0
{ "file_path": "overleaf/web/test/frontend/features/file-tree/components/file-tree-item/file-tree-item-inner.test.js", "repo_id": "overleaf", "token_count": 1265 }
553
import { expect } from 'chai' import sinon from 'sinon' import { screen, render, fireEvent } from '@testing-library/react' import OutlineItem from '../../../../../frontend/js/features/outline/components/outline-item' describe('<OutlineItem />', function () { const jumpToLine = sinon.stub() afterEach(function () ...
overleaf/web/test/frontend/features/outline/components/outline-item.test.js/0
{ "file_path": "overleaf/web/test/frontend/features/outline/components/outline-item.test.js", "repo_id": "overleaf", "token_count": 1065 }
554
// Disable prop type checks for test harnesses /* eslint-disable react/prop-types */ import { render } from '@testing-library/react' import sinon from 'sinon' import { UserProvider } from '../../../frontend/js/shared/context/user-context' import { EditorProvider } from '../../../frontend/js/shared/context/editor-conte...
overleaf/web/test/frontend/helpers/render-with-context.js/0
{ "file_path": "overleaf/web/test/frontend/helpers/render-with-context.js", "repo_id": "overleaf", "token_count": 953 }
555
# SmokeTests For the SmokeTests we implemented a Mini-Framework that is tailored for our tooling, specifically OError, and does not need a large runner, such as mocha. The SmokeTests are separated into individual `steps`. Each `step` can have a `run` function and a `cleanup` function. The former will run in sequence...
overleaf/web/test/smoke/src/README.md/0
{ "file_path": "overleaf/web/test/smoke/src/README.md", "repo_id": "overleaf", "token_count": 409 }
556
const sinon = require('sinon') const { expect } = require('chai') const modulePath = '../../../../app/src/Features/Authentication/SessionManager.js' const SandboxedModule = require('sandboxed-module') const tk = require('timekeeper') const { ObjectId } = require('mongodb') describe('SessionManager', function () { ...
overleaf/web/test/unit/src/Authentication/SessionManagerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Authentication/SessionManagerTests.js", "repo_id": "overleaf", "token_count": 1417 }
557
const sinon = require('sinon') const { expect } = require('chai') const modulePath = '../../../../app/src/Features/Compile/ClsiManager.js' const SandboxedModule = require('sandboxed-module') describe('ClsiManager', function () { beforeEach(function () { this.jar = { cookie: 'stuff' } this.ClsiCookieManager =...
overleaf/web/test/unit/src/Compile/ClsiManagerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Compile/ClsiManagerTests.js", "repo_id": "overleaf", "token_count": 18997 }
558
/* eslint-disable max-len, no-return-assign, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS101: Remove unnecessary use of Array.from * DS102: Remove unnecessary code created because of implicit returns * Full docs: http...
overleaf/web/test/unit/src/Editor/EditorRealTimeControllerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Editor/EditorRealTimeControllerTests.js", "repo_id": "overleaf", "token_count": 1330 }
559
/* eslint-disable max-len, no-return-assign, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate/decaffeinate/blob/m...
overleaf/web/test/unit/src/History/HistoryControllerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/History/HistoryControllerTests.js", "repo_id": "overleaf", "token_count": 4897 }
560
const SandboxedModule = require('sandboxed-module') const path = require('path') const sinon = require('sinon') const { expect } = require('chai') const MockResponse = require('../helpers/MockResponse') const MODULE_PATH = path.join( __dirname, '../../../../app/src/Features/PasswordReset/PasswordResetController' )...
overleaf/web/test/unit/src/PasswordReset/PasswordResetControllerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/PasswordReset/PasswordResetControllerTests.js", "repo_id": "overleaf", "token_count": 5693 }
561
const { expect } = require('chai') const SandboxedModule = require('sandboxed-module') const { ObjectId } = require('mongodb') const MODULE_PATH = '../../../../app/src/Features/Project/ProjectHelper.js' describe('ProjectHelper', function () { beforeEach(function () { this.project = { _id: '123213jlkj9kdls...
overleaf/web/test/unit/src/Project/ProjectHelperTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Project/ProjectHelperTests.js", "repo_id": "overleaf", "token_count": 4341 }
562
/* eslint-disable node/handle-callback-err, max-len, no-return-assign, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/de...
overleaf/web/test/unit/src/Security/LoginRateLimiterTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Security/LoginRateLimiterTests.js", "repo_id": "overleaf", "token_count": 1677 }
563
/* eslint-disable node/handle-callback-err, max-len, no-dupe-keys, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit retur...
overleaf/web/test/unit/src/Subscription/SubscriptionGroupHandlerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Subscription/SubscriptionGroupHandlerTests.js", "repo_id": "overleaf", "token_count": 3072 }
564
const { ObjectId } = require('mongodb') const SandboxedModule = require('sandboxed-module') const path = require('path') const sinon = require('sinon') const modulePath = path.join( __dirname, '../../../../app/src/Features/ThirdPartyDataStore/TpdsUpdateSender.js' ) const projectId = 'project_id_here' const userId...
overleaf/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateSenderTests.js/0
{ "file_path": "overleaf/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateSenderTests.js", "repo_id": "overleaf", "token_count": 5421 }
565
const { ObjectId } = require('mongodb') const SandboxedModule = require('sandboxed-module') const assert = require('assert') const moment = require('moment') const path = require('path') const sinon = require('sinon') const modulePath = path.join( __dirname, '../../../../app/src/Features/User/UserGetter' ) const { ...
overleaf/web/test/unit/src/User/UserGetterTests.js/0
{ "file_path": "overleaf/web/test/unit/src/User/UserGetterTests.js", "repo_id": "overleaf", "token_count": 16524 }
566
/* eslint-disable no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * DS206: Consider reworking classes to avoid initClass *...
overleaf/web/test/unit/src/helpers/MockResponse.js/0
{ "file_path": "overleaf/web/test/unit/src/helpers/MockResponse.js", "repo_id": "overleaf", "token_count": 1184 }
567
/* eslint-disable max-len, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate...
overleaf/web/test/unit/src/infrastructure/ProxyManagerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/infrastructure/ProxyManagerTests.js", "repo_id": "overleaf", "token_count": 2791 }
568
{ "extends": [ "@ownclouders" ] }
owncloud/web/.eslintrc.json/0
{ "file_path": "owncloud/web/.eslintrc.json", "repo_id": "owncloud", "token_count": 23 }
569
Change: Removed favorite button from file list and added it in the sidebar We've removed the favorite star button in the file list and added instead a functionality to the before non-working star button in the file's sidebar. We also added a new action in the file action dropdown menu which allows you to toggle the ...
owncloud/web/changelog/0.10.0_2020-05-26/3336/0
{ "file_path": "owncloud/web/changelog/0.10.0_2020-05-26/3336", "repo_id": "owncloud", "token_count": 108 }
570
Change: Rework account dropdown We've removed user avatar, user email and version from the account dropdown. The log out button has been changed into a link. All links in account dropdown are now inside of a list. https://github.com/owncloud/product/issues/82 https://github.com/owncloud/web/pull/3605
owncloud/web/changelog/0.11.0_2020-06-26/rework-account-dropdown/0
{ "file_path": "owncloud/web/changelog/0.11.0_2020-06-26/rework-account-dropdown", "repo_id": "owncloud", "token_count": 83 }
571
Bugfix: Fix navigation to the root folder from location picker The target location in the location picker was appending a whitespace when trying to go to root folder. This resulted in an error when trying to load such folder. We've removed the whitespace to fix the navigation. https://github.com/owncloud/web/pull/375...
owncloud/web/changelog/0.12.0_2020-07-10/location-picker-root-target/0
{ "file_path": "owncloud/web/changelog/0.12.0_2020-07-10/location-picker-root-target", "repo_id": "owncloud", "token_count": 78 }
572
Change: Adapt to new ocis-settings data model ocis-settings introduced UUIDs and less verbose endpoint and message type names. This PR adjusts web accordingly. https://github.com/owncloud/web/pull/3806 https://github.com/owncloud/owncloud-sdk/pull/520 https://github.com/owncloud/ocis-settings/pull/46
owncloud/web/changelog/0.15.0_2020-08-19/adapt-to-settings-data-model.md/0
{ "file_path": "owncloud/web/changelog/0.15.0_2020-08-19/adapt-to-settings-data-model.md", "repo_id": "owncloud", "token_count": 93 }
573
Change: Change sharing wording Renamed "Share" action to "Add people" and header column in the shared with list from "People" to "Shared with". https://github.com/owncloud/web/pull/4120
owncloud/web/changelog/0.18.0_2020-10-05/change-share-to-add-people/0
{ "file_path": "owncloud/web/changelog/0.18.0_2020-10-05/change-share-to-add-people", "repo_id": "owncloud", "token_count": 54 }
574
Bugfix: Fix browse to files page in the ui tests When the ui tests where executing the "the user has browsed to the files page" step then it wouldn't wait until the files were loaded. https://github.com/owncloud/web/issues/4281
owncloud/web/changelog/0.24.0_2020-11-06/fix-browse-to-files-page/0
{ "file_path": "owncloud/web/changelog/0.24.0_2020-11-06/fix-browse-to-files-page", "repo_id": "owncloud", "token_count": 65 }
575
Bugfix: Don't break file/folder names in text editor The label in the text editor that displays the path of the active file was removing the first character instead of trimming leading slashes. This might have lead to situations where actual characters were removed. We fixed this by only removing leading slashes inste...
owncloud/web/changelog/0.28.0_2020-12-04/text-editor-file-path-label/0
{ "file_path": "owncloud/web/changelog/0.28.0_2020-12-04/text-editor-file-path-label", "repo_id": "owncloud", "token_count": 89 }
576
Enhancement: Add empty folder message in file list views Whenever a folder contains no entries in any of the file list views, a message is now shown indicating that the folder is empty, or that there are no favorites, etc. https://github.com/owncloud/web/issues/1910 https://github.com/owncloud/web/pull/2975
owncloud/web/changelog/0.4.0_2020-02-14/1910/0
{ "file_path": "owncloud/web/changelog/0.4.0_2020-02-14/1910", "repo_id": "owncloud", "token_count": 84 }
577
Bugfix: Fix console warning about search query in public page Fixed console warning about the search query attribute not being available whenever the search fields are not visible, for example when accessing a public link page. https://github.com/owncloud/web/pull/3041
owncloud/web/changelog/0.5.0_2020-03-02/3041/0
{ "file_path": "owncloud/web/changelog/0.5.0_2020-03-02/3041", "repo_id": "owncloud", "token_count": 64 }
578
Bugfix: Fix logout when no tokens are known anymore Single Log Out requires the id_token and in cases where this token is no longer known calling the SLO endpoint will result in an error. This has been fixed. https://github.com/owncloud/web/pull/2961
owncloud/web/changelog/0.7.0_2020-03-30/2961/0
{ "file_path": "owncloud/web/changelog/0.7.0_2020-03-30/2961", "repo_id": "owncloud", "token_count": 70 }
579
Bugfix: Fix translation message extraction from plain javascript files https://github.com/owncloud/web/pull/3346 https://github.com/Polyconseil/easygettext/issues/81
owncloud/web/changelog/0.9.0_2020-04-27/3346/0
{ "file_path": "owncloud/web/changelog/0.9.0_2020-04-27/3346", "repo_id": "owncloud", "token_count": 48 }
580
Enhancement: Update ODS to 2.0.3 We've updated the ownCloud design system to version 2.0.3. https://github.com/owncloud/owncloud-design-system/releases/tag/v2.0.3 https://github.com/owncloud/web/pull/4488
owncloud/web/changelog/1.0.0_2020-12-16/update-ods-2.0.3/0
{ "file_path": "owncloud/web/changelog/1.0.0_2020-12-16/update-ods-2.0.3", "repo_id": "owncloud", "token_count": 77 }
581
Enhancement: A11y improvements for meta attributes For a11y the html language attribute will be set dynamically <html lang="xx"/>. For a11y the title will be set automatically following the schema: sub item (e.G file) - route (e.g All Files) - general name (e.g ownCloud) https://github.com/owncloud/web/issues/4342 ht...
owncloud/web/changelog/2.1.0_2021-03-24/enhancement-a11y-improvements-for-meta-attributes/0
{ "file_path": "owncloud/web/changelog/2.1.0_2021-03-24/enhancement-a11y-improvements-for-meta-attributes", "repo_id": "owncloud", "token_count": 125 }
582
Enhancement: Use ODS translations Some ODS components were using their own translation strings which were available in the ODS but not exported there/imported in the web project. Now, we import the translation strings from the ODS package and merge them with the web translations. https://github.com/owncloud/web/pull/...
owncloud/web/changelog/3.0.0_2021-04-21/enhancement-use-ods-translations/0
{ "file_path": "owncloud/web/changelog/3.0.0_2021-04-21/enhancement-use-ods-translations", "repo_id": "owncloud", "token_count": 79 }
583
Bugfix: Correct sharee tag The tag _inside_ a shared folder always announced the current user as "owner", since the shares lookup didn't check for the parent folders' ownership. This has been fixed now and users get the correct tag (e.g. "Viewer", "Editor" etc) in the sidebar. https://github.com/owncloud/web/pull/5...
owncloud/web/changelog/3.2.0_2021-05-31/bugfix-sharee-tag/0
{ "file_path": "owncloud/web/changelog/3.2.0_2021-05-31/bugfix-sharee-tag", "repo_id": "owncloud", "token_count": 91 }
584
Bugfix: show `0` as used quota if a negative number is given In the case if the server returns a negative number as used quota (what should not happen) show `0 B of 2 GB` and not only of ` 2 GB` https://github.com/owncloud/web/pull/5229
owncloud/web/changelog/3.3.0_2021-06-23/bugfix-show-0-when-negative-quota-given/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/bugfix-show-0-when-negative-quota-given", "repo_id": "owncloud", "token_count": 71 }
585
Enhancement: Improve accessibility for the files sidebar We've did several improvements to enhance the accessibility on the files sidebar: - Transformed the file name to a h2 element - Transformed the "Open folder"-action to a link instead of a button - Transformed the favorite-star to a button-element - Adjusted aria...
owncloud/web/changelog/3.3.0_2021-06-23/enhancement-files-sidebar-accessibility/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-files-sidebar-accessibility", "repo_id": "owncloud", "token_count": 184 }
586
Enhancement: Add focus trap to left sidebar We've added a focus trap to the left sidebar on smaller resolutions when it's collapsible. If the sidebar is opened and focused, the focus stays within the sidebar. https://github.com/owncloud/web/pull/5027
owncloud/web/changelog/3.3.0_2021-06-23/enhancement-sidebar-focus-trap/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-sidebar-focus-trap", "repo_id": "owncloud", "token_count": 65 }
587
Bugfix: Load preview in right sidebar We fixed a bug that caused previews not being loaded in the details accordion of the right sidebar. https://github.com/owncloud/web/pull/5501
owncloud/web/changelog/3.4.1_2021-07-12/bugfix-details-preview/0
{ "file_path": "owncloud/web/changelog/3.4.1_2021-07-12/bugfix-details-preview", "repo_id": "owncloud", "token_count": 48 }
588
Enhancement: Sidebar sliding panels navigation The sidebar now uses a ios like concept for navigate through the different actions in the sidebar. It replaces the accordion navigation entirely. https://github.com/owncloud/web/pull/5549 https://github.com/owncloud/web/issues/5523
owncloud/web/changelog/4.0.0_2021-08-04/enhancement-sidebar-navigation/0
{ "file_path": "owncloud/web/changelog/4.0.0_2021-08-04/enhancement-sidebar-navigation", "repo_id": "owncloud", "token_count": 72 }
589
Enhancement: Show sharees as collapsed list of avatars We've introduced a collapsed list of avatars of sharees in the `People` panel of the right sidebar. On click we switch to showing the full list of sharees. With this additional intermediate state we were able to clean up the UI a bit for easier cognitive load. ht...
owncloud/web/changelog/4.2.0_2021-09-14/enhancement-show-sharees-as-avatars/0
{ "file_path": "owncloud/web/changelog/4.2.0_2021-09-14/enhancement-show-sharees-as-avatars", "repo_id": "owncloud", "token_count": 107 }
590
Bugfix: Clean router path handling This patch was already introduced earlier for the files application only. In the meantime we found out that this is also needed on different places across the ecosystem. We've refactored the way how the patch gets applied to the routes: It is now possible to set an individual route'...
owncloud/web/changelog/4.4.0_2021-10-26/bugfix-router-clean-path/0
{ "file_path": "owncloud/web/changelog/4.4.0_2021-10-26/bugfix-router-clean-path", "repo_id": "owncloud", "token_count": 121 }
591
Enhancement: App provider and archiver on public links We made the app provider and archiver services available on public links. As a prerequisite for this we needed to make backend capabilities available on public links, which will be beneficial for all future extension development. https://github.com/owncloud/web/p...
owncloud/web/changelog/4.5.0_2021-11-16/enhancement-public-link-capabilities/0
{ "file_path": "owncloud/web/changelog/4.5.0_2021-11-16/enhancement-public-link-capabilities", "repo_id": "owncloud", "token_count": 138 }
592
Bugfix: Open in browser for public files We fixed opening publicly shared files in the browser. https://github.com/owncloud/web/issues/4615 https://github.com/owncloud/web/pull/6133
owncloud/web/changelog/4.7.0_2021-12-16/bugfix-open-in-browser-on-public-files/0
{ "file_path": "owncloud/web/changelog/4.7.0_2021-12-16/bugfix-open-in-browser-on-public-files", "repo_id": "owncloud", "token_count": 55 }
593
Enhancement: Print version numbers The package version of the web UI and the version of the backend (if available) now get printed to the browser console and get set as meta generator tag in the html head. This makes it possible to easily reference versions in bug reports. https://github.com/owncloud/web/issues/5954 ...
owncloud/web/changelog/4.9.0_2021-12-24/enhancement-print-version/0
{ "file_path": "owncloud/web/changelog/4.9.0_2021-12-24/enhancement-print-version", "repo_id": "owncloud", "token_count": 91 }
594
Enhancement: File creation via app provider For oCIS deployments the integration of the app provider for editing files was enhanced by adding support for the app provider capabilities to create files as well. https://github.com/owncloud/web/pull/5890 https://github.com/owncloud/web/pull/6312
owncloud/web/changelog/5.0.0_2022-02-14/enhancement-app-provider-create-files/0
{ "file_path": "owncloud/web/changelog/5.0.0_2022-02-14/enhancement-app-provider-create-files", "repo_id": "owncloud", "token_count": 75 }
595
Enhancement: Implement spaces front page Each space can now be entered from within the spaces list. The space front page will then display all the space contents, plus an image and a readme file if set. Basic actions like uploading files, creating folders, renaming resources, and more. were also implemented in the cou...
owncloud/web/changelog/5.0.0_2022-02-14/enhancement-spaces-front-page/0
{ "file_path": "owncloud/web/changelog/5.0.0_2022-02-14/enhancement-spaces-front-page", "repo_id": "owncloud", "token_count": 104 }
596
Bugfix: Resize observer errors within subfolders of a space We've fixed a bug where the resize observer crashes within subfolders of a space because there is no element to observe. https://github.com/owncloud/web/pull/6569
owncloud/web/changelog/5.3.0_2022-03-23/bugfix-resize-observer-errors/0
{ "file_path": "owncloud/web/changelog/5.3.0_2022-03-23/bugfix-resize-observer-errors", "repo_id": "owncloud", "token_count": 59 }
597
Enhancement: Move share indicators We've moved the share/status indicators into a separate column and adjusted the design in ODS. https://github.com/owncloud/web/issues/5976 https://github.com/owncloud/web/pull/6552 https://github.com/owncloud/owncloud-design-system/pull/2014 https://github.com/owncloud/web/pull/6583...
owncloud/web/changelog/5.3.0_2022-03-23/enhancement-move-share-indicators/0
{ "file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-move-share-indicators", "repo_id": "owncloud", "token_count": 100 }
598
Enhancement: Update ODS to v13.0.0 We updated the ownCloud Design System to version 13.0.0. Please refer to the full changelog in the ODS release (linked) for more details. Summary: - Change - Default type of OcButton: https://github.com/owncloud/owncloud-design-system/pull/2009 - Change - Remove OcStatusIndicators f...
owncloud/web/changelog/5.3.0_2022-03-23/enhancement-update-ods/0
{ "file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-update-ods", "repo_id": "owncloud", "token_count": 536 }
599
Enhancement: Audio handling in preview app We've built audio preview support for flac, mp3, ogg and wav files into the preview app. https://github.com/owncloud/web/pull/6514
owncloud/web/changelog/5.4.0_2022-04-11/enhancement-preview-mimetypes/0
{ "file_path": "owncloud/web/changelog/5.4.0_2022-04-11/enhancement-preview-mimetypes", "repo_id": "owncloud", "token_count": 53 }
600
Bugfix: Apply text selection range for new files We've fixed a bug, where the text selection range for a new file has not been applied only for the file name but also for the file extension. This is now working as in the rename modal and just selects the text for the file name. https://github.com/owncloud/web/issues/...
owncloud/web/changelog/5.5.0_2022-06-20/bugfix-apply-text-selection-range-for-new-files/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-apply-text-selection-range-for-new-files", "repo_id": "owncloud", "token_count": 99 }
601
Bugfix: Require quick link password if enforced in ownCloud 10 We've fixed a bug, where no password was requested while creating a quick link, this led to a silent error where no quick link was created. We now prompt for a quick link password if enforced https://github.com/owncloud/web/pull/6967 https://github.com/ow...
owncloud/web/changelog/5.5.0_2022-06-20/bugfix-require-quick-link-password-if-enforced-in-oC10/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-require-quick-link-password-if-enforced-in-oC10", "repo_id": "owncloud", "token_count": 92 }
602
Bugfix: The selected app item has a bad text color contrast in light mode We've fixed the contrast of the text color for hovered and active application menus items. https://github.com/owncloud/web/pull/6954 https://github.com/owncloud/web/issues/6958
owncloud/web/changelog/5.5.0_2022-06-20/bugfix-text-color-application-menu-item/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-text-color-application-menu-item", "repo_id": "owncloud", "token_count": 70 }
603
Enhancement: Copy/Move conflict dialog We've added a conflict dialog for moving resources via drag&drop in the files list https://github.com/owncloud/web/pull/7119 https://github.com/owncloud/web/pull/6994 https://github.com/owncloud/web/pull/7151 https://github.com/owncloud/web/issues/6996
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-copy-move-conflict-dialog/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-copy-move-conflict-dialog", "repo_id": "owncloud", "token_count": 94 }
604
Enhancement: Log correct oCIS version if available oCIS has introduced a new `productversion` field to announce it's correct version while maintaining a fake 10.x.x version in the `versionstring` field to keep clients compatible. We're using the new productversion field when it exists and use versionstring as a fallba...
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-productversion-log/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-productversion-log", "repo_id": "owncloud", "token_count": 123 }
605
Enhancement: Upload data during creation Uploading via tus now uses the `uploadDataDuringCreation` option which saves up one request. https://github.com/owncloud/web/pull/7111 https://github.com/owncloud/web/issues/7066
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-upload-data-during-creation/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-upload-data-during-creation", "repo_id": "owncloud", "token_count": 66 }
606
Bugfix: Default to user context We've fixed a bug where routes without explicit `auth` requirement (i.e. user context) and without any context route in the URL were recognized as neither user-context nor public-link-context. In such situations we now expect that the session requires a user and redirect to the login pa...
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-default-to-user-context/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-default-to-user-context", "repo_id": "owncloud", "token_count": 89 }
607
Bugfix: Link indicator on "Shared via link"-page We've fixed the icon and the sidebar for the link indicator on the "Shared via link"-page. https://github.com/owncloud/web/pull/7355 https://github.com/owncloud/web/issues/7345
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-link-indicator-shared-via-link-page/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-link-indicator-shared-via-link-page", "repo_id": "owncloud", "token_count": 71 }
608
Bugfix: Print backend version We fixed a regression with printing version information to the browser console (the backend version was not showing up anymore). Since loading the public link / user context is blocking the boot process of applications after a [recent PR](https://github.com/owncloud/web/pull/7072) has bee...
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-print-backend-version/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-print-backend-version", "repo_id": "owncloud", "token_count": 130 }
609
Bugfix: Space sidebar sharing indicators We have fixed the way the sharing indicators for space members and link shares were displayed in the details panel of the sidebar as well as the click behavior for accessing the shares panel through the sharing information. https://github.com/owncloud/web/pull/6921 https://git...
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-space-sidebar-sharingindicators/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-space-sidebar-sharingindicators", "repo_id": "owncloud", "token_count": 82 }
610
Enhancement: Adjust helper texts https://github.com/owncloud/web/pull/7404 https://github.com/owncloud/web/issues/7331
owncloud/web/changelog/5.7.0_2022-09-09/enhancement-adjust-helper-texts/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-adjust-helper-texts", "repo_id": "owncloud", "token_count": 41 }
611
Enhancement: Remember the UI that was last selected via the application switcher With this change, ownCloud will remember the UI that was last selected via the application switcher. This only works when using ownCloud 10 as backend. https://github.com/owncloud/web/pull/6173 https://github.com/owncloud/enterprise/issu...
owncloud/web/changelog/5.7.0_2022-09-09/enhancement-remember-selected-ui/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-remember-selected-ui", "repo_id": "owncloud", "token_count": 84 }
612
Enhancement: Update Uppy to v3.0.1 We've updated Uppy to v3.0.1. This allows us to enable the `creation-with-upload` extension, which saves up one request per file during upload. https://github.com/owncloud/web/issues/7177 https://github.com/owncloud/web/pull/7515
owncloud/web/changelog/5.7.0_2022-09-09/enhancement-update-uppy/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-update-uppy", "repo_id": "owncloud", "token_count": 88 }
613
Bugfix: Prevent file upload when folder creation failed We've fixed a bug where files would try to be uploaded if the creation of their respective folder failed beforehand. https://github.com/owncloud/web/pull/7975 https://github.com/owncloud/web/pull/7999 https://github.com/owncloud/web/issues/7957
owncloud/web/changelog/6.0.0_2022-11-29/bugfix-file-upload-with-failed-folder-creation/0
{ "file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-file-upload-with-failed-folder-creation", "repo_id": "owncloud", "token_count": 84 }
614
Bugfix: Remove the "close sidebar"-calls on delete We've removed the "close sidebar"-calls when deleting a resource as the mutations are not available as well as not needed anymore. https://github.com/owncloud/web/issues/7699 https://github.com/owncloud/web/pull/7733
owncloud/web/changelog/6.0.0_2022-11-29/bugfix-remove-close-sidebar-calls-on-delete/0
{ "file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-remove-close-sidebar-calls-on-delete", "repo_id": "owncloud", "token_count": 76 }
615
Bugfix: Trash bin sidebar We've fixed the sidebar in the trash bin which was throwing errors and not showing the right content. https://github.com/owncloud/web/issues/7778 https://github.com/owncloud/web/pull/7787
owncloud/web/changelog/6.0.0_2022-11-29/bugfix-trash-bin-sidebar/0
{ "file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-trash-bin-sidebar", "repo_id": "owncloud", "token_count": 62 }
616
Enhancement: Disable share renaming Renaming of shares has been disabled temporarily until it works as expected. https://github.com/owncloud/web/pull/7865
owncloud/web/changelog/6.0.0_2022-11-29/enhancement-disable-share-renaming/0
{ "file_path": "owncloud/web/changelog/6.0.0_2022-11-29/enhancement-disable-share-renaming", "repo_id": "owncloud", "token_count": 42 }
617
Bugfix: Batch context actions in admin settings Several issues when triggering batch actions via the context menu for users/groups/spaces in the admin-settings have been fixed. Some actions were showing wrongly ("edit"), some actions were resetting the current selection ("show details"). https://github.com/owncloud/w...
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-admin-settings-batch-context-actions/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-admin-settings-batch-context-actions", "repo_id": "owncloud", "token_count": 92 }
618
Bugfix: Group members sorting Sorting groups by their member count has been fixed. https://github.com/owncloud/web/issues/8592 https://github.com/owncloud/web/pull/8600
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-group-members-sorting/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-group-members-sorting", "repo_id": "owncloud", "token_count": 53 }
619
Bugfix: password enforced check for public links We've fixed a bug where we ignored the selected role in the password enforcement check. The web ui was sending the request to update a link instead of showing a modal with a password input prompt. https://github.com/owncloud/web/issues/8587 https://github.com/owncloud/...
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-password-enforced-check/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-password-enforced-check", "repo_id": "owncloud", "token_count": 102 }
620
Bugfix: Search repeating no results message We've fixed a bug that caused to repeat the 'no results' message when searching. https://github.com/owncloud/web/issues/8054 https://github.com/owncloud/web/pull/8062
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-search-repeating-no-results-message/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-search-repeating-no-results-message", "repo_id": "owncloud", "token_count": 61 }
621
Bugfix: Incorrect pause state in upload info An incorrect pause state in the upload info modal has been fixed. https://github.com/owncloud/web/issues/9080 https://github.com/owncloud/web/pull/9141
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-upload-info-incorrect-pause/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-upload-info-incorrect-pause", "repo_id": "owncloud", "token_count": 60 }
622
Enhancement: Adjust missing reshare permissions message We've changed the missing reshare permission message to be more clear. https://github.com/owncloud/web/pull/8820 https://github.com/owncloud/web/issues/8701
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-adjust-no-reshare-perm-message/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-adjust-no-reshare-perm-message", "repo_id": "owncloud", "token_count": 60 }
623
Enhancement: Context helper read more link configurable We've added a configuration variable to disable the read more link in the contextual helper. https://github.com/owncloud/web/pull/8713 https://github.com/owncloud/web/pull/8719 https://github.com/owncloud/web/issues/8570
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-context-helper-read-more-configurable/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-context-helper-read-more-configurable", "repo_id": "owncloud", "token_count": 80 }
624
Enhancement: Remove placeholder, add customizable label The formerly fixed placeholder for the text input on item filter component got removed. Also, we added a customizable label. https://github.com/owncloud/web/pull/8711
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-itemfilter-remove-placeholder-add-customizable-label/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-itemfilter-remove-placeholder-add-customizable-label", "repo_id": "owncloud", "token_count": 54 }
625
Enhancement: Beautify file version list We added css changes to the file versions list to make it look more clean and to use standardized layouts like action buttons, download icons etc. https://github.com/owncloud/web/issues/8503 https://github.com/owncloud/web/pull/8504
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-re-style-file-versions/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-re-style-file-versions", "repo_id": "owncloud", "token_count": 75 }
626
Enhancement: Space member expiration Space member shares now support expiration. https://github.com/owncloud/web/pull/8320 https://github.com/owncloud/web/pull/8482 https://github.com/owncloud/web/issues/8328
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-space-member-expiration/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-space-member-expiration", "repo_id": "owncloud", "token_count": 66 }
627
Bugfix: Authenticated public links breaking uploads Opening public links in an authenticated context no longer breaks uploading resources. https://github.com/owncloud/web/pull/9299 https://github.com/owncloud/web/issues/9298
owncloud/web/changelog/7.1.0_2023-08-23/bugfix-authenticated-public-links-breaking-uploads/0
{ "file_path": "owncloud/web/changelog/7.1.0_2023-08-23/bugfix-authenticated-public-links-breaking-uploads", "repo_id": "owncloud", "token_count": 59 }
628
Enhancement: Add pagination options to admin settings We've added pagination options to the admin settings app, furthermore we've added more granular pagination options to the files app. https://github.com/owncloud/web/pull/9199 https://github.com/owncloud/web/issues/9188
owncloud/web/changelog/7.1.0_2023-08-23/enhancement-add-pagination-options-to-admin-settings/0
{ "file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-add-pagination-options-to-admin-settings", "repo_id": "owncloud", "token_count": 77 }
629
Enhancement: Project spaces list viewmode We've added a viewmode switcher to the project spaces overview with an additional list viewmode. https://github.com/owncloud/web/pull/9195 https://github.com/owncloud/web/issues/9204
owncloud/web/changelog/7.1.0_2023-08-23/enhancement-project-spaces-list-viewmode/0
{ "file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-project-spaces-list-viewmode", "repo_id": "owncloud", "token_count": 65 }
630
Bugfix: Resolving external URLs Resolving external URLs when only the file ID is given has been fixed. https://github.com/owncloud/web/issues/9804 https://github.com/owncloud/web/pull/9833
owncloud/web/changelog/7.1.1_2023-10-25/bugfix-external-url-resolving/0
{ "file_path": "owncloud/web/changelog/7.1.1_2023-10-25/bugfix-external-url-resolving", "repo_id": "owncloud", "token_count": 58 }
631
Bugfix: GDPR export polling Periodically checking for a processed GDPR export in the account menu has been fixed. https://github.com/owncloud/web/pull/10158 https://github.com/owncloud/web/issues/8862
owncloud/web/changelog/8.0.0_2024-03-08/bugfix-gdpr-export-polling/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-gdpr-export-polling", "repo_id": "owncloud", "token_count": 61 }
632
Bugfix: Respect the open-in-new-tab-config for external apps The `WEB_OPTION_OPEN_APPS_IN_TAB` is now being respected correctly when opening files with external apps. https://github.com/owncloud/web/pull/9663 https://github.com/owncloud/web/issues/9630
owncloud/web/changelog/8.0.0_2024-03-08/bugfix-respect-new-tab-config-for-external-apps/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-respect-new-tab-config-for-external-apps", "repo_id": "owncloud", "token_count": 84 }
633
Bugfix: Wrong share permissions when resharing off We've fixed a bug where a share with custom permissions always sent the resharing bit although resharing was disabled. https://github.com/owncloud/web/pull/10489
owncloud/web/changelog/8.0.0_2024-03-08/bugfix-wrong-share-permissions/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-wrong-share-permissions", "repo_id": "owncloud", "token_count": 53 }
634
Enhancement: Create link modal When creating a link while passwords are enfoced, Web will now display a modal that lets the user not only set a password, but also the role and an optional expiration date. https://github.com/owncloud/web/pull/10104 https://github.com/owncloud/web/pull/10145 https://github.com/owncloud...
owncloud/web/changelog/8.0.0_2024-03-08/enhancement-create-link-modal/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-create-link-modal", "repo_id": "owncloud", "token_count": 147 }
635
Enhancement: Handle postprocessing state via Server Sent Events We've added the functionality to listen for events from the server that update the postprocessing state, this allows the user to see if the postprocessing on a file is finished, without reloading the UI. https://github.com/owncloud/web/pull/9771 https://...
owncloud/web/changelog/8.0.0_2024-03-08/enhancement-handle-postprocessing-state-via-sse/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-handle-postprocessing-state-via-sse", "repo_id": "owncloud", "token_count": 90 }
636
Enhancement: Search tags filter chips style aligned We've aligned the style of tags filter in search with the tags panel redesign. https://github.com/owncloud/web/pull/9864 https://github.com/owncloud/web/issues/9834
owncloud/web/changelog/8.0.0_2024-03-08/enhancement-search-tags-filter-style/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-search-tags-filter-style", "repo_id": "owncloud", "token_count": 62 }
637
Enhancement: New WebDAV implementation in web-client The WebDAV implementation of the ownCloudSDK has been deprecated in favor of a new implementation in the `web-client` package. For developers this means that every WebDAV request should be made using the WebDAV factory provided by the `ClientService`. E.g. to retrie...
owncloud/web/changelog/8.0.0_2024-03-08/enhancement-web-client-dav-implementation/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-web-client-dav-implementation", "repo_id": "owncloud", "token_count": 130 }
638
Change: Remove ocs user BREAKING CHANGE for developers: The user from the ocs api has been removed in favor of the graph user. That means the user that can be retrieved from the store looks slightly different than the OCS user (though it still holds the same information). For more details please see the linked PR dow...
owncloud/web/changelog/9.0.0_2024-02-26/change-remove-ocs-user/0
{ "file_path": "owncloud/web/changelog/9.0.0_2024-02-26/change-remove-ocs-user", "repo_id": "owncloud", "token_count": 107 }
639
Enhancement: Tile sizes We've adjusted the tile sizes to have a bigger base size and smaller stepping from one tile size to the next. In addition to that the default tile size has been changed to the second stepping, so that initially both space tiles and file/folder tiles have a sufficient size for reading longer nam...
owncloud/web/changelog/9.0.0_2024-02-26/enhancement-tile-sizes/0
{ "file_path": "owncloud/web/changelog/9.0.0_2024-02-26/enhancement-tile-sizes", "repo_id": "owncloud", "token_count": 135 }
640
--- title: "Conventions" date: 2022-01-28T00:00:00+00:00 weight: 20 geekdocRepo: https://github.com/owncloud/web geekdocEditPath: edit/master/docs/development geekdocFilePath: conventions.md --- {{< toc >}} This is a collection of tips and conventions to follow when working on the [ownCloud web frontend](https://gith...
owncloud/web/docs/development/conventions.md/0
{ "file_path": "owncloud/web/docs/development/conventions.md", "repo_id": "owncloud", "token_count": 816 }
641
--- title: "Tests" date: 2022-01-28T00:00:00+00:00 weight: 55 geekdocRepo: https://github.com/owncloud/web geekdocEditPath: edit/master/docs/testing geekdocFilePath: _index.md geekdocCollapseSection: true --- Guides on running different kinds of tests in ownCloud Web.
owncloud/web/docs/testing/_index.md/0
{ "file_path": "owncloud/web/docs/testing/_index.md", "repo_id": "owncloud", "token_count": 99 }
642
const tinyColor = require('tinycolor2') const { getPropType, sortProps, getPropCategory } = require('./utils') module.exports = { name: 'format/ods/json', formatter: (dictionary) => { const attributes = sortProps(dictionary.allProperties).reduce((acc, cur) => { const prop = { value: cur.value, ...
owncloud/web/packages/design-system/build/build-tokens/format-writer-json.js/0
{ "file_path": "owncloud/web/packages/design-system/build/build-tokens/format-writer-json.js", "repo_id": "owncloud", "token_count": 445 }
643
Bugfix: Fixed oc-icon to reload image when url changes The oc-icon component will now reload its image whenever the url property has been modified https://github.com/owncloud/owncloud-design-system/pull/681
owncloud/web/packages/design-system/changelog/1.1.1_2020-03-18/681/0
{ "file_path": "owncloud/web/packages/design-system/changelog/1.1.1_2020-03-18/681", "repo_id": "owncloud", "token_count": 56 }
644
Change: Updated checkbox and radiobutton components We updated the OcCheckbox and OcRadio components so that it's possible to use them properly with `v-model`. OcRadio had the radiobutton on the right side of the label. We moved it over to the left side for consistency. https://github.com/owncloud/owncloud-design-sy...
owncloud/web/packages/design-system/changelog/1.12.0_2020-10-03/radio-and-checkbox-components.md/0
{ "file_path": "owncloud/web/packages/design-system/changelog/1.12.0_2020-10-03/radio-and-checkbox-components.md", "repo_id": "owncloud", "token_count": 93 }
645
Bugfix: Fix oc-autocomplete We fixed a bug in OcAutocomplete which was introduced with the removal of lodash as a dependency. https://github.com/owncloud/owncloud-design-system/pull/710
owncloud/web/packages/design-system/changelog/1.2.2_2020-04-08/710/0
{ "file_path": "owncloud/web/packages/design-system/changelog/1.2.2_2020-04-08/710", "repo_id": "owncloud", "token_count": 57 }
646
Enhancement: Automatically focus modal When the modal is mounted, it receives automatically a focus. The focus is sent directly to the modal itself so skipping the wrapping div which works only as a background. https://github.com/owncloud/owncloud-design-system/pull/781
owncloud/web/packages/design-system/changelog/1.7.0_2020-06-17/modal-focus/0
{ "file_path": "owncloud/web/packages/design-system/changelog/1.7.0_2020-06-17/modal-focus", "repo_id": "owncloud", "token_count": 68 }
647
Change: Replace vue-datetime with v-calendar in our datepicker component We've added `v-calendar` dependency so that we can use it as our datepicker component. By doing so, we removed the old datepicker library that we use, `vue-datetime`. https://github.com/owncloud/owncloud-design-system/pull/1661
owncloud/web/packages/design-system/changelog/11.0.0_2021-10-04/change-datepicker-lib-to-v-calendar/0
{ "file_path": "owncloud/web/packages/design-system/changelog/11.0.0_2021-10-04/change-datepicker-lib-to-v-calendar", "repo_id": "owncloud", "token_count": 91 }
648
Enhancement: Relative date tooltips in the OcTableFiles component Relative dates like "1 day ago" now have a tooltip that shows the absolute date. The following dates in the files table are affected: * modify date * share date * delete date https://github.com/owncloud/owncloud-design-system/pull/1787 https://github....
owncloud/web/packages/design-system/changelog/11.3.0_2021-12-03/enhancement-add-accentuated-property/0
{ "file_path": "owncloud/web/packages/design-system/changelog/11.3.0_2021-12-03/enhancement-add-accentuated-property", "repo_id": "owncloud", "token_count": 98 }
649