mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 18:11:41 -04:00
Merge pull request #58518 from nextcloud/enh/58508/move-user-picker-to-profile
Move the profile picker to the profile app
This commit is contained in:
commit
839c4d71ce
395 changed files with 543 additions and 2055 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -44,7 +44,6 @@ node_modules/
|
|||
!/apps/updatenotification
|
||||
!/apps/theming
|
||||
!/apps/twofactor_backupcodes
|
||||
!/apps/user_picker
|
||||
!/apps/user_status
|
||||
!/apps/weather_status
|
||||
!/apps/webhook_listeners
|
||||
|
|
|
|||
|
|
@ -170,12 +170,6 @@ source_file = translationfiles/templates/user_ldap.pot
|
|||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[o:nextcloud:p:nextcloud:r:user_picker]
|
||||
file_filter = translationfiles/<lang>/user_picker.po
|
||||
source_file = translationfiles/templates/user_picker.pot
|
||||
source_lang = en
|
||||
type = PO
|
||||
|
||||
[o:nextcloud:p:nextcloud:r:user_status]
|
||||
file_filter = translationfiles/<lang>/user_status.po
|
||||
source_file = translationfiles/templates/user_status.pot
|
||||
|
|
|
|||
|
|
@ -7,5 +7,8 @@ $baseDir = $vendorDir;
|
|||
|
||||
return array(
|
||||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
||||
'OCA\\Profile\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php',
|
||||
'OCA\\Profile\\Controller\\ProfilePageController' => $baseDir . '/../lib/Controller/ProfilePageController.php',
|
||||
'OCA\\Profile\\Listener\\ProfilePickerReferenceListener' => $baseDir . '/../lib/Listener/ProfilePickerReferenceListener.php',
|
||||
'OCA\\Profile\\Reference\\ProfilePickerReferenceProvider' => $baseDir . '/../lib/Reference/ProfilePickerReferenceProvider.php',
|
||||
);
|
||||
|
|
|
|||
|
|
@ -22,7 +22,10 @@ class ComposerStaticInitProfile
|
|||
|
||||
public static $classMap = array (
|
||||
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
||||
'OCA\\Profile\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
|
||||
'OCA\\Profile\\Controller\\ProfilePageController' => __DIR__ . '/..' . '/../lib/Controller/ProfilePageController.php',
|
||||
'OCA\\Profile\\Listener\\ProfilePickerReferenceListener' => __DIR__ . '/..' . '/../lib/Listener/ProfilePickerReferenceListener.php',
|
||||
'OCA\\Profile\\Reference\\ProfilePickerReferenceProvider' => __DIR__ . '/..' . '/../lib/Reference/ProfilePickerReferenceProvider.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
|
|
|
|||
3
apps/profile/img/app-dark.svg
Normal file
3
apps/profile/img/app-dark.svg
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<path d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 208 B |
3
apps/profile/img/app.svg
Normal file
3
apps/profile/img/app.svg
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#fff">
|
||||
<path d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 220 B |
|
|
@ -6,10 +6,10 @@ declare(strict_types=1);
|
|||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
namespace OCA\UserPicker\AppInfo;
|
||||
namespace OCA\Profile\AppInfo;
|
||||
|
||||
use OCA\UserPicker\Listener\UserPickerReferenceListener;
|
||||
use OCA\UserPicker\Reference\ProfilePickerReferenceProvider;
|
||||
use OCA\Profile\Listener\ProfilePickerReferenceListener;
|
||||
use OCA\Profile\Reference\ProfilePickerReferenceProvider;
|
||||
use OCP\AppFramework\App;
|
||||
use OCP\AppFramework\Bootstrap\IBootContext;
|
||||
use OCP\AppFramework\Bootstrap\IBootstrap;
|
||||
|
|
@ -18,7 +18,7 @@ use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
|||
use OCP\Collaboration\Reference\RenderReferenceEvent;
|
||||
|
||||
class Application extends App implements IBootstrap {
|
||||
public const APP_ID = 'user_picker';
|
||||
public const APP_ID = 'profile';
|
||||
|
||||
public function __construct(array $urlParams = []) {
|
||||
parent::__construct(self::APP_ID, $urlParams);
|
||||
|
|
@ -26,7 +26,7 @@ class Application extends App implements IBootstrap {
|
|||
|
||||
public function register(IRegistrationContext $context): void {
|
||||
$context->registerReferenceProvider(ProfilePickerReferenceProvider::class);
|
||||
$context->registerEventListener(RenderReferenceEvent::class, UserPickerReferenceListener::class);
|
||||
$context->registerEventListener(RenderReferenceEvent::class, ProfilePickerReferenceListener::class);
|
||||
}
|
||||
|
||||
public function boot(IBootContext $context): void {
|
||||
47
apps/profile/lib/Listener/ProfilePickerReferenceListener.php
Normal file
47
apps/profile/lib/Listener/ProfilePickerReferenceListener.php
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
namespace OCA\Profile\Listener;
|
||||
|
||||
use OCA\Profile\AppInfo\Application;
|
||||
use OCP\Collaboration\Reference\RenderReferenceEvent;
|
||||
use OCP\EventDispatcher\Event;
|
||||
use OCP\EventDispatcher\IEventListener;
|
||||
use OCP\IAppConfig;
|
||||
use OCP\Profile\IProfileManager;
|
||||
use OCP\Util;
|
||||
|
||||
/**
|
||||
* @template-implements IEventListener<RenderReferenceEvent>
|
||||
*/
|
||||
class ProfilePickerReferenceListener implements IEventListener {
|
||||
|
||||
public function __construct(
|
||||
private IAppConfig $appConfig,
|
||||
private IProfileManager $profileManager,
|
||||
) {
|
||||
}
|
||||
|
||||
public function handle(Event $event): void {
|
||||
if (!$event instanceof RenderReferenceEvent) {
|
||||
return;
|
||||
}
|
||||
|
||||
$profileEnabledGlobally = $this->profileManager->isProfileEnabled();
|
||||
|
||||
$profilePickerEnabled = filter_var(
|
||||
$this->appConfig->getValueString('settings', 'profile_picker_enabled', '1'),
|
||||
FILTER_VALIDATE_BOOLEAN,
|
||||
FILTER_NULL_ON_FAILURE,
|
||||
);
|
||||
|
||||
if ($profileEnabledGlobally && $profilePickerEnabled) {
|
||||
Util::addScript(Application::APP_ID, 'reference');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -6,22 +6,24 @@ declare(strict_types=1);
|
|||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
namespace OCA\UserPicker\Reference;
|
||||
namespace OCA\Profile\Reference;
|
||||
|
||||
use OCA\UserPicker\AppInfo\Application;
|
||||
use OCA\Profile\AppInfo\Application;
|
||||
use OCP\Accounts\IAccountManager;
|
||||
|
||||
use OCP\Collaboration\Reference\ADiscoverableReferenceProvider;
|
||||
use OCP\Collaboration\Reference\IReference;
|
||||
use OCP\Collaboration\Reference\Reference;
|
||||
|
||||
use OCP\IAppConfig;
|
||||
use OCP\IL10N;
|
||||
use OCP\IURLGenerator;
|
||||
use OCP\IUserManager;
|
||||
use OCP\Profile\IProfileManager;
|
||||
|
||||
class ProfilePickerReferenceProvider extends ADiscoverableReferenceProvider {
|
||||
public const RICH_OBJECT_TYPE = 'user_picker_profile';
|
||||
public const RICH_OBJECT_TYPE = 'profile_widget';
|
||||
private bool $enabled;
|
||||
|
||||
public function __construct(
|
||||
private IL10N $l10n,
|
||||
|
|
@ -29,8 +31,16 @@ class ProfilePickerReferenceProvider extends ADiscoverableReferenceProvider {
|
|||
private IUserManager $userManager,
|
||||
private IAccountManager $accountManager,
|
||||
private IProfileManager $profileManager,
|
||||
private IAppConfig $appConfig,
|
||||
private ?string $userId,
|
||||
) {
|
||||
$profileEnabledGlobally = $this->profileManager->isProfileEnabled();
|
||||
$profilePickerEnabled = filter_var(
|
||||
$this->appConfig->getValueString('settings', 'profile_picker_enabled', '1'),
|
||||
FILTER_VALIDATE_BOOLEAN,
|
||||
FILTER_NULL_ON_FAILURE,
|
||||
);
|
||||
$this->enabled = $profileEnabledGlobally && $profilePickerEnabled;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -65,6 +75,9 @@ class ProfilePickerReferenceProvider extends ADiscoverableReferenceProvider {
|
|||
* @inheritDoc
|
||||
*/
|
||||
public function matchReference(string $referenceText): bool {
|
||||
if (!$this->enabled) {
|
||||
return false;
|
||||
}
|
||||
return $this->getObjectId($referenceText) !== null;
|
||||
}
|
||||
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
<div class="profile-picker">
|
||||
<div class="profile-picker__heading">
|
||||
<h2>
|
||||
{{ t('user_picker', 'Profile picker') }}
|
||||
{{ t('profile', 'Profile picker') }}
|
||||
</h2>
|
||||
<div class="input-wrapper">
|
||||
<NcSelect
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
inputId="profiles-search"
|
||||
:loading="loading"
|
||||
:filterable="false"
|
||||
:placeholder="t('user_picker', 'Search for a user profile')"
|
||||
:placeholder="t('profile', 'Search for a user profile')"
|
||||
:clearSearchOnBlur="() => false"
|
||||
:multiple="false"
|
||||
:options="options"
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
@search="searchForProfile"
|
||||
@option:selecting="resolveResult">
|
||||
<template #no-options="{ search }">
|
||||
{{ search ? noResultText : t('user_picker', 'Search for a user profile. Start typing') }}
|
||||
{{ search ? noResultText : t('profile', 'Search for a user profile. Start typing') }}
|
||||
</template>
|
||||
</NcSelect>
|
||||
</div>
|
||||
|
|
@ -38,10 +38,10 @@
|
|||
<NcButton
|
||||
v-if="selectedProfile !== null"
|
||||
variant="primary"
|
||||
:aria-label="t('user_picker', 'Insert selected user profile link')"
|
||||
:aria-label="t('profile', 'Insert selected user profile link')"
|
||||
:disabled="loading || selectedProfile === null"
|
||||
@click="submit">
|
||||
{{ t('user_picker', 'Insert') }}
|
||||
{{ t('profile', 'Insert') }}
|
||||
<template #icon>
|
||||
<ArrowRightIcon />
|
||||
</template>
|
||||
|
|
@ -59,7 +59,7 @@ import NcEmptyContent from '@nextcloud/vue/components/NcEmptyContent'
|
|||
import NcSelect from '@nextcloud/vue/components/NcSelect'
|
||||
import AccountOutline from 'vue-material-design-icons/AccountOutline.vue'
|
||||
import ArrowRightIcon from 'vue-material-design-icons/ArrowRight.vue'
|
||||
import { logger } from '../utils/logger.ts'
|
||||
import { logger } from '../services/logger.ts'
|
||||
|
||||
export default {
|
||||
name: 'ProfilesCustomPicker',
|
||||
|
|
@ -107,7 +107,7 @@ export default {
|
|||
},
|
||||
|
||||
noResultText() {
|
||||
return this.loading ? t('user_picker', 'Searching …') : t('user_picker', 'Not found')
|
||||
return this.loading ? t('profile', 'Searching …') : t('profile', 'Not found')
|
||||
},
|
||||
},
|
||||
|
||||
|
|
@ -149,7 +149,7 @@ export default {
|
|||
}
|
||||
})
|
||||
} catch (error) {
|
||||
logger.error('user_picker: error while searching for users', { error })
|
||||
logger.error('profile_picker: error while searching for users', { error })
|
||||
} finally {
|
||||
this.loading = false
|
||||
}
|
||||
|
|
@ -172,7 +172,7 @@ export default {
|
|||
})
|
||||
this.reference = res.data.ocs.data.references[this.resultUrl]
|
||||
} catch (error) {
|
||||
logger.error('user_picker: error resolving the user profile link', { error })
|
||||
logger.error('profile_picker: error resolving the user profile link', { error })
|
||||
} finally {
|
||||
this.loading = false
|
||||
}
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
import { NcCustomPickerRenderResult, registerCustomPickerElement, registerWidget } from '@nextcloud/vue/components/NcRichText'
|
||||
|
||||
registerWidget('user_picker_profile', async (el, { richObjectType, richObject, accessible }) => {
|
||||
registerWidget('profile_widget', async (el, { richObjectType, richObject, accessible }) => {
|
||||
const { createApp } = await import('vue')
|
||||
const { default: ProfilePickerReferenceWidget } = await import('./views/ProfilePickerReferenceWidget.vue')
|
||||
|
||||
|
|
@ -64,7 +64,7 @@ import HandshakeOutline from 'vue-material-design-icons/HandshakeOutline.vue'
|
|||
import MapMarkerOutline from 'vue-material-design-icons/MapMarkerOutline.vue'
|
||||
import TextAccount from 'vue-material-design-icons/TextAccount.vue'
|
||||
import Web from 'vue-material-design-icons/Web.vue'
|
||||
import { logger } from '../utils/logger.ts'
|
||||
import { logger } from '../services/logger.ts'
|
||||
|
||||
export default {
|
||||
name: 'ProfilePickerReferenceWidget',
|
||||
|
|
@ -116,13 +116,18 @@ export default {
|
|||
&__header {
|
||||
width: 100%;
|
||||
min-height: 70px;
|
||||
padding: 0 12px;
|
||||
background-color: var(--color-primary);
|
||||
background-image: var(--gradient-primary-background);
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
> *:first-child {
|
||||
margin-left: 12px;
|
||||
}
|
||||
> *:last-child {
|
||||
margin-right: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.profile-card__title a {
|
||||
|
|
@ -1,16 +1,20 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
namespace OCA\UserPicker\Reference;
|
||||
|
||||
namespace OCA\Profile\Reference;
|
||||
|
||||
use OCP\Accounts\IAccount;
|
||||
use OCP\Accounts\IAccountManager;
|
||||
use OCP\Accounts\IAccountProperty;
|
||||
use OCP\Collaboration\Reference\IReference;
|
||||
use OCP\Collaboration\Reference\Reference;
|
||||
use OCP\IAppConfig;
|
||||
use OCP\IL10N;
|
||||
|
||||
use OCP\IURLGenerator;
|
||||
|
|
@ -28,6 +32,7 @@ class ProfilePickerReferenceProviderTest extends \Test\TestCase {
|
|||
private IUserManager|MockObject $userManager;
|
||||
private IAccountManager|MockObject $accountManager;
|
||||
private IProfileManager|MockObject $profileManager;
|
||||
private IAppConfig|MockObject $appConfig;
|
||||
private ProfilePickerReferenceProvider $referenceProvider;
|
||||
|
||||
private array $testUsersData = [
|
||||
|
|
@ -138,15 +143,7 @@ class ProfilePickerReferenceProviderTest extends \Test\TestCase {
|
|||
$this->userManager = $this->createMock(IUserManager::class);
|
||||
$this->accountManager = $this->createMock(IAccountManager::class);
|
||||
$this->profileManager = $this->createMock(IProfileManager::class);
|
||||
|
||||
$this->referenceProvider = new ProfilePickerReferenceProvider(
|
||||
$this->l10n,
|
||||
$this->urlGenerator,
|
||||
$this->userManager,
|
||||
$this->accountManager,
|
||||
$this->profileManager,
|
||||
$this->userId
|
||||
);
|
||||
$this->appConfig = $this->createMock(IAppConfig::class);
|
||||
|
||||
$this->urlGenerator->expects($this->any())
|
||||
->method('getBaseUrl')
|
||||
|
|
@ -156,6 +153,10 @@ class ProfilePickerReferenceProviderTest extends \Test\TestCase {
|
|||
->method('isProfileEnabled')
|
||||
->willReturn(true);
|
||||
|
||||
$this->appConfig->expects($this->any())
|
||||
->method('getValueString')
|
||||
->willReturn('1');
|
||||
|
||||
$this->profileManager->expects($this->any())
|
||||
->method('isProfileFieldVisible')
|
||||
->willReturnCallback(function (string $profileField, IUser $targetUser, ?IUser $visitingUser) {
|
||||
|
|
@ -170,6 +171,16 @@ class ProfilePickerReferenceProviderTest extends \Test\TestCase {
|
|||
$this->adminUser->expects($this->any())
|
||||
->method('getDisplayName')
|
||||
->willReturn('admin');
|
||||
|
||||
$this->referenceProvider = new ProfilePickerReferenceProvider(
|
||||
$this->l10n,
|
||||
$this->urlGenerator,
|
||||
$this->userManager,
|
||||
$this->accountManager,
|
||||
$this->profileManager,
|
||||
$this->appConfig,
|
||||
$this->userId
|
||||
);
|
||||
}
|
||||
|
||||
private function getTestAccountPropertyValue(string $testUserId, string $property): mixed {
|
||||
|
|
@ -53,6 +53,7 @@ class Server implements IDelegatedSettings {
|
|||
// Profile page
|
||||
$this->initialStateService->provideInitialState('profileEnabledGlobally', $this->profileManager->isProfileEnabled());
|
||||
$this->initialStateService->provideInitialState('profileEnabledByDefault', $this->isProfileEnabledByDefault($this->config));
|
||||
$this->initialStateService->provideInitialState('profilePickerEnabled', $this->isProfilePickerEnabled($this->config));
|
||||
|
||||
// Basic settings
|
||||
$this->initialStateService->provideInitialState('restrictSystemTagsCreationToAdmin', $this->appConfig->getValueBool('systemtags', 'restrict_creation_to_admin', false));
|
||||
|
|
|
|||
|
|
@ -11,9 +11,9 @@
|
|||
{{ t('settings', 'Profile') }}
|
||||
</h2>
|
||||
|
||||
<p class="settings-hint">
|
||||
<NcNoteCard type="info">
|
||||
{{ t('settings', 'Enable or disable profile by default for new accounts.') }}
|
||||
</p>
|
||||
</NcNoteCard>
|
||||
|
||||
<NcCheckboxRadioSwitch
|
||||
v-model="initialProfileEnabledByDefault"
|
||||
|
|
@ -21,6 +21,17 @@
|
|||
@update:modelValue="onProfileDefaultChange">
|
||||
{{ t('settings', 'Enable') }}
|
||||
</NcCheckboxRadioSwitch>
|
||||
|
||||
<NcCheckboxRadioSwitch
|
||||
v-model="initialProfilePickerEnabled"
|
||||
type="switch"
|
||||
@update:modelValue="onProfilePickerChange">
|
||||
{{ t('settings', 'Enable the profile picker') }}
|
||||
</NcCheckboxRadioSwitch>
|
||||
|
||||
<NcNoteCard type="info">
|
||||
{{ t('settings', 'Enable or disable the profile picker in the Smart Picker and the profile link previews.') }}
|
||||
</NcNoteCard>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
@ -28,22 +39,26 @@
|
|||
import { showError } from '@nextcloud/dialogs'
|
||||
import { loadState } from '@nextcloud/initial-state'
|
||||
import NcCheckboxRadioSwitch from '@nextcloud/vue/components/NcCheckboxRadioSwitch'
|
||||
import NcNoteCard from '@nextcloud/vue/components/NcNoteCard'
|
||||
import logger from '../../logger.ts'
|
||||
import { saveProfileDefault } from '../../service/ProfileService.js'
|
||||
import { saveProfileDefault, saveProfilePicker } from '../../service/ProfileService.js'
|
||||
import { validateBoolean } from '../../utils/validate.js'
|
||||
|
||||
const profileEnabledByDefault = loadState('settings', 'profileEnabledByDefault', true)
|
||||
const profilePickerEnabled = loadState('settings', 'profilePickerEnabled', true)
|
||||
|
||||
export default {
|
||||
name: 'ProfileSettings',
|
||||
|
||||
components: {
|
||||
NcCheckboxRadioSwitch,
|
||||
NcNoteCard,
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
initialProfileEnabledByDefault: profileEnabledByDefault,
|
||||
initialProfilePickerEnabled: profilePickerEnabled,
|
||||
}
|
||||
},
|
||||
|
||||
|
|
@ -59,6 +74,7 @@ export default {
|
|||
const responseData = await saveProfileDefault(isEnabled)
|
||||
this.handleResponse({
|
||||
isEnabled,
|
||||
key: 'initialProfileEnabledByDefault',
|
||||
status: responseData.ocs?.meta?.status,
|
||||
})
|
||||
} catch (e) {
|
||||
|
|
@ -69,9 +85,31 @@ export default {
|
|||
}
|
||||
},
|
||||
|
||||
handleResponse({ isEnabled, status, errorMessage, error }) {
|
||||
async onProfilePickerChange(isEnabled) {
|
||||
if (validateBoolean(isEnabled)) {
|
||||
await this.updateProfilePicker(isEnabled)
|
||||
}
|
||||
},
|
||||
|
||||
async updateProfilePicker(isEnabled) {
|
||||
try {
|
||||
const responseData = await saveProfilePicker(isEnabled)
|
||||
this.handleResponse({
|
||||
isEnabled,
|
||||
key: 'initialProfilePickerEnabled',
|
||||
status: responseData.ocs?.meta?.status,
|
||||
})
|
||||
} catch (e) {
|
||||
this.handleResponse({
|
||||
errorMessage: t('settings', 'Unable to update profile picker setting'),
|
||||
error: e,
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
handleResponse({ isEnabled, key, status, errorMessage, error }) {
|
||||
if (status === 'ok') {
|
||||
this.initialProfileEnabledByDefault = isEnabled
|
||||
this[key] = isEnabled
|
||||
} else {
|
||||
showError(errorMessage)
|
||||
logger.error(errorMessage, error)
|
||||
|
|
@ -80,3 +118,9 @@ export default {
|
|||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
#profile-settings {
|
||||
max-width: 600px;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -52,3 +52,27 @@ export async function saveProfileDefault(isEnabled) {
|
|||
|
||||
return res.data
|
||||
}
|
||||
|
||||
/**
|
||||
* Save profile picker default
|
||||
*
|
||||
* @param {boolean} isEnabled the default
|
||||
* @return {object}
|
||||
*/
|
||||
export async function saveProfilePicker(isEnabled) {
|
||||
// Convert to string for compatibility
|
||||
isEnabled = isEnabled ? '1' : '0'
|
||||
|
||||
const url = generateOcsUrl('/apps/provisioning_api/api/v1/config/apps/{appId}/{key}', {
|
||||
appId: 'settings',
|
||||
key: 'profile_picker_enabled',
|
||||
})
|
||||
|
||||
await confirmPassword()
|
||||
|
||||
const res = await axios.post(url, {
|
||||
value: isEnabled,
|
||||
})
|
||||
|
||||
return res.data
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!--
|
||||
- SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
- SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
-->
|
||||
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
||||
<id>user_picker</id>
|
||||
<name>Profile picker</name>
|
||||
<summary>Profile smart picker and link preview</summary>
|
||||
<description><![CDATA[This app adds the ability to search for user profiles via the smart picker and display link previews for them.]]></description>
|
||||
<version>1.0.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="julien-nc@posteo.net" homepage="https://github.com/julien-nc">Julien Veyssier</author>
|
||||
<namespace>UserPicker</namespace>
|
||||
<category>integration</category>
|
||||
<bugs>https://github.com/nextcloud/server/issues</bugs>
|
||||
<dependencies>
|
||||
<nextcloud min-version="34" max-version="34"/>
|
||||
</dependencies>
|
||||
</info>
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
<?php
|
||||
|
||||
// autoload.php @generated by Composer
|
||||
|
||||
if (PHP_VERSION_ID < 50600) {
|
||||
if (!headers_sent()) {
|
||||
header('HTTP/1.1 500 Internal Server Error');
|
||||
}
|
||||
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
||||
if (!ini_get('display_errors')) {
|
||||
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
||||
fwrite(STDERR, $err);
|
||||
} elseif (!headers_sent()) {
|
||||
echo $err;
|
||||
}
|
||||
}
|
||||
throw new RuntimeException($err);
|
||||
}
|
||||
|
||||
require_once __DIR__ . '/composer/autoload_real.php';
|
||||
|
||||
return ComposerAutoloaderInitUserPicker::getLoader();
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"config" : {
|
||||
"vendor-dir": ".",
|
||||
"optimize-autoloader": true,
|
||||
"classmap-authoritative": true,
|
||||
"autoloader-suffix": "UserPicker"
|
||||
},
|
||||
"autoload" : {
|
||||
"psr-4": {
|
||||
"OCA\\UserPicker\\": "../lib/"
|
||||
}
|
||||
}
|
||||
}
|
||||
18
apps/user_picker/composer/composer.lock
generated
18
apps/user_picker/composer/composer.lock
generated
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"_readme": [
|
||||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "d751713988987e9331980363e24189ce",
|
||||
"packages": [],
|
||||
"packages-dev": [],
|
||||
"aliases": [],
|
||||
"minimum-stability": "stable",
|
||||
"stability-flags": {},
|
||||
"prefer-stable": false,
|
||||
"prefer-lowest": false,
|
||||
"platform": {},
|
||||
"platform-dev": {},
|
||||
"plugin-api-version": "2.9.0"
|
||||
}
|
||||
|
|
@ -1,579 +0,0 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
/**
|
||||
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
||||
*
|
||||
* $loader = new \Composer\Autoload\ClassLoader();
|
||||
*
|
||||
* // register classes with namespaces
|
||||
* $loader->add('Symfony\Component', __DIR__.'/component');
|
||||
* $loader->add('Symfony', __DIR__.'/framework');
|
||||
*
|
||||
* // activate the autoloader
|
||||
* $loader->register();
|
||||
*
|
||||
* // to enable searching the include path (eg. for PEAR packages)
|
||||
* $loader->setUseIncludePath(true);
|
||||
*
|
||||
* In this example, if you try to use a class in the Symfony\Component
|
||||
* namespace or one of its children (Symfony\Component\Console for instance),
|
||||
* the autoloader will first look for the class under the component/
|
||||
* directory, and it will then fallback to the framework/ directory if not
|
||||
* found before giving up.
|
||||
*
|
||||
* This class is loosely based on the Symfony UniversalClassLoader.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||
* @see https://www.php-fig.org/psr/psr-0/
|
||||
* @see https://www.php-fig.org/psr/psr-4/
|
||||
*/
|
||||
class ClassLoader
|
||||
{
|
||||
/** @var \Closure(string):void */
|
||||
private static $includeFile;
|
||||
|
||||
/** @var string|null */
|
||||
private $vendorDir;
|
||||
|
||||
// PSR-4
|
||||
/**
|
||||
* @var array<string, array<string, int>>
|
||||
*/
|
||||
private $prefixLengthsPsr4 = array();
|
||||
/**
|
||||
* @var array<string, list<string>>
|
||||
*/
|
||||
private $prefixDirsPsr4 = array();
|
||||
/**
|
||||
* @var list<string>
|
||||
*/
|
||||
private $fallbackDirsPsr4 = array();
|
||||
|
||||
// PSR-0
|
||||
/**
|
||||
* List of PSR-0 prefixes
|
||||
*
|
||||
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
|
||||
*
|
||||
* @var array<string, array<string, list<string>>>
|
||||
*/
|
||||
private $prefixesPsr0 = array();
|
||||
/**
|
||||
* @var list<string>
|
||||
*/
|
||||
private $fallbackDirsPsr0 = array();
|
||||
|
||||
/** @var bool */
|
||||
private $useIncludePath = false;
|
||||
|
||||
/**
|
||||
* @var array<string, string>
|
||||
*/
|
||||
private $classMap = array();
|
||||
|
||||
/** @var bool */
|
||||
private $classMapAuthoritative = false;
|
||||
|
||||
/**
|
||||
* @var array<string, bool>
|
||||
*/
|
||||
private $missingClasses = array();
|
||||
|
||||
/** @var string|null */
|
||||
private $apcuPrefix;
|
||||
|
||||
/**
|
||||
* @var array<string, self>
|
||||
*/
|
||||
private static $registeredLoaders = array();
|
||||
|
||||
/**
|
||||
* @param string|null $vendorDir
|
||||
*/
|
||||
public function __construct($vendorDir = null)
|
||||
{
|
||||
$this->vendorDir = $vendorDir;
|
||||
self::initializeIncludeClosure();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, list<string>>
|
||||
*/
|
||||
public function getPrefixes()
|
||||
{
|
||||
if (!empty($this->prefixesPsr0)) {
|
||||
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
||||
}
|
||||
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, list<string>>
|
||||
*/
|
||||
public function getPrefixesPsr4()
|
||||
{
|
||||
return $this->prefixDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function getFallbackDirs()
|
||||
{
|
||||
return $this->fallbackDirsPsr0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function getFallbackDirsPsr4()
|
||||
{
|
||||
return $this->fallbackDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, string> Array of classname => path
|
||||
*/
|
||||
public function getClassMap()
|
||||
{
|
||||
return $this->classMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, string> $classMap Class to filename map
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addClassMap(array $classMap)
|
||||
{
|
||||
if ($this->classMap) {
|
||||
$this->classMap = array_merge($this->classMap, $classMap);
|
||||
} else {
|
||||
$this->classMap = $classMap;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix, either
|
||||
* appending or prepending to the ones previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param list<string>|string $paths The PSR-0 root directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function add($prefix, $paths, $prepend = false)
|
||||
{
|
||||
$paths = (array) $paths;
|
||||
if (!$prefix) {
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$paths,
|
||||
$this->fallbackDirsPsr0
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$this->fallbackDirsPsr0,
|
||||
$paths
|
||||
);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
$first = $prefix[0];
|
||||
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
||||
$this->prefixesPsr0[$first][$prefix] = $paths;
|
||||
|
||||
return;
|
||||
}
|
||||
if ($prepend) {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$paths,
|
||||
$this->prefixesPsr0[$first][$prefix]
|
||||
);
|
||||
} else {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$this->prefixesPsr0[$first][$prefix],
|
||||
$paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace, either
|
||||
* appending or prepending to the ones previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param list<string>|string $paths The PSR-4 base directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addPsr4($prefix, $paths, $prepend = false)
|
||||
{
|
||||
$paths = (array) $paths;
|
||||
if (!$prefix) {
|
||||
// Register directories for the root namespace.
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$paths,
|
||||
$this->fallbackDirsPsr4
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$this->fallbackDirsPsr4,
|
||||
$paths
|
||||
);
|
||||
}
|
||||
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
||||
// Register directories for a new namespace.
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = $paths;
|
||||
} elseif ($prepend) {
|
||||
// Prepend directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$paths,
|
||||
$this->prefixDirsPsr4[$prefix]
|
||||
);
|
||||
} else {
|
||||
// Append directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$this->prefixDirsPsr4[$prefix],
|
||||
$paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix,
|
||||
* replacing any others previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param list<string>|string $paths The PSR-0 base directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function set($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr0 = (array) $paths;
|
||||
} else {
|
||||
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace,
|
||||
* replacing any others previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param list<string>|string $paths The PSR-4 base directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setPsr4($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr4 = (array) $paths;
|
||||
} else {
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns on searching the include path for class files.
|
||||
*
|
||||
* @param bool $useIncludePath
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setUseIncludePath($useIncludePath)
|
||||
{
|
||||
$this->useIncludePath = $useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Can be used to check if the autoloader uses the include path to check
|
||||
* for classes.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function getUseIncludePath()
|
||||
{
|
||||
return $this->useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns off searching the prefix and fallback directories for classes
|
||||
* that have not been registered with the class map.
|
||||
*
|
||||
* @param bool $classMapAuthoritative
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setClassMapAuthoritative($classMapAuthoritative)
|
||||
{
|
||||
$this->classMapAuthoritative = $classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* Should class lookup fail if not found in the current class map?
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isClassMapAuthoritative()
|
||||
{
|
||||
return $this->classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
||||
*
|
||||
* @param string|null $apcuPrefix
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setApcuPrefix($apcuPrefix)
|
||||
{
|
||||
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* The APCu prefix in use, or null if APCu caching is not enabled.
|
||||
*
|
||||
* @return string|null
|
||||
*/
|
||||
public function getApcuPrefix()
|
||||
{
|
||||
return $this->apcuPrefix;
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers this instance as an autoloader.
|
||||
*
|
||||
* @param bool $prepend Whether to prepend the autoloader or not
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register($prepend = false)
|
||||
{
|
||||
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
||||
|
||||
if (null === $this->vendorDir) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($prepend) {
|
||||
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
||||
} else {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
self::$registeredLoaders[$this->vendorDir] = $this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters this instance as an autoloader.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function unregister()
|
||||
{
|
||||
spl_autoload_unregister(array($this, 'loadClass'));
|
||||
|
||||
if (null !== $this->vendorDir) {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the given class or interface.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
* @return true|null True if loaded, null otherwise
|
||||
*/
|
||||
public function loadClass($class)
|
||||
{
|
||||
if ($file = $this->findFile($class)) {
|
||||
$includeFile = self::$includeFile;
|
||||
$includeFile($file);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the path to the file where the class is defined.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
*
|
||||
* @return string|false The path if found, false otherwise
|
||||
*/
|
||||
public function findFile($class)
|
||||
{
|
||||
// class map lookup
|
||||
if (isset($this->classMap[$class])) {
|
||||
return $this->classMap[$class];
|
||||
}
|
||||
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
||||
return false;
|
||||
}
|
||||
if (null !== $this->apcuPrefix) {
|
||||
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
||||
if ($hit) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
$file = $this->findFileWithExtension($class, '.php');
|
||||
|
||||
// Search for Hack files if we are running on HHVM
|
||||
if (false === $file && defined('HHVM_VERSION')) {
|
||||
$file = $this->findFileWithExtension($class, '.hh');
|
||||
}
|
||||
|
||||
if (null !== $this->apcuPrefix) {
|
||||
apcu_add($this->apcuPrefix.$class, $file);
|
||||
}
|
||||
|
||||
if (false === $file) {
|
||||
// Remember that this class does not exist.
|
||||
$this->missingClasses[$class] = true;
|
||||
}
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the currently registered loaders keyed by their corresponding vendor directories.
|
||||
*
|
||||
* @return array<string, self>
|
||||
*/
|
||||
public static function getRegisteredLoaders()
|
||||
{
|
||||
return self::$registeredLoaders;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $class
|
||||
* @param string $ext
|
||||
* @return string|false
|
||||
*/
|
||||
private function findFileWithExtension($class, $ext)
|
||||
{
|
||||
// PSR-4 lookup
|
||||
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
||||
|
||||
$first = $class[0];
|
||||
if (isset($this->prefixLengthsPsr4[$first])) {
|
||||
$subPath = $class;
|
||||
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
||||
$subPath = substr($subPath, 0, $lastPos);
|
||||
$search = $subPath . '\\';
|
||||
if (isset($this->prefixDirsPsr4[$search])) {
|
||||
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
||||
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
||||
if (file_exists($file = $dir . $pathEnd)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-4 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr4 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 lookup
|
||||
if (false !== $pos = strrpos($class, '\\')) {
|
||||
// namespaced class name
|
||||
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
||||
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
||||
} else {
|
||||
// PEAR-like class name
|
||||
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
||||
}
|
||||
|
||||
if (isset($this->prefixesPsr0[$first])) {
|
||||
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
||||
if (0 === strpos($class, $prefix)) {
|
||||
foreach ($dirs as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr0 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 include paths.
|
||||
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
private static function initializeIncludeClosure()
|
||||
{
|
||||
if (self::$includeFile !== null) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Scope isolated include.
|
||||
*
|
||||
* Prevents access to $this/self from included files.
|
||||
*
|
||||
* @param string $file
|
||||
* @return void
|
||||
*/
|
||||
self::$includeFile = \Closure::bind(static function($file) {
|
||||
include $file;
|
||||
}, null, null);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,396 +0,0 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer;
|
||||
|
||||
use Composer\Autoload\ClassLoader;
|
||||
use Composer\Semver\VersionParser;
|
||||
|
||||
/**
|
||||
* This class is copied in every Composer installed project and available to all
|
||||
*
|
||||
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
|
||||
*
|
||||
* To require its presence, you can require `composer-runtime-api ^2.0`
|
||||
*
|
||||
* @final
|
||||
*/
|
||||
class InstalledVersions
|
||||
{
|
||||
/**
|
||||
* @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
|
||||
* @internal
|
||||
*/
|
||||
private static $selfDir = null;
|
||||
|
||||
/**
|
||||
* @var mixed[]|null
|
||||
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
|
||||
*/
|
||||
private static $installed;
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
private static $installedIsLocalDir;
|
||||
|
||||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
private static $canGetVendors;
|
||||
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
private static $installedByVendor = array();
|
||||
|
||||
/**
|
||||
* Returns a list of all package names which are present, either by being installed, replaced or provided
|
||||
*
|
||||
* @return string[]
|
||||
* @psalm-return list<string>
|
||||
*/
|
||||
public static function getInstalledPackages()
|
||||
{
|
||||
$packages = array();
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
$packages[] = array_keys($installed['versions']);
|
||||
}
|
||||
|
||||
if (1 === \count($packages)) {
|
||||
return $packages[0];
|
||||
}
|
||||
|
||||
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a list of all package names with a specific type e.g. 'library'
|
||||
*
|
||||
* @param string $type
|
||||
* @return string[]
|
||||
* @psalm-return list<string>
|
||||
*/
|
||||
public static function getInstalledPackagesByType($type)
|
||||
{
|
||||
$packagesByType = array();
|
||||
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
foreach ($installed['versions'] as $name => $package) {
|
||||
if (isset($package['type']) && $package['type'] === $type) {
|
||||
$packagesByType[] = $name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $packagesByType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether the given package is installed
|
||||
*
|
||||
* This also returns true if the package name is provided or replaced by another package
|
||||
*
|
||||
* @param string $packageName
|
||||
* @param bool $includeDevRequirements
|
||||
* @return bool
|
||||
*/
|
||||
public static function isInstalled($packageName, $includeDevRequirements = true)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (isset($installed['versions'][$packageName])) {
|
||||
return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether the given package satisfies a version constraint
|
||||
*
|
||||
* e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
|
||||
*
|
||||
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
|
||||
*
|
||||
* @param VersionParser $parser Install composer/semver to have access to this class and functionality
|
||||
* @param string $packageName
|
||||
* @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
|
||||
* @return bool
|
||||
*/
|
||||
public static function satisfies(VersionParser $parser, $packageName, $constraint)
|
||||
{
|
||||
$constraint = $parser->parseConstraints((string) $constraint);
|
||||
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
||||
|
||||
return $provided->matches($constraint);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a version constraint representing all the range(s) which are installed for a given package
|
||||
*
|
||||
* It is easier to use this via isInstalled() with the $constraint argument if you need to check
|
||||
* whether a given version of a package is installed, and not just whether it exists
|
||||
*
|
||||
* @param string $packageName
|
||||
* @return string Version constraint usable with composer/semver
|
||||
*/
|
||||
public static function getVersionRanges($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$ranges = array();
|
||||
if (isset($installed['versions'][$packageName]['pretty_version'])) {
|
||||
$ranges[] = $installed['versions'][$packageName]['pretty_version'];
|
||||
}
|
||||
if (array_key_exists('aliases', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
|
||||
}
|
||||
if (array_key_exists('replaced', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
|
||||
}
|
||||
if (array_key_exists('provided', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
|
||||
}
|
||||
|
||||
return implode(' || ', $ranges);
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
|
||||
*/
|
||||
public static function getVersion($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['version'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['version'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
|
||||
*/
|
||||
public static function getPrettyVersion($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['pretty_version'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['pretty_version'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
|
||||
*/
|
||||
public static function getReference($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['reference'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['reference'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
|
||||
*/
|
||||
public static function getInstallPath($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
* @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
|
||||
*/
|
||||
public static function getRootPackage()
|
||||
{
|
||||
$installed = self::getInstalled();
|
||||
|
||||
return $installed[0]['root'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the raw installed.php data for custom implementations
|
||||
*
|
||||
* @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
|
||||
* @return array[]
|
||||
* @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
|
||||
*/
|
||||
public static function getRawData()
|
||||
{
|
||||
@trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
|
||||
|
||||
if (null === self::$installed) {
|
||||
// only require the installed.php file if this file is loaded from its dumped location,
|
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||
self::$installed = include __DIR__ . '/installed.php';
|
||||
} else {
|
||||
self::$installed = array();
|
||||
}
|
||||
}
|
||||
|
||||
return self::$installed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the raw data of all installed.php which are currently loaded for custom implementations
|
||||
*
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
public static function getAllRawData()
|
||||
{
|
||||
return self::getInstalled();
|
||||
}
|
||||
|
||||
/**
|
||||
* Lets you reload the static array from another file
|
||||
*
|
||||
* This is only useful for complex integrations in which a project needs to use
|
||||
* this class but then also needs to execute another project's autoloader in process,
|
||||
* and wants to ensure both projects have access to their version of installed.php.
|
||||
*
|
||||
* A typical case would be PHPUnit, where it would need to make sure it reads all
|
||||
* the data it needs from this class, then call reload() with
|
||||
* `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
|
||||
* the project in which it runs can then also use this class safely, without
|
||||
* interference between PHPUnit's dependencies and the project's dependencies.
|
||||
*
|
||||
* @param array[] $data A vendor/composer/installed.php data set
|
||||
* @return void
|
||||
*
|
||||
* @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
|
||||
*/
|
||||
public static function reload($data)
|
||||
{
|
||||
self::$installed = $data;
|
||||
self::$installedByVendor = array();
|
||||
|
||||
// when using reload, we disable the duplicate protection to ensure that self::$installed data is
|
||||
// always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
|
||||
// so we have to assume it does not, and that may result in duplicate data being returned when listing
|
||||
// all installed packages for example
|
||||
self::$installedIsLocalDir = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
private static function getSelfDir()
|
||||
{
|
||||
if (self::$selfDir === null) {
|
||||
self::$selfDir = strtr(__DIR__, '\\', '/');
|
||||
}
|
||||
|
||||
return self::$selfDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
private static function getInstalled()
|
||||
{
|
||||
if (null === self::$canGetVendors) {
|
||||
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
|
||||
}
|
||||
|
||||
$installed = array();
|
||||
$copiedLocalDir = false;
|
||||
|
||||
if (self::$canGetVendors) {
|
||||
$selfDir = self::getSelfDir();
|
||||
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
|
||||
$vendorDir = strtr($vendorDir, '\\', '/');
|
||||
if (isset(self::$installedByVendor[$vendorDir])) {
|
||||
$installed[] = self::$installedByVendor[$vendorDir];
|
||||
} elseif (is_file($vendorDir.'/composer/installed.php')) {
|
||||
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||
$required = require $vendorDir.'/composer/installed.php';
|
||||
self::$installedByVendor[$vendorDir] = $required;
|
||||
$installed[] = $required;
|
||||
if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
|
||||
self::$installed = $required;
|
||||
self::$installedIsLocalDir = true;
|
||||
}
|
||||
}
|
||||
if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
|
||||
$copiedLocalDir = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (null === self::$installed) {
|
||||
// only require the installed.php file if this file is loaded from its dumped location,
|
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||
$required = require __DIR__ . '/installed.php';
|
||||
self::$installed = $required;
|
||||
} else {
|
||||
self::$installed = array();
|
||||
}
|
||||
}
|
||||
|
||||
if (self::$installed !== array() && !$copiedLocalDir) {
|
||||
$installed[] = self::$installed;
|
||||
}
|
||||
|
||||
return $installed;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
|
||||
Copyright (c) Nils Adermann, Jordi Boggiano
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished
|
||||
to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
|
||||
// autoload_classmap.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = $vendorDir;
|
||||
|
||||
return array(
|
||||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
||||
'OCA\\UserPicker\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php',
|
||||
'OCA\\UserPicker\\Listener\\UserPickerReferenceListener' => $baseDir . '/../lib/Listener/UserPickerReferenceListener.php',
|
||||
'OCA\\UserPicker\\Reference\\ProfilePickerReferenceProvider' => $baseDir . '/../lib/Reference/ProfilePickerReferenceProvider.php',
|
||||
);
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<?php
|
||||
|
||||
// autoload_namespaces.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = $vendorDir;
|
||||
|
||||
return array(
|
||||
);
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
<?php
|
||||
|
||||
// autoload_psr4.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = $vendorDir;
|
||||
|
||||
return array(
|
||||
'OCA\\UserPicker\\' => array($baseDir . '/../lib'),
|
||||
);
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
<?php
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInitUserPicker
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
public static function loadClassLoader($class)
|
||||
{
|
||||
if ('Composer\Autoload\ClassLoader' === $class) {
|
||||
require __DIR__ . '/ClassLoader.php';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Composer\Autoload\ClassLoader
|
||||
*/
|
||||
public static function getLoader()
|
||||
{
|
||||
if (null !== self::$loader) {
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInitUserPicker', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitUserPicker', 'loadClassLoader'));
|
||||
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitUserPicker::getInitializer($loader));
|
||||
|
||||
$loader->setClassMapAuthoritative(true);
|
||||
$loader->register(true);
|
||||
|
||||
return $loader;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,39 +0,0 @@
|
|||
<?php
|
||||
|
||||
// autoload_static.php @generated by Composer
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInitUserPicker
|
||||
{
|
||||
public static $prefixLengthsPsr4 = array (
|
||||
'O' =>
|
||||
array (
|
||||
'OCA\\UserPicker\\' => 15,
|
||||
),
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
'OCA\\UserPicker\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/../lib',
|
||||
),
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
||||
'OCA\\UserPicker\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
|
||||
'OCA\\UserPicker\\Listener\\UserPickerReferenceListener' => __DIR__ . '/..' . '/../lib/Listener/UserPickerReferenceListener.php',
|
||||
'OCA\\UserPicker\\Reference\\ProfilePickerReferenceProvider' => __DIR__ . '/..' . '/../lib/Reference/ProfilePickerReferenceProvider.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitUserPicker::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitUserPicker::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitUserPicker::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"packages": [],
|
||||
"dev": false,
|
||||
"dev-package-names": []
|
||||
}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
<?php return array(
|
||||
'root' => array(
|
||||
'name' => '__root__',
|
||||
'pretty_version' => 'dev-master',
|
||||
'version' => 'dev-master',
|
||||
'reference' => '4ee57514f882450097e09ce9a577c2dcdb0f002c',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../',
|
||||
'aliases' => array(),
|
||||
'dev' => false,
|
||||
),
|
||||
'versions' => array(
|
||||
'__root__' => array(
|
||||
'pretty_version' => 'dev-master',
|
||||
'version' => 'dev-master',
|
||||
'reference' => '4ee57514f882450097e09ce9a577c2dcdb0f002c',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z" /></svg>
|
||||
|
Before Width: | Height: | Size: 205 B |
|
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#fff"><path d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z" /></svg>
|
||||
|
Before Width: | Height: | Size: 217 B |
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Výběr profilu",
|
||||
"Profile smart picker and link preview" : "Inteligentní výběr profilu a náhled odkazu",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Tato aplikace přidává možnost hledat uživatelské profily prostřednictvím inteligentního výběru a zobrazovat náhledy odkazů na ně.",
|
||||
"Searching …" : "Hledání …",
|
||||
"Not found" : "Nenalezeno",
|
||||
"Search for a user profile" : "Hledat uživatelský profil",
|
||||
"Search for a user profile. Start typing" : "Hledejte uživatelský profil. Začněte psát",
|
||||
"Insert selected user profile link" : "Vložte odkaz na profil vybraného uživatele",
|
||||
"Insert" : "Vložit"
|
||||
},
|
||||
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Výběr profilu",
|
||||
"Profile smart picker and link preview" : "Inteligentní výběr profilu a náhled odkazu",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Tato aplikace přidává možnost hledat uživatelské profily prostřednictvím inteligentního výběru a zobrazovat náhledy odkazů na ně.",
|
||||
"Searching …" : "Hledání …",
|
||||
"Not found" : "Nenalezeno",
|
||||
"Search for a user profile" : "Hledat uživatelský profil",
|
||||
"Search for a user profile. Start typing" : "Hledejte uživatelský profil. Začněte psát",
|
||||
"Insert selected user profile link" : "Vložte odkaz na profil vybraného uživatele",
|
||||
"Insert" : "Vložit"
|
||||
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Profilauswahl",
|
||||
"Profile smart picker and link preview" : "Intelligente Profilauswahl und Linkvorschau",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Diese App bietet die Möglichkeit, Benutzerprofile über die intelligente Auswahlliste zu suchen und Link-Vorschauen anzuzeigen.",
|
||||
"Searching …" : "Suche …",
|
||||
"Not found" : "Nicht gefunden",
|
||||
"Search for a user profile" : "Suche nach einem Benutzerprofil",
|
||||
"Search for a user profile. Start typing" : "Suche nach einem Benutzerprofil. Mit der Eingabe beginnen",
|
||||
"Insert selected user profile link" : "Link zum ausgewählten Benutzerprofil einfügen",
|
||||
"Insert" : "Einfügen"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Profilauswahl",
|
||||
"Profile smart picker and link preview" : "Intelligente Profilauswahl und Linkvorschau",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Diese App bietet die Möglichkeit, Benutzerprofile über die intelligente Auswahlliste zu suchen und Link-Vorschauen anzuzeigen.",
|
||||
"Searching …" : "Suche …",
|
||||
"Not found" : "Nicht gefunden",
|
||||
"Search for a user profile" : "Suche nach einem Benutzerprofil",
|
||||
"Search for a user profile. Start typing" : "Suche nach einem Benutzerprofil. Mit der Eingabe beginnen",
|
||||
"Insert selected user profile link" : "Link zum ausgewählten Benutzerprofil einfügen",
|
||||
"Insert" : "Einfügen"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Profilauswahl",
|
||||
"Profile smart picker and link preview" : "Intelligente Profilauswahl und Link-Vorschau",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Diese App bietet die Möglichkeit, Benutzerprofile über die intelligente Auswahlliste zu suchen und Link-Vorschauen anzuzeigen.",
|
||||
"Searching …" : "Suche …",
|
||||
"Not found" : "Nicht gefunden",
|
||||
"Search for a user profile" : "Suche nach einem Benutzerprofil",
|
||||
"Search for a user profile. Start typing" : "Suche nach einem Benutzerprofil. Mit der Eingabe beginnen",
|
||||
"Insert selected user profile link" : "Link zum ausgewählten Benutzerprofil einfügen",
|
||||
"Insert" : "Einfügen"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Profilauswahl",
|
||||
"Profile smart picker and link preview" : "Intelligente Profilauswahl und Link-Vorschau",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Diese App bietet die Möglichkeit, Benutzerprofile über die intelligente Auswahlliste zu suchen und Link-Vorschauen anzuzeigen.",
|
||||
"Searching …" : "Suche …",
|
||||
"Not found" : "Nicht gefunden",
|
||||
"Search for a user profile" : "Suche nach einem Benutzerprofil",
|
||||
"Search for a user profile. Start typing" : "Suche nach einem Benutzerprofil. Mit der Eingabe beginnen",
|
||||
"Insert selected user profile link" : "Link zum ausgewählten Benutzerprofil einfügen",
|
||||
"Insert" : "Einfügen"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Επιλογέας προφίλ",
|
||||
"Profile smart picker and link preview" : "Έξυπνος επιλογέας προφίλ και προεπισκόπηση συνδέσμου",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Αυτή η εφαρμογή προσθέτει τη δυνατότητα αναζήτησης προφίλ χρηστών μέσω του έξυπνου επιλογέα και την εμφάνιση προεπισκοπήσεων συνδέσμων για αυτά.",
|
||||
"Searching …" : "Γίνεται αναζήτηση ...",
|
||||
"Not found" : "Δεν βρέθηκε",
|
||||
"Search for a user profile" : "Αναζήτηση για προφίλ χρήστη",
|
||||
"Search for a user profile. Start typing" : "Αναζήτηση για προφίλ χρήστη. Ξεκινήστε την πληκτρολόγηση",
|
||||
"Insert selected user profile link" : "Εισαγωγή συνδέσμου επιλεγμένου προφίλ χρήστη",
|
||||
"Insert" : "Εισαγωγή"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Επιλογέας προφίλ",
|
||||
"Profile smart picker and link preview" : "Έξυπνος επιλογέας προφίλ και προεπισκόπηση συνδέσμου",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Αυτή η εφαρμογή προσθέτει τη δυνατότητα αναζήτησης προφίλ χρηστών μέσω του έξυπνου επιλογέα και την εμφάνιση προεπισκοπήσεων συνδέσμων για αυτά.",
|
||||
"Searching …" : "Γίνεται αναζήτηση ...",
|
||||
"Not found" : "Δεν βρέθηκε",
|
||||
"Search for a user profile" : "Αναζήτηση για προφίλ χρήστη",
|
||||
"Search for a user profile. Start typing" : "Αναζήτηση για προφίλ χρήστη. Ξεκινήστε την πληκτρολόγηση",
|
||||
"Insert selected user profile link" : "Εισαγωγή συνδέσμου επιλεγμένου προφίλ χρήστη",
|
||||
"Insert" : "Εισαγωγή"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Seleccionador de perfiles",
|
||||
"Profile smart picker and link preview" : "Seleccionar de perfiles inteligente y previsualización de enlaces",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Este aplicación añade la abilidad para buscar perfiles de usuario con el seleccionador de perfiles inteligente y mostrar previsualizaciones de enlace",
|
||||
"Searching …" : "Buscando …",
|
||||
"Not found" : "No encontrado",
|
||||
"Search for a user profile" : "Buscar un perfil de usuario",
|
||||
"Search for a user profile. Start typing" : "Buscar un perfil de usuario. Empiece a escribir",
|
||||
"Insert selected user profile link" : "Insertar enlace a perfil de usuario seleccionado",
|
||||
"Insert" : "Insertar"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Seleccionador de perfiles",
|
||||
"Profile smart picker and link preview" : "Seleccionar de perfiles inteligente y previsualización de enlaces",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Este aplicación añade la abilidad para buscar perfiles de usuario con el seleccionador de perfiles inteligente y mostrar previsualizaciones de enlace",
|
||||
"Searching …" : "Buscando …",
|
||||
"Not found" : "No encontrado",
|
||||
"Search for a user profile" : "Buscar un perfil de usuario",
|
||||
"Search for a user profile. Start typing" : "Buscar un perfil de usuario. Empiece a escribir",
|
||||
"Insert selected user profile link" : "Insertar enlace a perfil de usuario seleccionado",
|
||||
"Insert" : "Insertar"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Profiilivalija",
|
||||
"Profile smart picker and link preview" : "Profiili nutivalija ja linkide eelvaade",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "See rakendus lisab võimaluse otsida nutivalijast profiile ja kuvada nende lingi eelvaadet.",
|
||||
"Searching …" : "Otsin...",
|
||||
"Not found" : "Ei leidu",
|
||||
"Search for a user profile" : "Otsi kasutajaprofiili",
|
||||
"Search for a user profile. Start typing" : "Otsi kasutajaprofiili. Kirjuta midagi",
|
||||
"Insert selected user profile link" : "Lisa valitud kasutajaprofiili link",
|
||||
"Insert" : "Lisa"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Profiilivalija",
|
||||
"Profile smart picker and link preview" : "Profiili nutivalija ja linkide eelvaade",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "See rakendus lisab võimaluse otsida nutivalijast profiile ja kuvada nende lingi eelvaadet.",
|
||||
"Searching …" : "Otsin...",
|
||||
"Not found" : "Ei leidu",
|
||||
"Search for a user profile" : "Otsi kasutajaprofiili",
|
||||
"Search for a user profile. Start typing" : "Otsi kasutajaprofiili. Kirjuta midagi",
|
||||
"Insert selected user profile link" : "Lisa valitud kasutajaprofiili link",
|
||||
"Insert" : "Lisa"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Profiilivalitsin",
|
||||
"Searching …" : "Haetaan …",
|
||||
"Not found" : "Ei löytynyt",
|
||||
"Search for a user profile" : "Etsi käyttäjäprofiilia",
|
||||
"Search for a user profile. Start typing" : "Etsi käyttäjäprofiilia. Aloita kirjoittaminen",
|
||||
"Insert selected user profile link" : "Syötä valitun käyttäjäprofiilin linkki",
|
||||
"Insert" : "Lisää"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Profiilivalitsin",
|
||||
"Searching …" : "Haetaan …",
|
||||
"Not found" : "Ei löytynyt",
|
||||
"Search for a user profile" : "Etsi käyttäjäprofiilia",
|
||||
"Search for a user profile. Start typing" : "Etsi käyttäjäprofiilia. Aloita kirjoittaminen",
|
||||
"Insert selected user profile link" : "Syötä valitun käyttäjäprofiilin linkki",
|
||||
"Insert" : "Lisää"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Sélecteur de profil",
|
||||
"Searching …" : "Recherche…",
|
||||
"Not found" : "Non trouvé",
|
||||
"Search for a user profile" : "Rechercher un profil utilisateur",
|
||||
"Search for a user profile. Start typing" : "Rechercher un profil utilisateur. Saisissez quelque chose",
|
||||
"Insert selected user profile link" : "Insérer le lien du profil utilisateur sélectionné",
|
||||
"Insert" : "Insérer"
|
||||
},
|
||||
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Sélecteur de profil",
|
||||
"Searching …" : "Recherche…",
|
||||
"Not found" : "Non trouvé",
|
||||
"Search for a user profile" : "Rechercher un profil utilisateur",
|
||||
"Search for a user profile. Start typing" : "Rechercher un profil utilisateur. Saisissez quelque chose",
|
||||
"Insert selected user profile link" : "Insérer le lien du profil utilisateur sélectionné",
|
||||
"Insert" : "Insérer"
|
||||
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Roghnóir próifíle",
|
||||
"Profile smart picker and link preview" : "Roghnóir cliste próifíle agus réamhamharc nasc",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Cuireann an aip seo an cumas leis próifílí úsáideoirí a chuardach tríd an roghnóir cliste agus réamhamhairc nasc a thaispeáint dóibh.",
|
||||
"Searching …" : "Ag cuardach …",
|
||||
"Not found" : "Ní bhfuarthas",
|
||||
"Search for a user profile" : "Cuardaigh próifíl úsáideora",
|
||||
"Search for a user profile. Start typing" : "Cuardaigh próifíl úsáideora. Tosaigh ag clóscríobh.",
|
||||
"Insert selected user profile link" : "Cuir nasc próifíl úsáideora roghnaithe isteach",
|
||||
"Insert" : "cuir isteach"
|
||||
},
|
||||
"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Roghnóir próifíle",
|
||||
"Profile smart picker and link preview" : "Roghnóir cliste próifíle agus réamhamharc nasc",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Cuireann an aip seo an cumas leis próifílí úsáideoirí a chuardach tríd an roghnóir cliste agus réamhamhairc nasc a thaispeáint dóibh.",
|
||||
"Searching …" : "Ag cuardach …",
|
||||
"Not found" : "Ní bhfuarthas",
|
||||
"Search for a user profile" : "Cuardaigh próifíl úsáideora",
|
||||
"Search for a user profile. Start typing" : "Cuardaigh próifíl úsáideora. Tosaigh ag clóscríobh.",
|
||||
"Insert selected user profile link" : "Cuir nasc próifíl úsáideora roghnaithe isteach",
|
||||
"Insert" : "cuir isteach"
|
||||
},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Selector de perfís",
|
||||
"Profile smart picker and link preview" : "Selector intelixente de perfís e vista previa das ligazóns",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Esta aplicación engade a posibilidade de buscar perfís de usuario a través do selector intelixente e amosar as vistas previas das ligazóns correspondentes.",
|
||||
"Searching …" : "Buscando…",
|
||||
"Not found" : "Non atopado",
|
||||
"Search for a user profile" : "Buscar un perfil de usuario",
|
||||
"Search for a user profile. Start typing" : "Buscar un perfil de usuario. Comezar a escribir",
|
||||
"Insert selected user profile link" : "Inserir a ligazón do perfil do usuario seleccionado",
|
||||
"Insert" : "Inserir"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Selector de perfís",
|
||||
"Profile smart picker and link preview" : "Selector intelixente de perfís e vista previa das ligazóns",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Esta aplicación engade a posibilidade de buscar perfís de usuario a través do selector intelixente e amosar as vistas previas das ligazóns correspondentes.",
|
||||
"Searching …" : "Buscando…",
|
||||
"Not found" : "Non atopado",
|
||||
"Search for a user profile" : "Buscar un perfil de usuario",
|
||||
"Search for a user profile. Start typing" : "Buscar un perfil de usuario. Comezar a escribir",
|
||||
"Insert selected user profile link" : "Inserir a ligazón do perfil do usuario seleccionado",
|
||||
"Insert" : "Inserir"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Профайл сонгогч",
|
||||
"Profile smart picker and link preview" : "Профайлын ухаалаг сонгогч болон холбоосын урьдчилсан үзэлт",
|
||||
"Searching …" : "Хайж байна …",
|
||||
"Not found" : "Олдсонгүй",
|
||||
"Search for a user profile" : "Хэрэглэгчийн профайл хайх",
|
||||
"Search for a user profile. Start typing" : "Хэрэглэгчийн профайл хайх. Бичиж эхлэнэ үү",
|
||||
"Insert selected user profile link" : "Сонгосон хэрэглэгчийн профайлын холбоосыг оруулах",
|
||||
"Insert" : "Оруулах"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Профайл сонгогч",
|
||||
"Profile smart picker and link preview" : "Профайлын ухаалаг сонгогч болон холбоосын урьдчилсан үзэлт",
|
||||
"Searching …" : "Хайж байна …",
|
||||
"Not found" : "Олдсонгүй",
|
||||
"Search for a user profile" : "Хэрэглэгчийн профайл хайх",
|
||||
"Search for a user profile. Start typing" : "Хэрэглэгчийн профайл хайх. Бичиж эхлэнэ үү",
|
||||
"Insert selected user profile link" : "Сонгосон хэрэглэгчийн профайлын холбоосыг оруулах",
|
||||
"Insert" : "Оруулах"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Selector de perfil",
|
||||
"Profile smart picker and link preview" : "Selector intelligent de perfil e apercebut de ligam",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Aquesta aplicacion ajusta la possibilitat de cercar de perfils utilizaire via lo selector intelligent e d’afichar los apercebuts de ligams per aqueles.",
|
||||
"Searching …" : "Recèrca…",
|
||||
"Not found" : "Non trobat",
|
||||
"Search for a user profile" : "Cercar un perfil utilizaire",
|
||||
"Search for a user profile. Start typing" : "Cercar un perfil utilizaire. Començatz de picar",
|
||||
"Insert selected user profile link" : "Inserir lo ligam del perfil utilizaire seleccionat",
|
||||
"Insert" : "Inserir"
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Selector de perfil",
|
||||
"Profile smart picker and link preview" : "Selector intelligent de perfil e apercebut de ligam",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Aquesta aplicacion ajusta la possibilitat de cercar de perfils utilizaire via lo selector intelligent e d’afichar los apercebuts de ligams per aqueles.",
|
||||
"Searching …" : "Recèrca…",
|
||||
"Not found" : "Non trobat",
|
||||
"Search for a user profile" : "Cercar un perfil utilizaire",
|
||||
"Search for a user profile. Start typing" : "Cercar un perfil utilizaire. Començatz de picar",
|
||||
"Insert selected user profile link" : "Inserir lo ligam del perfil utilizaire seleccionat",
|
||||
"Insert" : "Inserir"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Výber profilu",
|
||||
"Profile smart picker and link preview" : "Profil inteligentného výberu a náhľad odkazu",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Táto aplikácia pridáva možnosť vyhľadávať používateľské profily pomocou inteligentného výberu a zobraziť náhľady odkazov pre ne.",
|
||||
"Searching …" : "Vyhľadáva sa …",
|
||||
"Not found" : "Nenájdené",
|
||||
"Search for a user profile" : "Hľadať profil používateľa",
|
||||
"Search for a user profile. Start typing" : "Hľadajte profil používateľa. Začnite písať",
|
||||
"Insert selected user profile link" : "Vložte odkaz na vybraný používateľský profil",
|
||||
"Insert" : "Vložiť"
|
||||
},
|
||||
"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Výber profilu",
|
||||
"Profile smart picker and link preview" : "Profil inteligentného výberu a náhľad odkazu",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Táto aplikácia pridáva možnosť vyhľadávať používateľské profily pomocou inteligentného výberu a zobraziť náhľady odkazov pre ne.",
|
||||
"Searching …" : "Vyhľadáva sa …",
|
||||
"Not found" : "Nenájdené",
|
||||
"Search for a user profile" : "Hľadať profil používateľa",
|
||||
"Search for a user profile. Start typing" : "Hľadajte profil používateľa. Začnite písať",
|
||||
"Insert selected user profile link" : "Vložte odkaz na vybraný používateľský profil",
|
||||
"Insert" : "Vložiť"
|
||||
},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "Вибір профілю",
|
||||
"Profile smart picker and link preview" : "Асистент з вибору пррофілю та попереднього перегляду посилань",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Цей застосунок дозволяє користувачам шукати профілі користувачів за допомогою асистента з вибору профіля, показувати посилання попереднього перегляду на ці профілі.",
|
||||
"Searching …" : "Шукаю...",
|
||||
"Not found" : "Не знайдено",
|
||||
"Search for a user profile" : "Шукати профіль користувача",
|
||||
"Search for a user profile. Start typing" : "Почніть вводити, щоби знайти профіль користувача",
|
||||
"Insert selected user profile link" : "Вставте посилання на вибраний профіль користувача",
|
||||
"Insert" : "Вставити"
|
||||
},
|
||||
"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "Вибір профілю",
|
||||
"Profile smart picker and link preview" : "Асистент з вибору пррофілю та попереднього перегляду посилань",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "Цей застосунок дозволяє користувачам шукати профілі користувачів за допомогою асистента з вибору профіля, показувати посилання попереднього перегляду на ці профілі.",
|
||||
"Searching …" : "Шукаю...",
|
||||
"Not found" : "Не знайдено",
|
||||
"Search for a user profile" : "Шукати профіль користувача",
|
||||
"Search for a user profile. Start typing" : "Почніть вводити, щоби знайти профіль користувача",
|
||||
"Insert selected user profile link" : "Вставте посилання на вибраний профіль користувача",
|
||||
"Insert" : "Вставити"
|
||||
},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"user_picker",
|
||||
{
|
||||
"Profile picker" : "個人資料選擇器",
|
||||
"Profile smart picker and link preview" : "個人資料智能選擇器和連結預覽",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "此應用程式增加了透過智慧型選擇器搜尋用戶個人資料並顯示連結預覽的功能。",
|
||||
"Searching …" : "搜尋中 …",
|
||||
"Not found" : "找不到",
|
||||
"Search for a user profile" : "搜尋用戶個人資料",
|
||||
"Search for a user profile. Start typing" : "搜尋用戶個人資料。開始打字",
|
||||
"Insert selected user profile link" : "插入已選擇用戶個人資料連結",
|
||||
"Insert" : "插入"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{ "translations": {
|
||||
"Profile picker" : "個人資料選擇器",
|
||||
"Profile smart picker and link preview" : "個人資料智能選擇器和連結預覽",
|
||||
"This app adds the ability to search for user profiles via the smart picker and display link previews for them." : "此應用程式增加了透過智慧型選擇器搜尋用戶個人資料並顯示連結預覽的功能。",
|
||||
"Searching …" : "搜尋中 …",
|
||||
"Not found" : "找不到",
|
||||
"Search for a user profile" : "搜尋用戶個人資料",
|
||||
"Search for a user profile. Start typing" : "搜尋用戶個人資料。開始打字",
|
||||
"Insert selected user profile link" : "插入已選擇用戶個人資料連結",
|
||||
"Insert" : "插入"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
namespace OCA\UserPicker\Listener;
|
||||
|
||||
use OCA\UserPicker\AppInfo\Application;
|
||||
use OCP\Collaboration\Reference\RenderReferenceEvent;
|
||||
use OCP\EventDispatcher\Event;
|
||||
use OCP\EventDispatcher\IEventListener;
|
||||
use OCP\Util;
|
||||
|
||||
/**
|
||||
* @template-implements IEventListener<RenderReferenceEvent>
|
||||
*/
|
||||
class UserPickerReferenceListener implements IEventListener {
|
||||
public function handle(Event $event): void {
|
||||
if (!$event instanceof RenderReferenceEvent) {
|
||||
return;
|
||||
}
|
||||
|
||||
Util::addScript(Application::APP_ID, 'reference');
|
||||
}
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
/*!
|
||||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
import { getLoggerBuilder } from '@nextcloud/logger'
|
||||
|
||||
export const logger = getLoggerBuilder()
|
||||
.detectLogLevel()
|
||||
.setApp('user_picker')
|
||||
.build()
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
use OCP\App\IAppManager;
|
||||
use OCP\Server;
|
||||
|
||||
if (!defined('PHPUNIT_RUN')) {
|
||||
define('PHPUNIT_RUN', 1);
|
||||
}
|
||||
|
||||
require_once __DIR__ . '/../../../lib/base.php';
|
||||
require_once __DIR__ . '/../../../tests/autoload.php';
|
||||
|
||||
Server::get(IAppManager::class)->loadApp('user_picker');
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
namespace OCA\UserPicker\Tests;
|
||||
|
||||
use OCA\UserPicker\AppInfo\Application;
|
||||
|
||||
class ApplicationTest extends \PHPUnit\Framework\TestCase {
|
||||
|
||||
public function testDummy() {
|
||||
$app = new Application();
|
||||
$this->assertEquals('user_picker', $app::APP_ID);
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
../../../apps/user_picker
|
||||
|
|
@ -46,6 +46,7 @@ const modules = {
|
|||
},
|
||||
profile: {
|
||||
main: resolve(import.meta.dirname, 'apps/profile/src', 'main.ts'),
|
||||
reference: resolve(import.meta.dirname, 'apps/profile/src', 'reference.js'),
|
||||
},
|
||||
sharebymail: {
|
||||
'admin-settings': resolve(import.meta.dirname, 'apps/sharebymail/src', 'settings-admin.ts'),
|
||||
|
|
@ -66,9 +67,6 @@ const modules = {
|
|||
renewPassword: resolve(import.meta.dirname, 'apps/user_ldap/src', 'renewPassword.ts'),
|
||||
'settings-admin': resolve(import.meta.dirname, 'apps/user_ldap/src', 'settings-admin.ts'),
|
||||
},
|
||||
user_picker: {
|
||||
reference: resolve(import.meta.dirname, 'apps/user_picker/src', 'reference.js'),
|
||||
},
|
||||
user_status: {
|
||||
menu: resolve(import.meta.dirname, 'apps/user_status/src', 'menu.js'),
|
||||
},
|
||||
|
|
|
|||
|
|
@ -640,7 +640,6 @@ Feature: provisioning
|
|||
| twofactor_backupcodes |
|
||||
| updatenotification |
|
||||
| user_ldap |
|
||||
| user_picker |
|
||||
| user_status |
|
||||
| viewer |
|
||||
| workflowengine |
|
||||
|
|
|
|||
|
|
@ -459,7 +459,6 @@ if (isset($argv[1])) {
|
|||
'../apps/twofactor_backupcodes',
|
||||
'../apps/updatenotification',
|
||||
'../apps/user_ldap',
|
||||
'../apps/user_picker',
|
||||
'../apps/user_status',
|
||||
'../apps/weather_status',
|
||||
'../apps/workflowengine',
|
||||
|
|
|
|||
|
|
@ -48,7 +48,6 @@
|
|||
"twofactor_totp",
|
||||
"updatenotification",
|
||||
"user_ldap",
|
||||
"user_picker",
|
||||
"user_status",
|
||||
"viewer",
|
||||
"weather_status",
|
||||
|
|
@ -95,7 +94,6 @@
|
|||
"theming",
|
||||
"twofactor_totp",
|
||||
"updatenotification",
|
||||
"user_picker",
|
||||
"user_status",
|
||||
"viewer",
|
||||
"weather_status",
|
||||
|
|
|
|||
2
dist/AccountOutline-DmK_gbmB.chunk.mjs
vendored
2
dist/AccountOutline-DmK_gbmB.chunk.mjs
vendored
File diff suppressed because one or more lines are too long
1
dist/AccountOutline-DmK_gbmB.chunk.mjs.map
vendored
1
dist/AccountOutline-DmK_gbmB.chunk.mjs.map
vendored
File diff suppressed because one or more lines are too long
2
dist/AuthMechanismRsa-C4e9bMX8.chunk.mjs
vendored
Normal file
2
dist/AuthMechanismRsa-C4e9bMX8.chunk.mjs
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import{f as g,q as y,s as v,g as p,u as o,o as n,I as h,w as _,j as V,t as k,v as x,r as M,c as d,h as f,F as q,C as w,E as K,G as U}from"./runtime-dom.esm-bundler-w0tDt7Gi.chunk.mjs";import{c as j}from"./index-2HC-5o-4.chunk.mjs";import{a as C}from"./index-C1xmmKTZ-zpf0CQaW.chunk.mjs";import{t as s}from"./translation-DoG5ZELJ-Bni_xMHF.chunk.mjs";import{g as E}from"./createElementId-DhjFt1I9-B1fq6aa1.chunk.mjs";import{N}from"./autolink-U5pBzLgI-2h5mm9kB.chunk.mjs";import{N as S}from"./NcSelect-DLheQ2yp-dx4VDMCp.chunk.mjs";import{N as A}from"./NcCheckboxRadioSwitch-BMsPx74L-_RgKMJqI.chunk.mjs";import{N as L}from"./NcPasswordField-uaMO2pdt-PEl2ADM3.chunk.mjs";import{_ as z}from"./TrashCanOutline-Big6DF74.chunk.mjs";import{C as c,a as b}from"./types-Cv5PF4zN.chunk.mjs";import{l as B}from"./logger-resIultJ.chunk.mjs";const P=g({__name:"ConfigurationEntry",props:y({configKey:{},configOption:{}},{modelValue:{type:[String,Boolean],default:""},modelModifiers:{}}),emits:["update:modelValue"],setup(e){const a=v(e,"modelValue");return(t,i)=>e.configOption.type!==o(c).Boolean?(n(),p(h(e.configOption.type===o(c).Password?o(L):o(z)),{key:0,modelValue:a.value,"onUpdate:modelValue":i[0]||(i[0]=l=>a.value=l),name:e.configKey,required:!(e.configOption.flags&o(b).Optional),label:e.configOption.value,title:e.configOption.tooltip},null,8,["modelValue","name","required","label","title"])):(n(),p(o(A),{key:1,modelValue:a.value,"onUpdate:modelValue":i[1]||(i[1]=l=>a.value=l),type:"switch",title:e.configOption.tooltip},{default:_(()=>[V(k(e.configOption.value),1)]),_:1},8,["modelValue","title"]))}}),R=g({__name:"AuthMechanismRsa",props:y({authMechanism:{}},{modelValue:{required:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(e){const a=v(e,"modelValue"),t=M();x(t,()=>{t.value&&(a.value.private_key="",a.value.public_key="")});async function i(){try{const{data:l}=await j.post(E("/apps/files_external/ajax/public_key.php"),{keyLength:t.value});a.value.private_key=l.data.private_key,a.value.public_key=l.data.public_key}catch(l){B.error("Error generating RSA key pair",{error:l}),C(s("files_external","Error generating key pair"))}}return(l,m)=>(n(),d("div",null,[(n(!0),d(q,null,w(e.authMechanism.configuration,(r,u)=>K((n(),p(P,{key:r.value,modelValue:a.value[u],"onUpdate:modelValue":O=>a.value[u]=O,configKey:u,configOption:r},null,8,["modelValue","onUpdate:modelValue","configKey","configOption"])),[[U,!(r.flags&o(b).Hidden)]])),128)),f(o(S),{modelValue:t.value,"onUpdate:modelValue":m[0]||(m[0]=r=>t.value=r),clearable:!1,inputLabel:o(s)("files_external","Key size"),options:[1024,2048,4096],required:""},null,8,["modelValue","inputLabel"]),f(o(N),{disabled:!t.value,wide:"",onClick:i},{default:_(()=>[V(k(o(s)("files_external","Generate keys")),1)]),_:1},8,["disabled"])]))}}),$=Object.freeze(Object.defineProperty({__proto__:null,default:R},Symbol.toStringTag,{value:"Module"}));export{$ as A,P as _};
|
||||
//# sourceMappingURL=AuthMechanismRsa-C4e9bMX8.chunk.mjs.map
|
||||
File diff suppressed because one or more lines are too long
2
dist/AuthMechanismRsa-Ca2n-TVu.chunk.mjs
vendored
2
dist/AuthMechanismRsa-Ca2n-TVu.chunk.mjs
vendored
|
|
@ -1,2 +0,0 @@
|
|||
import{b as g,p as y,q as v,c as p,u as o,o as n,I as h,w as _,g as V,t as b,s as x,r as M,j as d,e as f,F as q,C as w,E as K,G as U}from"./runtime-dom.esm-bundler-BprhcrOE.chunk.mjs";import{c as j}from"./index-C-LJcJnH.chunk.mjs";import{a as C}from"./index-C1xmmKTZ-DrIxA_40.chunk.mjs";import{t as s}from"./translation-DoG5ZELJ-Bni_xMHF.chunk.mjs";import{g as E}from"./createElementId-DhjFt1I9-BQ18DTJF.chunk.mjs";import{N}from"./AccountOutline-DmK_gbmB.chunk.mjs";import{N as S}from"./NcSelect-DLheQ2yp-BSVZMNN4.chunk.mjs";import{N as A}from"./NcCheckboxRadioSwitch-BMsPx74L-SpcskPMe.chunk.mjs";import{N as L}from"./NcPasswordField-uaMO2pdt-D-H4HXHz.chunk.mjs";import{_ as z}from"./TrashCanOutline-BH9kHVkS.chunk.mjs";import{C as c,a as k}from"./types-foO7_v3z.chunk.mjs";import{l as B}from"./logger-resIultJ.chunk.mjs";const P=g({__name:"ConfigurationEntry",props:y({configKey:{},configOption:{}},{modelValue:{type:[String,Boolean],default:""},modelModifiers:{}}),emits:["update:modelValue"],setup(e){const a=v(e,"modelValue");return(t,i)=>e.configOption.type!==o(c).Boolean?(n(),p(h(e.configOption.type===o(c).Password?o(L):o(z)),{key:0,modelValue:a.value,"onUpdate:modelValue":i[0]||(i[0]=l=>a.value=l),name:e.configKey,required:!(e.configOption.flags&o(k).Optional),label:e.configOption.value,title:e.configOption.tooltip},null,8,["modelValue","name","required","label","title"])):(n(),p(o(A),{key:1,modelValue:a.value,"onUpdate:modelValue":i[1]||(i[1]=l=>a.value=l),type:"switch",title:e.configOption.tooltip},{default:_(()=>[V(b(e.configOption.value),1)]),_:1},8,["modelValue","title"]))}}),R=g({__name:"AuthMechanismRsa",props:y({authMechanism:{}},{modelValue:{required:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(e){const a=v(e,"modelValue"),t=M();x(t,()=>{t.value&&(a.value.private_key="",a.value.public_key="")});async function i(){try{const{data:l}=await j.post(E("/apps/files_external/ajax/public_key.php"),{keyLength:t.value});a.value.private_key=l.data.private_key,a.value.public_key=l.data.public_key}catch(l){B.error("Error generating RSA key pair",{error:l}),C(s("files_external","Error generating key pair"))}}return(l,m)=>(n(),d("div",null,[(n(!0),d(q,null,w(e.authMechanism.configuration,(r,u)=>K((n(),p(P,{key:r.value,modelValue:a.value[u],"onUpdate:modelValue":O=>a.value[u]=O,configKey:u,configOption:r},null,8,["modelValue","onUpdate:modelValue","configKey","configOption"])),[[U,!(r.flags&o(k).Hidden)]])),128)),f(o(S),{modelValue:t.value,"onUpdate:modelValue":m[0]||(m[0]=r=>t.value=r),clearable:!1,inputLabel:o(s)("files_external","Key size"),options:[1024,2048,4096],required:""},null,8,["modelValue","inputLabel"]),f(o(N),{disabled:!t.value,wide:"",onClick:i},{default:_(()=>[V(b(o(s)("files_external","Generate keys")),1)]),_:1},8,["disabled"])]))}}),$=Object.freeze(Object.defineProperty({__proto__:null,default:R},Symbol.toStringTag,{value:"Module"}));export{$ as A,P as _};
|
||||
//# sourceMappingURL=AuthMechanismRsa-Ca2n-TVu.chunk.mjs.map
|
||||
2
dist/ContentCopy-CgZpiJBj.chunk.mjs
vendored
Normal file
2
dist/ContentCopy-CgZpiJBj.chunk.mjs
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import{r as g,B as h,_ as p,a as C}from"./createElementId-DhjFt1I9-B1fq6aa1.chunk.mjs";import{f as _,c as i,o as e,b as o,e as s,n as y,j as H,t as r,u as d,h as b,m}from"./runtime-dom.esm-bundler-w0tDt7Gi.chunk.mjs";import{a as k}from"./index-Ma7sfat2.chunk.mjs";const A={name:"HelpCircleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},v=["aria-hidden","aria-label"],V=["fill","width","height"],w={d:"M15.07,11.25L14.17,12.17C13.45,12.89 13,13.5 13,15H11V14.5C11,13.39 11.45,12.39 12.17,11.67L13.41,10.41C13.78,10.05 14,9.55 14,9C14,7.89 13.1,7 12,7A2,2 0 0,0 10,9H8A4,4 0 0,1 12,5A4,4 0 0,1 16,9C16,9.88 15.64,10.67 15.07,11.25M13,19H11V17H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12C22,6.47 17.5,2 12,2Z"},z={key:0};function M(a,l,t,c,f,u){return e(),i("span",m(a.$attrs,{"aria-hidden":t.title?null:"true","aria-label":t.title,class:"material-design-icon help-circle-icon",role:"img",onClick:l[0]||(l[0]=n=>a.$emit("click",n))}),[(e(),i("svg",{fill:t.fillColor,class:"material-design-icon__svg",width:t.size,height:t.size,viewBox:"0 0 24 24"},[o("path",w,[t.title?(e(),i("title",z,r(t.title),1)):s("",!0)])],8,V))],16,v)}const S=p(A,[["render",M]]);g(h);const x={class:"settings-section"},$={class:"settings-section__name"},I=["aria-label","href","title"],N={key:0,class:"settings-section__desc"},B=_({__name:"NcSettingsSection",props:{name:{},description:{default:""},docUrl:{default:""}},setup(a){const l=C("External documentation");return(t,c)=>(e(),i("div",x,[o("h2",$,[H(r(t.name)+" ",1),t.docUrl?(e(),i("a",{key:0,"aria-label":d(l),class:"settings-section__info",href:t.docUrl,rel:"noreferrer nofollow",target:"_blank",title:d(l)},[b(S,{size:20})],8,I)):s("",!0)]),t.description?(e(),i("p",N,r(t.description),1)):s("",!0),y(t.$slots,"default",{},void 0,!0)]))}}),T=p(B,[["__scopeId","data-v-9cedb949"]]),U={name:"ContentCopyIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},L=["aria-hidden","aria-label"],Z=["fill","width","height"],j={d:"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z"},E={key:0};function q(a,l,t,c,f,u){return e(),i("span",m(a.$attrs,{"aria-hidden":t.title?null:"true","aria-label":t.title,class:"material-design-icon content-copy-icon",role:"img",onClick:l[0]||(l[0]=n=>a.$emit("click",n))}),[(e(),i("svg",{fill:t.fillColor,class:"material-design-icon__svg",width:t.size,height:t.size,viewBox:"0 0 24 24"},[o("path",j,[t.title?(e(),i("title",E,r(t.title),1)):s("",!0)])],8,Z))],16,L)}const G=k(U,[["render",q]]);export{G as I,T as N};
|
||||
//# sourceMappingURL=ContentCopy-CgZpiJBj.chunk.mjs.map
|
||||
File diff suppressed because one or more lines are too long
2
dist/ContentCopy-Cgm0zrpN.chunk.mjs
vendored
2
dist/ContentCopy-Cgm0zrpN.chunk.mjs
vendored
|
|
@ -1,2 +0,0 @@
|
|||
import{r as g,B as h,_ as p,a as C}from"./createElementId-DhjFt1I9-BQ18DTJF.chunk.mjs";import{b as _,j as i,o as e,k as o,l as s,m as y,g as k,t as r,u as d,e as H,y as f}from"./runtime-dom.esm-bundler-BprhcrOE.chunk.mjs";import{a as b}from"./index-Ma7sfat2.chunk.mjs";const A={name:"HelpCircleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},v=["aria-hidden","aria-label"],V=["fill","width","height"],w={d:"M15.07,11.25L14.17,12.17C13.45,12.89 13,13.5 13,15H11V14.5C11,13.39 11.45,12.39 12.17,11.67L13.41,10.41C13.78,10.05 14,9.55 14,9C14,7.89 13.1,7 12,7A2,2 0 0,0 10,9H8A4,4 0 0,1 12,5A4,4 0 0,1 16,9C16,9.88 15.64,10.67 15.07,11.25M13,19H11V17H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12C22,6.47 17.5,2 12,2Z"},z={key:0};function M(a,l,t,c,m,u){return e(),i("span",f(a.$attrs,{"aria-hidden":t.title?null:"true","aria-label":t.title,class:"material-design-icon help-circle-icon",role:"img",onClick:l[0]||(l[0]=n=>a.$emit("click",n))}),[(e(),i("svg",{fill:t.fillColor,class:"material-design-icon__svg",width:t.size,height:t.size,viewBox:"0 0 24 24"},[o("path",w,[t.title?(e(),i("title",z,r(t.title),1)):s("",!0)])],8,V))],16,v)}const S=p(A,[["render",M]]);g(h);const x={class:"settings-section"},$={class:"settings-section__name"},I=["aria-label","href","title"],N={key:0,class:"settings-section__desc"},B=_({__name:"NcSettingsSection",props:{name:{},description:{default:""},docUrl:{default:""}},setup(a){const l=C("External documentation");return(t,c)=>(e(),i("div",x,[o("h2",$,[k(r(t.name)+" ",1),t.docUrl?(e(),i("a",{key:0,"aria-label":d(l),class:"settings-section__info",href:t.docUrl,rel:"noreferrer nofollow",target:"_blank",title:d(l)},[H(S,{size:20})],8,I)):s("",!0)]),t.description?(e(),i("p",N,r(t.description),1)):s("",!0),y(t.$slots,"default",{},void 0,!0)]))}}),T=p(B,[["__scopeId","data-v-9cedb949"]]),U={name:"ContentCopyIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},L=["aria-hidden","aria-label"],Z=["fill","width","height"],j={d:"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z"},E={key:0};function q(a,l,t,c,m,u){return e(),i("span",f(a.$attrs,{"aria-hidden":t.title?null:"true","aria-label":t.title,class:"material-design-icon content-copy-icon",role:"img",onClick:l[0]||(l[0]=n=>a.$emit("click",n))}),[(e(),i("svg",{fill:t.fillColor,class:"material-design-icon__svg",width:t.size,height:t.size,viewBox:"0 0 24 24"},[o("path",j,[t.title?(e(),i("title",E,r(t.title),1)):s("",!0)])],8,Z))],16,L)}const G=b(U,[["render",q]]);export{G as I,T as N};
|
||||
//# sourceMappingURL=ContentCopy-Cgm0zrpN.chunk.mjs.map
|
||||
2
dist/CredentialsDialog-Bf3L7YJ4.chunk.mjs
vendored
2
dist/CredentialsDialog-Bf3L7YJ4.chunk.mjs
vendored
|
|
@ -1,2 +0,0 @@
|
|||
import{t}from"./translation-DoG5ZELJ-Bni_xMHF.chunk.mjs";import{N as u}from"./index-CDp2IiSu.chunk.mjs";import{N as d}from"./mdi-DaKN7HzT.chunk.mjs";import{N as p}from"./NcPasswordField-uaMO2pdt-D-H4HXHz.chunk.mjs";import{_ as c}from"./TrashCanOutline-BH9kHVkS.chunk.mjs";import{b as g,c as f,o as h,w as x,e as s,u as e,r as n}from"./runtime-dom.esm-bundler-BprhcrOE.chunk.mjs";import"./index-Bndk0DrU.chunk.mjs";import"./NcModal-DHryP_87-06sOiSPg.chunk.mjs";import"./AccountOutline-DmK_gbmB.chunk.mjs";import"./createElementId-DhjFt1I9-BQ18DTJF.chunk.mjs";import"./index-Ma7sfat2.chunk.mjs";import"./Web-sfKoe9bN.chunk.mjs";import"./index-C-LJcJnH.chunk.mjs";import"./index-sH3U_332.chunk.mjs";import"./NcInputField-o5OFv3z6-B9dr1xjk.chunk.mjs";const D=g({__name:"CredentialsDialog",emits:["close"],setup(_){const o=n(""),r=n(""),m=[{label:t("files_external","Confirm"),type:"submit",variant:"primary"}];return(i,a)=>(h(),f(e(u),{buttons:m,class:"external-storage-auth",closeOnClickOutside:"","data-cy-external-storage-auth":"",isForm:"",name:e(t)("files_external","Storage credentials"),outTransition:"",onSubmit:a[2]||(a[2]=l=>i.$emit("close",{login:o.value,password:r.value})),"onUpdate:open":a[3]||(a[3]=l=>i.$emit("close"))},{default:x(()=>[s(e(d),{class:"external-storage-auth__header",text:e(t)("files_external","To access the storage, you need to provide the authentication credentials."),type:"info"},null,8,["text"]),s(e(c),{modelValue:o.value,"onUpdate:modelValue":a[0]||(a[0]=l=>o.value=l),autofocus:"",class:"external-storage-auth__login","data-cy-external-storage-auth-dialog-login":"",label:e(t)("files_external","Login"),placeholder:e(t)("files_external","Enter the storage login"),minlength:"2",name:"login",required:""},null,8,["modelValue","label","placeholder"]),s(e(p),{modelValue:r.value,"onUpdate:modelValue":a[1]||(a[1]=l=>r.value=l),class:"external-storage-auth__password","data-cy-external-storage-auth-dialog-password":"",label:e(t)("files_external","Password"),placeholder:e(t)("files_external","Enter the storage password"),name:"password",required:""},null,8,["modelValue","label","placeholder"])]),_:1},8,["name"]))}});export{D as default};
|
||||
//# sourceMappingURL=CredentialsDialog-Bf3L7YJ4.chunk.mjs.map
|
||||
2
dist/CredentialsDialog-DThlC5QM.chunk.mjs
vendored
Normal file
2
dist/CredentialsDialog-DThlC5QM.chunk.mjs
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import{t}from"./translation-DoG5ZELJ-Bni_xMHF.chunk.mjs";import{N as u}from"./index-1X7ElQaR.chunk.mjs";import{N as d}from"./mdi-YPhQfxXZ.chunk.mjs";import{N as p}from"./NcPasswordField-uaMO2pdt-PEl2ADM3.chunk.mjs";import{_ as c}from"./TrashCanOutline-Big6DF74.chunk.mjs";import{f as g,g as h,o as f,w as x,h as s,u as e,r as n}from"./runtime-dom.esm-bundler-w0tDt7Gi.chunk.mjs";import"./index-Bndk0DrU.chunk.mjs";import"./NcModal-DHryP_87-BkYzWFXJ.chunk.mjs";import"./autolink-U5pBzLgI-2h5mm9kB.chunk.mjs";import"./createElementId-DhjFt1I9-B1fq6aa1.chunk.mjs";import"./Web-DzGiDslj.chunk.mjs";import"./index-Ma7sfat2.chunk.mjs";import"./index-2HC-5o-4.chunk.mjs";import"./index-sH3U_332.chunk.mjs";import"./NcInputField-o5OFv3z6-BKcArNCr.chunk.mjs";const D=g({__name:"CredentialsDialog",emits:["close"],setup(_){const o=n(""),r=n(""),m=[{label:t("files_external","Confirm"),type:"submit",variant:"primary"}];return(i,a)=>(f(),h(e(u),{buttons:m,class:"external-storage-auth",closeOnClickOutside:"","data-cy-external-storage-auth":"",isForm:"",name:e(t)("files_external","Storage credentials"),outTransition:"",onSubmit:a[2]||(a[2]=l=>i.$emit("close",{login:o.value,password:r.value})),"onUpdate:open":a[3]||(a[3]=l=>i.$emit("close"))},{default:x(()=>[s(e(d),{class:"external-storage-auth__header",text:e(t)("files_external","To access the storage, you need to provide the authentication credentials."),type:"info"},null,8,["text"]),s(e(c),{modelValue:o.value,"onUpdate:modelValue":a[0]||(a[0]=l=>o.value=l),autofocus:"",class:"external-storage-auth__login","data-cy-external-storage-auth-dialog-login":"",label:e(t)("files_external","Login"),placeholder:e(t)("files_external","Enter the storage login"),minlength:"2",name:"login",required:""},null,8,["modelValue","label","placeholder"]),s(e(p),{modelValue:r.value,"onUpdate:modelValue":a[1]||(a[1]=l=>r.value=l),class:"external-storage-auth__password","data-cy-external-storage-auth-dialog-password":"",label:e(t)("files_external","Password"),placeholder:e(t)("files_external","Enter the storage password"),name:"password",required:""},null,8,["modelValue","label","placeholder"])]),_:1},8,["name"]))}});export{D as default};
|
||||
//# sourceMappingURL=CredentialsDialog-DThlC5QM.chunk.mjs.map
|
||||
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"CredentialsDialog-Bf3L7YJ4.chunk.mjs","sources":["../build/frontend/apps/files_external/src/views/CredentialsDialog.vue"],"sourcesContent":["<!--\n - SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n - SPDX-License-Identifier: AGPL-3.0-or-later\n-->\n\n<script setup lang=\"ts\">\nimport { t } from '@nextcloud/l10n'\nimport { ref } from 'vue'\nimport NcDialog from '@nextcloud/vue/components/NcDialog'\nimport NcNoteCard from '@nextcloud/vue/components/NcNoteCard'\nimport NcPasswordField from '@nextcloud/vue/components/NcPasswordField'\nimport NcTextField from '@nextcloud/vue/components/NcTextField'\n\ndefineEmits<{\n\tclose: [payload?: { login: string, password: string }]\n}>()\n\nconst login = ref('')\nconst password = ref('')\n\nconst dialogButtons: InstanceType<typeof NcDialog>['buttons'] = [{\n\tlabel: t('files_external', 'Confirm'),\n\ttype: 'submit',\n\tvariant: 'primary',\n}]\n</script>\n\n<template>\n\t<NcDialog\n\t\t:buttons=\"dialogButtons\"\n\t\tclass=\"external-storage-auth\"\n\t\tcloseOnClickOutside\n\t\tdata-cy-external-storage-auth\n\t\tisForm\n\t\t:name=\"t('files_external', 'Storage credentials')\"\n\t\toutTransition\n\t\t@submit=\"$emit('close', { login, password })\"\n\t\t@update:open=\"$emit('close')\">\n\t\t<!-- Header -->\n\t\t<NcNoteCard\n\t\t\tclass=\"external-storage-auth__header\"\n\t\t\t:text=\"t('files_external', 'To access the storage, you need to provide the authentication credentials.')\"\n\t\t\ttype=\"info\" />\n\n\t\t<!-- Login -->\n\t\t<NcTextField\n\t\t\tv-model=\"login\"\n\t\t\tautofocus\n\t\t\tclass=\"external-storage-auth__login\"\n\t\t\tdata-cy-external-storage-auth-dialog-login\n\t\t\t:label=\"t('files_external', 'Login')\"\n\t\t\t:placeholder=\"t('files_external', 'Enter the storage login')\"\n\t\t\tminlength=\"2\"\n\t\t\tname=\"login\"\n\t\t\trequired />\n\n\t\t<!-- Password -->\n\t\t<NcPasswordField\n\t\t\tv-model=\"password\"\n\t\t\tclass=\"external-storage-auth__password\"\n\t\t\tdata-cy-external-storage-auth-dialog-password\n\t\t\t:label=\"t('files_external', 'Password')\"\n\t\t\t:placeholder=\"t('files_external', 'Enter the storage password')\"\n\t\t\tname=\"password\"\n\t\t\trequired />\n\t</NcDialog>\n</template>\n"],"names":["login","ref","password","dialogButtons","t","_createBlock","_unref","NcDialog","_cache","$event","$emit","_createVNode","NcNoteCard","NcTextField","NcPasswordField"],"mappings":"0yBAiBA,MAAMA,EAAQC,EAAI,EAAE,EACdC,EAAWD,EAAI,EAAE,EAEjBE,EAA0D,CAAC,CAChE,MAAOC,EAAE,iBAAkB,SAAS,EACpC,KAAM,SACN,QAAS,SAAA,CACT,oBAIAC,EAqCWC,EAAAC,CAAA,EAAA,CApCT,QAASJ,EACV,MAAM,wBACN,oBAAA,GACA,gCAAA,GACA,OAAA,GACC,KAAMG,EAAAF,CAAA,EAAC,iBAAA,qBAAA,EACR,cAAA,GACC,SAAMI,EAAA,CAAA,IAAAA,EAAA,CAAA,EAAAC,GAAEC,EAAAA,MAAK,QAAA,CAAA,MAAYV,EAAA,eAAOE,EAAA,MAAQ,GACxC,+BAAaQ,EAAAA,MAAK,OAAA,EAAA,aAEnB,IAGe,CAHfC,EAGeL,EAAAM,CAAA,EAAA,CAFd,MAAM,gCACL,KAAMN,EAAAF,CAAA,EAAC,iBAAA,4EAAA,EACR,KAAK,MAAA,mBAGNO,EASYL,EAAAO,CAAA,EAAA,YARFb,EAAA,2CAAAA,EAAK,MAAAS,GACd,UAAA,GACA,MAAM,+BACN,6CAAA,GACC,MAAOH,EAAAF,CAAA,EAAC,iBAAA,OAAA,EACR,YAAaE,EAAAF,CAAA,EAAC,iBAAA,yBAAA,EACf,UAAU,IACV,KAAK,QACL,SAAA,EAAA,+CAGDO,EAOYL,EAAAQ,CAAA,EAAA,YANFZ,EAAA,2CAAAA,EAAQ,MAAAO,GACjB,MAAM,kCACN,gDAAA,GACC,MAAOH,EAAAF,CAAA,EAAC,iBAAA,UAAA,EACR,YAAaE,EAAAF,CAAA,EAAC,iBAAA,4BAAA,EACf,KAAK,WACL,SAAA,EAAA"}
|
||||
{"version":3,"file":"CredentialsDialog-DThlC5QM.chunk.mjs","sources":["../build/frontend/apps/files_external/src/views/CredentialsDialog.vue"],"sourcesContent":["<!--\n - SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n - SPDX-License-Identifier: AGPL-3.0-or-later\n-->\n\n<script setup lang=\"ts\">\nimport { t } from '@nextcloud/l10n'\nimport { ref } from 'vue'\nimport NcDialog from '@nextcloud/vue/components/NcDialog'\nimport NcNoteCard from '@nextcloud/vue/components/NcNoteCard'\nimport NcPasswordField from '@nextcloud/vue/components/NcPasswordField'\nimport NcTextField from '@nextcloud/vue/components/NcTextField'\n\ndefineEmits<{\n\tclose: [payload?: { login: string, password: string }]\n}>()\n\nconst login = ref('')\nconst password = ref('')\n\nconst dialogButtons: InstanceType<typeof NcDialog>['buttons'] = [{\n\tlabel: t('files_external', 'Confirm'),\n\ttype: 'submit',\n\tvariant: 'primary',\n}]\n</script>\n\n<template>\n\t<NcDialog\n\t\t:buttons=\"dialogButtons\"\n\t\tclass=\"external-storage-auth\"\n\t\tcloseOnClickOutside\n\t\tdata-cy-external-storage-auth\n\t\tisForm\n\t\t:name=\"t('files_external', 'Storage credentials')\"\n\t\toutTransition\n\t\t@submit=\"$emit('close', { login, password })\"\n\t\t@update:open=\"$emit('close')\">\n\t\t<!-- Header -->\n\t\t<NcNoteCard\n\t\t\tclass=\"external-storage-auth__header\"\n\t\t\t:text=\"t('files_external', 'To access the storage, you need to provide the authentication credentials.')\"\n\t\t\ttype=\"info\" />\n\n\t\t<!-- Login -->\n\t\t<NcTextField\n\t\t\tv-model=\"login\"\n\t\t\tautofocus\n\t\t\tclass=\"external-storage-auth__login\"\n\t\t\tdata-cy-external-storage-auth-dialog-login\n\t\t\t:label=\"t('files_external', 'Login')\"\n\t\t\t:placeholder=\"t('files_external', 'Enter the storage login')\"\n\t\t\tminlength=\"2\"\n\t\t\tname=\"login\"\n\t\t\trequired />\n\n\t\t<!-- Password -->\n\t\t<NcPasswordField\n\t\t\tv-model=\"password\"\n\t\t\tclass=\"external-storage-auth__password\"\n\t\t\tdata-cy-external-storage-auth-dialog-password\n\t\t\t:label=\"t('files_external', 'Password')\"\n\t\t\t:placeholder=\"t('files_external', 'Enter the storage password')\"\n\t\t\tname=\"password\"\n\t\t\trequired />\n\t</NcDialog>\n</template>\n"],"names":["login","ref","password","dialogButtons","t","_createBlock","_unref","NcDialog","_cache","$event","$emit","_createVNode","NcNoteCard","NcTextField","NcPasswordField"],"mappings":"6yBAiBA,MAAMA,EAAQC,EAAI,EAAE,EACdC,EAAWD,EAAI,EAAE,EAEjBE,EAA0D,CAAC,CAChE,MAAOC,EAAE,iBAAkB,SAAS,EACpC,KAAM,SACN,QAAS,SAAA,CACT,oBAIAC,EAqCWC,EAAAC,CAAA,EAAA,CApCT,QAASJ,EACV,MAAM,wBACN,oBAAA,GACA,gCAAA,GACA,OAAA,GACC,KAAMG,EAAAF,CAAA,EAAC,iBAAA,qBAAA,EACR,cAAA,GACC,SAAMI,EAAA,CAAA,IAAAA,EAAA,CAAA,EAAAC,GAAEC,EAAAA,MAAK,QAAA,CAAA,MAAYV,EAAA,eAAOE,EAAA,MAAQ,GACxC,+BAAaQ,EAAAA,MAAK,OAAA,EAAA,aAEnB,IAGe,CAHfC,EAGeL,EAAAM,CAAA,EAAA,CAFd,MAAM,gCACL,KAAMN,EAAAF,CAAA,EAAC,iBAAA,4EAAA,EACR,KAAK,MAAA,mBAGNO,EASYL,EAAAO,CAAA,EAAA,YARFb,EAAA,2CAAAA,EAAK,MAAAS,GACd,UAAA,GACA,MAAM,+BACN,6CAAA,GACC,MAAOH,EAAAF,CAAA,EAAC,iBAAA,OAAA,EACR,YAAaE,EAAAF,CAAA,EAAC,iBAAA,yBAAA,EACf,UAAU,IACV,KAAK,QACL,SAAA,EAAA,+CAGDO,EAOYL,EAAAQ,CAAA,EAAA,YANFZ,EAAA,2CAAAA,EAAQ,MAAAO,GACjB,MAAM,kCACN,gDAAA,GACC,MAAOH,EAAAF,CAAA,EAAC,iBAAA,UAAA,EACR,YAAaE,EAAAF,CAAA,EAAC,iBAAA,4BAAA,EACf,KAAK,WACL,SAAA,EAAA"}
|
||||
2
dist/FilePicker-C1yRZfLt-Dn31PMBw.chunk.mjs
vendored
Normal file
2
dist/FilePicker-C1yRZfLt-Dn31PMBw.chunk.mjs
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
dist/FilePicker-C1yRZfLt-yG17dQUw.chunk.mjs
vendored
2
dist/FilePicker-C1yRZfLt-yG17dQUw.chunk.mjs
vendored
File diff suppressed because one or more lines are too long
26
dist/FilesVersionsSidebarTab-C8-WEeBc.chunk.mjs
vendored
26
dist/FilesVersionsSidebarTab-C8-WEeBc.chunk.mjs
vendored
File diff suppressed because one or more lines are too long
26
dist/FilesVersionsSidebarTab-DQ7V9ryg.chunk.mjs
vendored
Normal file
26
dist/FilesVersionsSidebarTab-DQ7V9ryg.chunk.mjs
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue