Friday, August 23, 2024
dev@conference.yunohost.org
August
Mon Tue Wed Thu Fri Sat Sun
      1
2
3 4
5
6
7
8
9 10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
             

[11:36:20] <Yunohost Git/Infra notifications> [yunohost] utkarshsethi [commented](https://github.com/YunoHost/yunohost/pull/1820#issuecomment-2306906510) on [issue #1820](https://github.com/YunoHost/yunohost/pull/1820) #2128 adding issuewild: An option between using a wildcard vs a normal certificate can be a solution. Even if youre using wildcard cert, it is...
[12:01:23] <Yunohost Git/Infra notifications> [Apps tools error] [App caches] Error while updating archivist: Cmd(git) failed due to: exit code(128)
cmdline: git fetch -v --force -- origin master
stderr: fatal: unable to access https://github.com/YunoHost-Apps/archivist_ynh/: gnutls_handshake() failed: Error in the pull function.
[12:55:02] <Yunohost Git/Infra notifications> [yunohost-admin/vue3] fix: misc ts errors - axolotle
[12:55:03] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle pushed 4 commits to vue3 ([931c0bced39e...fbde9f99cf5f](https://github.com/YunoHost/yunohost-admin/compare/931c0bced39e...fbde9f99cf5f))
[12:59:26] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle pushed 55 commits to vue3 ([fbde9f99cf5f...f18825d18866](https://github.com/YunoHost/yunohost-admin/compare/fbde9f99cf5f...f18825d18866))
[12:59:32] <Yunohost Git/Infra notifications> [yunohost-admin/vue3] Require yunohost >= 12.0 - Alexandre Aubin
[13:04:43] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle pushed 1 commit to vue3: chore: add prettier ignore ([be8b0775](https://github.com/YunoHost/yunohost-admin/commit/be8b077586edb218eecf3165ce5bcdaf94827a16))
[13:15:08] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle edited [pull request #575](https://github.com/YunoHost/yunohost-admin/pull/575): refacto: vue-3 ultimate pr
[13:16:35] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle assigned Axolotle on [pull request #575](https://github.com/YunoHost/yunohost-admin/pull/575): refacto: vue-3 ultimate pr
[13:18:44] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle just made [pull request #575](https://github.com/YunoHost/yunohost-admin/pull/575) ready for review: refacto: vue-3 ultimate pr
[13:19:59] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle [commented](https://github.com/YunoHost/yunohost-admin/pull/560#issuecomment-2307081868) on [issue #560](https://github.com/YunoHost/yunohost-admin/pull/560) Migration Vue3: step 2 vue3 + bootstrap-vue-next + bootstrap 5: Superseded by https://github.com/YunoHost/yunohost-admin/pull/575
[13:19:59] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle closed [pull request #560](https://github.com/YunoHost/yunohost-admin/pull/560): Migration Vue3: step 2 vue3 + bootstrap-vue-next + bootstrap 5
[13:20:38] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle closed [pull request #559](https://github.com/YunoHost/yunohost-admin/pull/559): Migration Vue3: step 1 compat mode
[13:20:39] <Yunohost Git/Infra notifications> [yunohost-admin] Axolotle [commented](https://github.com/YunoHost/yunohost-admin/pull/559#issuecomment-2307082984) on [issue #559](https://github.com/YunoHost/yunohost-admin/pull/559) Migration Vue3: step 1 compat mode: Superseded by https://github.com/YunoHost/yunohost-admin/pull/575
[15:24:17] <Yunohost Git/Infra notifications> ShaAlexander forked yunohost-admin to [ShaAlexander/ecc-admin](https://github.com/ShaAlexander/ecc-admin)
[16:40:39] <Yunohost Git/Infra notifications> [nextcloud_ynh] ci-apps-dev: level 1 https://ci-apps-dev.yunohost.org/ci/job/18450 on commit https://github.com/YunoHost-Apps/nextcloud_ynh/commit/affc780e6014d1e084f01e1f2d86064deb4845be "add cron again because to make notify push happy" by @GitHub on branches add-notify_push-option
[20:33:54] <tituspijean> Bug on YunoHost v12 and Samba config panel (yeah, I like complications 🙃): https://paste.yunohost.org/mabiyapidu.yaml

The first question of the config panel is to update the list of shared directories. Every letter I input on the keyboard triggers the `Exception 'NoneType' object is not iterable` but can be escaped by pressing ENTER like suggested in the log.
[20:35:19] <tituspijean> Bonus question, since the config panel "works" in the webadmin, the list of directories is actually a tags list, but it gets rejected because it does not fit the pattern `^[a-z0-9_]+$`
[20:43:13] <tituspijean> > <@titus:pijean.ovh> Bonus question, since the config panel "works" in the webadmin, the list of directories is actually a tags list, but it gets rejected because it does not fit the pattern `^[a-z0-9_]+$`

found the issue, the regex takes the whole tags list, include its separating commas.
`^[a-z0-9_]+$` can be fixed with `((^|[,])[a-z0-9_]+)+`