Jörn Friedrich Dreyer

Results 291 comments of Jörn Friedrich Dreyer

I will reopen this issue to debug the code paths that can cause this. To be clear, the error in the log alone is not an indicator of any problem,...

I received another log: ``` ORA-00001: unique constraint (OCAUSER.AUTHTOKEN_TOKEN_INDEX) violated\",\"Code\":0,\"Trace\":\" #0 /data/ocweb/lib/composer/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php(405): Doctrine\\DBAL\\Driver\\OCI8\\OCI8Exception::fromErrorInfo(Array)\ #1 /data/ocweb/lib/composer/doctrine/dbal/lib/Doctrine/DBAL/Statement.php(155): Doctrine\\DBAL\\Driver\\OCI8\\OCI8Statement->execute(NULL)\ #2 /data/ocweb/lib/public/AppFramework/Db/Mapper.php(241): Doctrine\\DBAL\\Statement->execute()\ #3 /data/ocweb/lib/public/AppFramework/Db/Mapper.php(119): OCP\\AppFramework\\Db\\Mapper->execute('INSERT INTO `*P...', Array)\ #4 /data/ocweb/lib/private/Authentication/Token/DefaultTokenProvider.php(101): OCP\\AppFramework\\Db\\Mapper->insert(Object(OC\\Authentication\\Token\\DefaultToken))\ #5 /data/ocweb/lib/private/User/Session.php(732):...

This is a related trace caused by a different unique constraint error ``` ORA-00001: unique constraint (OCAUSER.SYS_C0015122) violated\",\"Code\":0,\"Trace\":\"#0 /data/ocweb/lib/composer/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php(405): Doctrine\DBAL\Driver\OCI8\OCI8Exception::fromErrorInfo(Array)\ #1 /data/ocweb/lib/composer/doctrine/dbal/lib/Doctrine/DBAL/Statement.php(155): Doctrine\DBAL\Driver\OCI8\OCI8Statement->execute(NULL)\ #2 /data/ocweb/lib/public/AppFramework/Db/Mapper.php(241): Doctrine\DBAL\Statement->execute()\ #3 /data/ocweb/lib/public/AppFramework/Db/Mapper.php(119): OCP\AppFramework\Db\Mapper->execute('INSERT INTO...

One code path for the user_shibboleth app is that in base php we find: ```php /** * Check login: apache auth, auth token, basic auth * * @param OCP\IRequest $request...

@DeepDiver1975 merga master or rebase to kick ci again?

I just tried a few apps ... the android team uses https://play.google.com/store/apps/details?id=com.marc.files to test the Document Provider integration. When you open that file manager app it will show you the...

hm, orgzly does seem to use the ACTION_OPEN_DOCUMENT_TREE intent: https://github.com/orgzly/orgzly-android/blob/3d5e036ac198515874f511b11715f088cc3fba45/app/src/main/java/com/orgzly/android/ui/repo/directory/DirectoryRepoActivity.kt#L91-L136 ```java val intent = Intent(Intent.ACTION_OPEN_DOCUMENT_TREE) // ... startActivityForResult(intent, ACTIVITY_REQUEST_CODE_FOR_DIRECTORY_SELECTION) ``` afaict the difference is local document providers vs "cloud backed"...

Aha, [this post](https://developer.android.com/reference/android/content/Intent.html?utm_campaign=android_series_adp_documentsprovider_blog_090716&utm_source=medium&utm_medium=blog#ACTION_OPEN_DOCUMENT_TREE) explains the flags that need to be implemented to let apps use ACTION_OPEN_DOCUMENT_TREE: > ACTION_OPEN_DOCUMENT_TREE > While ACTION_GET_CONTENT and ACTION_OPEN_DOCUMENT focus on providing access to one or...

well, reading files should always be possible. The use case for a music app of for pictures is mostly to read files ... and the owncloud app should cache them...

There is a research issue where I had a look at hew we could expose our search via webdaf, since there is RFC5323 for it: https://github.com/owncloud/core/pull/12884. See also comment in...