Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1
value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3
values | title stringlengths 1 957 | labels stringlengths 4 795 | body stringlengths 1 259k | index stringclasses 12
values | text_combine stringlengths 96 259k | label stringclasses 2
values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
496,734 | 14,353,515,302 | IssuesEvent | 2020-11-30 07:02:43 | art-community/art-java | https://api.github.com/repos/art-community/art-java | closed | Change generation analyzing mechanism | enhancement generator good first issue hardcore help wanted medium priority | ART Generator now scnanning .class files in build directory. This is not acceptable for ART IDEA plugin, because for realtime or button-mode generation we need parsing .java files.
Also, will be good to replace path scanning mechanism by model package with scanning all .java files with `@Mapper` annotation and generate mappers for them | 1.0 | Change generation analyzing mechanism - ART Generator now scnanning .class files in build directory. This is not acceptable for ART IDEA plugin, because for realtime or button-mode generation we need parsing .java files.
Also, will be good to replace path scanning mechanism by model package with scanning all .java files with `@Mapper` annotation and generate mappers for them | priority | change generation analyzing mechanism art generator now scnanning class files in build directory this is not acceptable for art idea plugin because for realtime or button mode generation we need parsing java files also will be good to replace path scanning mechanism by model package with scanning all java files with mapper annotation and generate mappers for them | 1 |
211,246 | 7,199,580,349 | IssuesEvent | 2018-02-05 16:21:02 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [engine] Add the ability to enable Crafter 2 compatible content model conversion | enhancement priority: medium | Add a flag that enables Engine to convert content model objects ending in _prefix as it was done in Crafter 2. This just means that _dt conversion is not done.
| 1.0 | [engine] Add the ability to enable Crafter 2 compatible content model conversion - Add a flag that enables Engine to convert content model objects ending in _prefix as it was done in Crafter 2. This just means that _dt conversion is not done.
| priority | add the ability to enable crafter compatible content model conversion add a flag that enables engine to convert content model objects ending in prefix as it was done in crafter this just means that dt conversion is not done | 1 |
315,674 | 9,630,833,078 | IssuesEvent | 2019-05-15 13:01:19 | HabitRPG/habitica-android | https://api.github.com/repos/HabitRPG/habitica-android | closed | message posted to Tavern containing banned words disappears (can't be edited) | Priority: medium Status: issue: in progress | On the website, when you try to post a message to the Tavern with one of the [banned words](https://github.com/HabitRPG/habitica/pull/8197) in it, you're notified that your message can't be posted and it remains in the message entry box for you to edit it.
On the Android app, you see the notification but your message is removed, meaning that you have to type it from scratch. The ideal behaviour is that the message remains for editing. | 1.0 | message posted to Tavern containing banned words disappears (can't be edited) - On the website, when you try to post a message to the Tavern with one of the [banned words](https://github.com/HabitRPG/habitica/pull/8197) in it, you're notified that your message can't be posted and it remains in the message entry box for you to edit it.
On the Android app, you see the notification but your message is removed, meaning that you have to type it from scratch. The ideal behaviour is that the message remains for editing. | priority | message posted to tavern containing banned words disappears can t be edited on the website when you try to post a message to the tavern with one of the in it you re notified that your message can t be posted and it remains in the message entry box for you to edit it on the android app you see the notification but your message is removed meaning that you have to type it from scratch the ideal behaviour is that the message remains for editing | 1 |
244,296 | 7,873,236,254 | IssuesEvent | 2018-06-25 13:46:11 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | opened | Add intermediate tutorials during application lifecycle | Priority: Medium enhancement | ### Description
Add possibility to trigger tutorial when application changes state and reach a specific condition.
A pratical example could be the chart builder, it could be useful a small tutorial when the builder shows up the first time.
### Other useful information (optional):
| 1.0 | Add intermediate tutorials during application lifecycle - ### Description
Add possibility to trigger tutorial when application changes state and reach a specific condition.
A pratical example could be the chart builder, it could be useful a small tutorial when the builder shows up the first time.
### Other useful information (optional):
| priority | add intermediate tutorials during application lifecycle description add possibility to trigger tutorial when application changes state and reach a specific condition a pratical example could be the chart builder it could be useful a small tutorial when the builder shows up the first time other useful information optional | 1 |
57,504 | 3,082,699,102 | IssuesEvent | 2015-08-24 00:13:59 | magro/memcached-session-manager | https://api.github.com/repos/magro/memcached-session-manager | closed | Sessions expired in memcached with very high webapp session timeout (e.g. 1 year) | bug imported Milestone-1.7.0 Priority-Medium | _From [martin.grotzke](https://code.google.com/u/martin.grotzke/) on July 29, 2011 10:34:13_
This was reported on the mailing list (<a href="http://groups.google.com/group/memcached-session-manager/msg/822b244d81aaba5a" rel="nofollow">http://groups.google.com/group/memcached-session-manager/msg/822b244d81aaba5a</a>):
"Well, we finally got round to properly testing the session stuff.
At first we were not getting a lot of success, but after debugging
what was going on we discovered that our (rediculously high)
session timeout value was causing problems.
Quoting from <a href="http://code.sixapart.com/svn/memcached/trunk/server/doc/protocol.txt" rel="nofollow">http://code.sixapart.com/svn/memcached/trunk/server/doc/protocol.txt</a>
Expiration times
----------------
Some commands involve a client sending some kind of expiration time
(relative to an item or to an operation requested by the client) to
the server. In all such cases, the actual value sent may either be
Unix time (number of seconds since January 1, 1970, as a 32-bit
value), or a number of seconds starting from current time. In the
latter case, this number of seconds may not exceed 60*60*24*30 (number
of seconds in 30 days); if the number sent by a client is larger than
that, the server will consider it to be real Unix time value rather
than an offset from current time.
As our session timeout was set at one year (!) and
memcached-session-manager was passing this value on unchanged,
memcached interpreted the value as a Unix epoch date, which evaluates
to some time in the past; hence the sessions were expired by memcached
immediately.
We've solved our problem by setting the timeout to 30 days now,
but I suggest that memcached-session-manager should inspect the
timeout and correct accordingly; perhaps always convert to Unix epoch?"
_Original issue: http://code.google.com/p/memcached-session-manager/issues/detail?id=104_ | 1.0 | Sessions expired in memcached with very high webapp session timeout (e.g. 1 year) - _From [martin.grotzke](https://code.google.com/u/martin.grotzke/) on July 29, 2011 10:34:13_
This was reported on the mailing list (<a href="http://groups.google.com/group/memcached-session-manager/msg/822b244d81aaba5a" rel="nofollow">http://groups.google.com/group/memcached-session-manager/msg/822b244d81aaba5a</a>):
"Well, we finally got round to properly testing the session stuff.
At first we were not getting a lot of success, but after debugging
what was going on we discovered that our (rediculously high)
session timeout value was causing problems.
Quoting from <a href="http://code.sixapart.com/svn/memcached/trunk/server/doc/protocol.txt" rel="nofollow">http://code.sixapart.com/svn/memcached/trunk/server/doc/protocol.txt</a>
Expiration times
----------------
Some commands involve a client sending some kind of expiration time
(relative to an item or to an operation requested by the client) to
the server. In all such cases, the actual value sent may either be
Unix time (number of seconds since January 1, 1970, as a 32-bit
value), or a number of seconds starting from current time. In the
latter case, this number of seconds may not exceed 60*60*24*30 (number
of seconds in 30 days); if the number sent by a client is larger than
that, the server will consider it to be real Unix time value rather
than an offset from current time.
As our session timeout was set at one year (!) and
memcached-session-manager was passing this value on unchanged,
memcached interpreted the value as a Unix epoch date, which evaluates
to some time in the past; hence the sessions were expired by memcached
immediately.
We've solved our problem by setting the timeout to 30 days now,
but I suggest that memcached-session-manager should inspect the
timeout and correct accordingly; perhaps always convert to Unix epoch?"
_Original issue: http://code.google.com/p/memcached-session-manager/issues/detail?id=104_ | priority | sessions expired in memcached with very high webapp session timeout e g year from on july this was reported on the mailing list well we finally got round to properly testing the session stuff at first we were not getting a lot of success but after debugging what was going on we discovered that our rediculously high session timeout value was causing problems quoting from expiration times some commands involve a client sending some kind of expiration time relative to an item or to an operation requested by the client to the server in all such cases the actual value sent may either be unix time number of seconds since january as a bit value or a number of seconds starting from current time in the latter case this number of seconds may not exceed number of seconds in days if the number sent by a client is larger than that the server will consider it to be real unix time value rather than an offset from current time as our session timeout was set at one year and memcached session manager was passing this value on unchanged memcached interpreted the value as a unix epoch date which evaluates to some time in the past hence the sessions were expired by memcached immediately we ve solved our problem by setting the timeout to days now but i suggest that memcached session manager should inspect the timeout and correct accordingly perhaps always convert to unix epoch original issue | 1 |
248,695 | 7,935,149,220 | IssuesEvent | 2018-07-09 02:58:35 | Optiboot/optiboot | https://api.github.com/repos/Optiboot/optiboot | closed | Link troubles with Atmel toolset (avr-gcc 4.9.x) | Component-Makefiles Priority-Medium Regression help wanted | The structure of the avr-libc libraries has apparently changed in the atmel toolchain containing 4.9.x, and the "-lc" at the end of the link command no longer allows optiboot builds with eeprom support to find the eeprom_xxx_byte() functions (they moved from lib/avrN/libc.a to lib/avrN/lib<chipname>.a)
| 1.0 | Link troubles with Atmel toolset (avr-gcc 4.9.x) - The structure of the avr-libc libraries has apparently changed in the atmel toolchain containing 4.9.x, and the "-lc" at the end of the link command no longer allows optiboot builds with eeprom support to find the eeprom_xxx_byte() functions (they moved from lib/avrN/libc.a to lib/avrN/lib<chipname>.a)
| priority | link troubles with atmel toolset avr gcc x the structure of the avr libc libraries has apparently changed in the atmel toolchain containing x and the lc at the end of the link command no longer allows optiboot builds with eeprom support to find the eeprom xxx byte functions they moved from lib avrn libc a to lib avrn lib a | 1 |
174,628 | 6,541,864,485 | IssuesEvent | 2017-09-01 22:24:10 | octobercms/october | https://api.github.com/repos/octobercms/october | closed | Build 420 upgrade | Priority: Medium Status: Review Needed Type: Bug | For me, the upgrade to build 420 (L5.5) errors out with the following message:
```
"SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(0) null, `updated_at` timestamp(0) null) default character set utf8 collate utf' at line 1 (SQL: create table `system_mail_partials` (`id` int unsigned not null auto_increment primary key, `name` varchar(255) null, `code` varchar(255) null, `content_html` text null, `content_text` text null, `is_custom` tinyint(1) not null default '0', `created_at` timestamp(0) null, `updated_at` timestamp(0) null) default character set utf8 collate utf8_unicode_ci engine = InnoDB)" on line 647 of /var/www/vendor/laravel/framework/src/Illuminate/Database/Connection.php
```
| 1.0 | Build 420 upgrade - For me, the upgrade to build 420 (L5.5) errors out with the following message:
```
"SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(0) null, `updated_at` timestamp(0) null) default character set utf8 collate utf' at line 1 (SQL: create table `system_mail_partials` (`id` int unsigned not null auto_increment primary key, `name` varchar(255) null, `code` varchar(255) null, `content_html` text null, `content_text` text null, `is_custom` tinyint(1) not null default '0', `created_at` timestamp(0) null, `updated_at` timestamp(0) null) default character set utf8 collate utf8_unicode_ci engine = InnoDB)" on line 647 of /var/www/vendor/laravel/framework/src/Illuminate/Database/Connection.php
```
| priority | build upgrade for me the upgrade to build errors out with the following message sqlstate syntax error or access violation you have an error in your sql syntax check the manual that corresponds to your mysql server version for the right syntax to use near null updated at timestamp null default character set collate utf at line sql create table system mail partials id int unsigned not null auto increment primary key name varchar null code varchar null content html text null content text text null is custom tinyint not null default created at timestamp null updated at timestamp null default character set collate unicode ci engine innodb on line of var www vendor laravel framework src illuminate database connection php | 1 |
755,984 | 26,451,332,924 | IssuesEvent | 2023-01-16 11:26:14 | PowerNukkitX/PowerNukkitX | https://api.github.com/repos/PowerNukkitX/PowerNukkitX | closed | 可能无法正确从旁观者模式切换到其它游戏模式 | bug | 漏洞 Confirmed | 已确认 Medium Priority | 中优先级 | # 🐞 错误汇报
某种情况下,无法正确从旁观者模式切换到其他的游戏模式。
在切换到旁观者模式之后退出服务器,再次进入后:
- 如果切换到创造模式,会发现创造物品栏为空。
- 如果切换到生存模式,会发现无法显示任何合成配方。
- 冒险模式未测试。
即使反复切换游戏模式也无济于事,必须重新进入服务器,才能恢复生存或创造的正常状态。
### 📸 截图或视频
(无)
### ▶ 复现步骤
1.进入服务器。
2.将游戏模式切换为旁观模式。
3.退出服务器。
4.再次进入服务器。
5.将游戏模式切换为生存或创造模式。
6.打开物品栏查看情况,没有显示任何合成配方或显示任何创造模式可以直接获取的物品。
### ✔ 预期行为
从旁观者模式切换到生存或创造模式后,物品栏应该显示合成配方或可获得的物品。
### ❌ 实际行为
从旁观者模式离开后,物品栏只显示已经拥有的物品,未显示合成配方或可获得的物品。
### 📋 Debug information
服务器版本(使用 `/version` 获取):`此服务器正在运行 Nukkit 1.19.50-r3 (git-e8ef67a91) 「
PowerNukkitX」API 版本 1.0.14 的 Minecraft: BE v1.19.50 (协议版本 560)>`
查看时序报告:<https://timings.aikar.co/dev/?id=00c58b62d93e47219eddef5aee0f6b98>
抱歉,我在运行命令 `debugpaste upload` 时出现了错误,上传失败。如果确实需要,我将其上传到了 Mediafire,可以在 [这里](https://www.mediafire.com/file/gloi158sl98ibgb/debugpaste-2023-01-12T21.37.50.185%252B0800.zip/file) 找到它。
```
21:37:50 [INFO ] The /debugpaste is executing, please wait...
21:37:50 [INFO ] A debug paste was created at debugpastes/debugpaste-2023-01-12T21.37.50.185+0800.zip
21:37:50 [INFO ] Uploading...
21:37:51 [ERROR] Failed to upload the debugpaste /imeaces/server/test_pnx/debugpastes/debugpaste-2023-01-12T21.37.50.185+0800.zip
java.io.IOException: The server responded with code 500, expected 201
at cn.nukkit.command.defaults.DebugPasteCommand.upload(DebugPasteCommand.java:164) [PowerNukkitX-master-e8ef67a91.jar:?]
at cn.nukkit.command.defaults.DebugPasteCommand$1.onRun(DebugPasteCommand.java:345) [PowerNukkitX-master-e8ef67a91.jar:?]
at cn.nukkit.scheduler.AsyncTask.run(AsyncTask.java:26) [PowerNukkitX-master-e8ef67a91.jar:?]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
at java.lang.Thread.run(Thread.java:833) [?:?]
21:37:51 [INFO ] Failed to upload the debugpaste, the file is still available in your server directory.
```
### 💢 错误堆栈或崩溃日志
服务器没有崩溃,且控制台没有输出错误消息。
### 💬 其他信息
1.我在 BDS 服务器上也进行了类似的测试,从旁观者模式切换到其他模式并没有出现上述问题。
2.测试使用的游戏版本为 `1.19.50`。 | 1.0 | 可能无法正确从旁观者模式切换到其它游戏模式 - # 🐞 错误汇报
某种情况下,无法正确从旁观者模式切换到其他的游戏模式。
在切换到旁观者模式之后退出服务器,再次进入后:
- 如果切换到创造模式,会发现创造物品栏为空。
- 如果切换到生存模式,会发现无法显示任何合成配方。
- 冒险模式未测试。
即使反复切换游戏模式也无济于事,必须重新进入服务器,才能恢复生存或创造的正常状态。
### 📸 截图或视频
(无)
### ▶ 复现步骤
1.进入服务器。
2.将游戏模式切换为旁观模式。
3.退出服务器。
4.再次进入服务器。
5.将游戏模式切换为生存或创造模式。
6.打开物品栏查看情况,没有显示任何合成配方或显示任何创造模式可以直接获取的物品。
### ✔ 预期行为
从旁观者模式切换到生存或创造模式后,物品栏应该显示合成配方或可获得的物品。
### ❌ 实际行为
从旁观者模式离开后,物品栏只显示已经拥有的物品,未显示合成配方或可获得的物品。
### 📋 Debug information
服务器版本(使用 `/version` 获取):`此服务器正在运行 Nukkit 1.19.50-r3 (git-e8ef67a91) 「
PowerNukkitX」API 版本 1.0.14 的 Minecraft: BE v1.19.50 (协议版本 560)>`
查看时序报告:<https://timings.aikar.co/dev/?id=00c58b62d93e47219eddef5aee0f6b98>
抱歉,我在运行命令 `debugpaste upload` 时出现了错误,上传失败。如果确实需要,我将其上传到了 Mediafire,可以在 [这里](https://www.mediafire.com/file/gloi158sl98ibgb/debugpaste-2023-01-12T21.37.50.185%252B0800.zip/file) 找到它。
```
21:37:50 [INFO ] The /debugpaste is executing, please wait...
21:37:50 [INFO ] A debug paste was created at debugpastes/debugpaste-2023-01-12T21.37.50.185+0800.zip
21:37:50 [INFO ] Uploading...
21:37:51 [ERROR] Failed to upload the debugpaste /imeaces/server/test_pnx/debugpastes/debugpaste-2023-01-12T21.37.50.185+0800.zip
java.io.IOException: The server responded with code 500, expected 201
at cn.nukkit.command.defaults.DebugPasteCommand.upload(DebugPasteCommand.java:164) [PowerNukkitX-master-e8ef67a91.jar:?]
at cn.nukkit.command.defaults.DebugPasteCommand$1.onRun(DebugPasteCommand.java:345) [PowerNukkitX-master-e8ef67a91.jar:?]
at cn.nukkit.scheduler.AsyncTask.run(AsyncTask.java:26) [PowerNukkitX-master-e8ef67a91.jar:?]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
at java.lang.Thread.run(Thread.java:833) [?:?]
21:37:51 [INFO ] Failed to upload the debugpaste, the file is still available in your server directory.
```
### 💢 错误堆栈或崩溃日志
服务器没有崩溃,且控制台没有输出错误消息。
### 💬 其他信息
1.我在 BDS 服务器上也进行了类似的测试,从旁观者模式切换到其他模式并没有出现上述问题。
2.测试使用的游戏版本为 `1.19.50`。 | priority | 可能无法正确从旁观者模式切换到其它游戏模式 🐞 错误汇报 某种情况下,无法正确从旁观者模式切换到其他的游戏模式。 在切换到旁观者模式之后退出服务器,再次进入后: 如果切换到创造模式,会发现创造物品栏为空。 如果切换到生存模式,会发现无法显示任何合成配方。 冒险模式未测试。 即使反复切换游戏模式也无济于事,必须重新进入服务器,才能恢复生存或创造的正常状态。 📸 截图或视频 (无) ▶ 复现步骤 进入服务器。 将游戏模式切换为旁观模式。 退出服务器。 再次进入服务器。 将游戏模式切换为生存或创造模式。 打开物品栏查看情况,没有显示任何合成配方或显示任何创造模式可以直接获取的物品。 ✔ 预期行为 从旁观者模式切换到生存或创造模式后,物品栏应该显示合成配方或可获得的物品。 ❌ 实际行为 从旁观者模式离开后,物品栏只显示已经拥有的物品,未显示合成配方或可获得的物品。 📋 debug information 服务器版本(使用 version 获取): 此服务器正在运行 nukkit git 「 powernukkitx」api 版本 的 minecraft be 协议版本 查看时序报告: 抱歉,我在运行命令 debugpaste upload 时出现了错误,上传失败。如果确实需要,我将其上传到了 mediafire,可以在 找到它。 the debugpaste is executing please wait a debug paste was created at debugpastes debugpaste zip uploading failed to upload the debugpaste imeaces server test pnx debugpastes debugpaste zip java io ioexception the server responded with code expected at cn nukkit command defaults debugpastecommand upload debugpastecommand java at cn nukkit command defaults debugpastecommand onrun debugpastecommand java at cn nukkit scheduler asynctask run asynctask java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java failed to upload the debugpaste the file is still available in your server directory 💢 错误堆栈或崩溃日志 服务器没有崩溃,且控制台没有输出错误消息。 💬 其他信息 我在 bds 服务器上也进行了类似的测试,从旁观者模式切换到其他模式并没有出现上述问题。 测试使用的游戏版本为 。 | 1 |
817,909 | 30,662,510,785 | IssuesEvent | 2023-07-25 15:52:41 | elastic/security-docs | https://api.github.com/repos/elastic/security-docs | closed | Upload response action | Team: Defend Workflows Feature: Elastic Defend Feature: Response actions v8.9.0 Priority: Medium Effort: Small | ## Description
Through the response console, a user is able to perform an `upload` command and send a file to the host machine.
Related: https://github.com/elastic/security-team/issues/5441
| 1.0 | Upload response action - ## Description
Through the response console, a user is able to perform an `upload` command and send a file to the host machine.
Related: https://github.com/elastic/security-team/issues/5441
| priority | upload response action description through the response console a user is able to perform an upload command and send a file to the host machine related | 1 |
75,372 | 3,461,844,658 | IssuesEvent | 2015-12-20 12:45:27 | PowerPointLabs/powerpointlabs | https://api.github.com/repos/PowerPointLabs/powerpointlabs | closed | Support brightness tweaks for more styles | Feature.ImagesLab Priority.Medium status.releaseCandidate type-enhancement | I guess we can have a brightness tweak for more styles. As long as there is a picture, we can allow brightness to be changed. | 1.0 | Support brightness tweaks for more styles - I guess we can have a brightness tweak for more styles. As long as there is a picture, we can allow brightness to be changed. | priority | support brightness tweaks for more styles i guess we can have a brightness tweak for more styles as long as there is a picture we can allow brightness to be changed | 1 |
231,978 | 7,647,508,852 | IssuesEvent | 2018-05-09 04:28:55 | AdChain/AdChainRegistryDapp | https://api.github.com/repos/AdChain/AdChainRegistryDapp | closed | Insert RegistryGuideModals across Different Pages | Priority: Medium Type: UX Enhancement | # Problem
The RegistryGuideModals are a great resource, but seem to be underutilized by the QA testers. Therefore, we need to prompt the modals automatically for users once they hit certain sections, while also giving them the ability to check the "I don't want to see this again" checkbox.
# Solution
Include specific RegistryGuideModals when users view certain pages. Below are all of the RegistryGuideModals and where they should appear:
**/domains**
- [ ] What is the adChain Registry?
- [ ] How do I apply a domain into the adChain Registry?
- [ ] How do I challenge a domain?
- [ ] How do I commit a vote?
- [ ] How do I reveal a vote?
- [ ] What is the domain's journey in the adChain Registry?
**/domains/example.com (when a challenge is prompted)**
- [ ] How do I challenge a domain?
**/domains/example.com (when a vote is prompted)**
- [ ] How do I commit a vote?
**/domains/example.com (when a reveal is prompted)**
- [ ] How do I reveal a vote?
**/governance**
- [ ] Have the exact `How do I interact with the Governance Module?` guide pop-up, with the checkbox option that says: "I don't want to see this again".
InVision link [here](https://invis.io/GBGWEDNN6EX)
@samkim28 you're added to inspect it | 1.0 | Insert RegistryGuideModals across Different Pages - # Problem
The RegistryGuideModals are a great resource, but seem to be underutilized by the QA testers. Therefore, we need to prompt the modals automatically for users once they hit certain sections, while also giving them the ability to check the "I don't want to see this again" checkbox.
# Solution
Include specific RegistryGuideModals when users view certain pages. Below are all of the RegistryGuideModals and where they should appear:
**/domains**
- [ ] What is the adChain Registry?
- [ ] How do I apply a domain into the adChain Registry?
- [ ] How do I challenge a domain?
- [ ] How do I commit a vote?
- [ ] How do I reveal a vote?
- [ ] What is the domain's journey in the adChain Registry?
**/domains/example.com (when a challenge is prompted)**
- [ ] How do I challenge a domain?
**/domains/example.com (when a vote is prompted)**
- [ ] How do I commit a vote?
**/domains/example.com (when a reveal is prompted)**
- [ ] How do I reveal a vote?
**/governance**
- [ ] Have the exact `How do I interact with the Governance Module?` guide pop-up, with the checkbox option that says: "I don't want to see this again".
InVision link [here](https://invis.io/GBGWEDNN6EX)
@samkim28 you're added to inspect it | priority | insert registryguidemodals across different pages problem the registryguidemodals are a great resource but seem to be underutilized by the qa testers therefore we need to prompt the modals automatically for users once they hit certain sections while also giving them the ability to check the i don t want to see this again checkbox solution include specific registryguidemodals when users view certain pages below are all of the registryguidemodals and where they should appear domains what is the adchain registry how do i apply a domain into the adchain registry how do i challenge a domain how do i commit a vote how do i reveal a vote what is the domain s journey in the adchain registry domains example com when a challenge is prompted how do i challenge a domain domains example com when a vote is prompted how do i commit a vote domains example com when a reveal is prompted how do i reveal a vote governance have the exact how do i interact with the governance module guide pop up with the checkbox option that says i don t want to see this again invision link you re added to inspect it | 1 |
711,367 | 24,460,749,363 | IssuesEvent | 2022-10-07 10:54:47 | airbytehq/airbyte | https://api.github.com/repos/airbytehq/airbyte | closed | Failed add connector operation should display logs | type/enhancement area/frontend priority/medium blocked area/platform team/cloud team/workflow autoteam team/frontend ui/connectors | ## Tell us about the problem you're trying to solve
Same scenario as in #3333 but separate request: I can't see the logs of the failed job which makes it hard to debug. It would be very helpful to have these logs in the UI so users can very easily give us helpful debugging info.
┆Issue is synchronized with this [Asana task](https://app.asana.com/0/1200367912513076/1200368166205931) by [Unito](https://www.unito.io)
| 1.0 | Failed add connector operation should display logs - ## Tell us about the problem you're trying to solve
Same scenario as in #3333 but separate request: I can't see the logs of the failed job which makes it hard to debug. It would be very helpful to have these logs in the UI so users can very easily give us helpful debugging info.
┆Issue is synchronized with this [Asana task](https://app.asana.com/0/1200367912513076/1200368166205931) by [Unito](https://www.unito.io)
| priority | failed add connector operation should display logs tell us about the problem you re trying to solve same scenario as in but separate request i can t see the logs of the failed job which makes it hard to debug it would be very helpful to have these logs in the ui so users can very easily give us helpful debugging info ┆issue is synchronized with this by | 1 |
293,866 | 9,010,452,220 | IssuesEvent | 2019-02-05 12:02:44 | richelbilderbeek/pirouette | https://api.github.com/repos/richelbilderbeek/pirouette | closed | Pick a default root sequence for alignment params | medium priority | I'm tired of specifying this all the time in `create_alignment_params`
I suggest `pirouette::create_blocked_dna(1000)`.
@Giappo: agreed?
* If yes, go ahead and add that default
* If disagree on root sequence, go ahead and use your favorite
* If disagree on this idea, go ahead and unassign yourself. I'd be interested in your thoughts :+1:
| 1.0 | Pick a default root sequence for alignment params - I'm tired of specifying this all the time in `create_alignment_params`
I suggest `pirouette::create_blocked_dna(1000)`.
@Giappo: agreed?
* If yes, go ahead and add that default
* If disagree on root sequence, go ahead and use your favorite
* If disagree on this idea, go ahead and unassign yourself. I'd be interested in your thoughts :+1:
| priority | pick a default root sequence for alignment params i m tired of specifying this all the time in create alignment params i suggest pirouette create blocked dna giappo agreed if yes go ahead and add that default if disagree on root sequence go ahead and use your favorite if disagree on this idea go ahead and unassign yourself i d be interested in your thoughts | 1 |
159,735 | 6,052,208,181 | IssuesEvent | 2017-06-13 03:40:44 | PowerlineApp/powerline-mobile | https://api.github.com/repos/PowerlineApp/powerline-mobile | closed | PROD - Comment Aging Not Working As Expected | bug P2 - Medium Priority Staging/Prod URGENT | Not sure where this is happening. Frontend or backend. Frontend is supposed to show Most Recent comments first, but it looks like it's not getting the right date back or something. Works correctly, but then it happens after some time has passed (not sure how long).

| 1.0 | PROD - Comment Aging Not Working As Expected - Not sure where this is happening. Frontend or backend. Frontend is supposed to show Most Recent comments first, but it looks like it's not getting the right date back or something. Works correctly, but then it happens after some time has passed (not sure how long).

| priority | prod comment aging not working as expected not sure where this is happening frontend or backend frontend is supposed to show most recent comments first but it looks like it s not getting the right date back or something works correctly but then it happens after some time has passed not sure how long | 1 |
68,979 | 3,294,641,229 | IssuesEvent | 2015-10-31 07:02:49 | minetest/minetest | https://api.github.com/repos/minetest/minetest | closed | Compilation failure with --std=c++11 enabled | bug Medium priority | Happening at least since c56d7fe0eba7905b0a63c4a1cfe909988653c23d . If you compile minetest with `--std=c++11`, you get a compilation error. I works with `--std=c++03`.
The error is:
```
In file included from minetest/src/script/cpp_api/s_async.h:27:0,
from minetest/src/script/lua_api/l_mainmenu.cpp:23:
minetest/src/threading/thread.h:164:27: error: ISO C++ forbids declaration of ‘DISABLE_CLASS_COPY’ with no type [-fpermissive]
DISABLE_CLASS_COPY(Thread);
^
minetest/src/threading/thread.h:164:21: error: cannot declare parameter to be of abstract type ‘Thread’
DISABLE_CLASS_COPY(Thread);
^
minetest/src/threading/thread.h:54:7: note: because the following virtual functions are pure within ‘Thread’:
class Thread {
^
minetest/src/threading/thread.h:140:16: note: virtual void* Thread::run()
virtual void *run() = 0;
^
``` | 1.0 | Compilation failure with --std=c++11 enabled - Happening at least since c56d7fe0eba7905b0a63c4a1cfe909988653c23d . If you compile minetest with `--std=c++11`, you get a compilation error. I works with `--std=c++03`.
The error is:
```
In file included from minetest/src/script/cpp_api/s_async.h:27:0,
from minetest/src/script/lua_api/l_mainmenu.cpp:23:
minetest/src/threading/thread.h:164:27: error: ISO C++ forbids declaration of ‘DISABLE_CLASS_COPY’ with no type [-fpermissive]
DISABLE_CLASS_COPY(Thread);
^
minetest/src/threading/thread.h:164:21: error: cannot declare parameter to be of abstract type ‘Thread’
DISABLE_CLASS_COPY(Thread);
^
minetest/src/threading/thread.h:54:7: note: because the following virtual functions are pure within ‘Thread’:
class Thread {
^
minetest/src/threading/thread.h:140:16: note: virtual void* Thread::run()
virtual void *run() = 0;
^
``` | priority | compilation failure with std c enabled happening at least since if you compile minetest with std c you get a compilation error i works with std c the error is in file included from minetest src script cpp api s async h from minetest src script lua api l mainmenu cpp minetest src threading thread h error iso c forbids declaration of ‘disable class copy’ with no type disable class copy thread minetest src threading thread h error cannot declare parameter to be of abstract type ‘thread’ disable class copy thread minetest src threading thread h note because the following virtual functions are pure within ‘thread’ class thread minetest src threading thread h note virtual void thread run virtual void run | 1 |
138,732 | 5,346,071,206 | IssuesEvent | 2017-02-17 18:40:44 | google/google-api-javascript-client | https://api.github.com/repos/google/google-api-javascript-client | closed | gapi.auth.authorize does not close the popup | 21+ stars bug imported Priority-Medium | _From [supp...@stacktype.com](https://code.google.com/u/109365404105658033239/) on March 09, 2013 00:05:19_
What steps will reproduce the problem? If possible, provide a live demo of the issue. 1.Use the gapi.auth.authorize to start google authorization using javascript in a chrome extension.
2.Shows the authorization screen to user with accept/deny.
3.After hitting accept, the popup goes blank and does not close. This is although authorization has succeded in the background. What is the expected output? What do you see instead? Expect the authorization popup to close after hitting 'Accept' on authorization popup. What version of the product are you using? On what operating system? Chrome 25.01, Windows 7, javascript api from here - https://code.google.com/p/google-api-javascript-client/wiki/GettingStarted Please provide any additional information below. The above issue occurs in a chrome extension. Also, I have setup my API access correctly in google API console correctly. I have specified javascript origin - "chrome-extension://<extension id>" and left the redirect uri blank.
_Original issue: http://code.google.com/p/google-api-javascript-client/issues/detail?id=74_
| 1.0 | gapi.auth.authorize does not close the popup - _From [supp...@stacktype.com](https://code.google.com/u/109365404105658033239/) on March 09, 2013 00:05:19_
What steps will reproduce the problem? If possible, provide a live demo of the issue. 1.Use the gapi.auth.authorize to start google authorization using javascript in a chrome extension.
2.Shows the authorization screen to user with accept/deny.
3.After hitting accept, the popup goes blank and does not close. This is although authorization has succeded in the background. What is the expected output? What do you see instead? Expect the authorization popup to close after hitting 'Accept' on authorization popup. What version of the product are you using? On what operating system? Chrome 25.01, Windows 7, javascript api from here - https://code.google.com/p/google-api-javascript-client/wiki/GettingStarted Please provide any additional information below. The above issue occurs in a chrome extension. Also, I have setup my API access correctly in google API console correctly. I have specified javascript origin - "chrome-extension://<extension id>" and left the redirect uri blank.
_Original issue: http://code.google.com/p/google-api-javascript-client/issues/detail?id=74_
| priority | gapi auth authorize does not close the popup from on march what steps will reproduce the problem if possible provide a live demo of the issue use the gapi auth authorize to start google authorization using javascript in a chrome extension shows the authorization screen to user with accept deny after hitting accept the popup goes blank and does not close this is although authorization has succeded in the background what is the expected output what do you see instead expect the authorization popup to close after hitting accept on authorization popup what version of the product are you using on what operating system chrome windows javascript api from here please provide any additional information below the above issue occurs in a chrome extension also i have setup my api access correctly in google api console correctly i have specified javascript origin chrome extension and left the redirect uri blank original issue | 1 |
367,862 | 10,862,265,338 | IssuesEvent | 2019-11-14 12:57:21 | bounswe/bounswe2019group7 | https://api.github.com/repos/bounswe/bounswe2019group7 | closed | Implementation of Profile Page on Android | Android Effort: More Than a Day Priority: Medium | Profile page will be implemented.
Deadline: 04.11.2019 @ 23:59 | 1.0 | Implementation of Profile Page on Android - Profile page will be implemented.
Deadline: 04.11.2019 @ 23:59 | priority | implementation of profile page on android profile page will be implemented deadline | 1 |
349,018 | 10,455,923,395 | IssuesEvent | 2019-09-19 22:52:22 | openforcefield/openforcefield | https://api.github.com/repos/openforcefield/openforcefield | closed | Molecule.from_file reading SMILES using RDKit backend ignores first molecule | bug effort:low priority:medium | **Describe the bug**
Reading a SMILES file using `Molecule.from_file` on the RDKit backend doesn't read the first molecule in the file.
**To Fix**
Add `titleLine=False` [as a kwarg to SmilesMolSupplier here](https://github.com/openforcefield/openforcefield/blob/master/openforcefield/utils/toolkits.py#L1568) | 1.0 | Molecule.from_file reading SMILES using RDKit backend ignores first molecule - **Describe the bug**
Reading a SMILES file using `Molecule.from_file` on the RDKit backend doesn't read the first molecule in the file.
**To Fix**
Add `titleLine=False` [as a kwarg to SmilesMolSupplier here](https://github.com/openforcefield/openforcefield/blob/master/openforcefield/utils/toolkits.py#L1568) | priority | molecule from file reading smiles using rdkit backend ignores first molecule describe the bug reading a smiles file using molecule from file on the rdkit backend doesn t read the first molecule in the file to fix add titleline false | 1 |
500,423 | 14,499,053,633 | IssuesEvent | 2020-12-11 16:15:03 | SatcherInstitute/het-frontend | https://api.github.com/repos/SatcherInstitute/het-frontend | closed | Set up CSS to consistently style components | Medium Priority | This sort of depends on whether we continue using the material-ui library. For now I just used the material-ui CssBaseline component which gives some reasonable defaults. If we continue using the library we'll probably want to customize the theme. If not we'll need to do more of our own styling across various components.
Also, Chris initially suggested setting font-size to 62.5% so we can use rems for font-size elsewhere and 1rem == 10px, etc. I reset this to 100% because it was overriding the font-size in the material-ui library. Going to postpone this decision until we know whether we're even going to stick with that library (https://github.com/SatcherInstitute/het-frontend/issues/10). After that we can look more into whether we can do the 62.5% strategy and not break the material-ui library, or if we want to drop that piece. | 1.0 | Set up CSS to consistently style components - This sort of depends on whether we continue using the material-ui library. For now I just used the material-ui CssBaseline component which gives some reasonable defaults. If we continue using the library we'll probably want to customize the theme. If not we'll need to do more of our own styling across various components.
Also, Chris initially suggested setting font-size to 62.5% so we can use rems for font-size elsewhere and 1rem == 10px, etc. I reset this to 100% because it was overriding the font-size in the material-ui library. Going to postpone this decision until we know whether we're even going to stick with that library (https://github.com/SatcherInstitute/het-frontend/issues/10). After that we can look more into whether we can do the 62.5% strategy and not break the material-ui library, or if we want to drop that piece. | priority | set up css to consistently style components this sort of depends on whether we continue using the material ui library for now i just used the material ui cssbaseline component which gives some reasonable defaults if we continue using the library we ll probably want to customize the theme if not we ll need to do more of our own styling across various components also chris initially suggested setting font size to so we can use rems for font size elsewhere and etc i reset this to because it was overriding the font size in the material ui library going to postpone this decision until we know whether we re even going to stick with that library after that we can look more into whether we can do the strategy and not break the material ui library or if we want to drop that piece | 1 |
359,671 | 10,679,420,424 | IssuesEvent | 2019-10-21 19:14:15 | isi-vista/adam | https://api.github.com/repos/isi-vista/adam | closed | HTML Pages - Objects seem to not be displaying `PartOf` relations via nesting (All objects are on the same indent) | priority-1-normal size-medium | 
| 1.0 | HTML Pages - Objects seem to not be displaying `PartOf` relations via nesting (All objects are on the same indent) - 
| priority | html pages objects seem to not be displaying partof relations via nesting all objects are on the same indent | 1 |
292,545 | 8,959,449,657 | IssuesEvent | 2019-01-27 22:36:15 | bdecon/econ_data | https://api.github.com/repos/bdecon/econ_data | closed | bd CPS: benchmarking wage variable results | benchmark enhancement priority: medium | I'd like to verify that my wage estimates match with published estimates. Two steps to doing this:
First, really make an effort to match the BLS estimate for the existing benchmark on wages, which looks at quarterly estimates of usual weekly earnings.
Next, create a new benchmark to match a series of median hourly wages, for example: LEU0207640900 - Median hourly earnings, Wage and salary workers paid hourly rates, 45 to 54 years, Women - 2017: 15.16
| 1.0 | bd CPS: benchmarking wage variable results - I'd like to verify that my wage estimates match with published estimates. Two steps to doing this:
First, really make an effort to match the BLS estimate for the existing benchmark on wages, which looks at quarterly estimates of usual weekly earnings.
Next, create a new benchmark to match a series of median hourly wages, for example: LEU0207640900 - Median hourly earnings, Wage and salary workers paid hourly rates, 45 to 54 years, Women - 2017: 15.16
| priority | bd cps benchmarking wage variable results i d like to verify that my wage estimates match with published estimates two steps to doing this first really make an effort to match the bls estimate for the existing benchmark on wages which looks at quarterly estimates of usual weekly earnings next create a new benchmark to match a series of median hourly wages for example median hourly earnings wage and salary workers paid hourly rates to years women | 1 |
537,069 | 15,722,463,279 | IssuesEvent | 2021-03-29 05:48:53 | AY2021S2-CS2113-T10-1/tp | https://api.github.com/repos/AY2021S2-CS2113-T10-1/tp | opened | Cosmetic Changes for Developer Guide | priority.Medium type.Task | - [ ] Adjust Diagram Sizes for DG
- [ ] Finalise number of LoC in UG, DG, kwokyto.dg, readme.md | 1.0 | Cosmetic Changes for Developer Guide - - [ ] Adjust Diagram Sizes for DG
- [ ] Finalise number of LoC in UG, DG, kwokyto.dg, readme.md | priority | cosmetic changes for developer guide adjust diagram sizes for dg finalise number of loc in ug dg kwokyto dg readme md | 1 |
178,978 | 6,620,526,511 | IssuesEvent | 2017-09-21 15:49:08 | AZMAG/map-ReadOnAZ | https://api.github.com/repos/AZMAG/map-ReadOnAZ | closed | Fix the order of Race and Ethnicity to match in Map and Reports | enhancement Priority: Medium | This is super petty and not important at all, but in the maps Asian is generally always listed before Native American, but it is the other way around in the reports | 1.0 | Fix the order of Race and Ethnicity to match in Map and Reports - This is super petty and not important at all, but in the maps Asian is generally always listed before Native American, but it is the other way around in the reports | priority | fix the order of race and ethnicity to match in map and reports this is super petty and not important at all but in the maps asian is generally always listed before native american but it is the other way around in the reports | 1 |
453,282 | 13,067,515,511 | IssuesEvent | 2020-07-31 00:42:38 | ayumi-cloud/oc-security-module | https://api.github.com/repos/ayumi-cloud/oc-security-module | closed | Verify Search Engines by doing reverse dns lookup and other various checks | Add to Whitelist FINSIHED Firewall Priority: Medium enhancement in-progress | ### Enhancement idea
- [x] Verify Search Engines by doing reverse dns lookup and other various checks.
- [x] Rollout to other modules.
List of Search Engines added to the verified list:
- [x] YisouSpider / Shenmaspider
- [x] Facebook Spider
- [x] Yandex
- [x] BingBot
- [x] GoogleBot
- [x] Applebot
- [x] CloudFlare (they don't use one!)
- [x] SeznamBot
- [x] Daum (they don't use one!)
- [x] Baidu
- [x] Pinterest Bot
- [x] AhrefsBot
- [x] DotBot / rogerBot (they don't use one!)
- [x] MojeekBot
- [x] Tumblr (seems to be using Yahoo!)
> Verizon announced a deal to sell Tumblr, the blogging site Yahoo acquired for $1.1 billion six years ago, to Automattic, the company that owns and operates online-publishing site WordPress.com. Terms of the deal were not disclosed, but the price tag is clearly nowhere near what Yahoo originally paid.
- [x] Yahoo!
- [x] Git (they don't use one!)
- [x] Clarabot (they don't use one!)
- [x] BuiltWith (they don't use one!)
- [x] CCBot (they don't use one!)
- [x] MegaIndex (they don't use one!)
- [x] Buck (they don't use one!)
- [x] Semrush
- [x] Majestic
- [x] Reddit (they don't use one!)
- [x] MxToolBox
- [x] Dataprovider
- [x] Seekport (they don't use one!)
- [x] SEOkicks
- [x] DomainStats
- [x] BLEX
- [x] PetalBot
- [x] Aspiegel Bot
| 1.0 | Verify Search Engines by doing reverse dns lookup and other various checks - ### Enhancement idea
- [x] Verify Search Engines by doing reverse dns lookup and other various checks.
- [x] Rollout to other modules.
List of Search Engines added to the verified list:
- [x] YisouSpider / Shenmaspider
- [x] Facebook Spider
- [x] Yandex
- [x] BingBot
- [x] GoogleBot
- [x] Applebot
- [x] CloudFlare (they don't use one!)
- [x] SeznamBot
- [x] Daum (they don't use one!)
- [x] Baidu
- [x] Pinterest Bot
- [x] AhrefsBot
- [x] DotBot / rogerBot (they don't use one!)
- [x] MojeekBot
- [x] Tumblr (seems to be using Yahoo!)
> Verizon announced a deal to sell Tumblr, the blogging site Yahoo acquired for $1.1 billion six years ago, to Automattic, the company that owns and operates online-publishing site WordPress.com. Terms of the deal were not disclosed, but the price tag is clearly nowhere near what Yahoo originally paid.
- [x] Yahoo!
- [x] Git (they don't use one!)
- [x] Clarabot (they don't use one!)
- [x] BuiltWith (they don't use one!)
- [x] CCBot (they don't use one!)
- [x] MegaIndex (they don't use one!)
- [x] Buck (they don't use one!)
- [x] Semrush
- [x] Majestic
- [x] Reddit (they don't use one!)
- [x] MxToolBox
- [x] Dataprovider
- [x] Seekport (they don't use one!)
- [x] SEOkicks
- [x] DomainStats
- [x] BLEX
- [x] PetalBot
- [x] Aspiegel Bot
| priority | verify search engines by doing reverse dns lookup and other various checks enhancement idea verify search engines by doing reverse dns lookup and other various checks rollout to other modules list of search engines added to the verified list yisouspider shenmaspider facebook spider yandex bingbot googlebot applebot cloudflare they don t use one seznambot daum they don t use one baidu pinterest bot ahrefsbot dotbot rogerbot they don t use one mojeekbot tumblr seems to be using yahoo verizon announced a deal to sell tumblr the blogging site yahoo acquired for billion six years ago to automattic the company that owns and operates online publishing site wordpress com terms of the deal were not disclosed but the price tag is clearly nowhere near what yahoo originally paid yahoo git they don t use one clarabot they don t use one builtwith they don t use one ccbot they don t use one megaindex they don t use one buck they don t use one semrush majestic reddit they don t use one mxtoolbox dataprovider seekport they don t use one seokicks domainstats blex petalbot aspiegel bot | 1 |
743,651 | 25,909,208,169 | IssuesEvent | 2022-12-15 12:42:54 | flexbox/weshipit.today | https://api.github.com/repos/flexbox/weshipit.today | closed | Og Image | priority: medium | As a social media webiste
I can have a preview with an image
So that people click and visit the website
https://nextjs.org/blog/next-13#og-image-generation
- [ ] Og add og:image like https://github.com/flexbox/weshipit.today/issues/12
- [ ] check the result with https://metatags.io/ | 1.0 | Og Image - As a social media webiste
I can have a preview with an image
So that people click and visit the website
https://nextjs.org/blog/next-13#og-image-generation
- [ ] Og add og:image like https://github.com/flexbox/weshipit.today/issues/12
- [ ] check the result with https://metatags.io/ | priority | og image as a social media webiste i can have a preview with an image so that people click and visit the website og add og image like check the result with | 1 |
196,482 | 6,928,404,059 | IssuesEvent | 2017-12-01 04:38:31 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio-ui] User Reviewer is able to access the edit form from the dependencies dialog | bug priority: medium | ### Expected behavior
User Reviewer should only be shown a read only of the form from the dependencies dialog like below:
<img width="1388" alt="screen shot 2017-11-13 at 2 17 47 pm" src="https://user-images.githubusercontent.com/25483966/32744432-7b0405e2-c87d-11e7-8cd5-a5e0d6165443.png">
### Actual behavior
User Reviewer is able to access the edit form from the dependencies dialog, although, Studio does not let the user **Save and Close** or **Save Draft**
### Steps to reproduce the problem
* Create a site using Website_editorial
* Create a user Reviewer
* Login as user Reviewer
* Preview the **Home** page.
* From the context nav, click on **Dependencies**
* Select **Is referenced by this item** from the dropdown for **Show content that:**
* Click on **Edit** on the right hand side of item **Three**, notice that this opens the edit form with buttons at the bottom for **Save and Close**, **Save Draft**, **Cancel**. The user can edit things in the form but when you click on **Save and Close** or **Save Draft**, nothing happens (User Reviewer is not allowed to make edits).
### Log/stack trace (use https://gist.github.com)
Here's a short clip:
https://www.useloom.com/share/4bda8141033a4f54b70d663ff5334db9
### Specs: version, OS, browser, etc.
OS X, Chrome browser
Studio Version Number: 3.0.2-SNAPSHOT-5d27af
Build Number: 5d27afa7c659049a8cb3fd830f3bfebb119904a9
Build Date/Time: 11-13-2017 09:26:43 -0500 | 1.0 | [studio-ui] User Reviewer is able to access the edit form from the dependencies dialog - ### Expected behavior
User Reviewer should only be shown a read only of the form from the dependencies dialog like below:
<img width="1388" alt="screen shot 2017-11-13 at 2 17 47 pm" src="https://user-images.githubusercontent.com/25483966/32744432-7b0405e2-c87d-11e7-8cd5-a5e0d6165443.png">
### Actual behavior
User Reviewer is able to access the edit form from the dependencies dialog, although, Studio does not let the user **Save and Close** or **Save Draft**
### Steps to reproduce the problem
* Create a site using Website_editorial
* Create a user Reviewer
* Login as user Reviewer
* Preview the **Home** page.
* From the context nav, click on **Dependencies**
* Select **Is referenced by this item** from the dropdown for **Show content that:**
* Click on **Edit** on the right hand side of item **Three**, notice that this opens the edit form with buttons at the bottom for **Save and Close**, **Save Draft**, **Cancel**. The user can edit things in the form but when you click on **Save and Close** or **Save Draft**, nothing happens (User Reviewer is not allowed to make edits).
### Log/stack trace (use https://gist.github.com)
Here's a short clip:
https://www.useloom.com/share/4bda8141033a4f54b70d663ff5334db9
### Specs: version, OS, browser, etc.
OS X, Chrome browser
Studio Version Number: 3.0.2-SNAPSHOT-5d27af
Build Number: 5d27afa7c659049a8cb3fd830f3bfebb119904a9
Build Date/Time: 11-13-2017 09:26:43 -0500 | priority | user reviewer is able to access the edit form from the dependencies dialog expected behavior user reviewer should only be shown a read only of the form from the dependencies dialog like below img width alt screen shot at pm src actual behavior user reviewer is able to access the edit form from the dependencies dialog although studio does not let the user save and close or save draft steps to reproduce the problem create a site using website editorial create a user reviewer login as user reviewer preview the home page from the context nav click on dependencies select is referenced by this item from the dropdown for show content that click on edit on the right hand side of item three notice that this opens the edit form with buttons at the bottom for save and close save draft cancel the user can edit things in the form but when you click on save and close or save draft nothing happens user reviewer is not allowed to make edits log stack trace use here s a short clip specs version os browser etc os x chrome browser studio version number snapshot build number build date time | 1 |
743,344 | 25,895,603,545 | IssuesEvent | 2022-12-14 22:06:37 | MattTheLegoman/RealmsInExile | https://api.github.com/repos/MattTheLegoman/RealmsInExile | closed | Post-Ruler Designer event to age elves | priority: medium events scripting | The current upper limit of ages for Barbershop characters is 120 years, which is far too young for most elves.
We should use an after-barbershop game start on action to fire an event for the player character that will give them the option to choose which age they were born in and apply an appropriate randomly assigned set_age that puts them within that time period. | 1.0 | Post-Ruler Designer event to age elves - The current upper limit of ages for Barbershop characters is 120 years, which is far too young for most elves.
We should use an after-barbershop game start on action to fire an event for the player character that will give them the option to choose which age they were born in and apply an appropriate randomly assigned set_age that puts them within that time period. | priority | post ruler designer event to age elves the current upper limit of ages for barbershop characters is years which is far too young for most elves we should use an after barbershop game start on action to fire an event for the player character that will give them the option to choose which age they were born in and apply an appropriate randomly assigned set age that puts them within that time period | 1 |
237,560 | 7,761,718,475 | IssuesEvent | 2018-06-01 10:54:30 | telerik/kendo-ui-core | https://api.github.com/repos/telerik/kendo-ui-core | closed | Active element is not blurred on Tab key pressed in IE | Bug C: Popup Kendo2 Priority 2 SEV: Medium | ### Bug report
In MVVM scenario when disabling a button on a change of a ViewModel field the keepInTrap functionality allows the button to be focused. This behavior is only reproducible in IE 11.
### Reproduction of the problem
[The issue can be reproduced on the following Dojo](https://dojo.telerik.com/iNUTejOr/5):
* Focus the first input and type a letter in IE
* Press "Tab"
### Current behavior
The disabled element is focused.
### Expected/desired behavior
The correct behavior is to blur the active one, thus allowing the collection of the focusableElements within a popup to be updated.
### Environment
* **Kendo UI version:** 2018.2.504
* **Browser:** [IE 11]
| 1.0 | Active element is not blurred on Tab key pressed in IE - ### Bug report
In MVVM scenario when disabling a button on a change of a ViewModel field the keepInTrap functionality allows the button to be focused. This behavior is only reproducible in IE 11.
### Reproduction of the problem
[The issue can be reproduced on the following Dojo](https://dojo.telerik.com/iNUTejOr/5):
* Focus the first input and type a letter in IE
* Press "Tab"
### Current behavior
The disabled element is focused.
### Expected/desired behavior
The correct behavior is to blur the active one, thus allowing the collection of the focusableElements within a popup to be updated.
### Environment
* **Kendo UI version:** 2018.2.504
* **Browser:** [IE 11]
| priority | active element is not blurred on tab key pressed in ie bug report in mvvm scenario when disabling a button on a change of a viewmodel field the keepintrap functionality allows the button to be focused this behavior is only reproducible in ie reproduction of the problem focus the first input and type a letter in ie press tab current behavior the disabled element is focused expected desired behavior the correct behavior is to blur the active one thus allowing the collection of the focusableelements within a popup to be updated environment kendo ui version browser | 1 |
365,037 | 10,774,946,267 | IssuesEvent | 2019-11-03 10:44:47 | sous-chefs/grafana | https://api.github.com/repos/sous-chefs/grafana | closed | Unable to create a datasource | Bug Help Wanted Priority: Medium | ### Cookbook version
v4.0.2
### Chef-client version
13.8.5-1
### Platform Details
Debian 4.19.28-2~bpo9+1 runing in AWS
### Scenario:
Trying to create datasource using the following
```
grafana_datasource 'InfluxDB' do
datasource(
type: 'influxdb',
url: '<influxdb url>',
access: 'proxy',
database: '<db name>'
)
action :create
admin_user '<admin username>'
admin_password '<admin password>'
end
```
Used the admin username and password for grafana
### Steps to Reproduce:
### Expected Result:
The datasource should be created
### Actual Result:
Datasource is not created and getting below logs from the chef-client run
```[2019-04-23T12:01:35+00:00] INFO: Processing grafana_datasource[InfluxDB] action create (nosto-grafana::datasources line 34)
[2019-04-23T12:01:35+00:00] ERROR: Invalid grafana_user and grafana_sess.
[2019-04-23T12:01:35+00:00] ERROR: Invalid grafana_user and grafana_sess.
[2019-04-23T12:01:35+00:00] ERROR: Invalid grafana_user and grafana_sess.
```
| 1.0 | Unable to create a datasource - ### Cookbook version
v4.0.2
### Chef-client version
13.8.5-1
### Platform Details
Debian 4.19.28-2~bpo9+1 runing in AWS
### Scenario:
Trying to create datasource using the following
```
grafana_datasource 'InfluxDB' do
datasource(
type: 'influxdb',
url: '<influxdb url>',
access: 'proxy',
database: '<db name>'
)
action :create
admin_user '<admin username>'
admin_password '<admin password>'
end
```
Used the admin username and password for grafana
### Steps to Reproduce:
### Expected Result:
The datasource should be created
### Actual Result:
Datasource is not created and getting below logs from the chef-client run
```[2019-04-23T12:01:35+00:00] INFO: Processing grafana_datasource[InfluxDB] action create (nosto-grafana::datasources line 34)
[2019-04-23T12:01:35+00:00] ERROR: Invalid grafana_user and grafana_sess.
[2019-04-23T12:01:35+00:00] ERROR: Invalid grafana_user and grafana_sess.
[2019-04-23T12:01:35+00:00] ERROR: Invalid grafana_user and grafana_sess.
```
| priority | unable to create a datasource cookbook version chef client version platform details debian runing in aws scenario trying to create datasource using the following grafana datasource influxdb do datasource type influxdb url access proxy database action create admin user admin password end used the admin username and password for grafana steps to reproduce expected result the datasource should be created actual result datasource is not created and getting below logs from the chef client run info processing grafana datasource action create nosto grafana datasources line error invalid grafana user and grafana sess error invalid grafana user and grafana sess error invalid grafana user and grafana sess | 1 |
345,985 | 10,382,750,874 | IssuesEvent | 2019-09-10 08:11:38 | moodlepeers/moodle-mod_groupformation | https://api.github.com/repos/moodlepeers/moodle-mod_groupformation | opened | Cannot save new groupformation instance in course with zero students | Priority medium bug | As reported by a user of HWR a new instance cannot be saved if course has zero students AND more than 100 topics for selection are entered in scenario 3.
Confirmed?
See report here: https://blog.hwr-berlin.de/elerner/moodle-groups/ | 1.0 | Cannot save new groupformation instance in course with zero students - As reported by a user of HWR a new instance cannot be saved if course has zero students AND more than 100 topics for selection are entered in scenario 3.
Confirmed?
See report here: https://blog.hwr-berlin.de/elerner/moodle-groups/ | priority | cannot save new groupformation instance in course with zero students as reported by a user of hwr a new instance cannot be saved if course has zero students and more than topics for selection are entered in scenario confirmed see report here | 1 |
204,055 | 7,080,002,603 | IssuesEvent | 2018-01-10 11:48:35 | vanilla-framework/vanilla-framework | https://api.github.com/repos/vanilla-framework/vanilla-framework | closed | Tabs components arrow covers the last item | Priority: Medium Status: Review Type: Bug | If you scale the window down on the tabbed content the arrow hides the last item. | 1.0 | Tabs components arrow covers the last item - If you scale the window down on the tabbed content the arrow hides the last item. | priority | tabs components arrow covers the last item if you scale the window down on the tabbed content the arrow hides the last item | 1 |
583,354 | 17,383,097,172 | IssuesEvent | 2021-08-01 04:57:00 | GIST-Petition-Site-Project/GIST-petition-web | https://api.github.com/repos/GIST-Petition-Site-Project/GIST-petition-web | opened | temporary | Priority: Medium Status: To Do Type: Feature/Function Type: Feature/UI | ## Feature description
switch route
link
meta tag. reset css
pr template
atom styled-components
atomic design
### Use cases
## Benefits
For whom and why.
## Requirements
## Links / references
| 1.0 | temporary - ## Feature description
switch route
link
meta tag. reset css
pr template
atom styled-components
atomic design
### Use cases
## Benefits
For whom and why.
## Requirements
## Links / references
| priority | temporary feature description switch route link meta tag reset css pr template atom styled components atomic design use cases benefits for whom and why requirements links references | 1 |
168,817 | 6,387,237,480 | IssuesEvent | 2017-08-03 13:15:16 | status-im/status-go | https://api.github.com/repos/status-im/status-go | closed | jail: console.log() | beginner medium-priority | **Objective:**
- allow debugging/seeing Jail values, by capturing logs and pushing them up (using signals)
**Notes:**
- whenever application developers will need to see contents of some value, they will rely on conventional `console.log(var)`, so we need to capture that value and forward to React Native app via signal.
- see https://github.com/status-im/status-go/blob/develop/geth/node/signals.go for how to send signals
- here is the way to inject custom version of `console.log` into Otto jail: https://github.com/robertkrimen/otto/issues/27
- make sure you add tests
| 1.0 | jail: console.log() - **Objective:**
- allow debugging/seeing Jail values, by capturing logs and pushing them up (using signals)
**Notes:**
- whenever application developers will need to see contents of some value, they will rely on conventional `console.log(var)`, so we need to capture that value and forward to React Native app via signal.
- see https://github.com/status-im/status-go/blob/develop/geth/node/signals.go for how to send signals
- here is the way to inject custom version of `console.log` into Otto jail: https://github.com/robertkrimen/otto/issues/27
- make sure you add tests
| priority | jail console log objective allow debugging seeing jail values by capturing logs and pushing them up using signals notes whenever application developers will need to see contents of some value they will rely on conventional console log var so we need to capture that value and forward to react native app via signal see for how to send signals here is the way to inject custom version of console log into otto jail make sure you add tests | 1 |
636,925 | 20,613,508,462 | IssuesEvent | 2022-03-07 10:56:01 | ncaq/google-search-title-qualified | https://api.github.com/repos/ncaq/google-search-title-qualified | opened | web-ext-deployを使用する | Priority: Medium Type: Maintenance Estimate: 4 | [avi12/web-ext-deploy: A tool for deploying WebExtensions to multiple stores.](https://github.com/avi12/web-ext-deploy)
を使用して、CircleCIによる自動デプロイをやめる。
web-ext-submitと違ってソースコードを提出できるのでMozillaに怒られないだろう。 | 1.0 | web-ext-deployを使用する - [avi12/web-ext-deploy: A tool for deploying WebExtensions to multiple stores.](https://github.com/avi12/web-ext-deploy)
を使用して、CircleCIによる自動デプロイをやめる。
web-ext-submitと違ってソースコードを提出できるのでMozillaに怒られないだろう。 | priority | web ext deployを使用する を使用して、circleciによる自動デプロイをやめる。 web ext submitと違ってソースコードを提出できるのでmozillaに怒られないだろう。 | 1 |
409,311 | 11,960,076,427 | IssuesEvent | 2020-04-05 01:05:11 | momentum-mod/game | https://api.github.com/repos/momentum-mod/game | closed | [Map Finished] Option to not lose control when finishing a run | Priority: Medium Size: Medium Type: Enhancement | Currently, when you finish a run, the run stats panel pops up and your character slows to a stop. The suggestion is to have an option to disable this behavior; instead, an overlay panel will come up with the run summary, but the player won't lose control. This panel would auto-fade out after 15 seconds, or when the player starts a new run (on the map or on a bonus). If the player right-clicks while this overlay panel is up, it would open the full run stats panel as it exists now.
Why: because it's fun to fly around for a minute after finishing a good run! But when the panel pops up, you can't do that.
Suggested by Beetle | 1.0 | [Map Finished] Option to not lose control when finishing a run - Currently, when you finish a run, the run stats panel pops up and your character slows to a stop. The suggestion is to have an option to disable this behavior; instead, an overlay panel will come up with the run summary, but the player won't lose control. This panel would auto-fade out after 15 seconds, or when the player starts a new run (on the map or on a bonus). If the player right-clicks while this overlay panel is up, it would open the full run stats panel as it exists now.
Why: because it's fun to fly around for a minute after finishing a good run! But when the panel pops up, you can't do that.
Suggested by Beetle | priority | option to not lose control when finishing a run currently when you finish a run the run stats panel pops up and your character slows to a stop the suggestion is to have an option to disable this behavior instead an overlay panel will come up with the run summary but the player won t lose control this panel would auto fade out after seconds or when the player starts a new run on the map or on a bonus if the player right clicks while this overlay panel is up it would open the full run stats panel as it exists now why because it s fun to fly around for a minute after finishing a good run but when the panel pops up you can t do that suggested by beetle | 1 |
696,732 | 23,913,256,536 | IssuesEvent | 2022-09-09 10:11:28 | serverlessworkflow/synapse | https://api.github.com/repos/serverlessworkflow/synapse | closed | It should not be possible to transition to a non existing state | bug server priority: medium sdk | **What happened**:
I was able to create a workflow with a transition to a non existing state.
**What you expected to happen**:
The workflow to be invalid.
**How to reproduce it**:
- Create the following workflow (see 1st state defaultCondition transition):
```json
{
"id":"compensation-test",
"name":"Compensation Test",
"version":"0.1.0",
"specVersion":"0.8",
"functions":[
{
"name":"is-odd",
"type":"expression",
"operation":".number % 2 == 1"
},
{
"name":"i-fail",
"type":"rest",
"operation":"http://somefail.com/fails#fake"
}
],
"states":[
{
"name":"Good odds",
"type":"switch",
"dataConditions":[
{
"name":"Is Odd",
"condition":"${ fn:is-odd }",
"end": true
}
],
"defaultCondition": {
"transition": "Non existing state, should not be valid"
}
},
{
"name": "I have something to compensate...",
"type": "operation",
"actions":[
{
"name":"Call i-fail",
"functionRef":{
"refName":"i-fail"
}
}
],
"compensatedBy":"Compensate",
"end":true
},
{
"name":"Compensate",
"type":"inject",
"data":{
"status":"compensated"
},
"usedForCompensation":true,
"end":true
}
]
}
```
| 1.0 | It should not be possible to transition to a non existing state - **What happened**:
I was able to create a workflow with a transition to a non existing state.
**What you expected to happen**:
The workflow to be invalid.
**How to reproduce it**:
- Create the following workflow (see 1st state defaultCondition transition):
```json
{
"id":"compensation-test",
"name":"Compensation Test",
"version":"0.1.0",
"specVersion":"0.8",
"functions":[
{
"name":"is-odd",
"type":"expression",
"operation":".number % 2 == 1"
},
{
"name":"i-fail",
"type":"rest",
"operation":"http://somefail.com/fails#fake"
}
],
"states":[
{
"name":"Good odds",
"type":"switch",
"dataConditions":[
{
"name":"Is Odd",
"condition":"${ fn:is-odd }",
"end": true
}
],
"defaultCondition": {
"transition": "Non existing state, should not be valid"
}
},
{
"name": "I have something to compensate...",
"type": "operation",
"actions":[
{
"name":"Call i-fail",
"functionRef":{
"refName":"i-fail"
}
}
],
"compensatedBy":"Compensate",
"end":true
},
{
"name":"Compensate",
"type":"inject",
"data":{
"status":"compensated"
},
"usedForCompensation":true,
"end":true
}
]
}
```
| priority | it should not be possible to transition to a non existing state what happened i was able to create a workflow with a transition to a non existing state what you expected to happen the workflow to be invalid how to reproduce it create the following workflow see state defaultcondition transition json id compensation test name compensation test version specversion functions name is odd type expression operation number name i fail type rest operation states name good odds type switch dataconditions name is odd condition fn is odd end true defaultcondition transition non existing state should not be valid name i have something to compensate type operation actions name call i fail functionref refname i fail compensatedby compensate end true name compensate type inject data status compensated usedforcompensation true end true | 1 |
673,916 | 23,034,315,775 | IssuesEvent | 2022-07-22 16:55:12 | rokwire/illinois-app | https://api.github.com/repos/rokwire/illinois-app | closed | [BUG] Athletics - All Staff tile link is displayed along with Coaching Staff tile list | Type: Bug Priority: Medium | **Describe the bug**
In the Athletics screen, the "All Staff" tile link is displayed along with the "Coaching Staff" tile list
**To Reproduce**
Steps to reproduce the behavior:
1. Install the Illinois app
2. Complete onboarding steps and verify the role as a University student
3. Tap on Athletics on the Home screen
4. On the Athletics screen, scroll down to "All Illinois sports" section
5. Tap on any of the sports listed in it.
6. Team screen is displayed. Scroll down to the section "Coaching Staff".
Actual Result
"All Staff" tile link is displayed along with the "Coaching Staff" tile list
**Expected behavior**
Remove the "All Staff" tile link from the "Coaching Staff" tile list. As the button "All Staff" link is already available below the section "Coaching Staff"
**Screenshots**


**Smartphone (please complete the following information):**
- Device: [e.g. iPhone and Android]
- Version [e.g. 2.4.5]
| 1.0 | [BUG] Athletics - All Staff tile link is displayed along with Coaching Staff tile list - **Describe the bug**
In the Athletics screen, the "All Staff" tile link is displayed along with the "Coaching Staff" tile list
**To Reproduce**
Steps to reproduce the behavior:
1. Install the Illinois app
2. Complete onboarding steps and verify the role as a University student
3. Tap on Athletics on the Home screen
4. On the Athletics screen, scroll down to "All Illinois sports" section
5. Tap on any of the sports listed in it.
6. Team screen is displayed. Scroll down to the section "Coaching Staff".
Actual Result
"All Staff" tile link is displayed along with the "Coaching Staff" tile list
**Expected behavior**
Remove the "All Staff" tile link from the "Coaching Staff" tile list. As the button "All Staff" link is already available below the section "Coaching Staff"
**Screenshots**


**Smartphone (please complete the following information):**
- Device: [e.g. iPhone and Android]
- Version [e.g. 2.4.5]
| priority | athletics all staff tile link is displayed along with coaching staff tile list describe the bug in the athletics screen the all staff tile link is displayed along with the coaching staff tile list to reproduce steps to reproduce the behavior install the illinois app complete onboarding steps and verify the role as a university student tap on athletics on the home screen on the athletics screen scroll down to all illinois sports section tap on any of the sports listed in it team screen is displayed scroll down to the section coaching staff actual result all staff tile link is displayed along with the coaching staff tile list expected behavior remove the all staff tile link from the coaching staff tile list as the button all staff link is already available below the section coaching staff screenshots smartphone please complete the following information device version | 1 |
103,885 | 4,186,933,435 | IssuesEvent | 2016-06-23 15:54:23 | mmisw/orr-portal | https://api.github.com/repos/mmisw/orr-portal | opened | resource type selection in ontology metadata | metadata Priority-Medium | The field is there, but no the traditional selection from http://mmisw.org/ont/mmi/resourcetype (instancea of the ResourceType class) | 1.0 | resource type selection in ontology metadata - The field is there, but no the traditional selection from http://mmisw.org/ont/mmi/resourcetype (instancea of the ResourceType class) | priority | resource type selection in ontology metadata the field is there but no the traditional selection from instancea of the resourcetype class | 1 |
542,041 | 15,837,782,734 | IssuesEvent | 2021-04-06 21:18:46 | octobercms/docs | https://api.github.com/repos/octobercms/docs | closed | Only mailables may be queued | Priority: Medium Status: Review Needed Type: Unconfirmed Bug | Error when trying to use documented Mail::queue()
See: https://octobercms.com/docs/services/mail#queueing-mail
Causes error:
"Only mailables may be queued." on line 354 of /site_directory/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php"
Need to update Docs to include creating Mailables per: https://laravel.com/docs/5.4/mail#generating-mailables
Should include where to save mailable classes in plugin directory.
| 1.0 | Only mailables may be queued - Error when trying to use documented Mail::queue()
See: https://octobercms.com/docs/services/mail#queueing-mail
Causes error:
"Only mailables may be queued." on line 354 of /site_directory/vendor/laravel/framework/src/Illuminate/Mail/Mailer.php"
Need to update Docs to include creating Mailables per: https://laravel.com/docs/5.4/mail#generating-mailables
Should include where to save mailable classes in plugin directory.
| priority | only mailables may be queued error when trying to use documented mail queue see causes error only mailables may be queued on line of site directory vendor laravel framework src illuminate mail mailer php need to update docs to include creating mailables per should include where to save mailable classes in plugin directory | 1 |
242,872 | 7,849,751,082 | IssuesEvent | 2018-06-20 05:45:13 | ahmad2806/Animals-shelter | https://api.github.com/repos/ahmad2806/Animals-shelter | closed | creating a full CRM model for donors | extra feature priority: medium | the client asked us to create a 2 optional CRM Models for donors and adopted animals if we finished early and had enough time | 1.0 | creating a full CRM model for donors - the client asked us to create a 2 optional CRM Models for donors and adopted animals if we finished early and had enough time | priority | creating a full crm model for donors the client asked us to create a optional crm models for donors and adopted animals if we finished early and had enough time | 1 |
58,153 | 3,087,856,302 | IssuesEvent | 2015-08-25 14:04:54 | pavel-pimenov/flylinkdc-r5xx | https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx | opened | Сообщение об отключении пользователя (в ЛС), хотя он не отключался от хаба. | bug imported Priority-Medium | _From [mike.kor...@gmail.com](https://code.google.com/u/101495626515388303633/) on November 08, 2013 16:33:10_
1. Подключиться 3-мя клиентами (с одного IP-адреса) к одному хабу.
2. Отправить два ЛС с разных клиентов флайлинку.
3. В последнем принятом флайлинком ЛС будет статус "пользователь ушел", хотя он не отключался от хаба.
Затронута не только ежовая версия но и основная бета.
**Attachment:** [Fly_r15702HE_PM_disconnected.png](http://code.google.com/p/flylinkdc/issues/detail?id=1389)
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1389_ | 1.0 | Сообщение об отключении пользователя (в ЛС), хотя он не отключался от хаба. - _From [mike.kor...@gmail.com](https://code.google.com/u/101495626515388303633/) on November 08, 2013 16:33:10_
1. Подключиться 3-мя клиентами (с одного IP-адреса) к одному хабу.
2. Отправить два ЛС с разных клиентов флайлинку.
3. В последнем принятом флайлинком ЛС будет статус "пользователь ушел", хотя он не отключался от хаба.
Затронута не только ежовая версия но и основная бета.
**Attachment:** [Fly_r15702HE_PM_disconnected.png](http://code.google.com/p/flylinkdc/issues/detail?id=1389)
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1389_ | priority | сообщение об отключении пользователя в лс хотя он не отключался от хаба from on november подключиться мя клиентами с одного ip адреса к одному хабу отправить два лс с разных клиентов флайлинку в последнем принятом флайлинком лс будет статус пользователь ушел хотя он не отключался от хаба затронута не только ежовая версия но и основная бета attachment original issue | 1 |
634,477 | 20,362,454,867 | IssuesEvent | 2022-02-20 21:46:48 | schemathesis/schemathesis | https://api.github.com/repos/schemathesis/schemathesis | closed | [FEATURE] add option not to verify TLS certificate in `replay` mode | Priority: Medium Type: Feature Difficulty: Easy | **Is your feature request related to a problem? Please describe.**
When i'm saving VCR cassette to reproduce some intriguing request i'm not able to re-run them because of self-signed cert used on the site:
```
$ schemathesis replay cassette.yaml --id 1
Replaying cassette: cassette.yaml
Total interactions: N
Traceback (most recent call last):
File "/venv/lib/python3.10/site-packages/urllib3/connectionpool.py", line 699, in urlopen
httplib_response = self._make_request(
File "/venv/lib/python3.10/site-packages/urllib3/connectionpool.py", line 382, in _make_request
self._validate_conn(conn)
File "/venv/lib/python3.10/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn
conn.connect()
File "/venv/lib/python3.10/site-packages/urllib3/connection.py", line 416, in connect
self.sock = ssl_wrap_socket(
File "/venv/lib/python3.10/site-packages/urllib3/util/ssl_.py", line 449, in ssl_wrap_socket
ssl_sock = _ssl_wrap_socket_impl(
File "/venv/lib/python3.10/site-packages/urllib3/util/ssl_.py", line 493, in _ssl_wrap_socket_impl
return ssl_context.wrap_socket(sock, server_hostname=server_hostname)
File "/usr/lib/python3.10/ssl.py", line 512, in wrap_socket
return self.sslsocket_class._create(
File "/usr/lib/python3.10/ssl.py", line 1070, in _create
self.do_handshake()
File "/usr/lib/python3.10/ssl.py", line 1341, in do_handshake
self._sslobj.do_handshake()
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:997)
...
```
Unfortunately, same option as in `run` mode isn't supported
```
$ schemathesis replay cassette.yaml --id 1 --request-tls-verify
Usage: schemathesis replay [OPTIONS] CASSETTE_PATH
Try 'schemathesis replay -h' for help.
Error: No such option: --request-tls-verify
```
**Describe the solution you'd like**
Add the site self-signed cert to the system.
**Describe alternatives you've considered**
Save additional info in VCR cassette and use it in `replay` mode to decide whether TLS verify is required or not (?)
| 1.0 | [FEATURE] add option not to verify TLS certificate in `replay` mode - **Is your feature request related to a problem? Please describe.**
When i'm saving VCR cassette to reproduce some intriguing request i'm not able to re-run them because of self-signed cert used on the site:
```
$ schemathesis replay cassette.yaml --id 1
Replaying cassette: cassette.yaml
Total interactions: N
Traceback (most recent call last):
File "/venv/lib/python3.10/site-packages/urllib3/connectionpool.py", line 699, in urlopen
httplib_response = self._make_request(
File "/venv/lib/python3.10/site-packages/urllib3/connectionpool.py", line 382, in _make_request
self._validate_conn(conn)
File "/venv/lib/python3.10/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn
conn.connect()
File "/venv/lib/python3.10/site-packages/urllib3/connection.py", line 416, in connect
self.sock = ssl_wrap_socket(
File "/venv/lib/python3.10/site-packages/urllib3/util/ssl_.py", line 449, in ssl_wrap_socket
ssl_sock = _ssl_wrap_socket_impl(
File "/venv/lib/python3.10/site-packages/urllib3/util/ssl_.py", line 493, in _ssl_wrap_socket_impl
return ssl_context.wrap_socket(sock, server_hostname=server_hostname)
File "/usr/lib/python3.10/ssl.py", line 512, in wrap_socket
return self.sslsocket_class._create(
File "/usr/lib/python3.10/ssl.py", line 1070, in _create
self.do_handshake()
File "/usr/lib/python3.10/ssl.py", line 1341, in do_handshake
self._sslobj.do_handshake()
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:997)
...
```
Unfortunately, same option as in `run` mode isn't supported
```
$ schemathesis replay cassette.yaml --id 1 --request-tls-verify
Usage: schemathesis replay [OPTIONS] CASSETTE_PATH
Try 'schemathesis replay -h' for help.
Error: No such option: --request-tls-verify
```
**Describe the solution you'd like**
Add the site self-signed cert to the system.
**Describe alternatives you've considered**
Save additional info in VCR cassette and use it in `replay` mode to decide whether TLS verify is required or not (?)
| priority | add option not to verify tls certificate in replay mode is your feature request related to a problem please describe when i m saving vcr cassette to reproduce some intriguing request i m not able to re run them because of self signed cert used on the site schemathesis replay cassette yaml id replaying cassette cassette yaml total interactions n traceback most recent call last file venv lib site packages connectionpool py line in urlopen httplib response self make request file venv lib site packages connectionpool py line in make request self validate conn conn file venv lib site packages connectionpool py line in validate conn conn connect file venv lib site packages connection py line in connect self sock ssl wrap socket file venv lib site packages util ssl py line in ssl wrap socket ssl sock ssl wrap socket impl file venv lib site packages util ssl py line in ssl wrap socket impl return ssl context wrap socket sock server hostname server hostname file usr lib ssl py line in wrap socket return self sslsocket class create file usr lib ssl py line in create self do handshake file usr lib ssl py line in do handshake self sslobj do handshake ssl sslcertverificationerror certificate verify failed self signed certificate ssl c unfortunately same option as in run mode isn t supported schemathesis replay cassette yaml id request tls verify usage schemathesis replay cassette path try schemathesis replay h for help error no such option request tls verify describe the solution you d like add the site self signed cert to the system describe alternatives you ve considered save additional info in vcr cassette and use it in replay mode to decide whether tls verify is required or not | 1 |
365,376 | 10,781,158,555 | IssuesEvent | 2019-11-04 14:25:13 | salesagility/SuiteCRM | https://api.github.com/repos/salesagility/SuiteCRM | closed | Adding parameter date field in Reports module causes error in Browser console | Bug Fix Proposed Medium Priority Resolved: Next Release | #### Issue
Reports module date parameter doesn't work. In technical terms entered date parameter is not posted to index.php because of Javascript error.
#### Expected Behavior
When parameter condition is added to report its value should be set and passed to SuiteCRM backend resulting in adequate report.
#### Actual Behavior
Browser throws Javascript fatal error when running the report:
conditionLines.js:318 Uncaught ReferenceError: setModuleFieldsPendingFinishedCallback is not defined
at testModuleFieldsPendingFinished (conditionLines.js:318)
at Object.success (conditionLines.js:364)
at Object.handleTransactionResponse (sugar_grp1_yui.js?v=vFv2IT2lNHOn27RtYpjcvw:109)
at sugar_grp1_yui.js?v=vFv2IT2lNHOn27RtYpjcvw:109
#### Possible Fix
#### Steps to Reproduce
1. Create a report
2. Add Date Created condition mark it as parameter
3. Try to view the resulting report, open browser console and check for errors
#### Context
This seems like a high priority error because date parameters aren't working.
#### Your Environment
* SuiteCRM ondemand demo environment
* Version: Version 7.11.4
Sugar Version 6.5.25 (Build 344) | 1.0 | Adding parameter date field in Reports module causes error in Browser console - #### Issue
Reports module date parameter doesn't work. In technical terms entered date parameter is not posted to index.php because of Javascript error.
#### Expected Behavior
When parameter condition is added to report its value should be set and passed to SuiteCRM backend resulting in adequate report.
#### Actual Behavior
Browser throws Javascript fatal error when running the report:
conditionLines.js:318 Uncaught ReferenceError: setModuleFieldsPendingFinishedCallback is not defined
at testModuleFieldsPendingFinished (conditionLines.js:318)
at Object.success (conditionLines.js:364)
at Object.handleTransactionResponse (sugar_grp1_yui.js?v=vFv2IT2lNHOn27RtYpjcvw:109)
at sugar_grp1_yui.js?v=vFv2IT2lNHOn27RtYpjcvw:109
#### Possible Fix
#### Steps to Reproduce
1. Create a report
2. Add Date Created condition mark it as parameter
3. Try to view the resulting report, open browser console and check for errors
#### Context
This seems like a high priority error because date parameters aren't working.
#### Your Environment
* SuiteCRM ondemand demo environment
* Version: Version 7.11.4
Sugar Version 6.5.25 (Build 344) | priority | adding parameter date field in reports module causes error in browser console issue reports module date parameter doesn t work in technical terms entered date parameter is not posted to index php because of javascript error expected behavior when parameter condition is added to report its value should be set and passed to suitecrm backend resulting in adequate report actual behavior browser throws javascript fatal error when running the report conditionlines js uncaught referenceerror setmodulefieldspendingfinishedcallback is not defined at testmodulefieldspendingfinished conditionlines js at object success conditionlines js at object handletransactionresponse sugar yui js v at sugar yui js v possible fix steps to reproduce create a report add date created condition mark it as parameter try to view the resulting report open browser console and check for errors context this seems like a high priority error because date parameters aren t working your environment suitecrm ondemand demo environment version version sugar version build | 1 |
499,865 | 14,481,053,533 | IssuesEvent | 2020-12-10 12:04:21 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | BT Mesh LPN max. poll timeout calculated incorrectly | area: Bluetooth Mesh bug has-pr priority: medium | **Describe the bug**
Bluetooth Mesh LPN poll frequency solely determined by poll timeout starting value `CONFIG_BT_MESH_LPN_INIT_POLL_TIMEOUT`. Seems to be a regression from https://github.com/zephyrproject-rtos/zephyr/commit/3b4d58aa4bb05a7b30bb720132bbfa35ea90be7d. The macro `POLL_TIMEOUT_MAX` should use `CONFIG_BT_MESH_LPN_POLL_TIMEOUT` instead of `CONFIG_BT_MESH_LPN_INIT_POLL_TIMEOUT`. The described algorithm to grow the poll timeout implemented in function `poll_timeout` does not work with this implementation. The algorithm is described in the description of Kconfig value `BT_MESH_LPN_INIT_POLL_TIMEOUT`.
**To Reproduce**
Configure an LPN with a starting value of say 5s and a poll timeout value of say 100s.
**Expected behavior**
The poll frequency starts at below 5s and is increased continuously towards a value derived from 100s.
**Impact**
Any reasonable low-power configuration has to set `CONFIG_BT_MESH_LPN_INIT_POLL_TIMEOUT` to `CONFIG_BT_MESH_LPN_POLL_TIMEOUT`. Existing devices updating to the current version without having such a configuration may suffer from too frequent polling.
| 1.0 | BT Mesh LPN max. poll timeout calculated incorrectly - **Describe the bug**
Bluetooth Mesh LPN poll frequency solely determined by poll timeout starting value `CONFIG_BT_MESH_LPN_INIT_POLL_TIMEOUT`. Seems to be a regression from https://github.com/zephyrproject-rtos/zephyr/commit/3b4d58aa4bb05a7b30bb720132bbfa35ea90be7d. The macro `POLL_TIMEOUT_MAX` should use `CONFIG_BT_MESH_LPN_POLL_TIMEOUT` instead of `CONFIG_BT_MESH_LPN_INIT_POLL_TIMEOUT`. The described algorithm to grow the poll timeout implemented in function `poll_timeout` does not work with this implementation. The algorithm is described in the description of Kconfig value `BT_MESH_LPN_INIT_POLL_TIMEOUT`.
**To Reproduce**
Configure an LPN with a starting value of say 5s and a poll timeout value of say 100s.
**Expected behavior**
The poll frequency starts at below 5s and is increased continuously towards a value derived from 100s.
**Impact**
Any reasonable low-power configuration has to set `CONFIG_BT_MESH_LPN_INIT_POLL_TIMEOUT` to `CONFIG_BT_MESH_LPN_POLL_TIMEOUT`. Existing devices updating to the current version without having such a configuration may suffer from too frequent polling.
| priority | bt mesh lpn max poll timeout calculated incorrectly describe the bug bluetooth mesh lpn poll frequency solely determined by poll timeout starting value config bt mesh lpn init poll timeout seems to be a regression from the macro poll timeout max should use config bt mesh lpn poll timeout instead of config bt mesh lpn init poll timeout the described algorithm to grow the poll timeout implemented in function poll timeout does not work with this implementation the algorithm is described in the description of kconfig value bt mesh lpn init poll timeout to reproduce configure an lpn with a starting value of say and a poll timeout value of say expected behavior the poll frequency starts at below and is increased continuously towards a value derived from impact any reasonable low power configuration has to set config bt mesh lpn init poll timeout to config bt mesh lpn poll timeout existing devices updating to the current version without having such a configuration may suffer from too frequent polling | 1 |
737,979 | 25,540,126,096 | IssuesEvent | 2022-11-29 14:46:51 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio-ui] Change "Site Tools" to "Project Tools" | bug priority: medium validate | ### Duplicates
- [X] I have searched the existing issues
### Latest version
- [X] The issue is in the latest released 4.0.x
- [ ] The issue is in the latest released 3.1.x
### Describe the issue
When you look in the sidebar, the project tools label displayed is `Site Tools` instead of `Project Tools`. Please change "Site Tools" to "Project Tools"
<img width="989" alt="Screen Shot 2022-11-04 at 8 02 16 AM" src="https://user-images.githubusercontent.com/25483966/199981194-d6325880-c3a0-4493-86ad-e35a925b071e.png">
<img width="959" alt="Screen Shot 2022-11-04 at 8 02 28 AM" src="https://user-images.githubusercontent.com/25483966/199981263-1a5ace85-e5eb-45e0-829e-deac90ef238a.png">
### Steps to reproduce
Steps:
1. Login to Studio and create a site
2. Look for `Project Tools` in the sidebar. Notice it says `Site Tools`
3. Click on `Site Tools`, notice the dialog label also says `Site Tools`
### Relevant log output
_No response_
### Screenshots and/or videos
_No response_ | 1.0 | [studio-ui] Change "Site Tools" to "Project Tools" - ### Duplicates
- [X] I have searched the existing issues
### Latest version
- [X] The issue is in the latest released 4.0.x
- [ ] The issue is in the latest released 3.1.x
### Describe the issue
When you look in the sidebar, the project tools label displayed is `Site Tools` instead of `Project Tools`. Please change "Site Tools" to "Project Tools"
<img width="989" alt="Screen Shot 2022-11-04 at 8 02 16 AM" src="https://user-images.githubusercontent.com/25483966/199981194-d6325880-c3a0-4493-86ad-e35a925b071e.png">
<img width="959" alt="Screen Shot 2022-11-04 at 8 02 28 AM" src="https://user-images.githubusercontent.com/25483966/199981263-1a5ace85-e5eb-45e0-829e-deac90ef238a.png">
### Steps to reproduce
Steps:
1. Login to Studio and create a site
2. Look for `Project Tools` in the sidebar. Notice it says `Site Tools`
3. Click on `Site Tools`, notice the dialog label also says `Site Tools`
### Relevant log output
_No response_
### Screenshots and/or videos
_No response_ | priority | change site tools to project tools duplicates i have searched the existing issues latest version the issue is in the latest released x the issue is in the latest released x describe the issue when you look in the sidebar the project tools label displayed is site tools instead of project tools please change site tools to project tools img width alt screen shot at am src img width alt screen shot at am src steps to reproduce steps login to studio and create a site look for project tools in the sidebar notice it says site tools click on site tools notice the dialog label also says site tools relevant log output no response screenshots and or videos no response | 1 |
525,952 | 15,269,579,720 | IssuesEvent | 2021-02-22 12:59:44 | AY2021S2-CS2103T-W13-2/tp | https://api.github.com/repos/AY2021S2-CS2103T-W13-2/tp | opened | Keeping the purchase record of readers | priority.Medium type.Story | As an individual operating a private book loaning service, I can keep the purchase record of our readers, so that I can do accounting easily. | 1.0 | Keeping the purchase record of readers - As an individual operating a private book loaning service, I can keep the purchase record of our readers, so that I can do accounting easily. | priority | keeping the purchase record of readers as an individual operating a private book loaning service i can keep the purchase record of our readers so that i can do accounting easily | 1 |
285,261 | 8,756,616,030 | IssuesEvent | 2018-12-14 18:20:37 | ArmaAchilles/Achilles | https://api.github.com/repos/ArmaAchilles/Achilles | opened | Dedmen's optimization suggestions | change priority/medium |
> https://github.com/astruyk/Ares/blob/master/src/addons/ares_zeusExtensions/scripts/Arsenal_CopyToClipboard.sqf
> missing private keywords.
> You shouldn't actually need the "str" for the arrays. Format already stringifies them
> https://github.com/astruyk/Ares/blob/master/src/addons/ares_zeusExtensions/scripts/Util_ExecuteCodeServer.sqf#L21 compiling code is a waste. The game will turn it back to string. Then send the string over, and compile it on the target to execute it there. You're better off just sending a string and compiling once.
> You are using try except on a function that doesn't throw?
> https://github.com/astruyk/Ares/blob/master/src/addons/ares_zeusExtensions/functions/fn_GetFarthest.sqf
> ```
> params [ ["_pointOfReference", [0,0,0], [[]]], ["_candidateObjects", [], [[]]] ];
> private _distObjects = _candidateObjects apply {[_pointOfReference distance _x, _x]};
> _distObjects sort false;
> (_distObjects select 0) param [1, objNull];
> ```
> https://github.com/astruyk/Ares/blob/master/src/addons/ares_zeusExtensions/functions/fn_GetNearest.sqf
> same code. Just sort true | 1.0 | Dedmen's optimization suggestions -
> https://github.com/astruyk/Ares/blob/master/src/addons/ares_zeusExtensions/scripts/Arsenal_CopyToClipboard.sqf
> missing private keywords.
> You shouldn't actually need the "str" for the arrays. Format already stringifies them
> https://github.com/astruyk/Ares/blob/master/src/addons/ares_zeusExtensions/scripts/Util_ExecuteCodeServer.sqf#L21 compiling code is a waste. The game will turn it back to string. Then send the string over, and compile it on the target to execute it there. You're better off just sending a string and compiling once.
> You are using try except on a function that doesn't throw?
> https://github.com/astruyk/Ares/blob/master/src/addons/ares_zeusExtensions/functions/fn_GetFarthest.sqf
> ```
> params [ ["_pointOfReference", [0,0,0], [[]]], ["_candidateObjects", [], [[]]] ];
> private _distObjects = _candidateObjects apply {[_pointOfReference distance _x, _x]};
> _distObjects sort false;
> (_distObjects select 0) param [1, objNull];
> ```
> https://github.com/astruyk/Ares/blob/master/src/addons/ares_zeusExtensions/functions/fn_GetNearest.sqf
> same code. Just sort true | priority | dedmen s optimization suggestions missing private keywords you shouldn t actually need the str for the arrays format already stringifies them compiling code is a waste the game will turn it back to string then send the string over and compile it on the target to execute it there you re better off just sending a string and compiling once you are using try except on a function that doesn t throw params private distobjects candidateobjects apply distobjects sort false distobjects select param same code just sort true | 1 |
16,198 | 2,612,524,491 | IssuesEvent | 2015-02-27 15:08:18 | DoSomething/dosomething | https://api.github.com/repos/DoSomething/dosomething | closed | Reportback Cropping: image_gd_create() error | @fender priority-medium | There is a bug that sometimes gets shown when cropping and image. It seems to be tied to when the image cropping script things that the crop area selected does not fully cover the image.

| 1.0 | Reportback Cropping: image_gd_create() error - There is a bug that sometimes gets shown when cropping and image. It seems to be tied to when the image cropping script things that the crop area selected does not fully cover the image.

| priority | reportback cropping image gd create error there is a bug that sometimes gets shown when cropping and image it seems to be tied to when the image cropping script things that the crop area selected does not fully cover the image | 1 |
540,815 | 15,817,531,139 | IssuesEvent | 2021-04-05 14:44:16 | iv-org/invidious | https://api.github.com/repos/iv-org/invidious | closed | default_home set to an empty value uses the default value | bug priority:medium type:server-side | If ```default_home``` is set to an empty value using ```default_home: []``` Invidious will crash when starting.
The config I use: https://github.com/TheFrenchGhosty/PussTheCat.org-Configs/blob/master/Services/Invidious/config.yml | 1.0 | default_home set to an empty value uses the default value - If ```default_home``` is set to an empty value using ```default_home: []``` Invidious will crash when starting.
The config I use: https://github.com/TheFrenchGhosty/PussTheCat.org-Configs/blob/master/Services/Invidious/config.yml | priority | default home set to an empty value uses the default value if default home is set to an empty value using default home invidious will crash when starting the config i use | 1 |
176,355 | 6,558,604,393 | IssuesEvent | 2017-09-06 22:11:54 | vmware/vic | https://api.github.com/repos/vmware/vic | closed | Analyze and decompose docker search effort | kind/investigation priority/medium team/container | As a VIC user, I want to be able to search images on docker hub.
Acceptance Criteria:
- [x] A new epic for Docker search
- [x] Tasks for implementing docker search. | 1.0 | Analyze and decompose docker search effort - As a VIC user, I want to be able to search images on docker hub.
Acceptance Criteria:
- [x] A new epic for Docker search
- [x] Tasks for implementing docker search. | priority | analyze and decompose docker search effort as a vic user i want to be able to search images on docker hub acceptance criteria a new epic for docker search tasks for implementing docker search | 1 |
16,418 | 2,615,063,410 | IssuesEvent | 2015-03-01 04:07:13 | chrsmith/google-api-java-client | https://api.github.com/repos/chrsmith/google-api-java-client | opened | Sample api for Fusion Tables API | auto-migrated Priority-Medium Type-Sample | ```
Which Google API and version (e.g. Google Calendar Data API version 2)? Google
Fusion Tables API
What format (e.g. JSON, Atom)? JSON
What Authentation (e.g. OAuth, OAuth 2, ClientLogin)? OAuth 2 and ClientLogin
Java environment (e.g. Java 6, Android 2.3, App Engine)? Java 6 and Android 2.3
External references, such as API reference guide?
Please provide any additional information below.
```
Original issue reported on code.google.com by `sdi...@ohioedge.com` on 7 Dec 2011 at 3:21 | 1.0 | Sample api for Fusion Tables API - ```
Which Google API and version (e.g. Google Calendar Data API version 2)? Google
Fusion Tables API
What format (e.g. JSON, Atom)? JSON
What Authentation (e.g. OAuth, OAuth 2, ClientLogin)? OAuth 2 and ClientLogin
Java environment (e.g. Java 6, Android 2.3, App Engine)? Java 6 and Android 2.3
External references, such as API reference guide?
Please provide any additional information below.
```
Original issue reported on code.google.com by `sdi...@ohioedge.com` on 7 Dec 2011 at 3:21 | priority | sample api for fusion tables api which google api and version e g google calendar data api version google fusion tables api what format e g json atom json what authentation e g oauth oauth clientlogin oauth and clientlogin java environment e g java android app engine java and android external references such as api reference guide please provide any additional information below original issue reported on code google com by sdi ohioedge com on dec at | 1 |
488,616 | 14,080,062,298 | IssuesEvent | 2020-11-04 15:39:22 | bennyboer/bbb_app | https://api.github.com/repos/bennyboer/bbb_app | closed | Show all webcams above presentation or screenshare stream | medium priority size: medium | Horizontal scrollbar list of webcams above the presentation area. | 1.0 | Show all webcams above presentation or screenshare stream - Horizontal scrollbar list of webcams above the presentation area. | priority | show all webcams above presentation or screenshare stream horizontal scrollbar list of webcams above the presentation area | 1 |
622,261 | 19,619,235,470 | IssuesEvent | 2022-01-07 02:42:58 | inblockio/DataAccounting | https://api.github.com/repos/inblockio/DataAccounting | reopened | [Tweeki] modal is under the top of navbar | bug medium priority | @thaider We tried this:
``` bash
# Make sure modal is on top of navbar
do_edit MediaWiki:Tweeki.css '.oo-ui-windowManager-modal {z-index: 1031}' "Make sure modal has higher z-index than navbar"
```
``` bash
do_edit() {
local page="$1"
local content="$2"
local message="$3"
echo "$content" | php maintenance/edit.php -s "$message" -u "$WALLET_ADDRESS" "$page"
}
```

| 1.0 | [Tweeki] modal is under the top of navbar - @thaider We tried this:
``` bash
# Make sure modal is on top of navbar
do_edit MediaWiki:Tweeki.css '.oo-ui-windowManager-modal {z-index: 1031}' "Make sure modal has higher z-index than navbar"
```
``` bash
do_edit() {
local page="$1"
local content="$2"
local message="$3"
echo "$content" | php maintenance/edit.php -s "$message" -u "$WALLET_ADDRESS" "$page"
}
```

| priority | modal is under the top of navbar thaider we tried this bash make sure modal is on top of navbar do edit mediawiki tweeki css oo ui windowmanager modal z index make sure modal has higher z index than navbar bash do edit local page local content local message echo content php maintenance edit php s message u wallet address page | 1 |
619,925 | 19,539,940,310 | IssuesEvent | 2021-12-31 18:12:08 | paperclipui/paperclip | https://api.github.com/repos/paperclipui/paperclip | opened | Paperclip should throw error if class on HTML element is not found | area: language priority: medium effort: easy | E.g:
```html
<div class="button">
</div>
```
This should throw an error. Though, this should still work:
```html
<import src="./styles.pc" inject-styles />
<div class="button">
</div>
```
_If_ `.button` is defined in `styles.pc`. | 1.0 | Paperclip should throw error if class on HTML element is not found - E.g:
```html
<div class="button">
</div>
```
This should throw an error. Though, this should still work:
```html
<import src="./styles.pc" inject-styles />
<div class="button">
</div>
```
_If_ `.button` is defined in `styles.pc`. | priority | paperclip should throw error if class on html element is not found e g html this should throw an error though this should still work html if button is defined in styles pc | 1 |
380,029 | 11,253,396,490 | IssuesEvent | 2020-01-11 16:00:33 | kiwicom/schemathesis | https://api.github.com/repos/kiwicom/schemathesis | closed | Show understandable errors when the given schema is invalid | Priority: Medium Type: Enhancement | For example when a reference is not resolved, then it should be clear what happened, now it could be an `AttributeError` | 1.0 | Show understandable errors when the given schema is invalid - For example when a reference is not resolved, then it should be clear what happened, now it could be an `AttributeError` | priority | show understandable errors when the given schema is invalid for example when a reference is not resolved then it should be clear what happened now it could be an attributeerror | 1 |
478,981 | 13,789,307,905 | IssuesEvent | 2020-10-09 08:40:48 | Assetory/landingpage | https://api.github.com/repos/Assetory/landingpage | opened | Intergrate Header Tags for Sharing on Social Media (Facebook etc.) | Priority: Medium Status: Availible Type: Enhancement | Our landing page should be equipped with appropriate header tags (e.g Open Graph Tags) to make sharing it on social media as easy as it can be. | 1.0 | Intergrate Header Tags for Sharing on Social Media (Facebook etc.) - Our landing page should be equipped with appropriate header tags (e.g Open Graph Tags) to make sharing it on social media as easy as it can be. | priority | intergrate header tags for sharing on social media facebook etc our landing page should be equipped with appropriate header tags e g open graph tags to make sharing it on social media as easy as it can be | 1 |
272,480 | 8,513,970,590 | IssuesEvent | 2018-10-31 17:19:31 | pytorch/pytorch | https://api.github.com/repos/pytorch/pytorch | closed | Broadcasting fails for mse_loss when tensors have no grad | bug medium priority | ## To Reproduce
```python
a = T.zeros(5,1,10, requires_grad=True)
b = T.zeros(5,10,10, requires_grad=True)
F.mse_loss(a,b)
# OK
a = T.zeros(5,1,10)
b = T.zeros(5,10,10)
F.mse_loss(a,b)
# RuntimeError: input and target shapes do not match: input [5 x 1 x 10], target [5 x 10 x 10] at /opt/conda/conda-bld/pytorch_1524577523076/work/aten/src/THNN/generic/MSECriterion.c:13
```
## Expected behavior
Broadcast should work the same as with grad.
## Workaround
```python
# assumes size_average=False
def my_mse(a,b):
return ((a-b)**2).sum()
``` | 1.0 | Broadcasting fails for mse_loss when tensors have no grad - ## To Reproduce
```python
a = T.zeros(5,1,10, requires_grad=True)
b = T.zeros(5,10,10, requires_grad=True)
F.mse_loss(a,b)
# OK
a = T.zeros(5,1,10)
b = T.zeros(5,10,10)
F.mse_loss(a,b)
# RuntimeError: input and target shapes do not match: input [5 x 1 x 10], target [5 x 10 x 10] at /opt/conda/conda-bld/pytorch_1524577523076/work/aten/src/THNN/generic/MSECriterion.c:13
```
## Expected behavior
Broadcast should work the same as with grad.
## Workaround
```python
# assumes size_average=False
def my_mse(a,b):
return ((a-b)**2).sum()
``` | priority | broadcasting fails for mse loss when tensors have no grad to reproduce python a t zeros requires grad true b t zeros requires grad true f mse loss a b ok a t zeros b t zeros f mse loss a b runtimeerror input and target shapes do not match input target at opt conda conda bld pytorch work aten src thnn generic msecriterion c expected behavior broadcast should work the same as with grad workaround python assumes size average false def my mse a b return a b sum | 1 |
772,279 | 27,114,603,947 | IssuesEvent | 2023-02-15 17:36:18 | containrrr/watchtower | https://api.github.com/repos/containrrr/watchtower | closed | last update breaks my telegram notifications | Type: Bug Priority: Medium Status: Available | ### Describe the bug
This error is log
time="2023-02-13T10:26:43-05:00" level=fatal msg="Failed to initialize Shoutrrr notifications: error initializing router services: parse \"telegram://XXXXXXXXXXX:YYYYYYYYYYYYYYYYYYYYYYYYY/?chats=ZZZZZZZZZZZ\": invalid port \":YYYYYYYYYYYYYYYYYYYY\" after host\n"
### Steps to reproduce
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
### Expected behavior
Send a telegram notification without this error
### Screenshots
_No response_
### Environment
- Platform: photonOS 4
- Architecture x64
- Docker Version latest
### Your logs
```text
copied in the desc.
```
### Additional context
_No response_ | 1.0 | last update breaks my telegram notifications - ### Describe the bug
This error is log
time="2023-02-13T10:26:43-05:00" level=fatal msg="Failed to initialize Shoutrrr notifications: error initializing router services: parse \"telegram://XXXXXXXXXXX:YYYYYYYYYYYYYYYYYYYYYYYYY/?chats=ZZZZZZZZZZZ\": invalid port \":YYYYYYYYYYYYYYYYYYYY\" after host\n"
### Steps to reproduce
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
### Expected behavior
Send a telegram notification without this error
### Screenshots
_No response_
### Environment
- Platform: photonOS 4
- Architecture x64
- Docker Version latest
### Your logs
```text
copied in the desc.
```
### Additional context
_No response_ | priority | last update breaks my telegram notifications describe the bug this error is log time level fatal msg failed to initialize shoutrrr notifications error initializing router services parse telegram xxxxxxxxxxx yyyyyyyyyyyyyyyyyyyyyyyyy chats zzzzzzzzzzz invalid port yyyyyyyyyyyyyyyyyyyy after host n steps to reproduce go to click on scroll down to see error expected behavior send a telegram notification without this error screenshots no response environment platform photonos architecture docker version latest your logs text copied in the desc additional context no response | 1 |
92,021 | 3,864,506,996 | IssuesEvent | 2016-04-08 14:09:21 | jfabry/LiveRobotProgramming | https://api.github.com/repos/jfabry/LiveRobotProgramming | opened | transition should support negative of event | Component-Logic Component-Parser Priority-Medium Type-Enhancement | Transitions should support a convention using not only an event, but its negate version, for example:
(event blah [...])
(on blah! foo -> bar)
This transition triggers when blah is false | 1.0 | transition should support negative of event - Transitions should support a convention using not only an event, but its negate version, for example:
(event blah [...])
(on blah! foo -> bar)
This transition triggers when blah is false | priority | transition should support negative of event transitions should support a convention using not only an event but its negate version for example event blah on blah foo bar this transition triggers when blah is false | 1 |
49,547 | 3,003,701,144 | IssuesEvent | 2015-07-25 05:40:25 | jayway/powermock | https://api.github.com/repos/jayway/powermock | closed | Support mock injection via annotations | bug imported Priority-Medium wontfix | _From [anthony....@gmail.com](https://code.google.com/u/113243536995729033979/) on March 14, 2013 17:24:20_
There is a feature I love with unitils : the possibility to inject the tested object and the mocks.
For example :
@RunWith(UnitilsJUnit4TestClassRunner.class)
public class MyServiceInjectTest {
@TestedObject
private MyService myService;
@InjectIntoByType
private Mock<MyDao> myDaoMock;
@Test
public void testMethod() {
// define behavior
expect(myDaoMock.doSomething()).andReturn("something"),
replayAll();
myService.aService();
verifyAll();
}
}
@TestedObject creates the object to test.
@InjectIntoByType creates a mock, and inject it in the tested object, using its type.
We no longer need to use createMock() to create a mock and ReflectionTestUtils.setField() to set the mock in a private field, all the work is done automatically with only two annotations.
Unfortunately, I can use only one Runner in my JUnit classes, I can't use powermock and unitils together.
It would be nice if powermock had such a feature given that it considerably simplifies test classes.
_Original issue: http://code.google.com/p/powermock/issues/detail?id=435_ | 1.0 | Support mock injection via annotations - _From [anthony....@gmail.com](https://code.google.com/u/113243536995729033979/) on March 14, 2013 17:24:20_
There is a feature I love with unitils : the possibility to inject the tested object and the mocks.
For example :
@RunWith(UnitilsJUnit4TestClassRunner.class)
public class MyServiceInjectTest {
@TestedObject
private MyService myService;
@InjectIntoByType
private Mock<MyDao> myDaoMock;
@Test
public void testMethod() {
// define behavior
expect(myDaoMock.doSomething()).andReturn("something"),
replayAll();
myService.aService();
verifyAll();
}
}
@TestedObject creates the object to test.
@InjectIntoByType creates a mock, and inject it in the tested object, using its type.
We no longer need to use createMock() to create a mock and ReflectionTestUtils.setField() to set the mock in a private field, all the work is done automatically with only two annotations.
Unfortunately, I can use only one Runner in my JUnit classes, I can't use powermock and unitils together.
It would be nice if powermock had such a feature given that it considerably simplifies test classes.
_Original issue: http://code.google.com/p/powermock/issues/detail?id=435_ | priority | support mock injection via annotations from on march there is a feature i love with unitils the possibility to inject the tested object and the mocks for example runwith class public class myserviceinjecttest testedobject private myservice myservice injectintobytype private mock mydaomock test public void testmethod define behavior expect mydaomock dosomething andreturn something replayall myservice aservice verifyall testedobject creates the object to test injectintobytype creates a mock and inject it in the tested object using its type we no longer need to use createmock to create a mock and reflectiontestutils setfield to set the mock in a private field all the work is done automatically with only two annotations unfortunately i can use only one runner in my junit classes i can t use powermock and unitils together it would be nice if powermock had such a feature given that it considerably simplifies test classes original issue | 1 |
759,266 | 26,585,852,154 | IssuesEvent | 2023-01-23 00:48:13 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | reopened | [YSQL] Impact of projection on jsonb column is more on yb colocated than yb regular tables. | kind/bug area/ysql priority/medium | Jira Link: [DB-4530](https://yugabyte.atlassian.net/browse/DB-4530)
### Description
Please refer the below queries :
**Q5:**
select gcs_config_lib.ns_id, gcs_config_lib.module, gcs_config_lib.inst_key,
gcs_config_lib.data as cfg_data, gcs_config_lib.meta as cfg_meta from gcs_config_lib
join gcs_customize on
gcs_config_lib.cid=gcs_customize.cid and
gcs_config_lib.id=gcs_customize.cfg_id
where gcs_config_lib.cid='customer_medium_level3_05481' and
gcs_config_lib.module = 'aruba_module_1' and
gcs_config_lib.inst_key in ('medium_9', 'large_9', 'small_9');
**Q6:**
select gcs_config_lib.ns_id, gcs_config_lib.module, gcs_config_lib.inst_key, **gcs_customize.data,**
gcs_config_lib.data as cfg_data, gcs_config_lib.meta as cfg_meta from gcs_config_lib
join gcs_customize on
gcs_config_lib.cid=gcs_customize.cid and
gcs_config_lib.id=gcs_customize.cfg_id
where gcs_config_lib.cid='customer_medium_level3_05481' and
gcs_config_lib.module in ('aruba_module_1', 'aruba_module_10') and
gcs_config_lib.inst_key in ('medium_9', 'large_9', 'small_9');
<meta charset="utf-8"><b style="font-weight:normal;" id="docs-internal-guid-65e44bcd-7fff-10c3-4490-1509f648ac32"><div dir="ltr" style="margin-left:0pt;" align="left">
| PG latency (ms) | YB latency (ms) | YB Colocated latency (ms)
-- | -- | -- | --
Without jsonb column (Q5) | 7.9 | 122 | 123
With jsonb column (Q6) | 8.7 | 184 | 275
</div><br/></b>
From the above table, when we compare latencies of Q5 vs Q6, the overhead of JSONB is more on yb colocated as compared to yb. With the jsonb column(gcs_customize.data) in Q6, the latency in YB it increased by 50%, but doubled in YB colocated.
The above queries are run on 2.17.1.0-b206 (the gflag _ysql_enable_packed_row_for_colocated_table_ is not set to true
[DB-4530]: https://yugabyte.atlassian.net/browse/DB-4530?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | 1.0 | [YSQL] Impact of projection on jsonb column is more on yb colocated than yb regular tables. - Jira Link: [DB-4530](https://yugabyte.atlassian.net/browse/DB-4530)
### Description
Please refer the below queries :
**Q5:**
select gcs_config_lib.ns_id, gcs_config_lib.module, gcs_config_lib.inst_key,
gcs_config_lib.data as cfg_data, gcs_config_lib.meta as cfg_meta from gcs_config_lib
join gcs_customize on
gcs_config_lib.cid=gcs_customize.cid and
gcs_config_lib.id=gcs_customize.cfg_id
where gcs_config_lib.cid='customer_medium_level3_05481' and
gcs_config_lib.module = 'aruba_module_1' and
gcs_config_lib.inst_key in ('medium_9', 'large_9', 'small_9');
**Q6:**
select gcs_config_lib.ns_id, gcs_config_lib.module, gcs_config_lib.inst_key, **gcs_customize.data,**
gcs_config_lib.data as cfg_data, gcs_config_lib.meta as cfg_meta from gcs_config_lib
join gcs_customize on
gcs_config_lib.cid=gcs_customize.cid and
gcs_config_lib.id=gcs_customize.cfg_id
where gcs_config_lib.cid='customer_medium_level3_05481' and
gcs_config_lib.module in ('aruba_module_1', 'aruba_module_10') and
gcs_config_lib.inst_key in ('medium_9', 'large_9', 'small_9');
<meta charset="utf-8"><b style="font-weight:normal;" id="docs-internal-guid-65e44bcd-7fff-10c3-4490-1509f648ac32"><div dir="ltr" style="margin-left:0pt;" align="left">
| PG latency (ms) | YB latency (ms) | YB Colocated latency (ms)
-- | -- | -- | --
Without jsonb column (Q5) | 7.9 | 122 | 123
With jsonb column (Q6) | 8.7 | 184 | 275
</div><br/></b>
From the above table, when we compare latencies of Q5 vs Q6, the overhead of JSONB is more on yb colocated as compared to yb. With the jsonb column(gcs_customize.data) in Q6, the latency in YB it increased by 50%, but doubled in YB colocated.
The above queries are run on 2.17.1.0-b206 (the gflag _ysql_enable_packed_row_for_colocated_table_ is not set to true
[DB-4530]: https://yugabyte.atlassian.net/browse/DB-4530?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | priority | impact of projection on jsonb column is more on yb colocated than yb regular tables jira link description please refer the below queries select gcs config lib ns id gcs config lib module gcs config lib inst key gcs config lib data as cfg data gcs config lib meta as cfg meta from gcs config lib join gcs customize on gcs config lib cid gcs customize cid and gcs config lib id gcs customize cfg id where gcs config lib cid customer medium and gcs config lib module aruba module and gcs config lib inst key in medium large small select gcs config lib ns id gcs config lib module gcs config lib inst key gcs customize data gcs config lib data as cfg data gcs config lib meta as cfg meta from gcs config lib join gcs customize on gcs config lib cid gcs customize cid and gcs config lib id gcs customize cfg id where gcs config lib cid customer medium and gcs config lib module in aruba module aruba module and gcs config lib inst key in medium large small pg latency ms yb latency ms yb colocated latency ms without jsonb column with jsonb column from the above table when we compare latencies of vs the overhead of jsonb is more on yb colocated as compared to yb with the jsonb column gcs customize data in the latency in yb it increased by but doubled in yb colocated the above queries are run on the gflag ysql enable packed row for colocated table is not set to true | 1 |
600,852 | 18,360,130,188 | IssuesEvent | 2021-10-09 04:11:42 | wangzhongyi0510/fa21-cse110-lab3 | https://api.github.com/repos/wangzhongyi0510/fa21-cse110-lab3 | closed | CSS: Color, Unit, Text, Sizing, Pseudo-class | enhancement Difficulty: Easy Work Duration: medium Priority: 2 days | Pay attention to the requirement written in the Lab page. | 1.0 | CSS: Color, Unit, Text, Sizing, Pseudo-class - Pay attention to the requirement written in the Lab page. | priority | css color unit text sizing pseudo class pay attention to the requirement written in the lab page | 1 |
184,195 | 6,706,637,520 | IssuesEvent | 2017-10-12 07:58:02 | bleenco/abstruse | https://api.github.com/repos/bleenco/abstruse | opened | [feat]: Extend api for external applications | Priority: Medium Status: Available Type: Enhancement | - [ ] generate token (high)
- [ ] run builds (high)
- [ ] builds status (high)
- [ ] organize users (medium)
- [ ] number of requests / min in config (medium) | 1.0 | [feat]: Extend api for external applications - - [ ] generate token (high)
- [ ] run builds (high)
- [ ] builds status (high)
- [ ] organize users (medium)
- [ ] number of requests / min in config (medium) | priority | extend api for external applications generate token high run builds high builds status high organize users medium number of requests min in config medium | 1 |
494,552 | 14,260,403,967 | IssuesEvent | 2020-11-20 09:46:57 | openmsupply/mobile | https://api.github.com/repos/openmsupply/mobile | closed | Supplier Invoice: Remove button unable to trace whether boolean is check or unchecked | Docs: not needed Effort: medium Priority: normal | ## Describe the bug
If we checked two items to remove it will show us the remove button and if we unchecked one and keep another as it is then it will not show remove button.
### To reproduce
Steps to reproduce the behavior:
1. Go to Supplier invoice
2. Create new add few items more than 1
3. Check boolean to remove for two items.
4. Uncheck one and keep another as it is.
5. See Error
### Expected behaviour
Until and unless the boolean is checked for remove. It should show remove button.
### Version and device info
- App version:3.2.2
- Tablet model:emulator
### Additional context

| 1.0 | Supplier Invoice: Remove button unable to trace whether boolean is check or unchecked - ## Describe the bug
If we checked two items to remove it will show us the remove button and if we unchecked one and keep another as it is then it will not show remove button.
### To reproduce
Steps to reproduce the behavior:
1. Go to Supplier invoice
2. Create new add few items more than 1
3. Check boolean to remove for two items.
4. Uncheck one and keep another as it is.
5. See Error
### Expected behaviour
Until and unless the boolean is checked for remove. It should show remove button.
### Version and device info
- App version:3.2.2
- Tablet model:emulator
### Additional context

| priority | supplier invoice remove button unable to trace whether boolean is check or unchecked describe the bug if we checked two items to remove it will show us the remove button and if we unchecked one and keep another as it is then it will not show remove button to reproduce steps to reproduce the behavior go to supplier invoice create new add few items more than check boolean to remove for two items uncheck one and keep another as it is see error expected behaviour until and unless the boolean is checked for remove it should show remove button version and device info app version tablet model emulator additional context | 1 |
284,820 | 8,751,095,973 | IssuesEvent | 2018-12-13 21:13:17 | ubc/compair | https://api.github.com/repos/ubc/compair | closed | Only push grade via LTI if the value has changed | medium priority support request | - pay attention to the 0 case
- pay attention to the assignment period
Reference: PRB0044107 | 1.0 | Only push grade via LTI if the value has changed - - pay attention to the 0 case
- pay attention to the assignment period
Reference: PRB0044107 | priority | only push grade via lti if the value has changed pay attention to the case pay attention to the assignment period reference | 1 |
814,058 | 30,484,686,270 | IssuesEvent | 2023-07-18 00:23:32 | recro/ats-issues | https://api.github.com/repos/recro/ats-issues | opened | Add new category in a candidate record "associated job" | area/candidate priority/medium | ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Is your feature request related to a problem? Please describe the problem.
i'd like to be able to add job reqs (associations) to a candidate record
### Describe the solution you'd like
on the right hand side of the candidate record, under certs and before applications - add a new category "associated jobs"
- when the gear is selected the list should act the same way as the other lists - all the job reqs are listed and the user can start typing using the job id.
- once selected, the job id and title of the job will show up in the green bubbles
### Additional context
_No response_ | 1.0 | Add new category in a candidate record "associated job" - ### Is there an existing issue for this?
- [X] I have searched the existing issues
### Is your feature request related to a problem? Please describe the problem.
i'd like to be able to add job reqs (associations) to a candidate record
### Describe the solution you'd like
on the right hand side of the candidate record, under certs and before applications - add a new category "associated jobs"
- when the gear is selected the list should act the same way as the other lists - all the job reqs are listed and the user can start typing using the job id.
- once selected, the job id and title of the job will show up in the green bubbles
### Additional context
_No response_ | priority | add new category in a candidate record associated job is there an existing issue for this i have searched the existing issues is your feature request related to a problem please describe the problem i d like to be able to add job reqs associations to a candidate record describe the solution you d like on the right hand side of the candidate record under certs and before applications add a new category associated jobs when the gear is selected the list should act the same way as the other lists all the job reqs are listed and the user can start typing using the job id once selected the job id and title of the job will show up in the green bubbles additional context no response | 1 |
520,980 | 15,098,845,612 | IssuesEvent | 2021-02-08 00:29:53 | incognitochain/incognito-chain | https://api.github.com/repos/incognitochain/incognito-chain | closed | [Scalability] Source code review & optimization | Priority: Medium | In order to enhance our network, we will do some review and research to optimize our chain logic.
- [x] Review schema to prevent race conditions in DBv2.
- [x] Implement metric feature and RPC for real-time monitor.
- [ ] Review if we need to partition database into chains so that chains are stored and backup separately | 1.0 | [Scalability] Source code review & optimization - In order to enhance our network, we will do some review and research to optimize our chain logic.
- [x] Review schema to prevent race conditions in DBv2.
- [x] Implement metric feature and RPC for real-time monitor.
- [ ] Review if we need to partition database into chains so that chains are stored and backup separately | priority | source code review optimization in order to enhance our network we will do some review and research to optimize our chain logic review schema to prevent race conditions in implement metric feature and rpc for real time monitor review if we need to partition database into chains so that chains are stored and backup separately | 1 |
426,728 | 12,378,773,423 | IssuesEvent | 2020-05-19 11:18:19 | canonical-web-and-design/canonicalwebteam.discourse-docs | https://api.github.com/repos/canonical-web-and-design/canonicalwebteam.discourse-docs | closed | Allow all pages in the URL mapping to render | Priority: Medium | > I suspect it's because it's in the "Charming docs" category rather than the "Docs" category directly. Discourse docs does a check that the topic is in the expected category and only presents it on the site if it is, otherwise it redirects to the forum. This is to prevent people editing topics (which is open to most registered users) to add links to other topics that aren't in the curated docs category. However, it would almost certainly be worth extending the permission to sub-categories.
> I'm not married to this mechanism though, since we now also have a URL mapping list in the index topic (this didn't exist when the above mechanism was first added), we could instead simply say only pages included in the URL mapping list are displayed on the website. I think that would be a neater mechanism. | 1.0 | Allow all pages in the URL mapping to render - > I suspect it's because it's in the "Charming docs" category rather than the "Docs" category directly. Discourse docs does a check that the topic is in the expected category and only presents it on the site if it is, otherwise it redirects to the forum. This is to prevent people editing topics (which is open to most registered users) to add links to other topics that aren't in the curated docs category. However, it would almost certainly be worth extending the permission to sub-categories.
> I'm not married to this mechanism though, since we now also have a URL mapping list in the index topic (this didn't exist when the above mechanism was first added), we could instead simply say only pages included in the URL mapping list are displayed on the website. I think that would be a neater mechanism. | priority | allow all pages in the url mapping to render i suspect it s because it s in the charming docs category rather than the docs category directly discourse docs does a check that the topic is in the expected category and only presents it on the site if it is otherwise it redirects to the forum this is to prevent people editing topics which is open to most registered users to add links to other topics that aren t in the curated docs category however it would almost certainly be worth extending the permission to sub categories i m not married to this mechanism though since we now also have a url mapping list in the index topic this didn t exist when the above mechanism was first added we could instead simply say only pages included in the url mapping list are displayed on the website i think that would be a neater mechanism | 1 |
89,949 | 3,807,161,465 | IssuesEvent | 2016-03-25 05:47:25 | TwidereProject/Twidere-Android | https://api.github.com/repos/TwidereProject/Twidere-Android | closed | Opening left sidebar is difficult. | category:functionality category:ui priority:medium type:enhancement | Hello,
I'm using a Motorola Moto G 2014, with screen protector and rubber case. I find it really annoying to open the left sidebar, as I have to do the exact motion or it will think I'm trying to move between tabs. | 1.0 | Opening left sidebar is difficult. - Hello,
I'm using a Motorola Moto G 2014, with screen protector and rubber case. I find it really annoying to open the left sidebar, as I have to do the exact motion or it will think I'm trying to move between tabs. | priority | opening left sidebar is difficult hello i m using a motorola moto g with screen protector and rubber case i find it really annoying to open the left sidebar as i have to do the exact motion or it will think i m trying to move between tabs | 1 |
152,950 | 5,872,133,440 | IssuesEvent | 2017-05-15 10:34:30 | graphcool/console | https://api.github.com/repos/graphcool/console | closed | Hint case sensitivity in Onboarding | area/onboarding priority/medium | field names are case sensitive. drop a hint in the Onboarding (or in general) | 1.0 | Hint case sensitivity in Onboarding - field names are case sensitive. drop a hint in the Onboarding (or in general) | priority | hint case sensitivity in onboarding field names are case sensitive drop a hint in the onboarding or in general | 1 |
493,619 | 14,235,886,533 | IssuesEvent | 2020-11-18 15:21:04 | netdata/netdata | https://api.github.com/repos/netdata/netdata | closed | Metric Collection: Kubernetes Service Discovery | Epic area/k8s feature request priority/medium | ### Target
- Enable Netdata Agent to collect metrics from apps that are running inside Kubernetes containers
### Why?
- Zero visibility. Apps/processes that are running in Kubernetes containers are not currently monitored.
- A nested architecture. Kubernetes is a container-orchestration that has a nested architecture. As a result collecting data and making sense out of them will require additional enhancements in the agent (e.g. labels that can associate the same metrics related to the same processes running across containers)
### What?
**Minimal Configuration (i.e. auto-discovery)**
- As a user I want to have a preconfigured template with services I can monitor out of the box.
- Pe-populate the configuration file with (<=40 apps Netdata monitors with do.d.plugin)
- Build the agent service discovery
- Test it against the cloud infrastructure that it works.
**Metric Collection**
- Number of collectors delivered as part of K8 auto-discovery should be equal to number of go.d.plugin collectors (<=40).
- Display collected metrics on agent navigation bar without any additional enhancement (see attachment below).
**Instant access to new time-series metrics **
- As a user I want to be able to monitor new services by changing the configuration file without having to restart the agent (auto-reload).
- As a user I want to instantly access (max 10sec) to new time-series metrics, as any new containers, pods, nodes, are created or destroyed at any given time.
- My charts are updated automatically, and they are tested agents alerts.
 | 1.0 | Metric Collection: Kubernetes Service Discovery - ### Target
- Enable Netdata Agent to collect metrics from apps that are running inside Kubernetes containers
### Why?
- Zero visibility. Apps/processes that are running in Kubernetes containers are not currently monitored.
- A nested architecture. Kubernetes is a container-orchestration that has a nested architecture. As a result collecting data and making sense out of them will require additional enhancements in the agent (e.g. labels that can associate the same metrics related to the same processes running across containers)
### What?
**Minimal Configuration (i.e. auto-discovery)**
- As a user I want to have a preconfigured template with services I can monitor out of the box.
- Pe-populate the configuration file with (<=40 apps Netdata monitors with do.d.plugin)
- Build the agent service discovery
- Test it against the cloud infrastructure that it works.
**Metric Collection**
- Number of collectors delivered as part of K8 auto-discovery should be equal to number of go.d.plugin collectors (<=40).
- Display collected metrics on agent navigation bar without any additional enhancement (see attachment below).
**Instant access to new time-series metrics **
- As a user I want to be able to monitor new services by changing the configuration file without having to restart the agent (auto-reload).
- As a user I want to instantly access (max 10sec) to new time-series metrics, as any new containers, pods, nodes, are created or destroyed at any given time.
- My charts are updated automatically, and they are tested agents alerts.
 | priority | metric collection kubernetes service discovery target enable netdata agent to collect metrics from apps that are running inside kubernetes containers why zero visibility apps processes that are running in kubernetes containers are not currently monitored a nested architecture kubernetes is a container orchestration that has a nested architecture as a result collecting data and making sense out of them will require additional enhancements in the agent e g labels that can associate the same metrics related to the same processes running across containers what minimal configuration i e auto discovery as a user i want to have a preconfigured template with services i can monitor out of the box pe populate the configuration file with apps netdata monitors with do d plugin build the agent service discovery test it against the cloud infrastructure that it works metric collection number of collectors delivered as part of auto discovery should be equal to number of go d plugin collectors display collected metrics on agent navigation bar without any additional enhancement see attachment below instant access to new time series metrics as a user i want to be able to monitor new services by changing the configuration file without having to restart the agent auto reload as a user i want to instantly access max to new time series metrics as any new containers pods nodes are created or destroyed at any given time my charts are updated automatically and they are tested agents alerts | 1 |
42,193 | 2,869,276,626 | IssuesEvent | 2015-06-06 01:57:45 | lua-carbon/carbon | https://api.github.com/repos/lua-carbon/carbon | closed | Move metadata functionality from Graphene to Carbon | difficulty:medium feature priority:low | Metadata is something that's kind of out of scope for Graphene. Metadata facilities should be transitioned to Carbon and taken out of Graphene for a potential Graphene 2.0 release. | 1.0 | Move metadata functionality from Graphene to Carbon - Metadata is something that's kind of out of scope for Graphene. Metadata facilities should be transitioned to Carbon and taken out of Graphene for a potential Graphene 2.0 release. | priority | move metadata functionality from graphene to carbon metadata is something that s kind of out of scope for graphene metadata facilities should be transitioned to carbon and taken out of graphene for a potential graphene release | 1 |
248,131 | 7,927,747,471 | IssuesEvent | 2018-07-06 09:08:18 | peterwebster/henson | https://api.github.com/repos/peterwebster/henson | opened | References, export to Github | medium priority | Because the TSV format was changing, I hadn't yet created the "export to Github" feature like I have for the other annotation types.
Not a big task: copy & paste then adjust for Ref fields. | 1.0 | References, export to Github - Because the TSV format was changing, I hadn't yet created the "export to Github" feature like I have for the other annotation types.
Not a big task: copy & paste then adjust for Ref fields. | priority | references export to github because the tsv format was changing i hadn t yet created the export to github feature like i have for the other annotation types not a big task copy paste then adjust for ref fields | 1 |
813,779 | 30,471,688,560 | IssuesEvent | 2023-07-17 14:01:19 | SalihaPopal/Coursework-Planner | https://api.github.com/repos/SalihaPopal/Coursework-Planner | opened | [TECH ED] This issue is a test | 🏕 Priority Mandatory 🐂 Size Medium 📅 Iteration | From Module-Template created by [SallyMcGrath](https://github.com/SallyMcGrath): CodeYourFuture/Module-Template#1
### Link to the coursework
n/a
### Why are we doing this?
This issue can be queried from the API
### Maximum time in hours
0
### How to get help
_No response_
### How to submit
n/a
### How to review
_No response_
### Anything else?
_No response_ | 1.0 | [TECH ED] This issue is a test - From Module-Template created by [SallyMcGrath](https://github.com/SallyMcGrath): CodeYourFuture/Module-Template#1
### Link to the coursework
n/a
### Why are we doing this?
This issue can be queried from the API
### Maximum time in hours
0
### How to get help
_No response_
### How to submit
n/a
### How to review
_No response_
### Anything else?
_No response_ | priority | this issue is a test from module template created by codeyourfuture module template link to the coursework n a why are we doing this this issue can be queried from the api maximum time in hours how to get help no response how to submit n a how to review no response anything else no response | 1 |
801,905 | 28,506,639,899 | IssuesEvent | 2023-04-18 22:11:31 | Ore-Design/Ore-3D-Reports-Changelog | https://api.github.com/repos/Ore-Design/Ore-3D-Reports-Changelog | closed | Bug: FABRICATED LIP BUTTON AUTOMATICALLY IS CLICKED WHEN FUSE CURVE PLANTER IS SPLIT | bug in progress medium priority | Matt said this may already be a bug. Sorry if it's a duplicate | 1.0 | Bug: FABRICATED LIP BUTTON AUTOMATICALLY IS CLICKED WHEN FUSE CURVE PLANTER IS SPLIT - Matt said this may already be a bug. Sorry if it's a duplicate | priority | bug fabricated lip button automatically is clicked when fuse curve planter is split matt said this may already be a bug sorry if it s a duplicate | 1 |
56,889 | 3,081,212,090 | IssuesEvent | 2015-08-22 13:55:18 | bitfighter/bitfighter | https://api.github.com/repos/bitfighter/bitfighter | closed | /setserverpass changes .ini | bug imported Priority-Medium wontfix | _From [karamazo...@gmail.com](https://code.google.com/u/111822155770525741650/) on July 08, 2011 17:45:14_
Using /setserverpass in-game on my VPS alters the .ini file so that future servers require the same server password by default. I don't think this was intended...was it...?
I expect my in-game admin changes to affect the current server only, and not my default settings.
_Original issue: http://code.google.com/p/bitfighter/issues/detail?id=111_ | 1.0 | /setserverpass changes .ini - _From [karamazo...@gmail.com](https://code.google.com/u/111822155770525741650/) on July 08, 2011 17:45:14_
Using /setserverpass in-game on my VPS alters the .ini file so that future servers require the same server password by default. I don't think this was intended...was it...?
I expect my in-game admin changes to affect the current server only, and not my default settings.
_Original issue: http://code.google.com/p/bitfighter/issues/detail?id=111_ | priority | setserverpass changes ini from on july using setserverpass in game on my vps alters the ini file so that future servers require the same server password by default i don t think this was intended was it i expect my in game admin changes to affect the current server only and not my default settings original issue | 1 |
682,999 | 23,365,423,081 | IssuesEvent | 2022-08-10 14:59:37 | sourcegraph/about | https://api.github.com/repos/sourcegraph/about | closed | Shift left paid campaign page | team/content-platform marketing-request medium priority | Stakeholders: Nick and Fabiana
What?: Create a new page following the Shift left blog post. It won't be linked anywhere on the about platform, but we will include this on the Resources page once it's available.
Why?: Will be used in paid campaigns.
Assets:
🔗[Figma](https://www.figma.com/file/qGQBcYZ5NJCWI0Yejgfr7o/Shift-left?node-id=6%3A5914)
🔗[Meta](https://docs.google.com/spreadsheets/d/1DRUw6LgyNi-WXOQmx9JIZC6H_HUslvH2IegDJINCq6A/edit#gid=1477727999)
Asana: https://app.asana.com/0/1200095757619647/1202664491027174/f | 1.0 | Shift left paid campaign page - Stakeholders: Nick and Fabiana
What?: Create a new page following the Shift left blog post. It won't be linked anywhere on the about platform, but we will include this on the Resources page once it's available.
Why?: Will be used in paid campaigns.
Assets:
🔗[Figma](https://www.figma.com/file/qGQBcYZ5NJCWI0Yejgfr7o/Shift-left?node-id=6%3A5914)
🔗[Meta](https://docs.google.com/spreadsheets/d/1DRUw6LgyNi-WXOQmx9JIZC6H_HUslvH2IegDJINCq6A/edit#gid=1477727999)
Asana: https://app.asana.com/0/1200095757619647/1202664491027174/f | priority | shift left paid campaign page stakeholders nick and fabiana what create a new page following the shift left blog post it won t be linked anywhere on the about platform but we will include this on the resources page once it s available why will be used in paid campaigns assets 🔗 🔗 asana | 1 |
244,809 | 7,880,620,723 | IssuesEvent | 2018-06-26 16:26:23 | systers/portal | https://api.github.com/repos/systers/portal | closed | API to communicate with VMS | Category: Coding Difficulty: MEDIUM Priority: HIGH Program: GSOC Status: Available Type: Enhancement | ## Description
Create an API to send data of meetups like event name, date and venue to VMS.
## Mocks
## Acceptance Criteria
### Update [Required]
- [ ] [LIST ITEMS]
### Enhancement to Update [Optional]
- [ ] [LIST ITEMS]
## Definition of Done
- [ ] All of the required items are completed.
- [ ] Approval by 1 mentor.
## Estimation
[8-9] hours
| 1.0 | API to communicate with VMS - ## Description
Create an API to send data of meetups like event name, date and venue to VMS.
## Mocks
## Acceptance Criteria
### Update [Required]
- [ ] [LIST ITEMS]
### Enhancement to Update [Optional]
- [ ] [LIST ITEMS]
## Definition of Done
- [ ] All of the required items are completed.
- [ ] Approval by 1 mentor.
## Estimation
[8-9] hours
| priority | api to communicate with vms description create an api to send data of meetups like event name date and venue to vms mocks acceptance criteria update enhancement to update definition of done all of the required items are completed approval by mentor estimation hours | 1 |
491,541 | 14,165,978,886 | IssuesEvent | 2020-11-12 08:12:41 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.0 develop-78] Synchronize start / finish working of Steam tractor modules with animation | Category: Gameplay Priority: Medium Status: Fixed | - [x] 1. Steam tractor harvester start work before animation is finished.
- [x] 2. Steam tractor plow start work before animation is finished. And I can exploit it. So when you start to plow your speed will less, but you can turn off module and when plow start to get up, you need to turn on it again and plow will start work without speed reduction.
We also can review instant turning off module after pressing Q
Video: https://drive.google.com/file/d/1aEb1CKV15cBxRAi9WqPBCRkmsYIj03z7/view?usp=sharing | 1.0 | [0.9.0 develop-78] Synchronize start / finish working of Steam tractor modules with animation - - [x] 1. Steam tractor harvester start work before animation is finished.
- [x] 2. Steam tractor plow start work before animation is finished. And I can exploit it. So when you start to plow your speed will less, but you can turn off module and when plow start to get up, you need to turn on it again and plow will start work without speed reduction.
We also can review instant turning off module after pressing Q
Video: https://drive.google.com/file/d/1aEb1CKV15cBxRAi9WqPBCRkmsYIj03z7/view?usp=sharing | priority | synchronize start finish working of steam tractor modules with animation steam tractor harvester start work before animation is finished steam tractor plow start work before animation is finished and i can exploit it so when you start to plow your speed will less but you can turn off module and when plow start to get up you need to turn on it again and plow will start work without speed reduction we also can review instant turning off module after pressing q video | 1 |
92,645 | 3,872,899,352 | IssuesEvent | 2016-04-11 15:15:46 | jcgregorio/httplib2 | https://api.github.com/repos/jcgregorio/httplib2 | closed | URL username/password not properly handled | bug imported Priority-Medium | _From [angelo.d...@gmail.com](https://code.google.com/u/105248882656744027771/) on October 04, 2011 04:47:32_
It seems like httplib2 0.7.1 does not handle URL username/password properly.
>>> response, content = h.request('http://root@buffer.antifork.org/'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 1436, in request
(response, content) = self._request(conn, authority, uri, request_uri, method, body, headers, redirections, cachekey)
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 1188, in _request
(response, content) = self._conn_request(conn, request_uri, method, body, headers)
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 1129, in _conn_request
raise ServerNotFoundError("Unable to find the server at %s" % conn.host)
httplib2.ServerNotFoundError: Unable to find the server at root@buffer.antifork.org
>>> response, content = h.request('http://root:password@buffer.antifork.org/'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 1320, in request
proxy_info=self.proxy_info)
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 758, in __init__
httplib.HTTPConnection.__init__(self, host, port, strict)
File "/usr/lib64/python2.6/httplib.py", line 661, in __init__
self._set_hostport(host, port)
File "/usr/lib64/python2.6/httplib.py", line 686, in _set_hostport
raise InvalidURL("nonnumeric port: '%s'" % host[i+1:])
Using urllib I get these results
>>> import urllib
>>> fd = urllib.urlopen('http://root@buffer.antifork.org/'
>>> fd.headers.getheader('content-length')
'23170'
>>> fd.read()[:10]
'<html>\n <'
>>>
>>> fd2 = urllib.urlopen('http://root:password@buffer.antifork.org/'
>>> fd2.headers.getheader('content-length')
'23170'
>>> fd2.read()[:10]
'<html>\n <'
_Original issue: http://code.google.com/p/httplib2/issues/detail?id=183_ | 1.0 | URL username/password not properly handled - _From [angelo.d...@gmail.com](https://code.google.com/u/105248882656744027771/) on October 04, 2011 04:47:32_
It seems like httplib2 0.7.1 does not handle URL username/password properly.
>>> response, content = h.request('http://root@buffer.antifork.org/'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 1436, in request
(response, content) = self._request(conn, authority, uri, request_uri, method, body, headers, redirections, cachekey)
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 1188, in _request
(response, content) = self._conn_request(conn, request_uri, method, body, headers)
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 1129, in _conn_request
raise ServerNotFoundError("Unable to find the server at %s" % conn.host)
httplib2.ServerNotFoundError: Unable to find the server at root@buffer.antifork.org
>>> response, content = h.request('http://root:password@buffer.antifork.org/'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 1320, in request
proxy_info=self.proxy_info)
File "/usr/lib64/python2.6/site-packages/httplib2/__init__.py", line 758, in __init__
httplib.HTTPConnection.__init__(self, host, port, strict)
File "/usr/lib64/python2.6/httplib.py", line 661, in __init__
self._set_hostport(host, port)
File "/usr/lib64/python2.6/httplib.py", line 686, in _set_hostport
raise InvalidURL("nonnumeric port: '%s'" % host[i+1:])
Using urllib I get these results
>>> import urllib
>>> fd = urllib.urlopen('http://root@buffer.antifork.org/'
>>> fd.headers.getheader('content-length')
'23170'
>>> fd.read()[:10]
'<html>\n <'
>>>
>>> fd2 = urllib.urlopen('http://root:password@buffer.antifork.org/'
>>> fd2.headers.getheader('content-length')
'23170'
>>> fd2.read()[:10]
'<html>\n <'
_Original issue: http://code.google.com/p/httplib2/issues/detail?id=183_ | priority | url username password not properly handled from on october it seems like does not handle url username password properly response content h request traceback most recent call last file line in file usr site packages init py line in request response content self request conn authority uri request uri method body headers redirections cachekey file usr site packages init py line in request response content self conn request conn request uri method body headers file usr site packages init py line in conn request raise servernotfounderror unable to find the server at s conn host servernotfounderror unable to find the server at root buffer antifork org response content h request traceback most recent call last file line in file usr site packages init py line in request proxy info self proxy info file usr site packages init py line in init httplib httpconnection init self host port strict file usr httplib py line in init self set hostport host port file usr httplib py line in set hostport raise invalidurl nonnumeric port s host using urllib i get these results import urllib fd urllib urlopen fd headers getheader content length fd read n urllib urlopen headers getheader content length read n original issue | 1 |
366,945 | 10,832,368,020 | IssuesEvent | 2019-11-11 10:26:50 | AY1920S1-CS2113T-W12-3/main | https://api.github.com/repos/AY1920S1-CS2113T-W12-3/main | closed | As a sportsman I woud like to check the equipment inventory | priority.Medium type.Story | so that I can decide if the sports facilities should be booked | 1.0 | As a sportsman I woud like to check the equipment inventory - so that I can decide if the sports facilities should be booked | priority | as a sportsman i woud like to check the equipment inventory so that i can decide if the sports facilities should be booked | 1 |
243,381 | 7,857,212,938 | IssuesEvent | 2018-06-21 10:01:40 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | opened | Advanced search button should be in active status if a filter is applied | MEV Priority: Medium Project: C040 enhancement | ### Description
Advanced search button in feature grid doesn't change style if a filter is applied,
it should be similar to `Synch map with filter` button (active green).
### Other useful information (optional):
| 1.0 | Advanced search button should be in active status if a filter is applied - ### Description
Advanced search button in feature grid doesn't change style if a filter is applied,
it should be similar to `Synch map with filter` button (active green).
### Other useful information (optional):
| priority | advanced search button should be in active status if a filter is applied description advanced search button in feature grid doesn t change style if a filter is applied it should be similar to synch map with filter button active green other useful information optional | 1 |
725,643 | 24,969,604,837 | IssuesEvent | 2022-11-01 23:05:09 | conan-io/conan | https://api.github.com/repos/conan-io/conan | closed | Backward compatible package version resolution | type: feature stage: queue priority: medium complex: medium component: graph | Hi,
So I was exploring a bit deeper into ABI compatibility of packages when I've found a problem which might not be a bug in as such, but leads to unexpected behaviour.
So, as per SemVer, the minor version change signifies a backward compatible change. That is to say, as long as the semantic version past the required one, it should be ABI compatible. Now, the default ABI compatibility is resolved by taking only the major version number into consideration. But that's not the entire story.
Let me demonstrate:
LibA 1.1 and 1.0 - shared library.
LibB 1.0 - shared library, depending on LibA 1.1
App - application, depends on LibB 1.0 and LibA 1.0
When you install the dependencies for App, what you get is a LibB 1.0.0 and a LibA 1.0.0 dependency. Even though, LibB/1.0 requires LibA/1.1 when you look at the resolution, it will be just LibA/1.0.0 which will lead on some platforms only to runtime failure. Conan will not notify me about this.
Now I know, if only I would use version ranges, this problem would be solved. Say if App would require LibA/[^1.0] then it would pick resolve the package dependency to LibA/1.1. However, this puts the burden on the client package, which looks backward to me. So soon I would find myself writing version ranges everywhere, however, it isn't really what I want. If LibB next version decides to version range its dependencies too (say, for the very same reason), then I find myself with a moving target builds.
Also, it could be just solve to make sure that I always pick the largest version number in the client package, right? But... I'm not necessary aware by default what dependencies it requires. It means that the burden is on the client package's dev to figure this out.
I propose that at least conan should warn about the discrepancy in requirements. It should be an error condition to say the least, to require a lower version number in a downstream package between minor changes. They ain't really compatible anyway, not really. It's missing the additional functionality another package requires. And, perhaps as an automated resolution to these problems, conan should have a configuration setting of some kind that allows it to pick the version by precedent, as that's the only resolution that makes any sense. Otherwise the developer must made aware of this and remedy it by matching the highest requirement. | 1.0 | Backward compatible package version resolution - Hi,
So I was exploring a bit deeper into ABI compatibility of packages when I've found a problem which might not be a bug in as such, but leads to unexpected behaviour.
So, as per SemVer, the minor version change signifies a backward compatible change. That is to say, as long as the semantic version past the required one, it should be ABI compatible. Now, the default ABI compatibility is resolved by taking only the major version number into consideration. But that's not the entire story.
Let me demonstrate:
LibA 1.1 and 1.0 - shared library.
LibB 1.0 - shared library, depending on LibA 1.1
App - application, depends on LibB 1.0 and LibA 1.0
When you install the dependencies for App, what you get is a LibB 1.0.0 and a LibA 1.0.0 dependency. Even though, LibB/1.0 requires LibA/1.1 when you look at the resolution, it will be just LibA/1.0.0 which will lead on some platforms only to runtime failure. Conan will not notify me about this.
Now I know, if only I would use version ranges, this problem would be solved. Say if App would require LibA/[^1.0] then it would pick resolve the package dependency to LibA/1.1. However, this puts the burden on the client package, which looks backward to me. So soon I would find myself writing version ranges everywhere, however, it isn't really what I want. If LibB next version decides to version range its dependencies too (say, for the very same reason), then I find myself with a moving target builds.
Also, it could be just solve to make sure that I always pick the largest version number in the client package, right? But... I'm not necessary aware by default what dependencies it requires. It means that the burden is on the client package's dev to figure this out.
I propose that at least conan should warn about the discrepancy in requirements. It should be an error condition to say the least, to require a lower version number in a downstream package between minor changes. They ain't really compatible anyway, not really. It's missing the additional functionality another package requires. And, perhaps as an automated resolution to these problems, conan should have a configuration setting of some kind that allows it to pick the version by precedent, as that's the only resolution that makes any sense. Otherwise the developer must made aware of this and remedy it by matching the highest requirement. | priority | backward compatible package version resolution hi so i was exploring a bit deeper into abi compatibility of packages when i ve found a problem which might not be a bug in as such but leads to unexpected behaviour so as per semver the minor version change signifies a backward compatible change that is to say as long as the semantic version past the required one it should be abi compatible now the default abi compatibility is resolved by taking only the major version number into consideration but that s not the entire story let me demonstrate liba and shared library libb shared library depending on liba app application depends on libb and liba when you install the dependencies for app what you get is a libb and a liba dependency even though libb requires liba when you look at the resolution it will be just liba which will lead on some platforms only to runtime failure conan will not notify me about this now i know if only i would use version ranges this problem would be solved say if app would require liba then it would pick resolve the package dependency to liba however this puts the burden on the client package which looks backward to me so soon i would find myself writing version ranges everywhere however it isn t really what i want if libb next version decides to version range its dependencies too say for the very same reason then i find myself with a moving target builds also it could be just solve to make sure that i always pick the largest version number in the client package right but i m not necessary aware by default what dependencies it requires it means that the burden is on the client package s dev to figure this out i propose that at least conan should warn about the discrepancy in requirements it should be an error condition to say the least to require a lower version number in a downstream package between minor changes they ain t really compatible anyway not really it s missing the additional functionality another package requires and perhaps as an automated resolution to these problems conan should have a configuration setting of some kind that allows it to pick the version by precedent as that s the only resolution that makes any sense otherwise the developer must made aware of this and remedy it by matching the highest requirement | 1 |
552,509 | 16,241,907,547 | IssuesEvent | 2021-05-07 10:32:52 | kubesphere/kubesphere | https://api.github.com/repos/kubesphere/kubesphere | closed | Failed to create Deployments | kind/bug priority/medium |
**Versions Used**
KubeSphere: `ks3.1`
Kubernetes: `v1.20.4`
GoVersion: `go1.15.8`
`ubuntu 16.04`
**Actual behavior**


/kind bug
/assign @wansir
/milestone 3.1.0
/priority medium | 1.0 | Failed to create Deployments -
**Versions Used**
KubeSphere: `ks3.1`
Kubernetes: `v1.20.4`
GoVersion: `go1.15.8`
`ubuntu 16.04`
**Actual behavior**


/kind bug
/assign @wansir
/milestone 3.1.0
/priority medium | priority | failed to create deployments versions used kubesphere kubernetes goversion ubuntu actual behavior kind bug assign wansir milestone priority medium | 1 |
224,187 | 7,467,620,194 | IssuesEvent | 2018-04-02 15:58:23 | radioactivecricket/PostNukeRP | https://api.github.com/repos/radioactivecricket/PostNukeRP | closed | Change Miner Repair Script to New Repair Script | Priority-Medium Type-Enhancement auto-migrated | ```
The repair scripts should use the new system designed for generators. This
system will fix current issues with repairing, and give greater functionality.
```
Original issue reported on code.google.com by `LostInTh...@gmail.com` on 30 Dec 2012 at 6:41
| 1.0 | Change Miner Repair Script to New Repair Script - ```
The repair scripts should use the new system designed for generators. This
system will fix current issues with repairing, and give greater functionality.
```
Original issue reported on code.google.com by `LostInTh...@gmail.com` on 30 Dec 2012 at 6:41
| priority | change miner repair script to new repair script the repair scripts should use the new system designed for generators this system will fix current issues with repairing and give greater functionality original issue reported on code google com by lostinth gmail com on dec at | 1 |
657,916 | 21,871,411,178 | IssuesEvent | 2022-05-19 05:52:29 | bounswe/bounswe2022group2 | https://api.github.com/repos/bounswe/bounswe2022group2 | closed | Dockerization of the project | priority-medium status-inprogress status-needreview practice-app Docker | ### Issue Description
Now that we have working parts on both frontend and backend, we can begin dockerizing our project.
I am planning on creating three containers for this project:
- mongo: default mongo container.
- backend: this container will contain the REST API
- frontend: this container will be responsible for server side rendering Vue and providing a http server
### Step Details
Steps that will be performed:
- [x] Create .env.production files for the production deployment.
- [x] Create a dockerfile to dockerize Node.js Restful API.
- [x] Create a dockerfile to dockerize Vue.js frontend.
- [x] Create a docker-compose file to run these three containers simultaneously.
### Final Actions
Upon completion, the project should be able to run on docker-compose up --build
### Deadline of the Issue
18.05.2022 Wednesday 24:00
### Reviewer
Onur Kömürcü
### Deadline for the Review
19.05.2022 Thursday 24:00 | 1.0 | Dockerization of the project - ### Issue Description
Now that we have working parts on both frontend and backend, we can begin dockerizing our project.
I am planning on creating three containers for this project:
- mongo: default mongo container.
- backend: this container will contain the REST API
- frontend: this container will be responsible for server side rendering Vue and providing a http server
### Step Details
Steps that will be performed:
- [x] Create .env.production files for the production deployment.
- [x] Create a dockerfile to dockerize Node.js Restful API.
- [x] Create a dockerfile to dockerize Vue.js frontend.
- [x] Create a docker-compose file to run these three containers simultaneously.
### Final Actions
Upon completion, the project should be able to run on docker-compose up --build
### Deadline of the Issue
18.05.2022 Wednesday 24:00
### Reviewer
Onur Kömürcü
### Deadline for the Review
19.05.2022 Thursday 24:00 | priority | dockerization of the project issue description now that we have working parts on both frontend and backend we can begin dockerizing our project i am planning on creating three containers for this project mongo default mongo container backend this container will contain the rest api frontend this container will be responsible for server side rendering vue and providing a http server step details steps that will be performed create env production files for the production deployment create a dockerfile to dockerize node js restful api create a dockerfile to dockerize vue js frontend create a docker compose file to run these three containers simultaneously final actions upon completion the project should be able to run on docker compose up build deadline of the issue wednesday reviewer onur kömürcü deadline for the review thursday | 1 |
469,041 | 13,496,469,366 | IssuesEvent | 2020-09-12 03:35:03 | Nelson-Gon/cytounet | https://api.github.com/repos/Nelson-Gon/cytounet | closed | Model fails to save when using callbacks | bug good first issue priority:medium wont-fix | - [x] I have read the [wiki](https://github.com/Nelson-Gon/cytounet/wiki) and my issue is not
handled (sufficiently) there or is not answered at all.
**Describe the bug**
After training, I used a callback as shown in the example [notebook](https://github.com/Nelson-Gon/cytounet/blob/4441d83d7a850695dc94b2f99725a4e4d07d7c59/examples/example_usage.ipynb) and found that the model was not saved at the end of each epoch.
**To Reproduce**
Run the exact code in the above notebook.
**Expected behavior**
I expected to save the model at the end of each epoch based on the loss' improvement(or not).
**Unexpected behavior**
I got no error message. The model trained successfully but required that I manually save the model at the end of the entire training.
**System Details**
Using developer version with this [hash](https://github.com/Nelson-Gon/cytounet/tree/4441d83d7a850695dc94b2f99725a4e4d07d7c59).
| 1.0 | Model fails to save when using callbacks - - [x] I have read the [wiki](https://github.com/Nelson-Gon/cytounet/wiki) and my issue is not
handled (sufficiently) there or is not answered at all.
**Describe the bug**
After training, I used a callback as shown in the example [notebook](https://github.com/Nelson-Gon/cytounet/blob/4441d83d7a850695dc94b2f99725a4e4d07d7c59/examples/example_usage.ipynb) and found that the model was not saved at the end of each epoch.
**To Reproduce**
Run the exact code in the above notebook.
**Expected behavior**
I expected to save the model at the end of each epoch based on the loss' improvement(or not).
**Unexpected behavior**
I got no error message. The model trained successfully but required that I manually save the model at the end of the entire training.
**System Details**
Using developer version with this [hash](https://github.com/Nelson-Gon/cytounet/tree/4441d83d7a850695dc94b2f99725a4e4d07d7c59).
| priority | model fails to save when using callbacks i have read the and my issue is not handled sufficiently there or is not answered at all describe the bug after training i used a callback as shown in the example and found that the model was not saved at the end of each epoch to reproduce run the exact code in the above notebook expected behavior i expected to save the model at the end of each epoch based on the loss improvement or not unexpected behavior i got no error message the model trained successfully but required that i manually save the model at the end of the entire training system details using developer version with this | 1 |
461,567 | 13,232,483,941 | IssuesEvent | 2020-08-18 13:26:11 | cyberark/conjur-authn-k8s-client | https://api.github.com/repos/cyberark/conjur-authn-k8s-client | closed | Constant CSPFK010E Failed to authenticate error on startup | component/k8s kind/bug priority/high severity/medium | ## Summary
The following failure log appears every time at the start of Secrets Provider.
```
ERROR: 2020/08/13 11:21:42 authenticator.go:140: CAKC011E Client certificate not found at '/etc/conjur/ssl/client.pem'
ERROR: 2020/08/13 11:21:42 authenticator.go:184: CAKC015E Login failed
ERROR: 2020/08/13 11:21:42 main.go:85: CSPFK010E Failed to authenticate
```
# Steps to Reproduce
Steps to reproduce the behavior:
1. Deploy the Secrets Provider or authn-client
2. Check Secrets Provider /authn client logs
3. See failure
<img width="831" alt="Screen Shot 2020-08-13 at 3 07 08 PM" src="https://user-images.githubusercontent.com/19418506/90132568-c50c0480-dd76-11ea-92ae-97f13e47e741.png">
## Expected Results
This initial error log should be appear
## Actual Results (including error logs, if applicable)
A clear and concise description of what actually did happen.
## Reproducible
* [x] Always
* [ ] Sometimes
* [ ] Non-Reproducible
## Environment setup
Can you describe the environment in which this product is running? Is it running on a VM / in a container / in a cloud?
Container locally
Which cloud provider? Which container orchestrator (including version)?
The more info you can share about your runtime environment, the better we may be able to reproduce the issue.
## Additional Information
Add any other context about the problem here. | 1.0 | Constant CSPFK010E Failed to authenticate error on startup - ## Summary
The following failure log appears every time at the start of Secrets Provider.
```
ERROR: 2020/08/13 11:21:42 authenticator.go:140: CAKC011E Client certificate not found at '/etc/conjur/ssl/client.pem'
ERROR: 2020/08/13 11:21:42 authenticator.go:184: CAKC015E Login failed
ERROR: 2020/08/13 11:21:42 main.go:85: CSPFK010E Failed to authenticate
```
# Steps to Reproduce
Steps to reproduce the behavior:
1. Deploy the Secrets Provider or authn-client
2. Check Secrets Provider /authn client logs
3. See failure
<img width="831" alt="Screen Shot 2020-08-13 at 3 07 08 PM" src="https://user-images.githubusercontent.com/19418506/90132568-c50c0480-dd76-11ea-92ae-97f13e47e741.png">
## Expected Results
This initial error log should be appear
## Actual Results (including error logs, if applicable)
A clear and concise description of what actually did happen.
## Reproducible
* [x] Always
* [ ] Sometimes
* [ ] Non-Reproducible
## Environment setup
Can you describe the environment in which this product is running? Is it running on a VM / in a container / in a cloud?
Container locally
Which cloud provider? Which container orchestrator (including version)?
The more info you can share about your runtime environment, the better we may be able to reproduce the issue.
## Additional Information
Add any other context about the problem here. | priority | constant failed to authenticate error on startup summary the following failure log appears every time at the start of secrets provider error authenticator go client certificate not found at etc conjur ssl client pem error authenticator go login failed error main go failed to authenticate steps to reproduce steps to reproduce the behavior deploy the secrets provider or authn client check secrets provider authn client logs see failure img width alt screen shot at pm src expected results this initial error log should be appear actual results including error logs if applicable a clear and concise description of what actually did happen reproducible always sometimes non reproducible environment setup can you describe the environment in which this product is running is it running on a vm in a container in a cloud container locally which cloud provider which container orchestrator including version the more info you can share about your runtime environment the better we may be able to reproduce the issue additional information add any other context about the problem here | 1 |
81,152 | 3,587,550,981 | IssuesEvent | 2016-01-30 11:29:30 | ankidroid/Anki-Android | https://api.github.com/repos/ankidroid/Anki-Android | closed | Hindi letters not shown correctly in test mode | bug Priority-Medium waitingforfeedback | Originally reported on Google Code with ID 1008
```
If using Hindi font on the phone:
e.g. the word बहिन
the word displays correctly when editing but not when testing.
Hindi is written left to right, but some combination characters appear in a slightly
different order. For example:
ka = क + ा = का
ki = क + ि = कि
This example does not show correctly when testing.
AnkiDroid version = 1.1beta12
Android version = 2.3.4
What version of AnkiDroid are you using? (Decks list > menu > About > Look
at the title)
On what version of Android? (Home screen > menu > About phone > Android
version)
```
Reported by `jackrw` on 2012-02-12 18:26:59
| 1.0 | Hindi letters not shown correctly in test mode - Originally reported on Google Code with ID 1008
```
If using Hindi font on the phone:
e.g. the word बहिन
the word displays correctly when editing but not when testing.
Hindi is written left to right, but some combination characters appear in a slightly
different order. For example:
ka = क + ा = का
ki = क + ि = कि
This example does not show correctly when testing.
AnkiDroid version = 1.1beta12
Android version = 2.3.4
What version of AnkiDroid are you using? (Decks list > menu > About > Look
at the title)
On what version of Android? (Home screen > menu > About phone > Android
version)
```
Reported by `jackrw` on 2012-02-12 18:26:59
| priority | hindi letters not shown correctly in test mode originally reported on google code with id if using hindi font on the phone e g the word बहिन the word displays correctly when editing but not when testing hindi is written left to right but some combination characters appear in a slightly different order for example ka क ा का ki क ि कि this example does not show correctly when testing ankidroid version android version what version of ankidroid are you using decks list menu about look at the title on what version of android home screen menu about phone android version reported by jackrw on | 1 |
581,289 | 17,290,452,104 | IssuesEvent | 2021-07-24 16:30:50 | Et3rnos/ImaginaryCTF | https://api.github.com/repos/Et3rnos/ImaginaryCTF | closed | Sort challenges by category | Difficulty: Medium Priority: Medium website | Ability to sort challenges by category (like check a box to only show rev challenges)
Thanks to Max49 for this suggestion | 1.0 | Sort challenges by category - Ability to sort challenges by category (like check a box to only show rev challenges)
Thanks to Max49 for this suggestion | priority | sort challenges by category ability to sort challenges by category like check a box to only show rev challenges thanks to for this suggestion | 1 |
118,574 | 4,750,808,438 | IssuesEvent | 2016-10-22 14:59:29 | CS2103AUG2016-W13-C3/main | https://api.github.com/repos/CS2103AUG2016-W13-C3/main | closed | Separate events and tasks based on their closeness to the current date. | priority.medium type.enhancement | Planned groups:
- Today
- Tomorrow
- Next Week
- Next Month ( @nginyc would this work by a static interpretation of a "month" or if the number of weeks exceed 4?)
- ??? | 1.0 | Separate events and tasks based on their closeness to the current date. - Planned groups:
- Today
- Tomorrow
- Next Week
- Next Month ( @nginyc would this work by a static interpretation of a "month" or if the number of weeks exceed 4?)
- ??? | priority | separate events and tasks based on their closeness to the current date planned groups today tomorrow next week next month nginyc would this work by a static interpretation of a month or if the number of weeks exceed | 1 |
354,722 | 10,571,418,953 | IssuesEvent | 2019-10-07 07:04:10 | AY1920S1-CS2113-T16-1/main | https://api.github.com/repos/AY1920S1-CS2113-T16-1/main | opened | As a student, I want to import from other task list | priority.Medium type.Story | If the user want to import another task list: Import FILENAME.
The FILENAME is path to the file
Be careful:
The file must be in the same format as every file in the project
The file must be in the directory data | 1.0 | As a student, I want to import from other task list - If the user want to import another task list: Import FILENAME.
The FILENAME is path to the file
Be careful:
The file must be in the same format as every file in the project
The file must be in the directory data | priority | as a student i want to import from other task list if the user want to import another task list import filename the filename is path to the file be careful the file must be in the same format as every file in the project the file must be in the directory data | 1 |
325,837 | 9,936,554,898 | IssuesEvent | 2019-07-02 19:26:46 | aseprite/aseprite | https://api.github.com/repos/aseprite/aseprite | closed | Native (macOS) File Dialog doesn't respect default file extension preferences | bug critical priority macos medium complexity | When I go to export a file, the "Output File" field will have the file name with the appropriate file extension that's set under Preferences > Files.
However, if "Use native file dialog" is enabled under Preferences > Experimental, and I click on the [...] button in Export File, the native file dialog defaults to .aseprite.


### Aseprite and System version
* Aseprite version: v1.2.9
* System: macOS
| 1.0 | Native (macOS) File Dialog doesn't respect default file extension preferences - When I go to export a file, the "Output File" field will have the file name with the appropriate file extension that's set under Preferences > Files.
However, if "Use native file dialog" is enabled under Preferences > Experimental, and I click on the [...] button in Export File, the native file dialog defaults to .aseprite.


### Aseprite and System version
* Aseprite version: v1.2.9
* System: macOS
| priority | native macos file dialog doesn t respect default file extension preferences when i go to export a file the output file field will have the file name with the appropriate file extension that s set under preferences files however if use native file dialog is enabled under preferences experimental and i click on the button in export file the native file dialog defaults to aseprite aseprite and system version aseprite version system macos | 1 |
364,785 | 10,773,260,602 | IssuesEvent | 2019-11-02 19:34:08 | carbon-design-system/gatsby-theme-carbon | https://api.github.com/repos/carbon-design-system/gatsby-theme-carbon | closed | InlineNotification spacing is too big | Severity 3 priority: medium | from @shixiedesign (Updated to 24 top and bottom!)
> Spacing around inline notification is too big. Ideally it can be closer to the element above it. Ideally 24px.

Currently spacing is 16px above and below, @vpicone remind me how we are handling spacing, we should remove the top spacing from this component, correct?

| 1.0 | InlineNotification spacing is too big - from @shixiedesign (Updated to 24 top and bottom!)
> Spacing around inline notification is too big. Ideally it can be closer to the element above it. Ideally 24px.

Currently spacing is 16px above and below, @vpicone remind me how we are handling spacing, we should remove the top spacing from this component, correct?

| priority | inlinenotification spacing is too big from shixiedesign updated to top and bottom spacing around inline notification is too big ideally it can be closer to the element above it ideally currently spacing is above and below vpicone remind me how we are handling spacing we should remove the top spacing from this component correct | 1 |
316,281 | 9,639,962,255 | IssuesEvent | 2019-05-16 14:34:42 | inverse-inc/packetfence | https://api.github.com/repos/inverse-inc/packetfence | closed | webadmin: default description for new connection profiles | Priority: Medium Type: Bug | Before v9, when you create a connection profile without description, backend didn't set a default description.
Now when you create a new connection profile, default description is "Default profile".
If you upgrade from v8.3 to v9 and you didn't set a description on your connection profiles, all your connection profiles are called "Default Profile"
From my point of view, Description should be set to an empty value. | 1.0 | webadmin: default description for new connection profiles - Before v9, when you create a connection profile without description, backend didn't set a default description.
Now when you create a new connection profile, default description is "Default profile".
If you upgrade from v8.3 to v9 and you didn't set a description on your connection profiles, all your connection profiles are called "Default Profile"
From my point of view, Description should be set to an empty value. | priority | webadmin default description for new connection profiles before when you create a connection profile without description backend didn t set a default description now when you create a new connection profile default description is default profile if you upgrade from to and you didn t set a description on your connection profiles all your connection profiles are called default profile from my point of view description should be set to an empty value | 1 |
417,217 | 12,157,125,047 | IssuesEvent | 2020-04-25 20:25:18 | bounswe/bounswe2020group2 | https://api.github.com/repos/bounswe/bounswe2020group2 | closed | Creating an agenda to discuss problems through week | effort: low priority: medium question status: in progress status: needs review type: discussion type: suggestion type: wiki who: group | Agenda includes every week homework's topic instructor's comment about intented to enhance or deficiencies of our stuff. Everyone can contribute agenda by writing topics that he/she want to put forward. I will collect all of them and write them on Meeting Notes under wiki page. | 1.0 | Creating an agenda to discuss problems through week - Agenda includes every week homework's topic instructor's comment about intented to enhance or deficiencies of our stuff. Everyone can contribute agenda by writing topics that he/she want to put forward. I will collect all of them and write them on Meeting Notes under wiki page. | priority | creating an agenda to discuss problems through week agenda includes every week homework s topic instructor s comment about intented to enhance or deficiencies of our stuff everyone can contribute agenda by writing topics that he she want to put forward i will collect all of them and write them on meeting notes under wiki page | 1 |
309,780 | 9,480,178,755 | IssuesEvent | 2019-04-20 15:35:49 | minio/minio | https://api.github.com/repos/minio/minio | reopened | Default Windows cert path is incorrect | community priority: medium working as intended | ~6 months ago I setup a minio as multi-tentant after following https://forum.duplicati.com/t/setting-up-self-hosted-minio-on-windows-10-with-automatically-renewing-ssl-certificate/645 to backup several computers. It has been running great with no issues, but finally decided to upgrade just to keep things up to date and secure.
I now get the following when trying to launch the server
'''D:\minio>minio.exe server --address :58001 --config-dir C:\Users\BGodd\.minio-tenant1 D:\minio-data\tenant1\
7[41m[37m[1mERROR[0m[0m[0m 8[6C[31mUnable to load the TLS configuration: [1mCreateFile /C:\Users\BGodd\.minio\certs: The filename, directory name, or volume label syntax is incorrect..[0m[0m'''
The certificates are present in C:\Users\BGodd\.minio\certs and work fine with the old version.
D:\minio>minio.exe version
Version: 2019-04-18T21:44:59Z
Release-Tag: RELEASE.2019-04-18T21-44-59Z
Commit-ID: 2c096c569f2e57408ae657c669dc5740cba7a603
Windows 10 Pro version 1806 build 17134.706
| 1.0 | Default Windows cert path is incorrect - ~6 months ago I setup a minio as multi-tentant after following https://forum.duplicati.com/t/setting-up-self-hosted-minio-on-windows-10-with-automatically-renewing-ssl-certificate/645 to backup several computers. It has been running great with no issues, but finally decided to upgrade just to keep things up to date and secure.
I now get the following when trying to launch the server
'''D:\minio>minio.exe server --address :58001 --config-dir C:\Users\BGodd\.minio-tenant1 D:\minio-data\tenant1\
7[41m[37m[1mERROR[0m[0m[0m 8[6C[31mUnable to load the TLS configuration: [1mCreateFile /C:\Users\BGodd\.minio\certs: The filename, directory name, or volume label syntax is incorrect..[0m[0m'''
The certificates are present in C:\Users\BGodd\.minio\certs and work fine with the old version.
D:\minio>minio.exe version
Version: 2019-04-18T21:44:59Z
Release-Tag: RELEASE.2019-04-18T21-44-59Z
Commit-ID: 2c096c569f2e57408ae657c669dc5740cba7a603
Windows 10 Pro version 1806 build 17134.706
| priority | default windows cert path is incorrect months ago i setup a minio as multi tentant after following to backup several computers it has been running great with no issues but finally decided to upgrade just to keep things up to date and secure i now get the following when trying to launch the server d minio minio exe server address config dir c users bgodd minio d minio data to load the tls configuration c users bgodd minio certs the filename directory name or volume label syntax is incorrect the certificates are present in c users bgodd minio certs and work fine with the old version d minio minio exe version version release tag release commit id windows pro version build | 1 |
539,513 | 15,790,152,136 | IssuesEvent | 2021-04-02 00:39:35 | codidact/qpixel | https://api.github.com/repos/codidact/qpixel | opened | Can we show the usercard stats, including rep, on the user profile? | area: html/css/js complexity: unassessed priority: medium type: change request | Usercards contain several (configurable) stats, including reputation. Can we find a way to show that same information on the user profile, too? We show some info in the right column, like number of posts, but not other info like number of edits. Or rep, which people ask about.
One way to do it would be to add a row of stats under the avatar and above the abilities block. It could be the same presentation as on the usercard -- icons, numbers, tooltips. (But I would put rep on the same line, not above it, since there's room and I think that would look tidier.) Ideally we'd show the same stats that are configured on that community for usercards, though I think it's also fine to show all of them.
It seems odd to have to leave the profile page and go to a post in order to see these stats.
| 1.0 | Can we show the usercard stats, including rep, on the user profile? - Usercards contain several (configurable) stats, including reputation. Can we find a way to show that same information on the user profile, too? We show some info in the right column, like number of posts, but not other info like number of edits. Or rep, which people ask about.
One way to do it would be to add a row of stats under the avatar and above the abilities block. It could be the same presentation as on the usercard -- icons, numbers, tooltips. (But I would put rep on the same line, not above it, since there's room and I think that would look tidier.) Ideally we'd show the same stats that are configured on that community for usercards, though I think it's also fine to show all of them.
It seems odd to have to leave the profile page and go to a post in order to see these stats.
| priority | can we show the usercard stats including rep on the user profile usercards contain several configurable stats including reputation can we find a way to show that same information on the user profile too we show some info in the right column like number of posts but not other info like number of edits or rep which people ask about one way to do it would be to add a row of stats under the avatar and above the abilities block it could be the same presentation as on the usercard icons numbers tooltips but i would put rep on the same line not above it since there s room and i think that would look tidier ideally we d show the same stats that are configured on that community for usercards though i think it s also fine to show all of them it seems odd to have to leave the profile page and go to a post in order to see these stats | 1 |
551,915 | 16,191,240,857 | IssuesEvent | 2021-05-04 08:47:37 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | If 'Disable Title Screen' is enabled in the debug tuner, dont do the game-entry fade out/in | Category: Tech Priority: Medium Squad: Mountain Goat Status: Fixed | Just pop it. This will make things faster for debugging. It adds up when iterating a lot of client disconnects/reconnects. | 1.0 | If 'Disable Title Screen' is enabled in the debug tuner, dont do the game-entry fade out/in - Just pop it. This will make things faster for debugging. It adds up when iterating a lot of client disconnects/reconnects. | priority | if disable title screen is enabled in the debug tuner dont do the game entry fade out in just pop it this will make things faster for debugging it adds up when iterating a lot of client disconnects reconnects | 1 |
652,462 | 21,553,181,407 | IssuesEvent | 2022-04-30 01:44:49 | ml4ai/tomcat | https://api.github.com/repos/ml4ai/tomcat | closed | Aurora stops working after quit & prevents shutdown | bug Priority: Medium | At the stress test on 04/19, we noticed that after data collection was finished, Aurora refused to shut down properly on Leopard and Lion.
Solution: go to activity monitor, double click on aurora, select "force quit".
This worked for Leopard, but not for Lion, although it initially looked as if it had worked for both.
We tried to shut down Lion, and it seemed to work, but some reminiscent piece of the bugging aurora software prevented the shutdown at the last instance (without throwing an error). Solution: Click on the apple symbol (top left), choose "force quit" and select Aurora. Only then, the shutdown will complete.
We need to monitor these issues to make sure we can safely shutdown all iMacs. | 1.0 | Aurora stops working after quit & prevents shutdown - At the stress test on 04/19, we noticed that after data collection was finished, Aurora refused to shut down properly on Leopard and Lion.
Solution: go to activity monitor, double click on aurora, select "force quit".
This worked for Leopard, but not for Lion, although it initially looked as if it had worked for both.
We tried to shut down Lion, and it seemed to work, but some reminiscent piece of the bugging aurora software prevented the shutdown at the last instance (without throwing an error). Solution: Click on the apple symbol (top left), choose "force quit" and select Aurora. Only then, the shutdown will complete.
We need to monitor these issues to make sure we can safely shutdown all iMacs. | priority | aurora stops working after quit prevents shutdown at the stress test on we noticed that after data collection was finished aurora refused to shut down properly on leopard and lion solution go to activity monitor double click on aurora select force quit this worked for leopard but not for lion although it initially looked as if it had worked for both we tried to shut down lion and it seemed to work but some reminiscent piece of the bugging aurora software prevented the shutdown at the last instance without throwing an error solution click on the apple symbol top left choose force quit and select aurora only then the shutdown will complete we need to monitor these issues to make sure we can safely shutdown all imacs | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.