Unnamed: 0
int64
3
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
7
112
repo_url
stringlengths
36
141
action
stringclasses
3 values
title
stringlengths
2
742
labels
stringlengths
4
431
body
stringlengths
5
239k
index
stringclasses
10 values
text_combine
stringlengths
96
240k
label
stringclasses
2 values
text
stringlengths
96
200k
binary_label
int64
0
1
291,019
8,916,240,409
IssuesEvent
2019-01-19 14:44:41
neuropoly/spinalcordtoolbox
https://api.github.com/repos/neuropoly/spinalcordtoolbox
closed
Flag -initc2 does not work anymore
bug priority:HIGH sct_label_vertebrae
When running: ~~~ sct_label_vertebrae -i t2.nii.gz -s t2_seg.nii.gz -c t2 -initc2 -- Spinal Cord Toolbox (master/8b6520ea22d08ae441c4abb5aea272f64f87e831) ~~~ An interactive window should open. It does not anymore. Probably a regression bug. SCT version indicated above.
1.0
Flag -initc2 does not work anymore - When running: ~~~ sct_label_vertebrae -i t2.nii.gz -s t2_seg.nii.gz -c t2 -initc2 -- Spinal Cord Toolbox (master/8b6520ea22d08ae441c4abb5aea272f64f87e831) ~~~ An interactive window should open. It does not anymore. Probably a regression bug. SCT version indicated above.
non_usab
flag does not work anymore when running sct label vertebrae i nii gz s seg nii gz c spinal cord toolbox master an interactive window should open it does not anymore probably a regression bug sct version indicated above
0
11,944
7,549,715,484
IssuesEvent
2018-04-18 14:55:35
bardsoftware/ganttproject
https://api.github.com/repos/bardsoftware/ganttproject
closed
Change shortcut for zoom from Wheel to CTRL+Wheel
Fix committed to the repository Usability __Target-Pilsen
Hi, GanttProject is an useful soft but as discuss [here](https://help.ganttproject.biz/t/lock-zoom-level/441) it's very annoying to change zoom level by mouse wheel. It's the first time I look at the GanttProject source code but with this [doc](https://docs.ganttproject.biz/development/build/index.html) I successfully modify the Zoom shortcut. In the file [MouseWheelListenerBase.java](https://github.com/bardsoftware/ganttproject/blob/master/ganttproject/src/net/sourceforge/ganttproject/chart/mouse/MouseWheelListenerBase.java) I modified the function `mouseWheelMoved` to check if CTRL key is pressed. This works fine ! ``` public void mouseWheelMoved(MouseWheelEvent e) { if (e.isControlDown()) { if (isRotationUp(e)) { fireZoomIn(); } else { fireZoomOut(); } } } ``` What's the next step ? Add an option somewhere ? After that I would like to assign Wheel to scroll down/up and SHIFT+Wheel to sroll left/right but it's seems to be a little more complex. Should I add the `ScrollViewInteraction` in MouseWheelListenerBase.java or Should I add `MouseWheelEvent` in `ScrollViewInteraction` ? Champal
True
Change shortcut for zoom from Wheel to CTRL+Wheel - Hi, GanttProject is an useful soft but as discuss [here](https://help.ganttproject.biz/t/lock-zoom-level/441) it's very annoying to change zoom level by mouse wheel. It's the first time I look at the GanttProject source code but with this [doc](https://docs.ganttproject.biz/development/build/index.html) I successfully modify the Zoom shortcut. In the file [MouseWheelListenerBase.java](https://github.com/bardsoftware/ganttproject/blob/master/ganttproject/src/net/sourceforge/ganttproject/chart/mouse/MouseWheelListenerBase.java) I modified the function `mouseWheelMoved` to check if CTRL key is pressed. This works fine ! ``` public void mouseWheelMoved(MouseWheelEvent e) { if (e.isControlDown()) { if (isRotationUp(e)) { fireZoomIn(); } else { fireZoomOut(); } } } ``` What's the next step ? Add an option somewhere ? After that I would like to assign Wheel to scroll down/up and SHIFT+Wheel to sroll left/right but it's seems to be a little more complex. Should I add the `ScrollViewInteraction` in MouseWheelListenerBase.java or Should I add `MouseWheelEvent` in `ScrollViewInteraction` ? Champal
usab
change shortcut for zoom from wheel to ctrl wheel hi ganttproject is an useful soft but as discuss it s very annoying to change zoom level by mouse wheel it s the first time i look at the ganttproject source code but with this i successfully modify the zoom shortcut in the file i modified the function mousewheelmoved to check if ctrl key is pressed this works fine public void mousewheelmoved mousewheelevent e if e iscontroldown if isrotationup e firezoomin else firezoomout what s the next step add an option somewhere after that i would like to assign wheel to scroll down up and shift wheel to sroll left right but it s seems to be a little more complex should i add the scrollviewinteraction in mousewheellistenerbase java or should i add mousewheelevent in scrollviewinteraction champal
1
106,558
16,684,262,248
IssuesEvent
2021-06-08 05:59:42
brigadecore/brigade
https://api.github.com/repos/brigadecore/brigade
closed
Add yarn audit job
2.0 good first issue security
We should add a job to our brigade.js to run `yarn audit`. GitHub automatically scans for npm dependencies with known vulnerabilities, but it only seems to do this for master/main branches. I'd like to get these same checks happening on our `v2` development branch on a regular basis.
True
Add yarn audit job - We should add a job to our brigade.js to run `yarn audit`. GitHub automatically scans for npm dependencies with known vulnerabilities, but it only seems to do this for master/main branches. I'd like to get these same checks happening on our `v2` development branch on a regular basis.
non_usab
add yarn audit job we should add a job to our brigade js to run yarn audit github automatically scans for npm dependencies with known vulnerabilities but it only seems to do this for master main branches i d like to get these same checks happening on our development branch on a regular basis
0
18,377
12,830,840,504
IssuesEvent
2020-07-07 03:25:07
scala/bug
https://api.github.com/repos/scala/bug
closed
Feature warning text seems to be word-wrapped and unnecessarily verbose, unlike all other warnings
usability
I can't for the life of me understand where/how these messages are getting made like that, but there are many tests that rely on this formatting. In t6040.check, for example, you'll find: ``` error: extension of type scala.Dynamic needs to be enabled by making the implicit value language.dynamics visible. This can be achieved by adding the import clause 'import language.dynamics' or by setting the compiler option -language:dynamics. See the Scala docs for value scala.language.dynamics for a discussion why the feature needs to be explicitly enabled. one error found ``` Line breaks in messages mess with many build systems and generally it doesn't seem like a presentation-level detail like terminal width should have much bearing on compiler output.
True
Feature warning text seems to be word-wrapped and unnecessarily verbose, unlike all other warnings - I can't for the life of me understand where/how these messages are getting made like that, but there are many tests that rely on this formatting. In t6040.check, for example, you'll find: ``` error: extension of type scala.Dynamic needs to be enabled by making the implicit value language.dynamics visible. This can be achieved by adding the import clause 'import language.dynamics' or by setting the compiler option -language:dynamics. See the Scala docs for value scala.language.dynamics for a discussion why the feature needs to be explicitly enabled. one error found ``` Line breaks in messages mess with many build systems and generally it doesn't seem like a presentation-level detail like terminal width should have much bearing on compiler output.
usab
feature warning text seems to be word wrapped and unnecessarily verbose unlike all other warnings i can t for the life of me understand where how these messages are getting made like that but there are many tests that rely on this formatting in check for example you ll find error extension of type scala dynamic needs to be enabled by making the implicit value language dynamics visible this can be achieved by adding the import clause import language dynamics or by setting the compiler option language dynamics see the scala docs for value scala language dynamics for a discussion why the feature needs to be explicitly enabled one error found line breaks in messages mess with many build systems and generally it doesn t seem like a presentation level detail like terminal width should have much bearing on compiler output
1
276,667
20,994,784,999
IssuesEvent
2022-03-29 12:38:35
embedded-office/canopen-stack
https://api.github.com/repos/embedded-office/canopen-stack
closed
Add SYNC producer website documentation
documentation
Add website documentation: - [x] API function documentation - [x] CANopen usage documentation
1.0
Add SYNC producer website documentation - Add website documentation: - [x] API function documentation - [x] CANopen usage documentation
non_usab
add sync producer website documentation add website documentation api function documentation canopen usage documentation
0
288,522
31,861,434,816
IssuesEvent
2023-09-15 11:13:09
nidhi7598/linux-v4.19.72_CVE-2022-3564
https://api.github.com/repos/nidhi7598/linux-v4.19.72_CVE-2022-3564
opened
CVE-2020-25671 (High) detected in linuxlinux-4.19.294
Mend: dependency security vulnerability
## CVE-2020-25671 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.294</b></p></summary> <p> <p>The Linux Kernel</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-v4.19.72_CVE-2022-3564/commit/9ffee08efa44c7887e2babb8f304df0fa1094efb">9ffee08efa44c7887e2babb8f304df0fa1094efb</a></p> <p>Found in base branch: <b>main</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/nfc/llcp_sock.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/nfc/llcp_sock.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> A vulnerability was found in Linux Kernel, where a refcount leak in llcp_sock_connect() causing use-after-free which might lead to privilege escalations. <p>Publish Date: 2021-05-26 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-25671>CVE-2020-25671</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2020-25671">https://nvd.nist.gov/vuln/detail/CVE-2020-25671</a></p> <p>Release Date: 2021-05-26</p> <p>Fix Resolution: linux-libc-headers - 5.13;linux-yocto - 4.8.26+gitAUTOINC+1c60e003c7_27efc3ba68,5.4.20+gitAUTOINC+c11911d4d1_f4d7dbafb1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-25671 (High) detected in linuxlinux-4.19.294 - ## CVE-2020-25671 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.294</b></p></summary> <p> <p>The Linux Kernel</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-v4.19.72_CVE-2022-3564/commit/9ffee08efa44c7887e2babb8f304df0fa1094efb">9ffee08efa44c7887e2babb8f304df0fa1094efb</a></p> <p>Found in base branch: <b>main</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/nfc/llcp_sock.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/nfc/llcp_sock.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> A vulnerability was found in Linux Kernel, where a refcount leak in llcp_sock_connect() causing use-after-free which might lead to privilege escalations. <p>Publish Date: 2021-05-26 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-25671>CVE-2020-25671</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2020-25671">https://nvd.nist.gov/vuln/detail/CVE-2020-25671</a></p> <p>Release Date: 2021-05-26</p> <p>Fix Resolution: linux-libc-headers - 5.13;linux-yocto - 4.8.26+gitAUTOINC+1c60e003c7_27efc3ba68,5.4.20+gitAUTOINC+c11911d4d1_f4d7dbafb1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_usab
cve high detected in linuxlinux cve high severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch main vulnerable source files net nfc llcp sock c net nfc llcp sock c vulnerability details a vulnerability was found in linux kernel where a refcount leak in llcp sock connect causing use after free which might lead to privilege escalations publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution linux libc headers linux yocto gitautoinc gitautoinc step up your open source security game with mend
0
25,753
2,683,966,598
IssuesEvent
2015-03-28 14:34:31
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
closed
ConEmu 5.101021 схлопывание FAR & Conemu процессов при навигации по табам с помощью мыши в FAR1.75
1 star bug imported Priority-Medium
_From [Zero...@gmail.com](https://code.google.com/u/103642962356045697092/) on October 22, 2010 06:26:49_ FAR 1.75 build 2632 x86 без плагинов кроме Conemu ConEmu .Maximus5.101021.7z проверен и с дефолтными настройками запускаем FAR, открываем в редакторе/вьюере любой файл, образуется новый TAB пытаемся переключится между табами с помощью Ctrl-Tab видим что всё OK. TABs переключаются между собой, пробуем тоже самое сделать мышкой и сразу же получаем сообщение возле TAB'a "This tab can't be activated now!", переключаемся опять мышкой опять получаем такое же сообщение после чего FAR схлопывается. воспроизведение проблемы 100&#37; проблемы c FAR2 такой нет. Проблема началась с ConEmu .Maximus5.101017.7z по ConEmu .Maximus5.101021.7z с версией ConEmu .Maximus5.100919a.7z и младше проблемы нет. получающиеся трап логи 1FStd_trap.log 2FStd_trap.log _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=311_
1.0
ConEmu 5.101021 схлопывание FAR & Conemu процессов при навигации по табам с помощью мыши в FAR1.75 - _From [Zero...@gmail.com](https://code.google.com/u/103642962356045697092/) on October 22, 2010 06:26:49_ FAR 1.75 build 2632 x86 без плагинов кроме Conemu ConEmu .Maximus5.101021.7z проверен и с дефолтными настройками запускаем FAR, открываем в редакторе/вьюере любой файл, образуется новый TAB пытаемся переключится между табами с помощью Ctrl-Tab видим что всё OK. TABs переключаются между собой, пробуем тоже самое сделать мышкой и сразу же получаем сообщение возле TAB'a "This tab can't be activated now!", переключаемся опять мышкой опять получаем такое же сообщение после чего FAR схлопывается. воспроизведение проблемы 100&#37; проблемы c FAR2 такой нет. Проблема началась с ConEmu .Maximus5.101017.7z по ConEmu .Maximus5.101021.7z с версией ConEmu .Maximus5.100919a.7z и младше проблемы нет. получающиеся трап логи 1FStd_trap.log 2FStd_trap.log _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=311_
non_usab
conemu схлопывание far conemu процессов при навигации по табам с помощью мыши в from on october far build без плагинов кроме conemu conemu проверен и с дефолтными настройками запускаем far открываем в редакторе вьюере любой файл образуется новый tab пытаемся переключится между табами с помощью ctrl tab видим что всё ok tabs переключаются между собой пробуем тоже самое сделать мышкой и сразу же получаем сообщение возле tab a this tab can t be activated now переключаемся опять мышкой опять получаем такое же сообщение после чего far схлопывается воспроизведение проблемы проблемы c такой нет проблема началась с conemu по conemu с версией conemu и младше проблемы нет получающиеся трап логи trap log trap log original issue
0
19,628
14,350,715,556
IssuesEvent
2020-11-29 22:06:26
severinsimmler/chaine
https://api.github.com/repos/severinsimmler/chaine
opened
Make the high-level API more user friendly
usability
Think about real-world scenarios how the library might be used
True
Make the high-level API more user friendly - Think about real-world scenarios how the library might be used
usab
make the high level api more user friendly think about real world scenarios how the library might be used
1
20,676
15,859,435,915
IssuesEvent
2021-04-08 08:01:12
camunda-cloud/zeebe
https://api.github.com/repos/camunda-cloud/zeebe
closed
Improve Process rejection error message
Impact: Data Impact: Usability Scope: broker Type: Maintenance
**Description** If a user deploys a process model with unsupported elements it gets a quite cryptic failure message. This is then also printed in the brokers log. Example output ``` Expand all | Collapse all{ insertId: "1vpgyu7g4jgwbzq" jsonPayload: { @type: "type.googleapis.com/google.devtools.clouderrorreporting.v1beta1.ReportedErrorEvent" context: {…} exception: "java.lang.ClassCastException: class org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl cannot be cast to class io.zeebe.model.bpmn.instance.BpmnModelElementInstance (org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl and io.zeebe.model.bpmn.instance.BpmnModelElementInstance are in unnamed module of loader 'app') at java.util.ArrayList.forEach(Unknown Source) ~[?:?] at io.zeebe.model.bpmn.traversal.ModelWalker.walk(ModelWalker.java:62) ~[zeebe-bpmn-model-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.deployment.transform.BpmnValidator.validate(BpmnValidator.java:40) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.deployment.transform.DeploymentTransformer.transformResource(DeploymentTransformer.java:113) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.deployment.transform.DeploymentTransformer.transform(DeploymentTransformer.java:90) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.deployment.DeploymentCreateProcessor.processRecord(DeploymentCreateProcessor.java:89) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.TypedRecordProcessor.processRecord(TypedRecordProcessor.java:54) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.lambda$processInTransaction$3(ProcessingStateMachine.java:296) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.db.impl.rocksdb.transaction.ZeebeTransaction.run(ZeebeTransaction.java:84) ~[zeebe-db-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.processInTransaction(ProcessingStateMachine.java:286) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.processEvent(ProcessingStateMachine.java:254) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.tryToReadNextEvent(ProcessingStateMachine.java:219) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.readNextEvent(ProcessingStateMachine.java:210) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorJob.invoke(ActorJob.java:76) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorJob.execute(ActorJob.java:39) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorTask.execute(ActorTask.java:122) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorThread.executeCurrentTask(ActorThread.java:94) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorThread.doWork(ActorThread.java:78) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorThread.run(ActorThread.java:191) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] " logger: "io.zeebe.broker.process" message: "Unexpected error while processing resource 'blocking.bpmn'" serviceContext: {…} thread: "Broker-1-zb-actors-0" } ``` For a model which contains user task. ![blocking](https://user-images.githubusercontent.com/2758593/113831643-1d6d9780-9788-11eb-81f8-f8b8314ab1fb.png) [blocking.bpmn.txt](https://github.com/camunda-cloud/zeebe/files/6269967/blocking.bpmn.txt)
True
Improve Process rejection error message - **Description** If a user deploys a process model with unsupported elements it gets a quite cryptic failure message. This is then also printed in the brokers log. Example output ``` Expand all | Collapse all{ insertId: "1vpgyu7g4jgwbzq" jsonPayload: { @type: "type.googleapis.com/google.devtools.clouderrorreporting.v1beta1.ReportedErrorEvent" context: {…} exception: "java.lang.ClassCastException: class org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl cannot be cast to class io.zeebe.model.bpmn.instance.BpmnModelElementInstance (org.camunda.bpm.model.xml.impl.instance.ModelElementInstanceImpl and io.zeebe.model.bpmn.instance.BpmnModelElementInstance are in unnamed module of loader 'app') at java.util.ArrayList.forEach(Unknown Source) ~[?:?] at io.zeebe.model.bpmn.traversal.ModelWalker.walk(ModelWalker.java:62) ~[zeebe-bpmn-model-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.deployment.transform.BpmnValidator.validate(BpmnValidator.java:40) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.deployment.transform.DeploymentTransformer.transformResource(DeploymentTransformer.java:113) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.deployment.transform.DeploymentTransformer.transform(DeploymentTransformer.java:90) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.deployment.DeploymentCreateProcessor.processRecord(DeploymentCreateProcessor.java:89) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.TypedRecordProcessor.processRecord(TypedRecordProcessor.java:54) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.lambda$processInTransaction$3(ProcessingStateMachine.java:296) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.db.impl.rocksdb.transaction.ZeebeTransaction.run(ZeebeTransaction.java:84) ~[zeebe-db-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.processInTransaction(ProcessingStateMachine.java:286) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.processEvent(ProcessingStateMachine.java:254) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.tryToReadNextEvent(ProcessingStateMachine.java:219) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.engine.processing.streamprocessor.ProcessingStateMachine.readNextEvent(ProcessingStateMachine.java:210) ~[zeebe-workflow-engine-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorJob.invoke(ActorJob.java:76) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorJob.execute(ActorJob.java:39) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorTask.execute(ActorTask.java:122) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorThread.executeCurrentTask(ActorThread.java:94) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorThread.doWork(ActorThread.java:78) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] at io.zeebe.util.sched.ActorThread.run(ActorThread.java:191) [zeebe-util-1.0.0-alpha4.jar:1.0.0-alpha4] " logger: "io.zeebe.broker.process" message: "Unexpected error while processing resource 'blocking.bpmn'" serviceContext: {…} thread: "Broker-1-zb-actors-0" } ``` For a model which contains user task. ![blocking](https://user-images.githubusercontent.com/2758593/113831643-1d6d9780-9788-11eb-81f8-f8b8314ab1fb.png) [blocking.bpmn.txt](https://github.com/camunda-cloud/zeebe/files/6269967/blocking.bpmn.txt)
usab
improve process rejection error message description if a user deploys a process model with unsupported elements it gets a quite cryptic failure message this is then also printed in the brokers log example output expand all collapse all insertid jsonpayload type type googleapis com google devtools clouderrorreporting reportederrorevent context … exception java lang classcastexception class org camunda bpm model xml impl instance modelelementinstanceimpl cannot be cast to class io zeebe model bpmn instance bpmnmodelelementinstance org camunda bpm model xml impl instance modelelementinstanceimpl and io zeebe model bpmn instance bpmnmodelelementinstance are in unnamed module of loader app at java util arraylist foreach unknown source at io zeebe model bpmn traversal modelwalker walk modelwalker java at io zeebe engine processing deployment transform bpmnvalidator validate bpmnvalidator java at io zeebe engine processing deployment transform deploymenttransformer transformresource deploymenttransformer java at io zeebe engine processing deployment transform deploymenttransformer transform deploymenttransformer java at io zeebe engine processing deployment deploymentcreateprocessor processrecord deploymentcreateprocessor java at io zeebe engine processing streamprocessor typedrecordprocessor processrecord typedrecordprocessor java at io zeebe engine processing streamprocessor processingstatemachine lambda processintransaction processingstatemachine java at io zeebe db impl rocksdb transaction zeebetransaction run zeebetransaction java at io zeebe engine processing streamprocessor processingstatemachine processintransaction processingstatemachine java at io zeebe engine processing streamprocessor processingstatemachine processevent processingstatemachine java at io zeebe engine processing streamprocessor processingstatemachine trytoreadnextevent processingstatemachine java at io zeebe engine processing streamprocessor processingstatemachine readnextevent processingstatemachine java at io zeebe util sched actorjob invoke actorjob java at io zeebe util sched actorjob execute actorjob java at io zeebe util sched actortask execute actortask java at io zeebe util sched actorthread executecurrenttask actorthread java at io zeebe util sched actorthread dowork actorthread java at io zeebe util sched actorthread run actorthread java logger io zeebe broker process message unexpected error while processing resource blocking bpmn servicecontext … thread broker zb actors for a model which contains user task
1
101,649
21,766,361,644
IssuesEvent
2022-05-13 02:40:53
withfig/fig
https://api.github.com/repos/withfig/fig
closed
[Bug] Command History with custom keybinding
type:bug codebase:autocomplete-app
# Summary After setting `fig settings autocomplete.keybindings.up toggleHistoryMode` to trigger command substring history using the up arrow in the list of history does not work as expected. # Expected When presented with a list of command history, you should be able to scroll up with the up arrow # Actual Scrolling in the command history only works with down arrow since up arrow is bound to triggering the command history. Resulting in the list re-rendering and selection jumping back to top.
1.0
[Bug] Command History with custom keybinding - # Summary After setting `fig settings autocomplete.keybindings.up toggleHistoryMode` to trigger command substring history using the up arrow in the list of history does not work as expected. # Expected When presented with a list of command history, you should be able to scroll up with the up arrow # Actual Scrolling in the command history only works with down arrow since up arrow is bound to triggering the command history. Resulting in the list re-rendering and selection jumping back to top.
non_usab
command history with custom keybinding summary after setting fig settings autocomplete keybindings up togglehistorymode to trigger command substring history using the up arrow in the list of history does not work as expected expected when presented with a list of command history you should be able to scroll up with the up arrow actual scrolling in the command history only works with down arrow since up arrow is bound to triggering the command history resulting in the list re rendering and selection jumping back to top
0
11,655
7,346,511,226
IssuesEvent
2018-03-07 20:58:46
MDAnalysis/mdanalysis
https://api.github.com/repos/MDAnalysis/mdanalysis
opened
errors are not properly logged in analysis.align
Component-Analysis usability
### Expected behaviour If analysis.align.AlignTrj or get_matching_atoms() fails to find a mobile and ref atom group that correspond to each other then they should print/log all diagnostic messages. ### Actual behaviour Only part of the messages were printed or logged. ### Code to reproduce the behaviour You can use the gist https://gist.github.com/orbeckst/2686badcd15031e6c946baf9164a683d to play with errors. It also shows that the current get_matching_atoms() is really not very smart and could be improved substantially to automatically find good matches. ### Currently version of MDAnalysis: (run `python -c "import MDAnalysis as mda; print(mda.__version__)"`) 0.17.1-develop
True
errors are not properly logged in analysis.align - ### Expected behaviour If analysis.align.AlignTrj or get_matching_atoms() fails to find a mobile and ref atom group that correspond to each other then they should print/log all diagnostic messages. ### Actual behaviour Only part of the messages were printed or logged. ### Code to reproduce the behaviour You can use the gist https://gist.github.com/orbeckst/2686badcd15031e6c946baf9164a683d to play with errors. It also shows that the current get_matching_atoms() is really not very smart and could be improved substantially to automatically find good matches. ### Currently version of MDAnalysis: (run `python -c "import MDAnalysis as mda; print(mda.__version__)"`) 0.17.1-develop
usab
errors are not properly logged in analysis align expected behaviour if analysis align aligntrj or get matching atoms fails to find a mobile and ref atom group that correspond to each other then they should print log all diagnostic messages actual behaviour only part of the messages were printed or logged code to reproduce the behaviour you can use the gist to play with errors it also shows that the current get matching atoms is really not very smart and could be improved substantially to automatically find good matches currently version of mdanalysis run python c import mdanalysis as mda print mda version develop
1
11,503
7,268,867,346
IssuesEvent
2018-02-20 11:38:36
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
Not possible to drag and drop textures into Material slots (Godot 3.0)
bug topic:editor usability
**Operating system or device - Godot version:** Windows 10, Godot 3.0, alpha 1 **Issue description:** Drag and drop a texture from file system to a material slot is not allowed. ![godot3draganddrop](https://user-images.githubusercontent.com/24936603/28913992-4dc00308-783a-11e7-831c-b60683d5822f.jpg) **Steps to reproduce:** Try drag and drop a texture from file system to a texture slot in a material
True
Not possible to drag and drop textures into Material slots (Godot 3.0) - **Operating system or device - Godot version:** Windows 10, Godot 3.0, alpha 1 **Issue description:** Drag and drop a texture from file system to a material slot is not allowed. ![godot3draganddrop](https://user-images.githubusercontent.com/24936603/28913992-4dc00308-783a-11e7-831c-b60683d5822f.jpg) **Steps to reproduce:** Try drag and drop a texture from file system to a texture slot in a material
usab
not possible to drag and drop textures into material slots godot operating system or device godot version windows godot alpha issue description drag and drop a texture from file system to a material slot is not allowed steps to reproduce try drag and drop a texture from file system to a texture slot in a material
1
296,417
25,549,712,666
IssuesEvent
2022-11-29 22:14:34
void-linux/void-packages
https://api.github.com/repos/void-linux/void-packages
opened
MPV '!impl->polling' failed at ../spa/plugins/support/loop.c:872 impl_clear()
bug needs-testing
### Is this a new report? Yes ### System Info Void 6.0.10_1 x86_64 GenuineIntel uptodate rFFFFF ### Package(s) Affected mpv-0.35.0_1 pipewire-0.3.58_1 ### Does a report exist for this bug with the project's home (upstream) and/or another distro? https://github.com/mpv-player/mpv/issues/10859 I suggest the Pipewire package on Void be updated to 3.60, as mentioned in the other issue on the MPV github. ### Expected behaviour MPV opens and follows instructions ### Actual behaviour MPV outputs the following: ``` [james@Void9020 ~]$ mpv 'https://www.youtube.com/watch?v=8VoVjNlL_FI' (+) Video --vid=1 (*) (vp9 1920x1080 30.000fps) (+) Audio --aid=1 --alang=eng (*) (opus 2ch 48000Hz) File tags: Uploader: Brodie Robertson Channel_URL: https://www.youtube.com/channel/UCld68syR8Wi-GY_n4CaoJGA [ao/pipewire] Could not connect to context '(null)': Host is down '!impl->polling' failed at ../spa/plugins/support/loop.c:872 impl_clear() Aborted ``` Applies to local media files too. ### Steps to reproduce 1. Make sure MPV and Pipewire are on the specified versions in this ticket. 2. Attempt to open media with MPV 3. MPV fails with the above error.
1.0
MPV '!impl->polling' failed at ../spa/plugins/support/loop.c:872 impl_clear() - ### Is this a new report? Yes ### System Info Void 6.0.10_1 x86_64 GenuineIntel uptodate rFFFFF ### Package(s) Affected mpv-0.35.0_1 pipewire-0.3.58_1 ### Does a report exist for this bug with the project's home (upstream) and/or another distro? https://github.com/mpv-player/mpv/issues/10859 I suggest the Pipewire package on Void be updated to 3.60, as mentioned in the other issue on the MPV github. ### Expected behaviour MPV opens and follows instructions ### Actual behaviour MPV outputs the following: ``` [james@Void9020 ~]$ mpv 'https://www.youtube.com/watch?v=8VoVjNlL_FI' (+) Video --vid=1 (*) (vp9 1920x1080 30.000fps) (+) Audio --aid=1 --alang=eng (*) (opus 2ch 48000Hz) File tags: Uploader: Brodie Robertson Channel_URL: https://www.youtube.com/channel/UCld68syR8Wi-GY_n4CaoJGA [ao/pipewire] Could not connect to context '(null)': Host is down '!impl->polling' failed at ../spa/plugins/support/loop.c:872 impl_clear() Aborted ``` Applies to local media files too. ### Steps to reproduce 1. Make sure MPV and Pipewire are on the specified versions in this ticket. 2. Attempt to open media with MPV 3. MPV fails with the above error.
non_usab
mpv impl polling failed at spa plugins support loop c impl clear is this a new report yes system info void genuineintel uptodate rfffff package s affected mpv pipewire does a report exist for this bug with the project s home upstream and or another distro i suggest the pipewire package on void be updated to as mentioned in the other issue on the mpv github expected behaviour mpv opens and follows instructions actual behaviour mpv outputs the following mpv video vid audio aid alang eng opus file tags uploader brodie robertson channel url could not connect to context null host is down impl polling failed at spa plugins support loop c impl clear aborted applies to local media files too steps to reproduce make sure mpv and pipewire are on the specified versions in this ticket attempt to open media with mpv mpv fails with the above error
0
26,756
27,163,013,089
IssuesEvent
2023-02-17 13:25:21
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
Tileset: Clicking anything when there is shader attached to tile prompt shader editor
bug topic:editor usability
### Godot version 4.0 beta 16 ### System information Windows 11 ### Issue description There are shaders on alternative tiles. Clicking anything or trying to paint stuff on tile (in this example modulate) ends with the opening shader editor. PS: Reloading project helps. ![Godot_v4 0-beta16_win64_1hkaEriocx](https://user-images.githubusercontent.com/62170071/215277448-b65b5ddc-2306-4405-a7eb-2e1ee41a6de5.gif) ### Steps to reproduce Add shader to tile and try using paint tool on that tile. ### Minimal reproduction project -
True
Tileset: Clicking anything when there is shader attached to tile prompt shader editor - ### Godot version 4.0 beta 16 ### System information Windows 11 ### Issue description There are shaders on alternative tiles. Clicking anything or trying to paint stuff on tile (in this example modulate) ends with the opening shader editor. PS: Reloading project helps. ![Godot_v4 0-beta16_win64_1hkaEriocx](https://user-images.githubusercontent.com/62170071/215277448-b65b5ddc-2306-4405-a7eb-2e1ee41a6de5.gif) ### Steps to reproduce Add shader to tile and try using paint tool on that tile. ### Minimal reproduction project -
usab
tileset clicking anything when there is shader attached to tile prompt shader editor godot version beta system information windows issue description there are shaders on alternative tiles clicking anything or trying to paint stuff on tile in this example modulate ends with the opening shader editor ps reloading project helps steps to reproduce add shader to tile and try using paint tool on that tile minimal reproduction project
1
12,039
7,641,320,036
IssuesEvent
2018-05-08 04:06:52
opendatacube/datacube-core
https://api.github.com/repos/opendatacube/datacube-core
closed
Ask why a dataset fails to match a specific product
enhancement operations usability
### Expected behaviour Some time when indexing a dataset, some omission or discrepancy in the metadata results in no matching product being found. Often there is a specific product in mind. If I could ask ```bash $ datacube dataset add FILE --intended-product=SOME_PRODUCT ``` or something like that, datacube could actually report what was missing. ### Actual behaviour Datacube splits out the dataset information back at me. ``` Indexing datasets [####################################] 100% 2018-05-03 10:38:23,108 28698 datacube-dataset ERROR Unable to create Dataset for file:///g/data1a/u46/users/ia1511/Work/data/test-suite/output/LS8_PQ_COUNT_TIFF/LS8_PQ_COUNT_RAW_3577_20160101_20160401.yaml: No matching Product found for { "creation_dt": "2018-05-03T00:37:33.396168", [... snipped some 2500 lines ...] "product_type": "pq_count_modified", "statistics": { "period": "3m", "step": "3m" } } ``` ### Environment information * Which ``datacube --version`` are you using? Open Data Cube core, version 1.6rc1 * What datacube deployment/environment are you running against? DEA
True
Ask why a dataset fails to match a specific product - ### Expected behaviour Some time when indexing a dataset, some omission or discrepancy in the metadata results in no matching product being found. Often there is a specific product in mind. If I could ask ```bash $ datacube dataset add FILE --intended-product=SOME_PRODUCT ``` or something like that, datacube could actually report what was missing. ### Actual behaviour Datacube splits out the dataset information back at me. ``` Indexing datasets [####################################] 100% 2018-05-03 10:38:23,108 28698 datacube-dataset ERROR Unable to create Dataset for file:///g/data1a/u46/users/ia1511/Work/data/test-suite/output/LS8_PQ_COUNT_TIFF/LS8_PQ_COUNT_RAW_3577_20160101_20160401.yaml: No matching Product found for { "creation_dt": "2018-05-03T00:37:33.396168", [... snipped some 2500 lines ...] "product_type": "pq_count_modified", "statistics": { "period": "3m", "step": "3m" } } ``` ### Environment information * Which ``datacube --version`` are you using? Open Data Cube core, version 1.6rc1 * What datacube deployment/environment are you running against? DEA
usab
ask why a dataset fails to match a specific product expected behaviour some time when indexing a dataset some omission or discrepancy in the metadata results in no matching product being found often there is a specific product in mind if i could ask bash datacube dataset add file intended product some product or something like that datacube could actually report what was missing actual behaviour datacube splits out the dataset information back at me indexing datasets datacube dataset error unable to create dataset for file g users work data test suite output pq count tiff pq count raw yaml no matching product found for creation dt product type pq count modified statistics period step environment information which datacube version are you using open data cube core version what datacube deployment environment are you running against dea
1
25,384
25,109,312,094
IssuesEvent
2022-11-08 19:07:27
accessibility-exchange/platform
https://api.github.com/repos/accessibility-exchange/platform
closed
FRO page creation: Replace create page link with a button
accessibility and usability
On the user dashboard, where user can start creating a page, replace the "create page" link with a button similar to what we have on the individual dashboards. The link was difficult to find for magnifier user.
True
FRO page creation: Replace create page link with a button - On the user dashboard, where user can start creating a page, replace the "create page" link with a button similar to what we have on the individual dashboards. The link was difficult to find for magnifier user.
usab
fro page creation replace create page link with a button on the user dashboard where user can start creating a page replace the create page link with a button similar to what we have on the individual dashboards the link was difficult to find for magnifier user
1
20,187
15,105,972,340
IssuesEvent
2021-02-08 13:44:52
tailscale/tailscale
https://api.github.com/repos/tailscale/tailscale
closed
Name resolution broken in 1.0.5 when upgrading to Big Sur
L3 Some users OS-macos P5 Halts deployment T6 Major usability
**Describe the bug** After upgrading my Mac to Big Sur, DNS resolution is broken when the option "Use corporate DNS" is enabled in the Tailscale menu (version 1.0.5) **To Reproduce** Steps to reproduce the behavior: 1. Upgrade to Big Sur 2. Make sure the "Use corporate DNS" option is enabled 3. Go to your terminal and try to resolve any hostname. 4. DNS resolution does not work (does not seem to timeout). (Disabling the "Use corporate DNS" option fixes the problem immediately) **Expected behavior** I would expect DNS names to resolve. **Version information:** - Device: Macbook Pro 13 - OS: MacOS - OS version: Big Sur - Tailscale version: 1.0.5 **Additional context** Disabling the "Use corporate DNS" option fixes the problem immediately. I've tried to investigate if this is connected with the OCSP problems Apple has suffered after the Big Sur release, but it seems unrelated (blackholing the OCSP host, didn't make this problem go away). <img src="https://frontapp.com/assets/img/favicons/favicon-32x32.png" height="16" width="16" alt="Front logo" /> [Front conversations](https://app.frontapp.com/open/top_2jw9d)
True
Name resolution broken in 1.0.5 when upgrading to Big Sur - **Describe the bug** After upgrading my Mac to Big Sur, DNS resolution is broken when the option "Use corporate DNS" is enabled in the Tailscale menu (version 1.0.5) **To Reproduce** Steps to reproduce the behavior: 1. Upgrade to Big Sur 2. Make sure the "Use corporate DNS" option is enabled 3. Go to your terminal and try to resolve any hostname. 4. DNS resolution does not work (does not seem to timeout). (Disabling the "Use corporate DNS" option fixes the problem immediately) **Expected behavior** I would expect DNS names to resolve. **Version information:** - Device: Macbook Pro 13 - OS: MacOS - OS version: Big Sur - Tailscale version: 1.0.5 **Additional context** Disabling the "Use corporate DNS" option fixes the problem immediately. I've tried to investigate if this is connected with the OCSP problems Apple has suffered after the Big Sur release, but it seems unrelated (blackholing the OCSP host, didn't make this problem go away). <img src="https://frontapp.com/assets/img/favicons/favicon-32x32.png" height="16" width="16" alt="Front logo" /> [Front conversations](https://app.frontapp.com/open/top_2jw9d)
usab
name resolution broken in when upgrading to big sur describe the bug after upgrading my mac to big sur dns resolution is broken when the option use corporate dns is enabled in the tailscale menu version to reproduce steps to reproduce the behavior upgrade to big sur make sure the use corporate dns option is enabled go to your terminal and try to resolve any hostname dns resolution does not work does not seem to timeout disabling the use corporate dns option fixes the problem immediately expected behavior i would expect dns names to resolve version information device macbook pro os macos os version big sur tailscale version additional context disabling the use corporate dns option fixes the problem immediately i ve tried to investigate if this is connected with the ocsp problems apple has suffered after the big sur release but it seems unrelated blackholing the ocsp host didn t make this problem go away
1
26,126
26,462,648,624
IssuesEvent
2023-01-16 19:18:21
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
[Lens] Cannot tell which visualization the inspect fly-out refers to
bug usability Feature:Lens
**Kibana version:** 8.7.0-SNAPSHOT **Original install method (e.g. download page, yum, from source, etc.):** tar.gz **Describe the usability bug:** I have multiple visualizations within a dashboard. All showing similar, yet slightly differently filtered data. Many of these do not have a panel title. When using inspect to view request statistics, I cannot easily tell which panel I am inspecting. **Steps to reproduce:** 1. Create dashboard (or use existing kibana sample dash) with multiple visualizations 2. Delete any lens panel titles 3. Use inspect to view request statistics **Expected behavior:** I should be able to tell which visualization the fly-out is referring to. Ideally the user should be able to remember, but because I had multiple metric viz (none of which had panel titles), I found myself never being quite sure which one I had definitely selected. **Screenshots (if relevant):** na **Errors in browser console (if relevant):** na **Provide logs and/or server output (if relevant):** na **Any additional context:** A low priority usability nit.
True
[Lens] Cannot tell which visualization the inspect fly-out refers to - **Kibana version:** 8.7.0-SNAPSHOT **Original install method (e.g. download page, yum, from source, etc.):** tar.gz **Describe the usability bug:** I have multiple visualizations within a dashboard. All showing similar, yet slightly differently filtered data. Many of these do not have a panel title. When using inspect to view request statistics, I cannot easily tell which panel I am inspecting. **Steps to reproduce:** 1. Create dashboard (or use existing kibana sample dash) with multiple visualizations 2. Delete any lens panel titles 3. Use inspect to view request statistics **Expected behavior:** I should be able to tell which visualization the fly-out is referring to. Ideally the user should be able to remember, but because I had multiple metric viz (none of which had panel titles), I found myself never being quite sure which one I had definitely selected. **Screenshots (if relevant):** na **Errors in browser console (if relevant):** na **Provide logs and/or server output (if relevant):** na **Any additional context:** A low priority usability nit.
usab
cannot tell which visualization the inspect fly out refers to kibana version snapshot original install method e g download page yum from source etc tar gz describe the usability bug i have multiple visualizations within a dashboard all showing similar yet slightly differently filtered data many of these do not have a panel title when using inspect to view request statistics i cannot easily tell which panel i am inspecting steps to reproduce create dashboard or use existing kibana sample dash with multiple visualizations delete any lens panel titles use inspect to view request statistics expected behavior i should be able to tell which visualization the fly out is referring to ideally the user should be able to remember but because i had multiple metric viz none of which had panel titles i found myself never being quite sure which one i had definitely selected screenshots if relevant na errors in browser console if relevant na provide logs and or server output if relevant na any additional context a low priority usability nit
1
337,840
24,559,337,679
IssuesEvent
2022-10-12 18:44:59
osPrims/chatApp
https://api.github.com/repos/osPrims/chatApp
closed
fix inconsistent badges in README
documentation good first issue reserved-for-uni
https://github.com/osPrims/chatApp/blob/fcf7cd9731fc05c4e014a789434151c0be03a022/README.md?plain=1#L6-L9 The 'Issues' and 'Pull Requests' badges - * should have consistent style with the 'forks' and 'stars' issue (flat-square) The 'Forks' and 'Star' badges - * should not have a logo in them Required fix would be to correct the query parameters used for the badges.
1.0
fix inconsistent badges in README - https://github.com/osPrims/chatApp/blob/fcf7cd9731fc05c4e014a789434151c0be03a022/README.md?plain=1#L6-L9 The 'Issues' and 'Pull Requests' badges - * should have consistent style with the 'forks' and 'stars' issue (flat-square) The 'Forks' and 'Star' badges - * should not have a logo in them Required fix would be to correct the query parameters used for the badges.
non_usab
fix inconsistent badges in readme the issues and pull requests badges should have consistent style with the forks and stars issue flat square the forks and star badges should not have a logo in them required fix would be to correct the query parameters used for the badges
0
24,465
23,782,373,146
IssuesEvent
2022-09-02 06:47:00
pulumi/pulumi-azure-native
https://api.github.com/repos/pulumi/pulumi-azure-native
closed
Python SDK should depend on pulumi v3.35.0 or greater
impact/usability kind/bug p1 size/S
Python codegen references `pulumi.InvokeOptions.merge` which is only available in newer versions.
True
Python SDK should depend on pulumi v3.35.0 or greater - Python codegen references `pulumi.InvokeOptions.merge` which is only available in newer versions.
usab
python sdk should depend on pulumi or greater python codegen references pulumi invokeoptions merge which is only available in newer versions
1
190,277
6,813,179,807
IssuesEvent
2017-11-06 08:08:50
tunga-io/tunga-web
https://api.github.com/repos/tunga-io/tunga-web
closed
Feedback form actionable events drip mails
feature High priority Must have reviewing This week
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. --> ## I'm submitting a ... <!-- Check one of the following options with "x" and add the appropriate label to the issue as well --> <pre><code> [ ] Bug report <!-- Please search this repo for a similar issue or PR before submitting --> [X] Feature request [ ] Regression (behavior that used to work and stopped working in a new release) </code></pre> ## Current behavior <!-- Describe how the issue manifests. --> In the previously issued actionable dripmails, there was a reference to a feedback form. E.g.: _"Hi [USER] It seems that a deadline on your [NAME PROJECT] project has been missed. We apologize sincerely for the inconvenience this may have caused. This email is to notify you that we will be contacting you very soon to discuss the details of it and how we can help in resolving this very quickly. Best regards, Tunga In case you do not want us to contact you or you have already been helped with this matter, please click the button below. Button option at end of email stating DEADLINE WAS NOT MISSED/I DO NOT NEED TO BE CONTACTED"_ **For each of these mails we need to establish a feedback form on the platform and a button. These need to be sent out to the three relevant users: PM's, clients, and developers.** However, each email has a different button (if applicable - in this case it would be as indicated above) and every feedback form on the platform has a different title. In this case, the title of the feedback form would be: Feedback deadline missed. For every actionable event, keep the title short as referenced. For instance, "Feedback quality rating", "Feedback communication", etc. Every single feedback form should lead to a screen (after being filled in). **"Thank you for the feedback. You'll hear from us soon."** Below you find the feedback form per actionable event per user. **1. In case of missed deadline, not communicated** Developer: Please share details about missing the deadline in the form below. PM: Please share details about missing the deadline in the form below. We shall be contacting you shortly. **2. In case of missed deadline but communicated** Client: In case you wish to share some details with us about the missed deadline, feel free to share them with us in the form below. Developer: Please share details about missing the deadline in the form below. We shall be contacting you shortly. PM: Please share details about missing the deadline in the form below. We shall be contacting you shortly. **3. Negative difference of 20% or more between percentage time passed and percentage finished of deliverable** Developer: Please indicate below if you will still be able to meet the deadline. [two pre-filled options] - I will still meet the deadline - I will not meet the deadline [In case of the latter being selected - a feedback form opens up below] You've indicated that you will not meet the deadline. Please explain below why you will not be able to deadline and how we can possible support you. **4. Unsatisfied with deliverable** Developer: [NAME CLIENT] has indicated that the deliverable was not up to the expected standard. If you have any details, please share them in form below. PM: [NAME CLIENT] has indicated that the deliverable was not up to the expected standard. If you have any details, please share them in form below. **5. Rating deliverable** Developer: It seems that there is a large discrepancy between how you rated your deliverables on the [CLIENT’S PROJECT] project and how [NAME CLIENT] has rated it. If you have any additional details, please let us know in the for below. PM: Developer: It seems that there is a large discrepancy between how you rated your deliverables on the [CLIENT’S PROJECT] project and how [NAME CLIENT] has rated it. If you have any additional details, please let us know in the for below. **6. Status stuck** Developer: You've let us know that you're currently stuck with your project. Please share some details with us in the form below. PM: You've let us know that you and/or one of the developers in your tribe are currently stuck with your project. Please share some details with us below. **7. Not anticipating to meet deadline** Developer: You've let us know that you expect to miss the deadline. Please share some details with us in the form below. PM: You've let us know that you expect to miss the deadline. Please share some details with us in the form below. **8. If % finished according to client is < than % according to dev/pm** Developer: [NAME CLIENT] has let us know that the deliverable on the [CLIENT’S PROJECT] project does not fully meet the agreed specifications. Please share some details with us in the form below. PM: Developer: [NAME CLIENT] has let us know that the deliverable on the [CLIENT’S PROJECT] project does not fully meet the agreed specifications. Please share some details with us in the form below. ## Expected behavior <!-- Describe what the desired behavior would be. --> In ## Minimal instructions for reproducing the problem (optional for feature requests) <!-- For bug reports please provide the *STEPS TO REPRODUCE* and if possible a *MINIMAL DEMO* of the problem via https://plnkr.co or similar. --> ## What is the motivation / use case for changing the behavior? <!-- Describe the motivation or the concrete use case. --> ## Please tell us about your environment (optional for feature requests) <pre><code> Browser: - [ ] Chrome (desktop) version XX - [ ] Chrome (Android) version XX - [ ] Chrome (iOS) version XX - [ ] Firefox version XX - [ ] Safari (desktop) version XX - [ ] Safari (iOS) version XX - [ ] IE version XX - [ ] Edge version XX - [ ] Other version XX <!-- Replace Other with name of browser --> Operating System: - [ ] macOS version XX - [ ] Windows version XX - [ ] Linux <!-- Add flavor name here --> XX - [ ] Android version XX - [ ] iOS version XX - [ ] Windows Phone version XX - [ ] Other version XX <!-- Replace Other with name of OS --> Environment/ Server: - [ ] Production - [ ] Staging - [ ] Test - [ ] Development <!-- If possible, check whether this is still an issue on the test server first --> For Developer issues: - Node version: XX <!-- use `node --version` --> - Platform: <!-- Mac, Linux, Windows --> Others: <!-- Anything else relevant? Operating system version, IDE, package manager, HTTP server, ... --> </code></pre>
1.0
Feedback form actionable events drip mails - <!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. --> ## I'm submitting a ... <!-- Check one of the following options with "x" and add the appropriate label to the issue as well --> <pre><code> [ ] Bug report <!-- Please search this repo for a similar issue or PR before submitting --> [X] Feature request [ ] Regression (behavior that used to work and stopped working in a new release) </code></pre> ## Current behavior <!-- Describe how the issue manifests. --> In the previously issued actionable dripmails, there was a reference to a feedback form. E.g.: _"Hi [USER] It seems that a deadline on your [NAME PROJECT] project has been missed. We apologize sincerely for the inconvenience this may have caused. This email is to notify you that we will be contacting you very soon to discuss the details of it and how we can help in resolving this very quickly. Best regards, Tunga In case you do not want us to contact you or you have already been helped with this matter, please click the button below. Button option at end of email stating DEADLINE WAS NOT MISSED/I DO NOT NEED TO BE CONTACTED"_ **For each of these mails we need to establish a feedback form on the platform and a button. These need to be sent out to the three relevant users: PM's, clients, and developers.** However, each email has a different button (if applicable - in this case it would be as indicated above) and every feedback form on the platform has a different title. In this case, the title of the feedback form would be: Feedback deadline missed. For every actionable event, keep the title short as referenced. For instance, "Feedback quality rating", "Feedback communication", etc. Every single feedback form should lead to a screen (after being filled in). **"Thank you for the feedback. You'll hear from us soon."** Below you find the feedback form per actionable event per user. **1. In case of missed deadline, not communicated** Developer: Please share details about missing the deadline in the form below. PM: Please share details about missing the deadline in the form below. We shall be contacting you shortly. **2. In case of missed deadline but communicated** Client: In case you wish to share some details with us about the missed deadline, feel free to share them with us in the form below. Developer: Please share details about missing the deadline in the form below. We shall be contacting you shortly. PM: Please share details about missing the deadline in the form below. We shall be contacting you shortly. **3. Negative difference of 20% or more between percentage time passed and percentage finished of deliverable** Developer: Please indicate below if you will still be able to meet the deadline. [two pre-filled options] - I will still meet the deadline - I will not meet the deadline [In case of the latter being selected - a feedback form opens up below] You've indicated that you will not meet the deadline. Please explain below why you will not be able to deadline and how we can possible support you. **4. Unsatisfied with deliverable** Developer: [NAME CLIENT] has indicated that the deliverable was not up to the expected standard. If you have any details, please share them in form below. PM: [NAME CLIENT] has indicated that the deliverable was not up to the expected standard. If you have any details, please share them in form below. **5. Rating deliverable** Developer: It seems that there is a large discrepancy between how you rated your deliverables on the [CLIENT’S PROJECT] project and how [NAME CLIENT] has rated it. If you have any additional details, please let us know in the for below. PM: Developer: It seems that there is a large discrepancy between how you rated your deliverables on the [CLIENT’S PROJECT] project and how [NAME CLIENT] has rated it. If you have any additional details, please let us know in the for below. **6. Status stuck** Developer: You've let us know that you're currently stuck with your project. Please share some details with us in the form below. PM: You've let us know that you and/or one of the developers in your tribe are currently stuck with your project. Please share some details with us below. **7. Not anticipating to meet deadline** Developer: You've let us know that you expect to miss the deadline. Please share some details with us in the form below. PM: You've let us know that you expect to miss the deadline. Please share some details with us in the form below. **8. If % finished according to client is < than % according to dev/pm** Developer: [NAME CLIENT] has let us know that the deliverable on the [CLIENT’S PROJECT] project does not fully meet the agreed specifications. Please share some details with us in the form below. PM: Developer: [NAME CLIENT] has let us know that the deliverable on the [CLIENT’S PROJECT] project does not fully meet the agreed specifications. Please share some details with us in the form below. ## Expected behavior <!-- Describe what the desired behavior would be. --> In ## Minimal instructions for reproducing the problem (optional for feature requests) <!-- For bug reports please provide the *STEPS TO REPRODUCE* and if possible a *MINIMAL DEMO* of the problem via https://plnkr.co or similar. --> ## What is the motivation / use case for changing the behavior? <!-- Describe the motivation or the concrete use case. --> ## Please tell us about your environment (optional for feature requests) <pre><code> Browser: - [ ] Chrome (desktop) version XX - [ ] Chrome (Android) version XX - [ ] Chrome (iOS) version XX - [ ] Firefox version XX - [ ] Safari (desktop) version XX - [ ] Safari (iOS) version XX - [ ] IE version XX - [ ] Edge version XX - [ ] Other version XX <!-- Replace Other with name of browser --> Operating System: - [ ] macOS version XX - [ ] Windows version XX - [ ] Linux <!-- Add flavor name here --> XX - [ ] Android version XX - [ ] iOS version XX - [ ] Windows Phone version XX - [ ] Other version XX <!-- Replace Other with name of OS --> Environment/ Server: - [ ] Production - [ ] Staging - [ ] Test - [ ] Development <!-- If possible, check whether this is still an issue on the test server first --> For Developer issues: - Node version: XX <!-- use `node --version` --> - Platform: <!-- Mac, Linux, Windows --> Others: <!-- Anything else relevant? Operating system version, IDE, package manager, HTTP server, ... --> </code></pre>
non_usab
feedback form actionable events drip mails please help us process github issues faster by providing the following information i m submitting a bug report feature request regression behavior that used to work and stopped working in a new release current behavior in the previously issued actionable dripmails there was a reference to a feedback form e g hi it seems that a deadline on your project has been missed we apologize sincerely for the inconvenience this may have caused this email is to notify you that we will be contacting you very soon to discuss the details of it and how we can help in resolving this very quickly best regards tunga in case you do not want us to contact you or you have already been helped with this matter please click the button below button option at end of email stating deadline was not missed i do not need to be contacted for each of these mails we need to establish a feedback form on the platform and a button these need to be sent out to the three relevant users pm s clients and developers however each email has a different button if applicable in this case it would be as indicated above and every feedback form on the platform has a different title in this case the title of the feedback form would be feedback deadline missed for every actionable event keep the title short as referenced for instance feedback quality rating feedback communication etc every single feedback form should lead to a screen after being filled in thank you for the feedback you ll hear from us soon below you find the feedback form per actionable event per user in case of missed deadline not communicated developer please share details about missing the deadline in the form below pm please share details about missing the deadline in the form below we shall be contacting you shortly in case of missed deadline but communicated client in case you wish to share some details with us about the missed deadline feel free to share them with us in the form below developer please share details about missing the deadline in the form below we shall be contacting you shortly pm please share details about missing the deadline in the form below we shall be contacting you shortly negative difference of or more between percentage time passed and percentage finished of deliverable developer please indicate below if you will still be able to meet the deadline i will still meet the deadline i will not meet the deadline you ve indicated that you will not meet the deadline please explain below why you will not be able to deadline and how we can possible support you unsatisfied with deliverable developer has indicated that the deliverable was not up to the expected standard if you have any details please share them in form below pm has indicated that the deliverable was not up to the expected standard if you have any details please share them in form below rating deliverable developer it seems that there is a large discrepancy between how you rated your deliverables on the project and how has rated it if you have any additional details please let us know in the for below pm developer it seems that there is a large discrepancy between how you rated your deliverables on the project and how has rated it if you have any additional details please let us know in the for below status stuck developer you ve let us know that you re currently stuck with your project please share some details with us in the form below pm you ve let us know that you and or one of the developers in your tribe are currently stuck with your project please share some details with us below not anticipating to meet deadline developer you ve let us know that you expect to miss the deadline please share some details with us in the form below pm you ve let us know that you expect to miss the deadline please share some details with us in the form below if finished according to client is than according to dev pm developer has let us know that the deliverable on the project does not fully meet the agreed specifications please share some details with us in the form below pm developer has let us know that the deliverable on the project does not fully meet the agreed specifications please share some details with us in the form below expected behavior in minimal instructions for reproducing the problem optional for feature requests for bug reports please provide the steps to reproduce and if possible a minimal demo of the problem via or similar what is the motivation use case for changing the behavior please tell us about your environment optional for feature requests browser chrome desktop version xx chrome android version xx chrome ios version xx firefox version xx safari desktop version xx safari ios version xx ie version xx edge version xx other version xx operating system macos version xx windows version xx linux xx android version xx ios version xx windows phone version xx other version xx environment server production staging test development for developer issues node version xx platform others
0
240,694
7,804,660,525
IssuesEvent
2018-06-11 08:16:57
redbadger/pride-london-app
https://api.github.com/repos/redbadger/pride-london-app
closed
Saving Events: When saving on Event details page, the vibration and heart animation is repeated when returning to the Event listing page
:bomb: high priority bug ready for review
## Description of issue When you open an event from the Event Listing page and tap the heart icon to save it before closing the event, the heart animation and vibration repeats on return to Event Listing page. Doesn't happen if you open the event from the Featured events on the home page. ## Expected behaviour The heart animation and vibration are only triggered the first time you tap on the heart icon. ## Steps to reproduce - Open an event from the Event Listing page - Tap the heart icon to save > Animation and vibration occur - Close the Event details page > Animation and vibration repeat ## OS / Browser / Device model iPhone 7+ Galaxy S8
1.0
Saving Events: When saving on Event details page, the vibration and heart animation is repeated when returning to the Event listing page - ## Description of issue When you open an event from the Event Listing page and tap the heart icon to save it before closing the event, the heart animation and vibration repeats on return to Event Listing page. Doesn't happen if you open the event from the Featured events on the home page. ## Expected behaviour The heart animation and vibration are only triggered the first time you tap on the heart icon. ## Steps to reproduce - Open an event from the Event Listing page - Tap the heart icon to save > Animation and vibration occur - Close the Event details page > Animation and vibration repeat ## OS / Browser / Device model iPhone 7+ Galaxy S8
non_usab
saving events when saving on event details page the vibration and heart animation is repeated when returning to the event listing page description of issue when you open an event from the event listing page and tap the heart icon to save it before closing the event the heart animation and vibration repeats on return to event listing page doesn t happen if you open the event from the featured events on the home page expected behaviour the heart animation and vibration are only triggered the first time you tap on the heart icon steps to reproduce open an event from the event listing page tap the heart icon to save animation and vibration occur close the event details page animation and vibration repeat os browser device model iphone galaxy
0
25,612
25,492,237,873
IssuesEvent
2022-11-27 08:03:12
jordanbrown0/reg3
https://api.github.com/repos/jordanbrown0/reg3
closed
Corrections editor needs field picker
usability
When you add a correction, you must specify the field to be corrected by typing its name. You should be able to pick it from a list.
True
Corrections editor needs field picker - When you add a correction, you must specify the field to be corrected by typing its name. You should be able to pick it from a list.
usab
corrections editor needs field picker when you add a correction you must specify the field to be corrected by typing its name you should be able to pick it from a list
1
309,503
23,297,500,535
IssuesEvent
2022-08-06 20:22:50
NetApp/terraform-provider-netapp-cloudmanager
https://api.github.com/repos/NetApp/terraform-provider-netapp-cloudmanager
closed
Invalid IAM Instance Profile name for NetApp connector
documentation backend
Hello We are deploying NetApp connector through Terraform in AWS. We deploy NetApp connector as shown below and when we create NetApp connector, it returns error below. If we re-apply Terraform after the error, it works fine. I assume that there is some dependency issue even though we use depending_on option. Could you investigate the issue? TF code ``` resource "aws_iam_instance_profile" "this" { count = var.enabled ? 1 : 0 name = "connector-instance-profile" role = aws_iam_role.this[0].name } resource "aws_iam_role" "this" { count = var.enabled ? 1 : 0 name = "connector-instance-profile-role" path = "/" assume_role_policy = <<EOF { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "Service": "ec2.amazonaws.com" }, "Action": "sts:AssumeRole" } ] } EOF tags = merge(var.common_tags, { Name = "connector-instance-profile-role" }) } resource "aws_iam_policy" "this" { count = var.enabled ? 1 : 0 name = "connector-instance-policy" description = "connector-instance-policy" policy = <<EOF { "Version": "2012-10-17", "Statement": [ { "Action": [ "iam:ListInstanceProfiles", "iam:CreateRole", "iam:DeleteRole", "iam:PutRolePolicy", "iam:CreateInstanceProfile", "iam:DeleteRolePolicy", "iam:AddRoleToInstanceProfile", "iam:RemoveRoleFromInstanceProfile", "iam:DeleteInstanceProfile", "ec2:ModifyVolumeAttribute", "sts:DecodeAuthorizationMessage", "ec2:DescribeImages", "ec2:DescribeRouteTables", "ec2:DescribeInstances", "iam:PassRole", "ec2:DescribeInstanceStatus", "ec2:RunInstances", "ec2:ModifyInstanceAttribute", "ec2:CreateTags", "ec2:CreateVolume", "ec2:DescribeVolumes", "ec2:DeleteVolume", "ec2:CreateSecurityGroup", "ec2:DeleteSecurityGroup", "ec2:DescribeSecurityGroups", "ec2:RevokeSecurityGroupEgress", "ec2:AuthorizeSecurityGroupEgress", "ec2:AuthorizeSecurityGroupIngress", "ec2:RevokeSecurityGroupIngress", "ec2:CreateNetworkInterface", "ec2:DescribeNetworkInterfaces", "ec2:DeleteNetworkInterface", "ec2:ModifyNetworkInterfaceAttribute", "ec2:DescribeSubnets", "ec2:DescribeVpcs", "ec2:DescribeDhcpOptions", "ec2:CreateSnapshot", "ec2:DeleteSnapshot", "ec2:DescribeSnapshots", "ec2:StopInstances", "ec2:GetConsoleOutput", "ec2:DescribeKeyPairs", "ec2:DescribeRegions", "ec2:DeleteTags", "ec2:DescribeTags", "cloudformation:CreateStack", "cloudformation:DeleteStack", "cloudformation:DescribeStacks", "cloudformation:DescribeStackEvents", "cloudformation:ValidateTemplate", "cloudformation:ListStacks", "cloudwatch:GetMetricStatistics", "s3:GetObject", "s3:ListBucket", "s3:ListAllMyBuckets", "s3:GetBucketTagging", "s3:GetBucketLocation", "s3:CreateBucket", "s3:GetBucketPolicyStatus", "s3:GetBucketPublicAccessBlock", "s3:GetBucketAcl", "s3:GetBucketPolicy", "kms:List*", "kms:Describe*", "ec2:AssociateIamInstanceProfile", "ec2:DescribeIamInstanceProfileAssociations", "ec2:DisassociateIamInstanceProfile", "ec2:DescribeInstanceAttribute", "ce:GetReservationUtilization", "ce:GetDimensionValues", "ce:GetCostAndUsage", "ce:GetTags", "ec2:CreatePlacementGroup", "ec2:DeletePlacementGroup", "ec2:DescribeVpcEndpoints", "ec2:CreateVpcEndpoint", "ec2:ModifyVpcEndpoint", "ec2:DeleteVpcEndpoints", "ec2:DescribeReservedInstancesOfferings", "ec2:DescribeInstanceTypeOfferings", "tag:getResources", "tag:getTagKeys", "tag:getTagValues", "tag:TagResources", "tag:UntagResources", "fsx:Describe*", "fsx:List*", "iam:GetInstanceProfile", "eks:ListClusters", "eks:DescribeCluster", "elasticfilesystem:DescribeFileSystems", "athena:StartQueryExecution", "athena:GetQueryResults", "athena:GetQueryExecution", "glue:GetDatabase", "glue:GetTable", "glue:CreateTable", "glue:CreateDatabase", "glue:GetPartitions", "glue:BatchCreatePartition", "glue:BatchDeletePartition", "ec2:DescribePlacementGroups", "iam:GetRolePolicy", "ec2:DescribeVolumesModifications" ], "Resource": "*", "Effect": "Allow" }, { "Action": [ "s3:DeleteBucket", "s3:GetLifecycleConfiguration", "s3:PutLifecycleConfiguration", "s3:PutBucketTagging", "s3:ListBucketVersions", "s3:GetBucketPolicyStatus", "s3:GetBucketPublicAccessBlock", "s3:GetBucketAcl", "s3:GetBucketPolicy", "s3:PutBucketPublicAccessBlock" ], "Resource": "arn:aws:s3:::fabric-pool*", "Effect": "Allow", "Sid": "fabricPoolPolicy" }, { "Action": [ "s3:DeleteBucket", "s3:GetLifecycleConfiguration", "s3:PutLifecycleConfiguration", "s3:PutBucketTagging", "s3:ListBucketVersions", "s3:GetObject", "s3:ListBucket", "s3:ListAllMyBuckets", "s3:GetBucketTagging", "s3:GetBucketLocation", "s3:GetBucketPolicyStatus", "s3:GetBucketPublicAccessBlock", "s3:GetBucketAcl", "s3:GetBucketPolicy", "s3:PutBucketPublicAccessBlock", "s3:PutEncryptionConfiguration" ], "Resource": "arn:aws:s3:::netapp-backup-*", "Effect": "Allow", "Sid": "backupPolicy" }, { "Condition": { "StringLike": { "ec2:ResourceTag/netapp-adc-manager": "*" } }, "Action": [ "ec2:StartInstances", "ec2:TerminateInstances" ], "Resource": "arn:aws:ec2:*:*:instance/*", "Effect": "Allow" }, { "Condition": { "StringLike": { "ec2:ResourceTag/GFCInstance": "*" } }, "Action": [ "ec2:StartInstances", "ec2:TerminateInstances", "ec2:AttachVolume", "ec2:DetachVolume" ], "Resource": "arn:aws:ec2:*:*:instance/*", "Effect": "Allow" }, { "Condition": { "StringLike": { "ec2:ResourceTag/WorkingEnvironment": "*" } }, "Action": [ "ec2:StartInstances", "ec2:TerminateInstances", "ec2:AttachVolume", "ec2:DetachVolume" ], "Resource": "arn:aws:ec2:*:*:instance/*", "Effect": "Allow" }, { "Condition": { "StringLike": { "ec2:ResourceTag/WorkingEnvironment": "*" } }, "Action": [ "ec2:ModifyVolume" ], "Resource": [ "arn:aws:ec2:*:*:volume/*" ], "Effect": "Allow" }, { "Action": [ "ec2:AttachVolume", "ec2:DetachVolume" ], "Resource": "arn:aws:ec2:*:*:volume/*", "Effect": "Allow" }, { "Action": [ "s3:DeleteObject", "s3:PutObject" ], "Resource": [ "arn:aws:s3:::netapp-backup-*" ], "Effect": "Allow" } ] } EOF tags = merge(var.common_tags, { Name = "connector-instance-policy" }) } resource "aws_iam_role_policy_attachment" "this" { count = var.enabled ? 1 : 0 role = aws_iam_role.this[0].name policy_arn = aws_iam_policy.this[0].arn } resource "netapp-cloudmanager_connector_aws" "this" { count = var.enabled ? 1 : 0 name = "netapp-${var.account}-connector" region = var.region key_name = var.key_pair_name company = var.company instance_type = var.instance_type subnet_id = data.aws_subnet.this.id security_group_id = aws_security_group.this[0].id iam_instance_profile_name = aws_iam_instance_profile.this[0].name account_id = var.netapp_account_id associate_public_ip_address = false depends_on = [ aws_security_group.this, aws_iam_instance_profile.this ] } ``` Error ``` Error: InvalidParameterValue: Value (connector-instance-profile) for parameter iamInstanceProfile.name is invalid. Invalid IAM Instance Profile name │ status code: 400, request id: c94c6b81-168e-445b-88a4-21cfd65e8197 │ │ with module.use1.module.connector.netapp-cloudmanager_connector_aws.this[0], │ on ../../../tf-module-aws-netapp/modules/connector/connector.tf line 1, in resource "netapp-cloudmanager_connector_aws" "this": │ 1: resource "netapp-cloudmanager_connector_aws" "this" { ``` Regards, Moon
1.0
Invalid IAM Instance Profile name for NetApp connector - Hello We are deploying NetApp connector through Terraform in AWS. We deploy NetApp connector as shown below and when we create NetApp connector, it returns error below. If we re-apply Terraform after the error, it works fine. I assume that there is some dependency issue even though we use depending_on option. Could you investigate the issue? TF code ``` resource "aws_iam_instance_profile" "this" { count = var.enabled ? 1 : 0 name = "connector-instance-profile" role = aws_iam_role.this[0].name } resource "aws_iam_role" "this" { count = var.enabled ? 1 : 0 name = "connector-instance-profile-role" path = "/" assume_role_policy = <<EOF { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "Service": "ec2.amazonaws.com" }, "Action": "sts:AssumeRole" } ] } EOF tags = merge(var.common_tags, { Name = "connector-instance-profile-role" }) } resource "aws_iam_policy" "this" { count = var.enabled ? 1 : 0 name = "connector-instance-policy" description = "connector-instance-policy" policy = <<EOF { "Version": "2012-10-17", "Statement": [ { "Action": [ "iam:ListInstanceProfiles", "iam:CreateRole", "iam:DeleteRole", "iam:PutRolePolicy", "iam:CreateInstanceProfile", "iam:DeleteRolePolicy", "iam:AddRoleToInstanceProfile", "iam:RemoveRoleFromInstanceProfile", "iam:DeleteInstanceProfile", "ec2:ModifyVolumeAttribute", "sts:DecodeAuthorizationMessage", "ec2:DescribeImages", "ec2:DescribeRouteTables", "ec2:DescribeInstances", "iam:PassRole", "ec2:DescribeInstanceStatus", "ec2:RunInstances", "ec2:ModifyInstanceAttribute", "ec2:CreateTags", "ec2:CreateVolume", "ec2:DescribeVolumes", "ec2:DeleteVolume", "ec2:CreateSecurityGroup", "ec2:DeleteSecurityGroup", "ec2:DescribeSecurityGroups", "ec2:RevokeSecurityGroupEgress", "ec2:AuthorizeSecurityGroupEgress", "ec2:AuthorizeSecurityGroupIngress", "ec2:RevokeSecurityGroupIngress", "ec2:CreateNetworkInterface", "ec2:DescribeNetworkInterfaces", "ec2:DeleteNetworkInterface", "ec2:ModifyNetworkInterfaceAttribute", "ec2:DescribeSubnets", "ec2:DescribeVpcs", "ec2:DescribeDhcpOptions", "ec2:CreateSnapshot", "ec2:DeleteSnapshot", "ec2:DescribeSnapshots", "ec2:StopInstances", "ec2:GetConsoleOutput", "ec2:DescribeKeyPairs", "ec2:DescribeRegions", "ec2:DeleteTags", "ec2:DescribeTags", "cloudformation:CreateStack", "cloudformation:DeleteStack", "cloudformation:DescribeStacks", "cloudformation:DescribeStackEvents", "cloudformation:ValidateTemplate", "cloudformation:ListStacks", "cloudwatch:GetMetricStatistics", "s3:GetObject", "s3:ListBucket", "s3:ListAllMyBuckets", "s3:GetBucketTagging", "s3:GetBucketLocation", "s3:CreateBucket", "s3:GetBucketPolicyStatus", "s3:GetBucketPublicAccessBlock", "s3:GetBucketAcl", "s3:GetBucketPolicy", "kms:List*", "kms:Describe*", "ec2:AssociateIamInstanceProfile", "ec2:DescribeIamInstanceProfileAssociations", "ec2:DisassociateIamInstanceProfile", "ec2:DescribeInstanceAttribute", "ce:GetReservationUtilization", "ce:GetDimensionValues", "ce:GetCostAndUsage", "ce:GetTags", "ec2:CreatePlacementGroup", "ec2:DeletePlacementGroup", "ec2:DescribeVpcEndpoints", "ec2:CreateVpcEndpoint", "ec2:ModifyVpcEndpoint", "ec2:DeleteVpcEndpoints", "ec2:DescribeReservedInstancesOfferings", "ec2:DescribeInstanceTypeOfferings", "tag:getResources", "tag:getTagKeys", "tag:getTagValues", "tag:TagResources", "tag:UntagResources", "fsx:Describe*", "fsx:List*", "iam:GetInstanceProfile", "eks:ListClusters", "eks:DescribeCluster", "elasticfilesystem:DescribeFileSystems", "athena:StartQueryExecution", "athena:GetQueryResults", "athena:GetQueryExecution", "glue:GetDatabase", "glue:GetTable", "glue:CreateTable", "glue:CreateDatabase", "glue:GetPartitions", "glue:BatchCreatePartition", "glue:BatchDeletePartition", "ec2:DescribePlacementGroups", "iam:GetRolePolicy", "ec2:DescribeVolumesModifications" ], "Resource": "*", "Effect": "Allow" }, { "Action": [ "s3:DeleteBucket", "s3:GetLifecycleConfiguration", "s3:PutLifecycleConfiguration", "s3:PutBucketTagging", "s3:ListBucketVersions", "s3:GetBucketPolicyStatus", "s3:GetBucketPublicAccessBlock", "s3:GetBucketAcl", "s3:GetBucketPolicy", "s3:PutBucketPublicAccessBlock" ], "Resource": "arn:aws:s3:::fabric-pool*", "Effect": "Allow", "Sid": "fabricPoolPolicy" }, { "Action": [ "s3:DeleteBucket", "s3:GetLifecycleConfiguration", "s3:PutLifecycleConfiguration", "s3:PutBucketTagging", "s3:ListBucketVersions", "s3:GetObject", "s3:ListBucket", "s3:ListAllMyBuckets", "s3:GetBucketTagging", "s3:GetBucketLocation", "s3:GetBucketPolicyStatus", "s3:GetBucketPublicAccessBlock", "s3:GetBucketAcl", "s3:GetBucketPolicy", "s3:PutBucketPublicAccessBlock", "s3:PutEncryptionConfiguration" ], "Resource": "arn:aws:s3:::netapp-backup-*", "Effect": "Allow", "Sid": "backupPolicy" }, { "Condition": { "StringLike": { "ec2:ResourceTag/netapp-adc-manager": "*" } }, "Action": [ "ec2:StartInstances", "ec2:TerminateInstances" ], "Resource": "arn:aws:ec2:*:*:instance/*", "Effect": "Allow" }, { "Condition": { "StringLike": { "ec2:ResourceTag/GFCInstance": "*" } }, "Action": [ "ec2:StartInstances", "ec2:TerminateInstances", "ec2:AttachVolume", "ec2:DetachVolume" ], "Resource": "arn:aws:ec2:*:*:instance/*", "Effect": "Allow" }, { "Condition": { "StringLike": { "ec2:ResourceTag/WorkingEnvironment": "*" } }, "Action": [ "ec2:StartInstances", "ec2:TerminateInstances", "ec2:AttachVolume", "ec2:DetachVolume" ], "Resource": "arn:aws:ec2:*:*:instance/*", "Effect": "Allow" }, { "Condition": { "StringLike": { "ec2:ResourceTag/WorkingEnvironment": "*" } }, "Action": [ "ec2:ModifyVolume" ], "Resource": [ "arn:aws:ec2:*:*:volume/*" ], "Effect": "Allow" }, { "Action": [ "ec2:AttachVolume", "ec2:DetachVolume" ], "Resource": "arn:aws:ec2:*:*:volume/*", "Effect": "Allow" }, { "Action": [ "s3:DeleteObject", "s3:PutObject" ], "Resource": [ "arn:aws:s3:::netapp-backup-*" ], "Effect": "Allow" } ] } EOF tags = merge(var.common_tags, { Name = "connector-instance-policy" }) } resource "aws_iam_role_policy_attachment" "this" { count = var.enabled ? 1 : 0 role = aws_iam_role.this[0].name policy_arn = aws_iam_policy.this[0].arn } resource "netapp-cloudmanager_connector_aws" "this" { count = var.enabled ? 1 : 0 name = "netapp-${var.account}-connector" region = var.region key_name = var.key_pair_name company = var.company instance_type = var.instance_type subnet_id = data.aws_subnet.this.id security_group_id = aws_security_group.this[0].id iam_instance_profile_name = aws_iam_instance_profile.this[0].name account_id = var.netapp_account_id associate_public_ip_address = false depends_on = [ aws_security_group.this, aws_iam_instance_profile.this ] } ``` Error ``` Error: InvalidParameterValue: Value (connector-instance-profile) for parameter iamInstanceProfile.name is invalid. Invalid IAM Instance Profile name │ status code: 400, request id: c94c6b81-168e-445b-88a4-21cfd65e8197 │ │ with module.use1.module.connector.netapp-cloudmanager_connector_aws.this[0], │ on ../../../tf-module-aws-netapp/modules/connector/connector.tf line 1, in resource "netapp-cloudmanager_connector_aws" "this": │ 1: resource "netapp-cloudmanager_connector_aws" "this" { ``` Regards, Moon
non_usab
invalid iam instance profile name for netapp connector hello we are deploying netapp connector through terraform in aws we deploy netapp connector as shown below and when we create netapp connector it returns error below if we re apply terraform after the error it works fine i assume that there is some dependency issue even though we use depending on option could you investigate the issue tf code resource aws iam instance profile this count var enabled name connector instance profile role aws iam role this name resource aws iam role this count var enabled name connector instance profile role path assume role policy eof version statement effect allow principal service amazonaws com action sts assumerole eof tags merge var common tags name connector instance profile role resource aws iam policy this count var enabled name connector instance policy description connector instance policy policy eof version statement action iam listinstanceprofiles iam createrole iam deleterole iam putrolepolicy iam createinstanceprofile iam deleterolepolicy iam addroletoinstanceprofile iam removerolefrominstanceprofile iam deleteinstanceprofile modifyvolumeattribute sts decodeauthorizationmessage describeimages describeroutetables describeinstances iam passrole describeinstancestatus runinstances modifyinstanceattribute createtags createvolume describevolumes deletevolume createsecuritygroup deletesecuritygroup describesecuritygroups revokesecuritygroupegress authorizesecuritygroupegress authorizesecuritygroupingress revokesecuritygroupingress createnetworkinterface describenetworkinterfaces deletenetworkinterface modifynetworkinterfaceattribute describesubnets describevpcs describedhcpoptions createsnapshot deletesnapshot describesnapshots stopinstances getconsoleoutput describekeypairs describeregions deletetags describetags cloudformation createstack cloudformation deletestack cloudformation describestacks cloudformation describestackevents cloudformation validatetemplate cloudformation liststacks cloudwatch getmetricstatistics getobject listbucket listallmybuckets getbuckettagging getbucketlocation createbucket getbucketpolicystatus getbucketpublicaccessblock getbucketacl getbucketpolicy kms list kms describe associateiaminstanceprofile describeiaminstanceprofileassociations disassociateiaminstanceprofile describeinstanceattribute ce getreservationutilization ce getdimensionvalues ce getcostandusage ce gettags createplacementgroup deleteplacementgroup describevpcendpoints createvpcendpoint modifyvpcendpoint deletevpcendpoints describereservedinstancesofferings describeinstancetypeofferings tag getresources tag gettagkeys tag gettagvalues tag tagresources tag untagresources fsx describe fsx list iam getinstanceprofile eks listclusters eks describecluster elasticfilesystem describefilesystems athena startqueryexecution athena getqueryresults athena getqueryexecution glue getdatabase glue gettable glue createtable glue createdatabase glue getpartitions glue batchcreatepartition glue batchdeletepartition describeplacementgroups iam getrolepolicy describevolumesmodifications resource effect allow action deletebucket getlifecycleconfiguration putlifecycleconfiguration putbuckettagging listbucketversions getbucketpolicystatus getbucketpublicaccessblock getbucketacl getbucketpolicy putbucketpublicaccessblock resource arn aws fabric pool effect allow sid fabricpoolpolicy action deletebucket getlifecycleconfiguration putlifecycleconfiguration putbuckettagging listbucketversions getobject listbucket listallmybuckets getbuckettagging getbucketlocation getbucketpolicystatus getbucketpublicaccessblock getbucketacl getbucketpolicy putbucketpublicaccessblock putencryptionconfiguration resource arn aws netapp backup effect allow sid backuppolicy condition stringlike resourcetag netapp adc manager action startinstances terminateinstances resource arn aws instance effect allow condition stringlike resourcetag gfcinstance action startinstances terminateinstances attachvolume detachvolume resource arn aws instance effect allow condition stringlike resourcetag workingenvironment action startinstances terminateinstances attachvolume detachvolume resource arn aws instance effect allow condition stringlike resourcetag workingenvironment action modifyvolume resource arn aws volume effect allow action attachvolume detachvolume resource arn aws volume effect allow action deleteobject putobject resource arn aws netapp backup effect allow eof tags merge var common tags name connector instance policy resource aws iam role policy attachment this count var enabled role aws iam role this name policy arn aws iam policy this arn resource netapp cloudmanager connector aws this count var enabled name netapp var account connector region var region key name var key pair name company var company instance type var instance type subnet id data aws subnet this id security group id aws security group this id iam instance profile name aws iam instance profile this name account id var netapp account id associate public ip address false depends on aws security group this aws iam instance profile this error error invalidparametervalue value connector instance profile for parameter iaminstanceprofile name is invalid invalid iam instance profile name │ status code request id │ │ with module module connector netapp cloudmanager connector aws this │ on tf module aws netapp modules connector connector tf line in resource netapp cloudmanager connector aws this │ resource netapp cloudmanager connector aws this regards moon
0
1,266
2,772,631,971
IssuesEvent
2015-05-02 21:21:18
AdamsLair/duality
https://api.github.com/repos/AdamsLair/duality
closed
Cleanup Unused Classes
Engine Task Usability
The v2.0 update is an ideal time to remove stuff. Find classes and systems that are largely unused and get rid of them. ## Candidates for Removal - The whole Animation subsystem. - Not aware of anyone using it, didn't ever use it myself. - Feels a bit clumsy to programmers and is mostly useless to artists without editor support. - Extending it doesn't seem useful in the wake of far better systems like Spine. - Certain very specialized MathF methods. - GetLinearPrediction, GetLinearPrediction2
True
Cleanup Unused Classes - The v2.0 update is an ideal time to remove stuff. Find classes and systems that are largely unused and get rid of them. ## Candidates for Removal - The whole Animation subsystem. - Not aware of anyone using it, didn't ever use it myself. - Feels a bit clumsy to programmers and is mostly useless to artists without editor support. - Extending it doesn't seem useful in the wake of far better systems like Spine. - Certain very specialized MathF methods. - GetLinearPrediction, GetLinearPrediction2
usab
cleanup unused classes the update is an ideal time to remove stuff find classes and systems that are largely unused and get rid of them candidates for removal the whole animation subsystem not aware of anyone using it didn t ever use it myself feels a bit clumsy to programmers and is mostly useless to artists without editor support extending it doesn t seem useful in the wake of far better systems like spine certain very specialized mathf methods getlinearprediction
1
7,965
5,291,668,544
IssuesEvent
2017-02-08 23:11:25
materials-commons/materialscommons.org
https://api.github.com/repos/materials-commons/materialscommons.org
closed
Not enough information in samples to select the proper sample when linking process to sample
app:mcprojects area:UI area:workflow factor:high impact:usability type:cleanup type:feature
When the popup listing samples to link to a process comes up it shows the sample name and the associated process. This is not enough information to distinguish a sample from. For example say I have a sample that went through 2 heat treatments, which each process named heat treatment, then the selection looks as follows Sample * [ ] Create Sample * [ ] Heat Treatment * [ ] Heat Treatment From this list it is unclear which version of the sample to choose because the two processes share the same name. More information should be displayed to help the user distinguish between the processes.
True
Not enough information in samples to select the proper sample when linking process to sample - When the popup listing samples to link to a process comes up it shows the sample name and the associated process. This is not enough information to distinguish a sample from. For example say I have a sample that went through 2 heat treatments, which each process named heat treatment, then the selection looks as follows Sample * [ ] Create Sample * [ ] Heat Treatment * [ ] Heat Treatment From this list it is unclear which version of the sample to choose because the two processes share the same name. More information should be displayed to help the user distinguish between the processes.
usab
not enough information in samples to select the proper sample when linking process to sample when the popup listing samples to link to a process comes up it shows the sample name and the associated process this is not enough information to distinguish a sample from for example say i have a sample that went through heat treatments which each process named heat treatment then the selection looks as follows sample create sample heat treatment heat treatment from this list it is unclear which version of the sample to choose because the two processes share the same name more information should be displayed to help the user distinguish between the processes
1
24,469
23,789,128,684
IssuesEvent
2022-09-02 13:02:36
asteroid-lang/asteroid
https://api.github.com/repos/asteroid-lang/asteroid
closed
Debugger
enhancement usability project
We need an interactive debugger for Asteroid. This should probably be modeled after ML or Haskell debuggers. How much of pattern matching should we expose? Should one be able to set a break point within a pattern match? How do first-class patterns affect debugging?
True
Debugger - We need an interactive debugger for Asteroid. This should probably be modeled after ML or Haskell debuggers. How much of pattern matching should we expose? Should one be able to set a break point within a pattern match? How do first-class patterns affect debugging?
usab
debugger we need an interactive debugger for asteroid this should probably be modeled after ml or haskell debuggers how much of pattern matching should we expose should one be able to set a break point within a pattern match how do first class patterns affect debugging
1
9,317
6,218,917,225
IssuesEvent
2017-07-09 08:04:19
gama-platform/gama
https://api.github.com/repos/gama-platform/gama
closed
un-focus/ un-highlight an agent
> Enhancement Affects Usability Concerns Interface
I may be wrong that it does not exist yet. :) Through the inspect window, it is possible to focus and highlight an agent. I would now like to have a feature that allows to un-focus, un-highlight an agent. So may be in the actions menu within inspect, a check mark could indicate that current agent is in focus/ highlight and unchecking this should release the highlight/ focus of this agent. Because my understanding is that there is no way to un-focus or un-highlight an agent? Thanks
True
un-focus/ un-highlight an agent - I may be wrong that it does not exist yet. :) Through the inspect window, it is possible to focus and highlight an agent. I would now like to have a feature that allows to un-focus, un-highlight an agent. So may be in the actions menu within inspect, a check mark could indicate that current agent is in focus/ highlight and unchecking this should release the highlight/ focus of this agent. Because my understanding is that there is no way to un-focus or un-highlight an agent? Thanks
usab
un focus un highlight an agent i may be wrong that it does not exist yet through the inspect window it is possible to focus and highlight an agent i would now like to have a feature that allows to un focus un highlight an agent so may be in the actions menu within inspect a check mark could indicate that current agent is in focus highlight and unchecking this should release the highlight focus of this agent because my understanding is that there is no way to un focus or un highlight an agent thanks
1
41,742
21,924,220,113
IssuesEvent
2022-05-23 01:03:52
firebase/firebase-ios-sdk
https://api.github.com/repos/firebase/firebase-ios-sdk
closed
Performance: Crash in `InstrumentDownloadTaskWithRequest`
api: performance needs-info no-recent-activity
iOS 15.3.1 and some version over above this. Devices: iPhone XS, iPhone 11, iPhone 12 min and multiple version which supports iOS 15.3.1 and above. SDK installed using cocoa pods and version 8.4.0. FirebasePerformance FPRNSURLSessionInstrument.m - Line 561 __InstrumentDownloadTaskWithRequest_block_invoke + 561 https://console.firebase.google.com/project/tata-one/crashlytics/app/ios:com.tatadigital.tcp/issues/cc01768e3473ede3a1f5728a7353fee5?time=1649289600000:1650412799000&sessionEventKey=39c88f42b34748c2bbb91b3fe20a60b1_1664927412966934128
True
Performance: Crash in `InstrumentDownloadTaskWithRequest` - iOS 15.3.1 and some version over above this. Devices: iPhone XS, iPhone 11, iPhone 12 min and multiple version which supports iOS 15.3.1 and above. SDK installed using cocoa pods and version 8.4.0. FirebasePerformance FPRNSURLSessionInstrument.m - Line 561 __InstrumentDownloadTaskWithRequest_block_invoke + 561 https://console.firebase.google.com/project/tata-one/crashlytics/app/ios:com.tatadigital.tcp/issues/cc01768e3473ede3a1f5728a7353fee5?time=1649289600000:1650412799000&sessionEventKey=39c88f42b34748c2bbb91b3fe20a60b1_1664927412966934128
non_usab
performance crash in instrumentdownloadtaskwithrequest ios and some version over above this devices iphone xs iphone iphone min and multiple version which supports ios and above sdk installed using cocoa pods and version firebaseperformance fprnsurlsessioninstrument m line instrumentdownloadtaskwithrequest block invoke
0
83,076
23,960,600,643
IssuesEvent
2022-09-12 18:43:56
lowRISC/opentitan
https://api.github.com/repos/lowRISC/opentitan
opened
[opentitantool] Consider adding the CRC check back to update-usr-access command
Component:Software Priority:P3 Type:Task SW:opentitantool SW:Build System
#14877 adds the `update-usr-access` to `opentitantool` and uses it in `bitstream_splice` to improve local workflows that involve splicing a locally built `rom` or `test_rom` into a bitstream from the GCS bucket. See #14865 for details. One particular shortcoming of the implementation in #14877 is that it disables the CRC check during FPGA programming. We should consider enabling it again.
1.0
[opentitantool] Consider adding the CRC check back to update-usr-access command - #14877 adds the `update-usr-access` to `opentitantool` and uses it in `bitstream_splice` to improve local workflows that involve splicing a locally built `rom` or `test_rom` into a bitstream from the GCS bucket. See #14865 for details. One particular shortcoming of the implementation in #14877 is that it disables the CRC check during FPGA programming. We should consider enabling it again.
non_usab
consider adding the crc check back to update usr access command adds the update usr access to opentitantool and uses it in bitstream splice to improve local workflows that involve splicing a locally built rom or test rom into a bitstream from the gcs bucket see for details one particular shortcoming of the implementation in is that it disables the crc check during fpga programming we should consider enabling it again
0
130,325
10,606,012,805
IssuesEvent
2019-10-10 21:54:17
brave/brave-browser
https://api.github.com/repos/brave/brave-browser
opened
Browser crash when new private window is opened in German locale
QA/Test-Plan-Specified QA/Yes crash regression release/blocking
Found while testing https://github.com/brave/internal/issues/647 ## Steps to Reproduce <!--Please add a series of steps to reproduce the issue--> 1. Set system locale to German/Germany 2. Open New private window ## Actual result: <!--Please add screenshots if needed--> Crash Uploaded Crash Report ID ad9fefcf0c82c402 (Local Context: 81524cdd-7e63-4ba4-bc71-e3bb80e51514) Uploaded Crash Report ID a28ccf2265fd35b3 (Local Context: e58dd7e4-0be4-4804-97ed-5422b23bd0ff) ## Expected result: No Crash ## Reproduces how often: <!--[Easily reproduced/Intermittent issue/No steps to reproduce]--> Always ## Brave version (brave://version info) <!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details--> Brave | 0.70.112 Chromium: 77.0.3865.90 (Official Build) beta (64-bit) -- | -- Revision | 58c425ba843df2918d9d4b409331972646c393dd-refs/branch-heads/3865@{#830} OS | Windows 10 OS Version 1903 (Build 18362.175) Brave | 0.70.112 Chromium: 77.0.3865.90 (Official Build) beta (64-bit) -- | -- Revision | 58c425ba843df2918d9d4b409331972646c393dd-refs/branch-heads/3865@{#830} OS | Ubuntu 18.04 LTS ## Version/Channel Information: <!--Does this issue happen on any other channels? Or is it specific to a certain channel?--> - Can you reproduce this issue with the current release? no - Can you reproduce this issue with the beta channel? yes - Can you reproduce this issue with the dev channel? - Can you reproduce this issue with the nightly channel? cc @brave/legacy_qa @rebron @bsclifton
1.0
Browser crash when new private window is opened in German locale - Found while testing https://github.com/brave/internal/issues/647 ## Steps to Reproduce <!--Please add a series of steps to reproduce the issue--> 1. Set system locale to German/Germany 2. Open New private window ## Actual result: <!--Please add screenshots if needed--> Crash Uploaded Crash Report ID ad9fefcf0c82c402 (Local Context: 81524cdd-7e63-4ba4-bc71-e3bb80e51514) Uploaded Crash Report ID a28ccf2265fd35b3 (Local Context: e58dd7e4-0be4-4804-97ed-5422b23bd0ff) ## Expected result: No Crash ## Reproduces how often: <!--[Easily reproduced/Intermittent issue/No steps to reproduce]--> Always ## Brave version (brave://version info) <!--For installed build, please copy Brave, Revision and OS from brave://version and paste here. If building from source please mention it along with brave://version details--> Brave | 0.70.112 Chromium: 77.0.3865.90 (Official Build) beta (64-bit) -- | -- Revision | 58c425ba843df2918d9d4b409331972646c393dd-refs/branch-heads/3865@{#830} OS | Windows 10 OS Version 1903 (Build 18362.175) Brave | 0.70.112 Chromium: 77.0.3865.90 (Official Build) beta (64-bit) -- | -- Revision | 58c425ba843df2918d9d4b409331972646c393dd-refs/branch-heads/3865@{#830} OS | Ubuntu 18.04 LTS ## Version/Channel Information: <!--Does this issue happen on any other channels? Or is it specific to a certain channel?--> - Can you reproduce this issue with the current release? no - Can you reproduce this issue with the beta channel? yes - Can you reproduce this issue with the dev channel? - Can you reproduce this issue with the nightly channel? cc @brave/legacy_qa @rebron @bsclifton
non_usab
browser crash when new private window is opened in german locale found while testing steps to reproduce set system locale to german germany open new private window actual result crash uploaded crash report id local context uploaded crash report id local context expected result no crash reproduces how often always brave version brave version info brave chromium   official build  beta  bit revision refs branch heads os windows  os version build brave chromium   official build  beta  bit revision refs branch heads os ubuntu lts version channel information can you reproduce this issue with the current release no can you reproduce this issue with the beta channel yes can you reproduce this issue with the dev channel can you reproduce this issue with the nightly channel cc brave legacy qa rebron bsclifton
0
18,205
12,677,677,952
IssuesEvent
2020-06-19 08:14:34
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
No grid in side orthogonal views
archived enhancement topic:editor usability
**Godot version:** 3.0.2, but is present in 3.1 dev **OS/device including version:** Elementary OS Loki **Issue description:** Grid is only visible in the top view, it is expected to be in all orthogonal views. **Steps to reproduce:** Switch the 3D viewport to left view, and then to orthogonal view ![selection_056](https://user-images.githubusercontent.com/1463277/41193844-1901b92e-6c1b-11e8-968e-75b020c63f99.png)
True
No grid in side orthogonal views - **Godot version:** 3.0.2, but is present in 3.1 dev **OS/device including version:** Elementary OS Loki **Issue description:** Grid is only visible in the top view, it is expected to be in all orthogonal views. **Steps to reproduce:** Switch the 3D viewport to left view, and then to orthogonal view ![selection_056](https://user-images.githubusercontent.com/1463277/41193844-1901b92e-6c1b-11e8-968e-75b020c63f99.png)
usab
no grid in side orthogonal views godot version but is present in dev os device including version elementary os loki issue description grid is only visible in the top view it is expected to be in all orthogonal views steps to reproduce switch the viewport to left view and then to orthogonal view
1
157,622
13,697,693,861
IssuesEvent
2020-10-01 03:49:00
rsksmart/rif-identity-services
https://api.github.com/repos/rsksmart/rif-identity-services
closed
Move issuer app outside issuer scripts
dev documentation
Issuer app should be independent of the back office run. Let's move it outside that folder.
1.0
Move issuer app outside issuer scripts - Issuer app should be independent of the back office run. Let's move it outside that folder.
non_usab
move issuer app outside issuer scripts issuer app should be independent of the back office run let s move it outside that folder
0
11,810
9,487,399,247
IssuesEvent
2019-04-22 16:45:07
Azure/azure-libraries-for-java
https://api.github.com/repos/Azure/azure-libraries-for-java
opened
Wrap listFunctions in azure-mgmt-appservice
App Services Mgmt
Exists as inner, needs wrapping: ```java /** * List the functions for a web site, or a deployment slot. * List the functions for a web site, or a deployment slot. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param name Site name. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the PagedList&lt;FunctionEnvelopeInner&gt; object if successful. */ public PagedList<FunctionEnvelopeInner> listFunctions(final String resourceGroupName, final String name) { ```
1.0
Wrap listFunctions in azure-mgmt-appservice - Exists as inner, needs wrapping: ```java /** * List the functions for a web site, or a deployment slot. * List the functions for a web site, or a deployment slot. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param name Site name. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the PagedList&lt;FunctionEnvelopeInner&gt; object if successful. */ public PagedList<FunctionEnvelopeInner> listFunctions(final String resourceGroupName, final String name) { ```
non_usab
wrap listfunctions in azure mgmt appservice exists as inner needs wrapping java list the functions for a web site or a deployment slot list the functions for a web site or a deployment slot param resourcegroupname name of the resource group to which the resource belongs param name site name throws illegalargumentexception thrown if parameters fail the validation throws cloudexception thrown if the request is rejected by server throws runtimeexception all other wrapped checked exceptions if the request fails to be sent return the pagedlist lt functionenvelopeinner gt object if successful public pagedlist listfunctions final string resourcegroupname final string name
0
18,068
12,748,414,342
IssuesEvent
2020-06-26 20:04:17
hyphacoop/organizing
https://api.github.com/repos/hyphacoop/organizing
opened
Re-evaluate external services
[priority-★☆☆] wg:infrastructure
<sup>_This initial comment is collaborative and open to modification by all._</sup> ## Task Summary 🎟️ **Re-ticketed from:** # 🗣 **Loomio:** N/A 📅 **Due date:** end-Oct 🎯 **Success criteria:** Have a plan for continued hosting (or deprecation) of each service listed below. In our discussions, we planned to not migrate these services: >- VM8: email 💧💾💾💾 >- VM9: matrix + whatsapp bridge + chatbot 💧💧💾 >- VM4: nextcloud + onlyoffice 💧💧💾💾 >- VM10: android vm 💧 We should re-evaluate the long-term plan for these services, and deprecate ones that are no longer important. ## To Do - [ ] Discuss and have a plan for each service
1.0
Re-evaluate external services - <sup>_This initial comment is collaborative and open to modification by all._</sup> ## Task Summary 🎟️ **Re-ticketed from:** # 🗣 **Loomio:** N/A 📅 **Due date:** end-Oct 🎯 **Success criteria:** Have a plan for continued hosting (or deprecation) of each service listed below. In our discussions, we planned to not migrate these services: >- VM8: email 💧💾💾💾 >- VM9: matrix + whatsapp bridge + chatbot 💧💧💾 >- VM4: nextcloud + onlyoffice 💧💧💾💾 >- VM10: android vm 💧 We should re-evaluate the long-term plan for these services, and deprecate ones that are no longer important. ## To Do - [ ] Discuss and have a plan for each service
non_usab
re evaluate external services this initial comment is collaborative and open to modification by all task summary 🎟️ re ticketed from 🗣 loomio n a 📅 due date end oct 🎯 success criteria have a plan for continued hosting or deprecation of each service listed below in our discussions we planned to not migrate these services email 💧💾💾💾 matrix whatsapp bridge chatbot 💧💧💾 nextcloud onlyoffice 💧💧💾💾 android vm 💧 we should re evaluate the long term plan for these services and deprecate ones that are no longer important to do discuss and have a plan for each service
0
281,361
30,888,778,574
IssuesEvent
2023-08-04 01:49:00
nidhi7598/linux-4.1.15_CVE-2019-10220
https://api.github.com/repos/nidhi7598/linux-4.1.15_CVE-2019-10220
reopened
CVE-2020-25656 (Medium) detected in linuxlinux-4.4.302
Mend: dependency security vulnerability
## CVE-2020-25656 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.4.302</b></p></summary> <p> <p>The Linux Kernel</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-4.1.15_CVE-2019-10220/commit/6a0d304d962ca933d73f507ce02157ef2791851c">6a0d304d962ca933d73f507ce02157ef2791851c</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/tty/vt/keyboard.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/tty/vt/keyboard.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> A flaw was found in the Linux kernel. A use-after-free was found in the way the console subsystem was using ioctls KDGKBSENT and KDSKBSENT. A local user could use this flaw to get read memory access out of bounds. The highest threat from this vulnerability is to data confidentiality. <p>Publish Date: 2020-12-02 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-25656>CVE-2020-25656</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Release Date: 2020-12-02</p> <p>Fix Resolution: 4.14.204, 4.19.155, 4.4.242, 4.9.242, 5.4.75, 5.9.5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-25656 (Medium) detected in linuxlinux-4.4.302 - ## CVE-2020-25656 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.4.302</b></p></summary> <p> <p>The Linux Kernel</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-4.1.15_CVE-2019-10220/commit/6a0d304d962ca933d73f507ce02157ef2791851c">6a0d304d962ca933d73f507ce02157ef2791851c</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/tty/vt/keyboard.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/tty/vt/keyboard.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> A flaw was found in the Linux kernel. A use-after-free was found in the way the console subsystem was using ioctls KDGKBSENT and KDSKBSENT. A local user could use this flaw to get read memory access out of bounds. The highest threat from this vulnerability is to data confidentiality. <p>Publish Date: 2020-12-02 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-25656>CVE-2020-25656</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Release Date: 2020-12-02</p> <p>Fix Resolution: 4.14.204, 4.19.155, 4.4.242, 4.9.242, 5.4.75, 5.9.5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_usab
cve medium detected in linuxlinux cve medium severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch master vulnerable source files drivers tty vt keyboard c drivers tty vt keyboard c vulnerability details a flaw was found in the linux kernel a use after free was found in the way the console subsystem was using ioctls kdgkbsent and kdskbsent a local user could use this flaw to get read memory access out of bounds the highest threat from this vulnerability is to data confidentiality publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required high user interaction none scope unchanged impact metrics confidentiality impact high integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version release date fix resolution step up your open source security game with mend
0
163,045
13,909,017,839
IssuesEvent
2020-10-20 14:27:33
NAL-i5K/jbrowse_track_configs
https://api.github.com/repos/NAL-i5K/jbrowse_track_configs
closed
Document requirements
Hacktoberfest documentation
Document how to save these config files. In the local directory structure, these are really simple, but in the whole filesystem, these are not saved in a standard way at all.
1.0
Document requirements - Document how to save these config files. In the local directory structure, these are really simple, but in the whole filesystem, these are not saved in a standard way at all.
non_usab
document requirements document how to save these config files in the local directory structure these are really simple but in the whole filesystem these are not saved in a standard way at all
0
17,768
12,312,983,123
IssuesEvent
2020-05-12 14:41:29
SuffolkLITLab/docassemble-MAVirtualCourt
https://api.github.com/repos/SuffolkLITLab/docassemble-MAVirtualCourt
closed
All: Missing 'back' button on signing documents
docassemble fix usability / ux to investigate
On the “sign your documents” page you can’t back up (no back or cancel button)
True
All: Missing 'back' button on signing documents - On the “sign your documents” page you can’t back up (no back or cancel button)
usab
all missing back button on signing documents on the “sign your documents” page you can’t back up no back or cancel button
1
21,775
17,694,268,779
IssuesEvent
2021-08-24 13:43:59
JetBrains-Research/jbr
https://api.github.com/repos/JetBrains-Research/jbr
opened
Load tracks from ENCODE don't put tracks after selected ones in browser
usability Issue
Regular Open track places track after selection
True
Load tracks from ENCODE don't put tracks after selected ones in browser - Regular Open track places track after selection
usab
load tracks from encode don t put tracks after selected ones in browser regular open track places track after selection
1
157,751
24,719,319,626
IssuesEvent
2022-10-20 09:27:15
vegaprotocol/vega.xyz
https://api.github.com/repos/vegaprotocol/vega.xyz
closed
Reflect the new "new proposal" journey on token on website + forum
ux-and-visual-design website chore
## Chore Now that you can create a proposal in the UI of token front end, we need to update the content on the website to reflect this. Assumption that this involves copy changes only. ## Acceptance Criteria - [ ] I can see that I can create and submit a proposal on the token front end from the website governance page and market creation page and forum guide topic(s) ## Tasks - [x] Read through what we have right now on the governance page, market creation page and forum guide topics and identify where updates to share this new feature - [ ] Update [testnet forum post](https://community.vega.xyz/t/about-fairground-testnet-governance-proposals/4016), changing: > Vote and submit a proposal on chain using the [Vega Token dapp](https://token.fairground.wtf/) to > Use the Vega Token dApp to [vote on proposals](https://token.fairground.wtf/governance) and [submit your own](https://token.fairground.wtf/governance/propose/) - [ ] Update the [mainnet forum post](https://community.vega.xyz/t/about-the-governance-category/3849), changing: > Vote and submit a proposal on chain using the [Vega Token dapp](https://token.vega.xyz/governance) to > Use the Vega Token dApp to [vote on proposals](https://token.vega.xyz/governance) and [submit your own](https://token.vega.xyz/governance/propose) - [ ] Make updates! ## Additional details / background info "New proposal" feature here - https://token.vega.xyz/governance/propose
1.0
Reflect the new "new proposal" journey on token on website + forum - ## Chore Now that you can create a proposal in the UI of token front end, we need to update the content on the website to reflect this. Assumption that this involves copy changes only. ## Acceptance Criteria - [ ] I can see that I can create and submit a proposal on the token front end from the website governance page and market creation page and forum guide topic(s) ## Tasks - [x] Read through what we have right now on the governance page, market creation page and forum guide topics and identify where updates to share this new feature - [ ] Update [testnet forum post](https://community.vega.xyz/t/about-fairground-testnet-governance-proposals/4016), changing: > Vote and submit a proposal on chain using the [Vega Token dapp](https://token.fairground.wtf/) to > Use the Vega Token dApp to [vote on proposals](https://token.fairground.wtf/governance) and [submit your own](https://token.fairground.wtf/governance/propose/) - [ ] Update the [mainnet forum post](https://community.vega.xyz/t/about-the-governance-category/3849), changing: > Vote and submit a proposal on chain using the [Vega Token dapp](https://token.vega.xyz/governance) to > Use the Vega Token dApp to [vote on proposals](https://token.vega.xyz/governance) and [submit your own](https://token.vega.xyz/governance/propose) - [ ] Make updates! ## Additional details / background info "New proposal" feature here - https://token.vega.xyz/governance/propose
non_usab
reflect the new new proposal journey on token on website forum chore now that you can create a proposal in the ui of token front end we need to update the content on the website to reflect this assumption that this involves copy changes only acceptance criteria i can see that i can create and submit a proposal on the token front end from the website governance page and market creation page and forum guide topic s tasks read through what we have right now on the governance page market creation page and forum guide topics and identify where updates to share this new feature update changing vote and submit a proposal on chain using the to use the vega token dapp to and update the changing vote and submit a proposal on chain using the to use the vega token dapp to and make updates additional details background info new proposal feature here
0
3,666
3,512,539,867
IssuesEvent
2016-01-11 02:09:48
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
CollisionPolygon2D doesn't display colors per generated quadrangle
bug junior job topic:editor usability
Not sure of the "quadrangle" here. But look at this example : using Godot 1.1 ![allthecolors](https://cloud.githubusercontent.com/assets/4671710/11768914/8347527e-a1db-11e5-8ee9-6e9e6887e1a5.png) and now, with latest 2.x : ![onlybluecolor](https://cloud.githubusercontent.com/assets/4671710/11768944/7771c96a-a1dc-11e5-9975-71d2d38ad0bf.png) This is the same scene, in which there is a sprite for the background, with a CollisionPolygon2D drawn on top of it, for having "solid" walls for interaction wiht the player. I suppose this is not a totally 100% correct workflow, but it works. The colors were very useful, because the CollisionPolygon2D generates all those "quadrangles", i think this is the same be it in 1.x and 2.x ? Anyway there are some rare cases where one quadrangle is not drawn correctly and the collisions are ignored for that buggy area, which can be corrected by moving/adding some points in order to generate the missing quadrangle.
True
CollisionPolygon2D doesn't display colors per generated quadrangle - Not sure of the "quadrangle" here. But look at this example : using Godot 1.1 ![allthecolors](https://cloud.githubusercontent.com/assets/4671710/11768914/8347527e-a1db-11e5-8ee9-6e9e6887e1a5.png) and now, with latest 2.x : ![onlybluecolor](https://cloud.githubusercontent.com/assets/4671710/11768944/7771c96a-a1dc-11e5-9975-71d2d38ad0bf.png) This is the same scene, in which there is a sprite for the background, with a CollisionPolygon2D drawn on top of it, for having "solid" walls for interaction wiht the player. I suppose this is not a totally 100% correct workflow, but it works. The colors were very useful, because the CollisionPolygon2D generates all those "quadrangles", i think this is the same be it in 1.x and 2.x ? Anyway there are some rare cases where one quadrangle is not drawn correctly and the collisions are ignored for that buggy area, which can be corrected by moving/adding some points in order to generate the missing quadrangle.
usab
doesn t display colors per generated quadrangle not sure of the quadrangle here but look at this example using godot and now with latest x this is the same scene in which there is a sprite for the background with a drawn on top of it for having solid walls for interaction wiht the player i suppose this is not a totally correct workflow but it works the colors were very useful because the generates all those quadrangles i think this is the same be it in x and x anyway there are some rare cases where one quadrangle is not drawn correctly and the collisions are ignored for that buggy area which can be corrected by moving adding some points in order to generate the missing quadrangle
1
21,808
17,790,864,314
IssuesEvent
2021-08-31 16:01:26
mmiron-HC/WST-RSAMS
https://api.github.com/repos/mmiron-HC/WST-RSAMS
opened
Find Recalls: Unexpected behaviour occurring when clicking the Last button
WCAG Usability
URL: https://hcdev.openplus.ca/en User Agent: Chrome 92.0, Firefox 91.0 Language: Both Issue Description: When the user selects the 'Last' button at the bottom of the page, the numbered buttons are switched over to year numbers. Steps to reproduce: Mouse and click Expected results: The page numbers should not change ![image](https://user-images.githubusercontent.com/68117281/131535619-b917edce-6abd-48ff-97c4-8f31a016875d.png)
True
Find Recalls: Unexpected behaviour occurring when clicking the Last button - URL: https://hcdev.openplus.ca/en User Agent: Chrome 92.0, Firefox 91.0 Language: Both Issue Description: When the user selects the 'Last' button at the bottom of the page, the numbered buttons are switched over to year numbers. Steps to reproduce: Mouse and click Expected results: The page numbers should not change ![image](https://user-images.githubusercontent.com/68117281/131535619-b917edce-6abd-48ff-97c4-8f31a016875d.png)
usab
find recalls unexpected behaviour occurring when clicking the last button url user agent chrome firefox language both issue description when the user selects the last button at the bottom of the page the numbered buttons are switched over to year numbers steps to reproduce mouse and click expected results the page numbers should not change
1
213,973
16,550,520,602
IssuesEvent
2021-05-28 08:03:18
dotnet/winforms
https://api.github.com/repos/dotnet/winforms
closed
Unicode in method name AccessibleObject_Parent_Is..alendarAccessibleObject()
:construction: work in progress test-bug
https://github.com/dotnet/winforms/blob/542c6129652d47aa4f1b726208c8fe068f264973/src/System.Windows.Forms/tests/UnitTests/AccessibleObjects/MonthCalendar.CalendarBodyAccessibleObjectTests.cs#L161 Introduced in #4758 by @vladimir-krestov ``` 00000000 20 20 20 20 20 20 20 20 70 75 62 6c 69 63 20 76 | public v| 00000010 6f 69 64 20 43 61 6c 65 6e 64 61 72 42 6f 64 79 |oid CalendarBody| 00000020 41 63 63 65 73 73 69 62 6c 65 4f 62 6a 65 63 74 |AccessibleObject| 00000030 5f 50 61 72 65 6e 74 5f 49 73 d0 a1 61 6c 65 6e |_Parent_Is..alen| 00000040 64 61 72 41 63 63 65 73 73 69 62 6c 65 4f 62 6a |darAccessibleObj| 00000050 65 63 74 28 29 0a |ect().| 00000056 ```
1.0
Unicode in method name AccessibleObject_Parent_Is..alendarAccessibleObject() - https://github.com/dotnet/winforms/blob/542c6129652d47aa4f1b726208c8fe068f264973/src/System.Windows.Forms/tests/UnitTests/AccessibleObjects/MonthCalendar.CalendarBodyAccessibleObjectTests.cs#L161 Introduced in #4758 by @vladimir-krestov ``` 00000000 20 20 20 20 20 20 20 20 70 75 62 6c 69 63 20 76 | public v| 00000010 6f 69 64 20 43 61 6c 65 6e 64 61 72 42 6f 64 79 |oid CalendarBody| 00000020 41 63 63 65 73 73 69 62 6c 65 4f 62 6a 65 63 74 |AccessibleObject| 00000030 5f 50 61 72 65 6e 74 5f 49 73 d0 a1 61 6c 65 6e |_Parent_Is..alen| 00000040 64 61 72 41 63 63 65 73 73 69 62 6c 65 4f 62 6a |darAccessibleObj| 00000050 65 63 74 28 29 0a |ect().| 00000056 ```
non_usab
unicode in method name accessibleobject parent is alendaraccessibleobject introduced in by vladimir krestov public v oid calendarbody accessibleobject parent is alen daraccessibleobj ect
0
258,391
19,559,321,981
IssuesEvent
2022-01-03 14:11:48
hazelcast/hazelcast-platform-operator
https://api.github.com/repos/hazelcast/hazelcast-platform-operator
opened
Documentation: Misleading check
bug documentation
I could not validate this due to https://github.com/hazelcast/hazelcast-platform-operator/issues/98, but I believe the [Getting Started](https://docs.hazelcast.com/operator/latest/get-started) guide has a wrong step. It looks like this: ![image](https://user-images.githubusercontent.com/158619/147940283-62a8bcd1-8b9c-479e-b830-be255883936e.png) See the 3rd step: `kubectl logs pod/hazelcast-sample-0`. I don't know where is the pod name coming from. Given the CR has ``` metadata: name: hazelcast ``` I guess it should have been `kubectl logs pod/hazelcast-0` ? Related issue: https://github.com/hazelcast/hazelcast-platform-operator/issues/99
1.0
Documentation: Misleading check - I could not validate this due to https://github.com/hazelcast/hazelcast-platform-operator/issues/98, but I believe the [Getting Started](https://docs.hazelcast.com/operator/latest/get-started) guide has a wrong step. It looks like this: ![image](https://user-images.githubusercontent.com/158619/147940283-62a8bcd1-8b9c-479e-b830-be255883936e.png) See the 3rd step: `kubectl logs pod/hazelcast-sample-0`. I don't know where is the pod name coming from. Given the CR has ``` metadata: name: hazelcast ``` I guess it should have been `kubectl logs pod/hazelcast-0` ? Related issue: https://github.com/hazelcast/hazelcast-platform-operator/issues/99
non_usab
documentation misleading check i could not validate this due to but i believe the guide has a wrong step it looks like this see the step kubectl logs pod hazelcast sample i don t know where is the pod name coming from given the cr has metadata name hazelcast i guess it should have been kubectl logs pod hazelcast related issue
0
89,413
3,793,694,265
IssuesEvent
2016-03-22 14:45:43
handsontable/handsontable
https://api.github.com/repos/handsontable/handsontable
closed
Editable column names
Feature Priority: normal
It should be possible to allow the editing of column headers, with their own change event and a way to get the current header values.
1.0
Editable column names - It should be possible to allow the editing of column headers, with their own change event and a way to get the current header values.
non_usab
editable column names it should be possible to allow the editing of column headers with their own change event and a way to get the current header values
0
561,098
16,611,133,709
IssuesEvent
2021-06-02 11:40:02
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
opened
[0.9.4 staging-2004] Follow player stops work in vehicle if you move minimap by mouse.
Category: UI Priority: Low Regression Type: Bug
It should work like with just Avatar - you use minimap, when avatar start move follow minimap start work again. Step to reproduce: -open minimap settings and set Follow player: ![image](https://user-images.githubusercontent.com/45708377/120471442-61a69e00-c3ad-11eb-817b-69acbbad644e.png) - sit on any vehicle, start move, follow player works: ![image](https://user-images.githubusercontent.com/45708377/120471375-4dfb3780-c3ad-11eb-9bbf-3a59442288fa.png) - open minimap and move it so you should not see player icon: ![image](https://user-images.githubusercontent.com/45708377/120471527-7c791280-c3ad-11eb-986c-459065680e6c.png) - close minimap and start move with vehicle, follow minimap doesn't work now: ![image](https://user-images.githubusercontent.com/45708377/120471592-8ef34c00-c3ad-11eb-91ef-09af0a6c8d9d.png)
1.0
[0.9.4 staging-2004] Follow player stops work in vehicle if you move minimap by mouse. - It should work like with just Avatar - you use minimap, when avatar start move follow minimap start work again. Step to reproduce: -open minimap settings and set Follow player: ![image](https://user-images.githubusercontent.com/45708377/120471442-61a69e00-c3ad-11eb-817b-69acbbad644e.png) - sit on any vehicle, start move, follow player works: ![image](https://user-images.githubusercontent.com/45708377/120471375-4dfb3780-c3ad-11eb-9bbf-3a59442288fa.png) - open minimap and move it so you should not see player icon: ![image](https://user-images.githubusercontent.com/45708377/120471527-7c791280-c3ad-11eb-986c-459065680e6c.png) - close minimap and start move with vehicle, follow minimap doesn't work now: ![image](https://user-images.githubusercontent.com/45708377/120471592-8ef34c00-c3ad-11eb-91ef-09af0a6c8d9d.png)
non_usab
follow player stops work in vehicle if you move minimap by mouse it should work like with just avatar you use minimap when avatar start move follow minimap start work again step to reproduce open minimap settings and set follow player sit on any vehicle start move follow player works open minimap and move it so you should not see player icon close minimap and start move with vehicle follow minimap doesn t work now
0
213,240
23,969,136,087
IssuesEvent
2022-09-13 05:55:32
shaneclarke-whitesource/fancyBox
https://api.github.com/repos/shaneclarke-whitesource/fancyBox
closed
CVE-2020-7656 (Medium) detected in jquery-1.8.2.min.js - autoclosed
security vulnerability
## CVE-2020-7656 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.8.2.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.2/jquery.min.js</a></p> <p>Path to dependency file: /demo/index.html</p> <p>Path to vulnerable library: /demo/../lib/jquery-1.8.2.min.js,/lib/jquery-1.8.2.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-1.8.2.min.js** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove "<script>" HTML tags that contain a whitespace character, i.e: "</script >", which results in the enclosed script logic to be executed. <p>Publish Date: 2020-05-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656>CVE-2020-7656</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-q4m3-2j7h-f7xw">https://github.com/advisories/GHSA-q4m3-2j7h-f7xw</a></p> <p>Release Date: 2020-05-19</p> <p>Fix Resolution: jquery - 1.9.0</p> </p> </details> <p></p>
True
CVE-2020-7656 (Medium) detected in jquery-1.8.2.min.js - autoclosed - ## CVE-2020-7656 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-1.8.2.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.2/jquery.min.js</a></p> <p>Path to dependency file: /demo/index.html</p> <p>Path to vulnerable library: /demo/../lib/jquery-1.8.2.min.js,/lib/jquery-1.8.2.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-1.8.2.min.js** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> jquery prior to 1.9.0 allows Cross-site Scripting attacks via the load method. The load method fails to recognize and remove "<script>" HTML tags that contain a whitespace character, i.e: "</script >", which results in the enclosed script logic to be executed. <p>Publish Date: 2020-05-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-7656>CVE-2020-7656</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-q4m3-2j7h-f7xw">https://github.com/advisories/GHSA-q4m3-2j7h-f7xw</a></p> <p>Release Date: 2020-05-19</p> <p>Fix Resolution: jquery - 1.9.0</p> </p> </details> <p></p>
non_usab
cve medium detected in jquery min js autoclosed cve medium severity vulnerability vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file demo index html path to vulnerable library demo lib jquery min js lib jquery min js dependency hierarchy x jquery min js vulnerable library found in base branch master vulnerability details jquery prior to allows cross site scripting attacks via the load method the load method fails to recognize and remove html tags that contain a whitespace character i e which results in the enclosed script logic to be executed publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery
0
4,517
3,870,588,069
IssuesEvent
2016-04-11 05:02:26
lionheart/openradar-mirror
https://api.github.com/repos/lionheart/openradar-mirror
opened
22877285: Swift Compiler: Concatenation of multiple Strings with Integers cannot be parsed in reasonable time
classification:ui/usability reproducible:always status:open
#### Description Summary: When trying to concatenate three Strings and Integers three or more times, the compiler will fail to parse the expression, because the "Expression was too complex to be solved in reasonable time; consider breaking up the expression into distinct sub-expressions". Instead an error message should be shown to indicate that Strings and Integers cannot be concatenated because + is not defined for String and Integer as arguments Steps to Reproduce: Try to compile the sample project Expected Results: The compiler should return an error that "Binary operator '+' cannot be applied to operands of type 'String' and 'Int'" Actual Results: You get an error message saying: "Expression was too complex to be solved in reasonable time; consider breaking up the expression into distinct sub-expressions" Version: Xcode 7.0 (7A218) and 7.1 beta (7B75) Notes: Configuration: Attachments: 'SampleProject.zip' was successfully uploaded. The sample project contains the following file: let conversation: Int = 5 let pollOption: Int = 4 let user: Int = 2 let url = "/conversations/" + conversation + "/pollOptions/" + pollOption + "/votes/" + user - Product Version: Xcode 7.0 (7A218) and 7.1 beta (7B75) Created: 2015-09-28T11:29:03.141960 Originated: 2015-09-28T13:18:00 Open Radar Link: http://www.openradar.me/22877285
True
22877285: Swift Compiler: Concatenation of multiple Strings with Integers cannot be parsed in reasonable time - #### Description Summary: When trying to concatenate three Strings and Integers three or more times, the compiler will fail to parse the expression, because the "Expression was too complex to be solved in reasonable time; consider breaking up the expression into distinct sub-expressions". Instead an error message should be shown to indicate that Strings and Integers cannot be concatenated because + is not defined for String and Integer as arguments Steps to Reproduce: Try to compile the sample project Expected Results: The compiler should return an error that "Binary operator '+' cannot be applied to operands of type 'String' and 'Int'" Actual Results: You get an error message saying: "Expression was too complex to be solved in reasonable time; consider breaking up the expression into distinct sub-expressions" Version: Xcode 7.0 (7A218) and 7.1 beta (7B75) Notes: Configuration: Attachments: 'SampleProject.zip' was successfully uploaded. The sample project contains the following file: let conversation: Int = 5 let pollOption: Int = 4 let user: Int = 2 let url = "/conversations/" + conversation + "/pollOptions/" + pollOption + "/votes/" + user - Product Version: Xcode 7.0 (7A218) and 7.1 beta (7B75) Created: 2015-09-28T11:29:03.141960 Originated: 2015-09-28T13:18:00 Open Radar Link: http://www.openradar.me/22877285
usab
swift compiler concatenation of multiple strings with integers cannot be parsed in reasonable time description summary when trying to concatenate three strings and integers three or more times the compiler will fail to parse the expression because the expression was too complex to be solved in reasonable time consider breaking up the expression into distinct sub expressions instead an error message should be shown to indicate that strings and integers cannot be concatenated because is not defined for string and integer as arguments steps to reproduce try to compile the sample project expected results the compiler should return an error that binary operator cannot be applied to operands of type string and int actual results you get an error message saying expression was too complex to be solved in reasonable time consider breaking up the expression into distinct sub expressions version xcode and beta notes configuration attachments sampleproject zip was successfully uploaded the sample project contains the following file let conversation int let polloption int let user int let url conversations conversation polloptions polloption votes user product version xcode and beta created originated open radar link
1
10,282
6,662,328,377
IssuesEvent
2017-10-02 12:44:20
prometheus/alertmanager
https://api.github.com/repos/prometheus/alertmanager
closed
How to inhibit all other alerts if target is down?
area/usability component/config component/notify
Hi, Our prometheus has many node_exporter targets, and configured many alert rules. If one node_exporter instance is down (up!=1), many alerts are sent out. Only "instance is down" is meaningful (because this is actual issue). I want to mute all other alerts. I try to configure inhibit rules like this: ``` inhibit_rules: - target_match: source_match: alertname: 'instance_down' equal: ['job', 'instance'] ``` It inhibit all alerts about this non-up instance, but also inbibit "instance_down" itself. I try to use regex to match other alertnames: ``` inhibit_rules: - target_match_re: alertname: '(?!node_down)' source_match: alertname: 'instance_down' equal: ['job', 'instance'] ``` But, found that golang `regexp` does not support this syntax (https://github.com/google/re2/wiki/Syntax). Any way to exclude "instance_down", and only mute other alerts? Or suggestions?
True
How to inhibit all other alerts if target is down? - Hi, Our prometheus has many node_exporter targets, and configured many alert rules. If one node_exporter instance is down (up!=1), many alerts are sent out. Only "instance is down" is meaningful (because this is actual issue). I want to mute all other alerts. I try to configure inhibit rules like this: ``` inhibit_rules: - target_match: source_match: alertname: 'instance_down' equal: ['job', 'instance'] ``` It inhibit all alerts about this non-up instance, but also inbibit "instance_down" itself. I try to use regex to match other alertnames: ``` inhibit_rules: - target_match_re: alertname: '(?!node_down)' source_match: alertname: 'instance_down' equal: ['job', 'instance'] ``` But, found that golang `regexp` does not support this syntax (https://github.com/google/re2/wiki/Syntax). Any way to exclude "instance_down", and only mute other alerts? Or suggestions?
usab
how to inhibit all other alerts if target is down hi our prometheus has many node exporter targets and configured many alert rules if one node exporter instance is down up many alerts are sent out only instance is down is meaningful because this is actual issue i want to mute all other alerts i try to configure inhibit rules like this inhibit rules target match source match alertname instance down equal it inhibit all alerts about this non up instance but also inbibit instance down itself i try to use regex to match other alertnames inhibit rules target match re alertname node down source match alertname instance down equal but found that golang regexp does not support this syntax any way to exclude instance down and only mute other alerts or suggestions
1
294,917
22,165,611,048
IssuesEvent
2022-06-05 06:54:37
SGG-Modding/SGG-Mod-Format
https://api.github.com/repos/SGG-Modding/SGG-Mod-Format
opened
SJSON search documentation
documentation
Add SJSON search ("_search" keyword) documentation to [this wiki post](../wiki/Import-Type:-SJSON) see: https://discord.com/channels/667753182608359424/667757899111596071/982896736299274311
1.0
SJSON search documentation - Add SJSON search ("_search" keyword) documentation to [this wiki post](../wiki/Import-Type:-SJSON) see: https://discord.com/channels/667753182608359424/667757899111596071/982896736299274311
non_usab
sjson search documentation add sjson search search keyword documentation to wiki import type sjson see
0
99,548
20,986,324,932
IssuesEvent
2022-03-29 03:51:28
worldanvil/worldanvil-bug-tracker
https://api.github.com/repos/worldanvil/worldanvil-bug-tracker
closed
BBcode error [discord:]
Type: UI / UX Feature: BBCode
**World Anvil Username**: Gadwel **World / Campaign / RPG Character / Manuscript Title**: Continente **Feature**: BBCode [discord] don't work **Related URLS** (To public & visible pages add screenshots otherwise): https://www.worldanvil.com/w/continente-gadwel/a/olhos-species (for exemple and and on all others pages) ![image](https://user-images.githubusercontent.com/102283026/160260197-1073f817-43e7-4478-9d7a-6aeb9854981a.png) Every time I insert a BBCode [Discord] it keeps loading infinitely in the view. I looked for help on the official World Anvil discord server and tried everything they suggested. The last thing I was told to do was to report this as a bug. **To Reproduce** Steps to reproduce the behavior: 1. Go to World Anvil editor and type [discord:"discord ID"] 2. Load the page 3. See error **Expected behavior** Show server online members as described in the World Anvil BBcode guide (https://www.worldanvil.com/w/WorldAnvilCodex/a/bbcode) **Screenshots** ![image](https://user-images.githubusercontent.com/102283026/160260400-f3e12949-1f17-4ef2-9e56-4729d6746def.png)
1.0
BBcode error [discord:] - **World Anvil Username**: Gadwel **World / Campaign / RPG Character / Manuscript Title**: Continente **Feature**: BBCode [discord] don't work **Related URLS** (To public & visible pages add screenshots otherwise): https://www.worldanvil.com/w/continente-gadwel/a/olhos-species (for exemple and and on all others pages) ![image](https://user-images.githubusercontent.com/102283026/160260197-1073f817-43e7-4478-9d7a-6aeb9854981a.png) Every time I insert a BBCode [Discord] it keeps loading infinitely in the view. I looked for help on the official World Anvil discord server and tried everything they suggested. The last thing I was told to do was to report this as a bug. **To Reproduce** Steps to reproduce the behavior: 1. Go to World Anvil editor and type [discord:"discord ID"] 2. Load the page 3. See error **Expected behavior** Show server online members as described in the World Anvil BBcode guide (https://www.worldanvil.com/w/WorldAnvilCodex/a/bbcode) **Screenshots** ![image](https://user-images.githubusercontent.com/102283026/160260400-f3e12949-1f17-4ef2-9e56-4729d6746def.png)
non_usab
bbcode error world anvil username gadwel world campaign rpg character manuscript title continente feature bbcode don t work related urls to public visible pages add screenshots otherwise for exemple and and on all others pages every time i insert a bbcode it keeps loading infinitely in the view i looked for help on the official world anvil discord server and tried everything they suggested the last thing i was told to do was to report this as a bug to reproduce steps to reproduce the behavior go to world anvil editor and type load the page see error expected behavior show server online members as described in the world anvil bbcode guide screenshots
0
386,257
26,674,281,152
IssuesEvent
2023-01-26 13:04:41
prazdevs/pinia-plugin-persistedstate
https://api.github.com/repos/prazdevs/pinia-plugin-persistedstate
closed
I would like to provide the Chinese version of this plugin.
📝 documentation ✨ enhancement
### Clear and concise description of the problem Translating document ### Suggested solution I would like to provide the Chinese version of this plugin. ### Alternative _No response_ ### Additional context _No response_ ### Validations - [X] Follow our [Code of Conduct](https://github.com/prazdevs/pinia-plugin-persistedstate/blob/main/CODE_OF_CONDUCT.md) - [X] Read the [Contributing Guide](https://github.com/prazdevs/pinia-plugin-persistedstate/blob/main/CONTRIBUTING.md). - [X] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
1.0
I would like to provide the Chinese version of this plugin. - ### Clear and concise description of the problem Translating document ### Suggested solution I would like to provide the Chinese version of this plugin. ### Alternative _No response_ ### Additional context _No response_ ### Validations - [X] Follow our [Code of Conduct](https://github.com/prazdevs/pinia-plugin-persistedstate/blob/main/CODE_OF_CONDUCT.md) - [X] Read the [Contributing Guide](https://github.com/prazdevs/pinia-plugin-persistedstate/blob/main/CONTRIBUTING.md). - [X] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
non_usab
i would like to provide the chinese version of this plugin clear and concise description of the problem translating document suggested solution i would like to provide the chinese version of this plugin alternative no response additional context no response validations follow our read the check that there isn t already an issue that request the same feature to avoid creating a duplicate
0
17,118
11,700,237,133
IssuesEvent
2020-03-06 17:05:11
WordPress/gutenberg
https://api.github.com/repos/WordPress/gutenberg
opened
Consider spacing around reusable blocks
[Feature] Reusable Blocks
This was on the latest build, the spacing feels out of balance on the reusable block: ![image](https://user-images.githubusercontent.com/253067/76105018-3aa3c580-5fcc-11ea-9c35-eb710ab70502.png) My suggestion would be to not highlight the block or use the background shade as in paragraph block. This gif shows the variations in treatment. ![2020-03-06 17 03 33](https://user-images.githubusercontent.com/253067/76105260-848cab80-5fcc-11ea-8a2c-0f9c91d2bb14.gif) @jasmussen looping you in as feels like something comes from the latest iteration styling and I don't want to break a pattern here.
True
Consider spacing around reusable blocks - This was on the latest build, the spacing feels out of balance on the reusable block: ![image](https://user-images.githubusercontent.com/253067/76105018-3aa3c580-5fcc-11ea-9c35-eb710ab70502.png) My suggestion would be to not highlight the block or use the background shade as in paragraph block. This gif shows the variations in treatment. ![2020-03-06 17 03 33](https://user-images.githubusercontent.com/253067/76105260-848cab80-5fcc-11ea-8a2c-0f9c91d2bb14.gif) @jasmussen looping you in as feels like something comes from the latest iteration styling and I don't want to break a pattern here.
usab
consider spacing around reusable blocks this was on the latest build the spacing feels out of balance on the reusable block my suggestion would be to not highlight the block or use the background shade as in paragraph block this gif shows the variations in treatment jasmussen looping you in as feels like something comes from the latest iteration styling and i don t want to break a pattern here
1
13,678
8,638,364,719
IssuesEvent
2018-11-23 14:31:38
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
Android one-click deploy should ignore "Signed" export setting
enhancement platform:android topic:porting usability
**Operating system or device - Godot version:** Windows 10, Godot nightly build (but applies to 2.0.3 and earlier) **Issue description** (what happened, and what was expected): It's possible to attempt a one-click deploy of an unsigned APK. This doesn't ever make sense. I'd expect the "Package/Signed" option to be ignore for one-click deployment. Not a HUGE issue but consider my use case where I need to export a release unsigned APK and so I have to check/uncheck this option when going between 1-click and export. (edit: it's true I can 're-sign' an already signed APK and I will probably take advantage of that, but I think it's still something to consider.) **Steps to reproduce:** Set up Godot for Android 1-click deployment Verify that a one-click deploy with "Signed" turned ON works ok Un-check the "Signed" setting Perform an Android one-click deploy Note the deploy fails (silently; the command window shows that the install failed due to no certificate): ``` Installing into device (please wait..): Google Nexus 7 running cmdline: "H:/Android/sdk/platform-tools/adb.exe" "-s" "00ea7f8d" "install" "-r" "C:\Users\med\AppData\Roaming/Godot/tmp/tmpexport.apk" 3338 KB/s (7730287 bytes in 2.261s) pkg: /data/local/tmp/tmpexport.apk Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES] ``` **Link to minimal example project** (optional but very welcome): Any project that can deploy to Android.
True
Android one-click deploy should ignore "Signed" export setting - **Operating system or device - Godot version:** Windows 10, Godot nightly build (but applies to 2.0.3 and earlier) **Issue description** (what happened, and what was expected): It's possible to attempt a one-click deploy of an unsigned APK. This doesn't ever make sense. I'd expect the "Package/Signed" option to be ignore for one-click deployment. Not a HUGE issue but consider my use case where I need to export a release unsigned APK and so I have to check/uncheck this option when going between 1-click and export. (edit: it's true I can 're-sign' an already signed APK and I will probably take advantage of that, but I think it's still something to consider.) **Steps to reproduce:** Set up Godot for Android 1-click deployment Verify that a one-click deploy with "Signed" turned ON works ok Un-check the "Signed" setting Perform an Android one-click deploy Note the deploy fails (silently; the command window shows that the install failed due to no certificate): ``` Installing into device (please wait..): Google Nexus 7 running cmdline: "H:/Android/sdk/platform-tools/adb.exe" "-s" "00ea7f8d" "install" "-r" "C:\Users\med\AppData\Roaming/Godot/tmp/tmpexport.apk" 3338 KB/s (7730287 bytes in 2.261s) pkg: /data/local/tmp/tmpexport.apk Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES] ``` **Link to minimal example project** (optional but very welcome): Any project that can deploy to Android.
usab
android one click deploy should ignore signed export setting operating system or device godot version windows godot nightly build but applies to and earlier issue description what happened and what was expected it s possible to attempt a one click deploy of an unsigned apk this doesn t ever make sense i d expect the package signed option to be ignore for one click deployment not a huge issue but consider my use case where i need to export a release unsigned apk and so i have to check uncheck this option when going between click and export edit it s true i can re sign an already signed apk and i will probably take advantage of that but i think it s still something to consider steps to reproduce set up godot for android click deployment verify that a one click deploy with signed turned on works ok un check the signed setting perform an android one click deploy note the deploy fails silently the command window shows that the install failed due to no certificate installing into device please wait google nexus running cmdline h android sdk platform tools adb exe s install r c users med appdata roaming godot tmp tmpexport apk kb s bytes in pkg data local tmp tmpexport apk failure link to minimal example project optional but very welcome any project that can deploy to android
1
768,204
26,957,946,813
IssuesEvent
2023-02-08 16:06:30
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[DocDB] StatefulService: Introduce the ability to tag a service type on the tablet
kind/bug area/docdb priority/medium
Jira Link: [DB-5291](https://yugabyte.atlassian.net/browse/DB-5291) ### Description Add the ability to tag a tablet to host an run a Stateful Service. Child of #15819 [DB-5291]: https://yugabyte.atlassian.net/browse/DB-5291?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1.0
[DocDB] StatefulService: Introduce the ability to tag a service type on the tablet - Jira Link: [DB-5291](https://yugabyte.atlassian.net/browse/DB-5291) ### Description Add the ability to tag a tablet to host an run a Stateful Service. Child of #15819 [DB-5291]: https://yugabyte.atlassian.net/browse/DB-5291?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
non_usab
statefulservice introduce the ability to tag a service type on the tablet jira link description add the ability to tag a tablet to host an run a stateful service child of
0
11,726
7,396,257,912
IssuesEvent
2018-03-18 10:12:08
the-tale/the-tale
https://api.github.com/repos/the-tale/the-tale
opened
Подсказка на времени записи в летописи отображает неполное реальное время
comp_general cont_usability est_simple good first issue type_bug
Отображаются только часы и минуты, но не дата.
True
Подсказка на времени записи в летописи отображает неполное реальное время - Отображаются только часы и минуты, но не дата.
usab
подсказка на времени записи в летописи отображает неполное реальное время отображаются только часы и минуты но не дата
1
188,681
6,779,848,363
IssuesEvent
2017-10-29 06:03:47
MyMICDS/MyMICDS-v2-Angular
https://api.github.com/repos/MyMICDS/MyMICDS-v2-Angular
closed
Edit button is there even when user isn't logged in
effort: easy priority: medium ui / ux work length: short
A great idea would be to keep the edit button, but have some sort of dialogue that says the user must create an account before customizing the homepage
1.0
Edit button is there even when user isn't logged in - A great idea would be to keep the edit button, but have some sort of dialogue that says the user must create an account before customizing the homepage
non_usab
edit button is there even when user isn t logged in a great idea would be to keep the edit button but have some sort of dialogue that says the user must create an account before customizing the homepage
0
25,582
25,454,150,541
IssuesEvent
2022-11-24 12:53:33
opencast/opencast-editor
https://api.github.com/repos/opencast/opencast-editor
closed
Show all existing subtitles
type:usability view:subtitle-editor
If your media pacage has a subtitle which is found by the backend and delivered to the frontend, the frontend will still not show it unless you have specifically configured the flavor in `subtitles.languages`. This can easily cause existing subtitles to get lost. It would be great if _all_ existing subtitles could be shown in the subtitle editor view. Though, I think, it's fine that only configured languafes are shown in the drop-down for creating new subtitle tracks.
True
Show all existing subtitles - If your media pacage has a subtitle which is found by the backend and delivered to the frontend, the frontend will still not show it unless you have specifically configured the flavor in `subtitles.languages`. This can easily cause existing subtitles to get lost. It would be great if _all_ existing subtitles could be shown in the subtitle editor view. Though, I think, it's fine that only configured languafes are shown in the drop-down for creating new subtitle tracks.
usab
show all existing subtitles if your media pacage has a subtitle which is found by the backend and delivered to the frontend the frontend will still not show it unless you have specifically configured the flavor in subtitles languages this can easily cause existing subtitles to get lost it would be great if all existing subtitles could be shown in the subtitle editor view though i think it s fine that only configured languafes are shown in the drop down for creating new subtitle tracks
1
288,320
8,838,430,203
IssuesEvent
2019-01-05 17:10:13
SeanROlszewski/muter
https://api.github.com/repos/SeanROlszewski/muter
closed
Muter supports mutating statements which cause side effects
priority
It's important to know if a test suite is aware and testing all of the side effects that are in a code base. Muter should have a way of detecting when a line of code is intended to cause a side effect, and have a way of causing the code to not cause that side effect (probably by deleting the line).
1.0
Muter supports mutating statements which cause side effects - It's important to know if a test suite is aware and testing all of the side effects that are in a code base. Muter should have a way of detecting when a line of code is intended to cause a side effect, and have a way of causing the code to not cause that side effect (probably by deleting the line).
non_usab
muter supports mutating statements which cause side effects it s important to know if a test suite is aware and testing all of the side effects that are in a code base muter should have a way of detecting when a line of code is intended to cause a side effect and have a way of causing the code to not cause that side effect probably by deleting the line
0
50,080
12,473,913,659
IssuesEvent
2020-05-29 08:42:59
openvinotoolkit/openvino
https://api.github.com/repos/openvinotoolkit/openvino
closed
file INSTALL cannot find "/root/packages/dldt/build/share/ie_rh_decoder.cmake".
bug categoty: build effort: few hours
-- Up-to-date: /usr/local/deployment_tools/inference_engine/share/ie_parallel.cmake CMake Error at inference-engine/src/inference_engine/cmake_install.cmake:97 (file): file INSTALL cannot find "/root/packages/dldt/build/share/ie_rh_decoder.cmake". Call Stack (most recent call first): inference-engine/src/cmake_install.cmake:48 (include) inference-engine/cmake_install.cmake:75 (include) cmake_install.cmake:43 (include) Makefile:71: recipe for target 'install' failed make: *** [install] Error 1
1.0
file INSTALL cannot find "/root/packages/dldt/build/share/ie_rh_decoder.cmake". - -- Up-to-date: /usr/local/deployment_tools/inference_engine/share/ie_parallel.cmake CMake Error at inference-engine/src/inference_engine/cmake_install.cmake:97 (file): file INSTALL cannot find "/root/packages/dldt/build/share/ie_rh_decoder.cmake". Call Stack (most recent call first): inference-engine/src/cmake_install.cmake:48 (include) inference-engine/cmake_install.cmake:75 (include) cmake_install.cmake:43 (include) Makefile:71: recipe for target 'install' failed make: *** [install] Error 1
non_usab
file install cannot find root packages dldt build share ie rh decoder cmake up to date usr local deployment tools inference engine share ie parallel cmake cmake error at inference engine src inference engine cmake install cmake file file install cannot find root packages dldt build share ie rh decoder cmake call stack most recent call first inference engine src cmake install cmake include inference engine cmake install cmake include cmake install cmake include makefile recipe for target install failed make error
0
100,128
8,724,298,264
IssuesEvent
2018-12-10 04:17:40
humera987/FXLabs-Test-Automation
https://api.github.com/repos/humera987/FXLabs-Test-Automation
closed
app testing 10 : ApiV1ProjectsIdProjectChecksumsGetQueryParamPageInvalidDatatype
app testing 10 app testing 10
Project : app testing 10 Job : UAT Env : UAT Region : US_WEST Result : fail Status Code : 404 Headers : {X-Content-Type-Options=[nosniff], X-XSS-Protection=[1; mode=block], Cache-Control=[no-cache, no-store, max-age=0, must-revalidate], Pragma=[no-cache], Expires=[0], X-Frame-Options=[DENY], Set-Cookie=[SESSION=MDhlNzQyNmEtMDAyMi00ODgwLTkyZmMtYjZkNDc5ZmM5Y2Y3; Path=/; HttpOnly], Content-Type=[application/json;charset=UTF-8], Transfer-Encoding=[chunked], Date=[Mon, 10 Dec 2018 04:13:05 GMT]} Endpoint : http://13.56.210.25/api/v1/api/v1/projects/zjOMjDQG/project-checksums?page=o5dZ00 Request : Response : { "timestamp" : "2018-12-10T04:13:05.449+0000", "status" : 404, "error" : "Not Found", "message" : "No message available", "path" : "/api/v1/api/v1/projects/zjOMjDQG/project-checksums" } Logs : Assertion [@StatusCode != 401] resolved-to [404 != 401] result [Passed]Assertion [@StatusCode != 404] resolved-to [404 != 404] result [Failed] --- FX Bot ---
2.0
app testing 10 : ApiV1ProjectsIdProjectChecksumsGetQueryParamPageInvalidDatatype - Project : app testing 10 Job : UAT Env : UAT Region : US_WEST Result : fail Status Code : 404 Headers : {X-Content-Type-Options=[nosniff], X-XSS-Protection=[1; mode=block], Cache-Control=[no-cache, no-store, max-age=0, must-revalidate], Pragma=[no-cache], Expires=[0], X-Frame-Options=[DENY], Set-Cookie=[SESSION=MDhlNzQyNmEtMDAyMi00ODgwLTkyZmMtYjZkNDc5ZmM5Y2Y3; Path=/; HttpOnly], Content-Type=[application/json;charset=UTF-8], Transfer-Encoding=[chunked], Date=[Mon, 10 Dec 2018 04:13:05 GMT]} Endpoint : http://13.56.210.25/api/v1/api/v1/projects/zjOMjDQG/project-checksums?page=o5dZ00 Request : Response : { "timestamp" : "2018-12-10T04:13:05.449+0000", "status" : 404, "error" : "Not Found", "message" : "No message available", "path" : "/api/v1/api/v1/projects/zjOMjDQG/project-checksums" } Logs : Assertion [@StatusCode != 401] resolved-to [404 != 401] result [Passed]Assertion [@StatusCode != 404] resolved-to [404 != 404] result [Failed] --- FX Bot ---
non_usab
app testing project app testing job uat env uat region us west result fail status code headers x content type options x xss protection cache control pragma expires x frame options set cookie content type transfer encoding date endpoint request response timestamp status error not found message no message available path api api projects zjomjdqg project checksums logs assertion resolved to result assertion resolved to result fx bot
0
127,959
18,024,755,633
IssuesEvent
2021-09-17 01:59:40
gdcorp-action-public-forks/action-hosting-deploy
https://api.github.com/repos/gdcorp-action-public-forks/action-hosting-deploy
opened
CVE-2021-3777 (Medium) detected in tmpl-1.0.4.tgz
security vulnerability
## CVE-2021-3777 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tmpl-1.0.4.tgz</b></p></summary> <p>JavaScript micro templates.</p> <p>Library home page: <a href="https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz">https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz</a></p> <p>Path to dependency file: action-hosting-deploy/package.json</p> <p>Path to vulnerable library: action-hosting-deploy/node_modules/tmpl/package.json</p> <p> Dependency Hierarchy: - babel-jest-26.6.3.tgz (Root Library) - transform-26.6.2.tgz - jest-haste-map-26.6.2.tgz - walker-1.0.7.tgz - makeerror-1.0.11.tgz - :x: **tmpl-1.0.4.tgz** (Vulnerable Library) <p>Found in base branch: <b>main</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> nodejs-tmpl is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2021-09-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3777>CVE-2021-3777</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: N/A - Attack Complexity: N/A - Privileges Required: N/A - User Interaction: N/A - Scope: N/A - Impact Metrics: - Confidentiality Impact: N/A - Integrity Impact: N/A - Availability Impact: N/A </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/daaku/nodejs-tmpl/releases/tag/v1.0.5">https://github.com/daaku/nodejs-tmpl/releases/tag/v1.0.5</a></p> <p>Release Date: 2021-09-15</p> <p>Fix Resolution: tmpl - 1.0.5</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"tmpl","packageVersion":"1.0.4","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"babel-jest:26.6.3;@jest/transform:26.6.2;jest-haste-map:26.6.2;walker:1.0.7;makeerror:1.0.11;tmpl:1.0.4","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tmpl - 1.0.5"}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-3777","vulnerabilityDetails":"nodejs-tmpl is vulnerable to Inefficient Regular Expression Complexity","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3777","cvss3Severity":"medium","cvss3Score":"5.5","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> -->
True
CVE-2021-3777 (Medium) detected in tmpl-1.0.4.tgz - ## CVE-2021-3777 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tmpl-1.0.4.tgz</b></p></summary> <p>JavaScript micro templates.</p> <p>Library home page: <a href="https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz">https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz</a></p> <p>Path to dependency file: action-hosting-deploy/package.json</p> <p>Path to vulnerable library: action-hosting-deploy/node_modules/tmpl/package.json</p> <p> Dependency Hierarchy: - babel-jest-26.6.3.tgz (Root Library) - transform-26.6.2.tgz - jest-haste-map-26.6.2.tgz - walker-1.0.7.tgz - makeerror-1.0.11.tgz - :x: **tmpl-1.0.4.tgz** (Vulnerable Library) <p>Found in base branch: <b>main</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> nodejs-tmpl is vulnerable to Inefficient Regular Expression Complexity <p>Publish Date: 2021-09-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3777>CVE-2021-3777</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: N/A - Attack Complexity: N/A - Privileges Required: N/A - User Interaction: N/A - Scope: N/A - Impact Metrics: - Confidentiality Impact: N/A - Integrity Impact: N/A - Availability Impact: N/A </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/daaku/nodejs-tmpl/releases/tag/v1.0.5">https://github.com/daaku/nodejs-tmpl/releases/tag/v1.0.5</a></p> <p>Release Date: 2021-09-15</p> <p>Fix Resolution: tmpl - 1.0.5</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"tmpl","packageVersion":"1.0.4","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"babel-jest:26.6.3;@jest/transform:26.6.2;jest-haste-map:26.6.2;walker:1.0.7;makeerror:1.0.11;tmpl:1.0.4","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tmpl - 1.0.5"}],"baseBranches":["main"],"vulnerabilityIdentifier":"CVE-2021-3777","vulnerabilityDetails":"nodejs-tmpl is vulnerable to Inefficient Regular Expression Complexity","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-3777","cvss3Severity":"medium","cvss3Score":"5.5","cvss3Metrics":{"A":"N/A","AC":"N/A","PR":"N/A","S":"N/A","C":"N/A","UI":"N/A","AV":"N/A","I":"N/A"},"extraData":{}}</REMEDIATE> -->
non_usab
cve medium detected in tmpl tgz cve medium severity vulnerability vulnerable library tmpl tgz javascript micro templates library home page a href path to dependency file action hosting deploy package json path to vulnerable library action hosting deploy node modules tmpl package json dependency hierarchy babel jest tgz root library transform tgz jest haste map tgz walker tgz makeerror tgz x tmpl tgz vulnerable library found in base branch main vulnerability details nodejs tmpl is vulnerable to inefficient regular expression complexity publish date url a href cvss score details base score metrics exploitability metrics attack vector n a attack complexity n a privileges required n a user interaction n a scope n a impact metrics confidentiality impact n a integrity impact n a availability impact n a for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution tmpl isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree babel jest jest transform jest haste map walker makeerror tmpl isminimumfixversionavailable true minimumfixversion tmpl basebranches vulnerabilityidentifier cve vulnerabilitydetails nodejs tmpl is vulnerable to inefficient regular expression complexity vulnerabilityurl
0
7,047
4,745,192,490
IssuesEvent
2016-10-21 06:00:31
flutter/flutter-intellij
https://api.github.com/repos/flutter/flutter-intellij
closed
Flutter plugin contributes targets for dart projects
usability
See the below (complete with typo): <img width="858" alt="screen shot 2016-10-20 at 12 17 42" src="https://cloud.githubusercontent.com/assets/2978182/19557790/4a282804-96bf-11e6-94f3-a48b3ddf63b0.png"> This implies that pressing the run button will run 'main.dart' (a normal dart project) on a iPhone. However what actually happens is that it launches it as a normal command line app. Consider removing the flutter deployment target UI for normal Dart projects.
True
Flutter plugin contributes targets for dart projects - See the below (complete with typo): <img width="858" alt="screen shot 2016-10-20 at 12 17 42" src="https://cloud.githubusercontent.com/assets/2978182/19557790/4a282804-96bf-11e6-94f3-a48b3ddf63b0.png"> This implies that pressing the run button will run 'main.dart' (a normal dart project) on a iPhone. However what actually happens is that it launches it as a normal command line app. Consider removing the flutter deployment target UI for normal Dart projects.
usab
flutter plugin contributes targets for dart projects see the below complete with typo img width alt screen shot at src this implies that pressing the run button will run main dart a normal dart project on a iphone however what actually happens is that it launches it as a normal command line app consider removing the flutter deployment target ui for normal dart projects
1
51,611
3,013,277,288
IssuesEvent
2015-07-29 07:51:33
molgenis/molgenis
https://api.github.com/repos/molgenis/molgenis
closed
Importer validation report does not report unimportable entities
bug critical data-importer data-mysql priority: first
Reproduce: - Convert genome_browser_test.xls from molgenis-omx-dataexplorer with Omx2EmxExcelConverter - Remove genomic_1 and genomic_2 rows from entities tab in converted xls - Import converted xls Expected: Error genomic_1 and genomic_2 can't be imported Actual: Ok for genomic_1 and genomic_2
1.0
Importer validation report does not report unimportable entities - Reproduce: - Convert genome_browser_test.xls from molgenis-omx-dataexplorer with Omx2EmxExcelConverter - Remove genomic_1 and genomic_2 rows from entities tab in converted xls - Import converted xls Expected: Error genomic_1 and genomic_2 can't be imported Actual: Ok for genomic_1 and genomic_2
non_usab
importer validation report does not report unimportable entities reproduce convert genome browser test xls from molgenis omx dataexplorer with remove genomic and genomic rows from entities tab in converted xls import converted xls expected error genomic and genomic can t be imported actual ok for genomic and genomic
0
22,667
19,906,728,178
IssuesEvent
2022-01-25 13:33:29
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
podpreset is not working with 1.21 k8s version
kind/bug sig/node sig/usability needs-triage sig/k8s-infra
### What happened? Hi, We were using Kubernetes 1.16 release, we were using pod preset plugin to inject runtime timezone configuration(so that pods will be in the same time as hosts) to the Kube-system pod and as well other pods in a different namespace. Now, we are upgrading k8s to 1.21 and could see the pod preset plugin is not there, and timezone configurations are not injecting or getting applied to pods at run time. Is there any other alternative release in 1.21? or any possible way we can achieve the above scenario? ### What did you expect to happen? Pod Preset plugin support should not be removed or there should be any other way to achieve the above. all pods should be able to get into same timezone as hosts.the ### How can we reproduce it (as minimally and precisely as possible)? Try to use pod preset plugin in 1.21.the ### Anything else we need to know? _No response_ ### Kubernetes version <details> ```console $ kubectl version Client Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.5", GitCommit:"aea7bbadd2fc0cd689de94a54e5b7b758869d691", GitTreeState:"clean", BuildDate:"2021-09-15T21:10:45Z", GoVersion:"go1.16.8", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.5", GitCommit:"aea7bbadd2fc0cd689de94a54e5b7b758869d691", GitTreeState:"clean", BuildDate:"2021-09-15T21:04:16Z", GoVersion:"go1.16.8", Compiler:"gc", Platform:"linux/amd64"} ``` </details> ### Cloud provider <details> </details> ### OS version <details> ```console # On Linux: $ cat /etc/os-release NAME="Ubuntu" VERSION="18.04.6 LTS (Bionic Beaver)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 18.04.6 LTS" VERSION_ID="18.04" HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" VERSION_CODENAME=bionic UBUNTU_CODENAME=bionic $ uname -a Linux ubuntu 4.15.0-162-generic #170-Ubuntu SMP Mon Oct 18 11:38:05 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux # On Windows: C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture # paste output here ``` </details> ### Install tools <details> </details> ### Container runtime (CRI) and and version (if applicable) <details> </details> ### Related plugins (CNI, CSI, ...) and versions (if applicable) <details> </details>
True
podpreset is not working with 1.21 k8s version - ### What happened? Hi, We were using Kubernetes 1.16 release, we were using pod preset plugin to inject runtime timezone configuration(so that pods will be in the same time as hosts) to the Kube-system pod and as well other pods in a different namespace. Now, we are upgrading k8s to 1.21 and could see the pod preset plugin is not there, and timezone configurations are not injecting or getting applied to pods at run time. Is there any other alternative release in 1.21? or any possible way we can achieve the above scenario? ### What did you expect to happen? Pod Preset plugin support should not be removed or there should be any other way to achieve the above. all pods should be able to get into same timezone as hosts.the ### How can we reproduce it (as minimally and precisely as possible)? Try to use pod preset plugin in 1.21.the ### Anything else we need to know? _No response_ ### Kubernetes version <details> ```console $ kubectl version Client Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.5", GitCommit:"aea7bbadd2fc0cd689de94a54e5b7b758869d691", GitTreeState:"clean", BuildDate:"2021-09-15T21:10:45Z", GoVersion:"go1.16.8", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.5", GitCommit:"aea7bbadd2fc0cd689de94a54e5b7b758869d691", GitTreeState:"clean", BuildDate:"2021-09-15T21:04:16Z", GoVersion:"go1.16.8", Compiler:"gc", Platform:"linux/amd64"} ``` </details> ### Cloud provider <details> </details> ### OS version <details> ```console # On Linux: $ cat /etc/os-release NAME="Ubuntu" VERSION="18.04.6 LTS (Bionic Beaver)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 18.04.6 LTS" VERSION_ID="18.04" HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" VERSION_CODENAME=bionic UBUNTU_CODENAME=bionic $ uname -a Linux ubuntu 4.15.0-162-generic #170-Ubuntu SMP Mon Oct 18 11:38:05 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux # On Windows: C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture # paste output here ``` </details> ### Install tools <details> </details> ### Container runtime (CRI) and and version (if applicable) <details> </details> ### Related plugins (CNI, CSI, ...) and versions (if applicable) <details> </details>
usab
podpreset is not working with version what happened hi we were using kubernetes release we were using pod preset plugin to inject runtime timezone configuration so that pods will be in the same time as hosts to the kube system pod and as well other pods in a different namespace now we are upgrading to and could see the pod preset plugin is not there and timezone configurations are not injecting or getting applied to pods at run time is there any other alternative release in or any possible way we can achieve the above scenario what did you expect to happen pod preset plugin support should not be removed or there should be any other way to achieve the above all pods should be able to get into same timezone as hosts the how can we reproduce it as minimally and precisely as possible try to use pod preset plugin in the anything else we need to know no response kubernetes version console kubectl version client version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux server version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux cloud provider os version console on linux cat etc os release name ubuntu version lts bionic beaver id ubuntu id like debian pretty name ubuntu lts version id home url support url bug report url privacy policy url version codename bionic ubuntu codename bionic uname a linux ubuntu generic ubuntu smp mon oct utc gnu linux on windows c wmic os get caption version buildnumber osarchitecture paste output here install tools container runtime cri and and version if applicable related plugins cni csi and versions if applicable
1
8,787
5,965,537,669
IssuesEvent
2017-05-30 11:53:49
Virtual-Labs/colloid-and-surface-chemistry-iiith
https://api.github.com/repos/Virtual-Labs/colloid-and-surface-chemistry-iiith
opened
QA_Demonstration of the Preparation and Use of Association Colloids (Micelles)_Theory_figure
category : Usability Developed by - VLEAD Open-Edx Severity: S2 Status : Open
Defect Description : In the Theory page of "Demonstration of the Preparation and Use of Association Colloids (Micelles)" experiment in this lab, in the 3rd paragraph's content, mentioned that **Figure 1. Schematic representations of structures of (a) a surfactant molecule, SDS, and its stick diagram and (b) a partial cross-sectional view of an aqueous (normal) micelle.** But as mentioned no figure is provided. Actual Result : In the Theory page of "Demonstration of the Preparation and Use of Association Colloids (Micelles)" experiment in this lab, in the 3rd paragraph's content, mentioned that **Figure 1. Schematic representations of structures of (a) a surfactant molecule, SDS, and its stick diagram and (b) a partial cross-sectional view of an aqueous (normal) micelle.** But as mentioned no figure is provided. Environment : OS: Windows 7, Ubuntu-16.04,Centos-6 Browsers:Firefox-42.0,Chrome-47.0,chromium-45.0 Bandwidth : 100Mbps Hardware Configuration:8GBRAM , Processor:i5 Attachments: ![qa_oe_csc_i05](https://cloud.githubusercontent.com/assets/13479177/26581976/b6275466-455c-11e7-80ee-7d8400fbfd32.png)
True
QA_Demonstration of the Preparation and Use of Association Colloids (Micelles)_Theory_figure - Defect Description : In the Theory page of "Demonstration of the Preparation and Use of Association Colloids (Micelles)" experiment in this lab, in the 3rd paragraph's content, mentioned that **Figure 1. Schematic representations of structures of (a) a surfactant molecule, SDS, and its stick diagram and (b) a partial cross-sectional view of an aqueous (normal) micelle.** But as mentioned no figure is provided. Actual Result : In the Theory page of "Demonstration of the Preparation and Use of Association Colloids (Micelles)" experiment in this lab, in the 3rd paragraph's content, mentioned that **Figure 1. Schematic representations of structures of (a) a surfactant molecule, SDS, and its stick diagram and (b) a partial cross-sectional view of an aqueous (normal) micelle.** But as mentioned no figure is provided. Environment : OS: Windows 7, Ubuntu-16.04,Centos-6 Browsers:Firefox-42.0,Chrome-47.0,chromium-45.0 Bandwidth : 100Mbps Hardware Configuration:8GBRAM , Processor:i5 Attachments: ![qa_oe_csc_i05](https://cloud.githubusercontent.com/assets/13479177/26581976/b6275466-455c-11e7-80ee-7d8400fbfd32.png)
usab
qa demonstration of the preparation and use of association colloids micelles theory figure defect description in the theory page of demonstration of the preparation and use of association colloids micelles experiment in this lab in the paragraph s content mentioned that figure schematic representations of structures of a a surfactant molecule sds and its stick diagram and b a partial cross sectional view of an aqueous normal micelle but as mentioned no figure is provided actual result in the theory page of demonstration of the preparation and use of association colloids micelles experiment in this lab in the paragraph s content mentioned that figure schematic representations of structures of a a surfactant molecule sds and its stick diagram and b a partial cross sectional view of an aqueous normal micelle but as mentioned no figure is provided environment os windows ubuntu centos browsers firefox chrome chromium bandwidth hardware configuration processor attachments
1
55,340
7,976,907,005
IssuesEvent
2018-07-17 14:00:54
Freeyourgadget/Gadgetbridge
https://api.github.com/repos/Freeyourgadget/Gadgetbridge
closed
How to read Calories and Distance count ?
device mi2 documentation help wanted not a bug
Hello, We are trying to get Calories & Distance value from UUID ` public static final UUID UUID_CHARACTERISTIC_3_CONFIGURATION = UUID.fromString("00000003-0000-3512-2118-0009af100700");`. We are able to get `byte[]` value in response from `onCharactristicChanged` method. We are trying to perform this for **Mi Band 2** specifically. But we are unable to convert that `byte[]` value and we coundn't able to get Calories count. So the question is how we can convert that `byte[]` value to read Calories count ?
1.0
How to read Calories and Distance count ? - Hello, We are trying to get Calories & Distance value from UUID ` public static final UUID UUID_CHARACTERISTIC_3_CONFIGURATION = UUID.fromString("00000003-0000-3512-2118-0009af100700");`. We are able to get `byte[]` value in response from `onCharactristicChanged` method. We are trying to perform this for **Mi Band 2** specifically. But we are unable to convert that `byte[]` value and we coundn't able to get Calories count. So the question is how we can convert that `byte[]` value to read Calories count ?
non_usab
how to read calories and distance count hello we are trying to get calories distance value from uuid public static final uuid uuid characteristic configuration uuid fromstring we are able to get byte value in response from oncharactristicchanged method we are trying to perform this for mi band specifically but we are unable to convert that byte value and we coundn t able to get calories count so the question is how we can convert that byte value to read calories count
0
6,519
4,326,006,814
IssuesEvent
2016-07-26 03:15:33
coreos/bugs
https://api.github.com/repos/coreos/bugs
closed
Bug in bash version is causing problems to cli tools
area/usability component/other dependency/external kind/bug team/os
I am experiencing some issues due to a bug in `bash v4.3` that causes some of the command line tools to fail. The bug is reported in https://bugs.archlinux.org/task/39533 For instance, my `calicoctl` tool is failing but I am aware of other cli tools that fail as well. ``` $ sudo ETCD_AUTHORITY=172.17.8.102:2379 calicoctl status sh: symbol lookup error: sh: undefined symbol: rl_signal_event_hook sh: symbol lookup error: sh: undefined symbol: rl_signal_event_hook sh: symbol lookup error: sh: undefined symbol: rl_signal_event_hook sh: symbol lookup error: sh: undefined symbol: rl_signal_event_hook calico-node container is running. Status: Up 2 hours Running felix version 1.4.0rc2 IPv4 BGP status IP: 10.1.100.2 AS Number: 64511 (inherited) /bin/sh: symbol lookup error: /bin/sh: undefined symbol: rl_signal_event_hook Couldn't connect to bird. IPv6 BGP status No IPv6 address configured. ``` My machine uses the following release: ``` NAME=CoreOS ID=coreos VERSION=1068.8.0 VERSION_ID=1068.8.0 BUILD_ID=2016-07-18-0616 PRETTY_NAME="CoreOS 1068.8.0 (MoreOS)" ANSI_COLOR="1;32" HOME_URL="https://coreos.com/" BUG_REPORT_URL="https://github.com/coreos/bugs/issues" ```
True
Bug in bash version is causing problems to cli tools - I am experiencing some issues due to a bug in `bash v4.3` that causes some of the command line tools to fail. The bug is reported in https://bugs.archlinux.org/task/39533 For instance, my `calicoctl` tool is failing but I am aware of other cli tools that fail as well. ``` $ sudo ETCD_AUTHORITY=172.17.8.102:2379 calicoctl status sh: symbol lookup error: sh: undefined symbol: rl_signal_event_hook sh: symbol lookup error: sh: undefined symbol: rl_signal_event_hook sh: symbol lookup error: sh: undefined symbol: rl_signal_event_hook sh: symbol lookup error: sh: undefined symbol: rl_signal_event_hook calico-node container is running. Status: Up 2 hours Running felix version 1.4.0rc2 IPv4 BGP status IP: 10.1.100.2 AS Number: 64511 (inherited) /bin/sh: symbol lookup error: /bin/sh: undefined symbol: rl_signal_event_hook Couldn't connect to bird. IPv6 BGP status No IPv6 address configured. ``` My machine uses the following release: ``` NAME=CoreOS ID=coreos VERSION=1068.8.0 VERSION_ID=1068.8.0 BUILD_ID=2016-07-18-0616 PRETTY_NAME="CoreOS 1068.8.0 (MoreOS)" ANSI_COLOR="1;32" HOME_URL="https://coreos.com/" BUG_REPORT_URL="https://github.com/coreos/bugs/issues" ```
usab
bug in bash version is causing problems to cli tools i am experiencing some issues due to a bug in bash that causes some of the command line tools to fail the bug is reported in for instance my calicoctl tool is failing but i am aware of other cli tools that fail as well sudo etcd authority calicoctl status sh symbol lookup error sh undefined symbol rl signal event hook sh symbol lookup error sh undefined symbol rl signal event hook sh symbol lookup error sh undefined symbol rl signal event hook sh symbol lookup error sh undefined symbol rl signal event hook calico node container is running status up hours running felix version bgp status ip as number inherited bin sh symbol lookup error bin sh undefined symbol rl signal event hook couldn t connect to bird bgp status no address configured my machine uses the following release name coreos id coreos version version id build id pretty name coreos moreos ansi color home url bug report url
1
723,253
24,890,688,159
IssuesEvent
2022-10-28 11:44:53
TalaoDAO/AltMe
https://api.github.com/repos/TalaoDAO/AltMe
closed
Problem in Page title for "My wallet" and "Discover" (lack space)
a V2 Priority NO GO AltMe
Screenshot : <img width="384" alt="Capture d’écran 2022-10-27 à 09 18 23" src="https://user-images.githubusercontent.com/108657151/198216808-354b4abd-5c63-40bd-b0f3-0916bec434e7.png"> Here is how it should be : <img width="615" alt="Capture d’écran 2022-10-27 à 09 15 45" src="https://user-images.githubusercontent.com/108657151/198216814-07f4dd2d-25e7-4b1c-b161-9e0b61a04f53.png">
1.0
Problem in Page title for "My wallet" and "Discover" (lack space) - Screenshot : <img width="384" alt="Capture d’écran 2022-10-27 à 09 18 23" src="https://user-images.githubusercontent.com/108657151/198216808-354b4abd-5c63-40bd-b0f3-0916bec434e7.png"> Here is how it should be : <img width="615" alt="Capture d’écran 2022-10-27 à 09 15 45" src="https://user-images.githubusercontent.com/108657151/198216814-07f4dd2d-25e7-4b1c-b161-9e0b61a04f53.png">
non_usab
problem in page title for my wallet and discover lack space screenshot img width alt capture d’écran à src here is how it should be img width alt capture d’écran à src
0
11,206
7,107,475,779
IssuesEvent
2018-01-16 20:06:54
coreos/bugs
https://api.github.com/repos/coreos/bugs
closed
SSH key from metadata missing in OpenStack environment
area/usability component/ct kind/bug platform/openstack team/tools
# Issue Report # <!-- Fill in either the 'Bug' or 'Feature Request' section --> ## Bug ## ### Container Linux Version ### ``` $ cat /etc/os-release NAME="Container Linux by CoreOS" ID=coreos VERSION=1520.8.0 VERSION_ID=1520.8.0 BUILD_ID=2017-10-26-0342 PRETTY_NAME="Container Linux by CoreOS 1520.8.0 (Ladybug)" ANSI_COLOR="38;5;75" HOME_URL="https://coreos.com/" BUG_REPORT_URL="https://issues.coreos.com" COREOS_BOARD="amd64-usr" ``` Tried with latest alpha as well. ### Environment ### OpenStack ### Expected Behavior ### I should be able to log in with my cloud-provided SSH key and the `core` user. ### Actual Behavior ### The `core` user doesn't have the SSH key authorized. ### Reproduction Steps ### 1. Use any ignition config, I used the following compiled with `ct --in-file=coreos-init.yml --platform=openstack-metadata` for testing: ```yml passwd: users: - name: user groups: - sudo - docker ssh_authorized_keys: - "ssh-rsa AAAAB ..." ``` 2. Try `ssh core@host`. Public Key auth fails. 3. Try `ssh user@host`, works fine. ### Other Information ### I got it to work by adding ```yml systemd: units: - name: "coreos-metadata-sshkeys@.service" enabled: true ``` to the yaml since I looked at the source code in ignition. Seems like this is not set for OpenStack, but is for some other providers.
True
SSH key from metadata missing in OpenStack environment - # Issue Report # <!-- Fill in either the 'Bug' or 'Feature Request' section --> ## Bug ## ### Container Linux Version ### ``` $ cat /etc/os-release NAME="Container Linux by CoreOS" ID=coreos VERSION=1520.8.0 VERSION_ID=1520.8.0 BUILD_ID=2017-10-26-0342 PRETTY_NAME="Container Linux by CoreOS 1520.8.0 (Ladybug)" ANSI_COLOR="38;5;75" HOME_URL="https://coreos.com/" BUG_REPORT_URL="https://issues.coreos.com" COREOS_BOARD="amd64-usr" ``` Tried with latest alpha as well. ### Environment ### OpenStack ### Expected Behavior ### I should be able to log in with my cloud-provided SSH key and the `core` user. ### Actual Behavior ### The `core` user doesn't have the SSH key authorized. ### Reproduction Steps ### 1. Use any ignition config, I used the following compiled with `ct --in-file=coreos-init.yml --platform=openstack-metadata` for testing: ```yml passwd: users: - name: user groups: - sudo - docker ssh_authorized_keys: - "ssh-rsa AAAAB ..." ``` 2. Try `ssh core@host`. Public Key auth fails. 3. Try `ssh user@host`, works fine. ### Other Information ### I got it to work by adding ```yml systemd: units: - name: "coreos-metadata-sshkeys@.service" enabled: true ``` to the yaml since I looked at the source code in ignition. Seems like this is not set for OpenStack, but is for some other providers.
usab
ssh key from metadata missing in openstack environment issue report bug container linux version cat etc os release name container linux by coreos id coreos version version id build id pretty name container linux by coreos ladybug ansi color home url bug report url coreos board usr tried with latest alpha as well environment openstack expected behavior i should be able to log in with my cloud provided ssh key and the core user actual behavior the core user doesn t have the ssh key authorized reproduction steps use any ignition config i used the following compiled with ct in file coreos init yml platform openstack metadata for testing yml passwd users name user groups sudo docker ssh authorized keys ssh rsa aaaab try ssh core host public key auth fails try ssh user host works fine other information i got it to work by adding yml systemd units name coreos metadata sshkeys service enabled true to the yaml since i looked at the source code in ignition seems like this is not set for openstack but is for some other providers
1
7,934
5,272,061,098
IssuesEvent
2017-02-06 11:38:49
AccessiDys/AccessiDys
https://api.github.com/repos/AccessiDys/AccessiDys
opened
Remplacer la saisie de la graisse par des checkbox
enhancement Usability
Remplacer la saisie de la graisse par des checkbox — éventuellement avec pictos conventionnels correspondants
True
Remplacer la saisie de la graisse par des checkbox - Remplacer la saisie de la graisse par des checkbox — éventuellement avec pictos conventionnels correspondants
usab
remplacer la saisie de la graisse par des checkbox remplacer la saisie de la graisse par des checkbox — éventuellement avec pictos conventionnels correspondants
1
13,106
8,287,187,076
IssuesEvent
2018-09-19 08:06:45
rabbitmq/rabbitmq-dotnet-client
https://api.github.com/repos/rabbitmq/rabbitmq-dotnet-client
closed
ConnectionFactory Protocol property is ignored
usability
The value of the `Protocol` property of `ConnectionFactory` ([src/client/api/ConnectionFactory.cs#L233](https://github.com/rabbitmq/rabbitmq-dotnet-client/blob/master/projects/client/RabbitMQ.Client/src/client/api/ConnectionFactory.cs#L233)) is ignored. If it's really not to be used, it should be decorated with the [Obsolete](https://docs.microsoft.com/en-us/dotnet/api/system.obsoleteattribute). On the other hand, being able to plug a protocol might be nice for testing / faking scenarios.
True
ConnectionFactory Protocol property is ignored - The value of the `Protocol` property of `ConnectionFactory` ([src/client/api/ConnectionFactory.cs#L233](https://github.com/rabbitmq/rabbitmq-dotnet-client/blob/master/projects/client/RabbitMQ.Client/src/client/api/ConnectionFactory.cs#L233)) is ignored. If it's really not to be used, it should be decorated with the [Obsolete](https://docs.microsoft.com/en-us/dotnet/api/system.obsoleteattribute). On the other hand, being able to plug a protocol might be nice for testing / faking scenarios.
usab
connectionfactory protocol property is ignored the value of the protocol property of connectionfactory is ignored if it s really not to be used it should be decorated with the on the other hand being able to plug a protocol might be nice for testing faking scenarios
1
219,359
7,341,277,709
IssuesEvent
2018-03-07 01:12:55
Jigoku/boxclip
https://api.github.com/repos/Jigoku/boxclip
closed
Improve gui for title mode
enhancement high priority
We need menus. Most important thing for now is the ability to list all maps in maps/ folder and to make them clickable. Menu layout idea: - Load map (button) - List maps (scrollable widget, contains buttons) - Edit map (button) - New map (text box input) - List maps (scrollable widget, contains buttons) - Quit (button) Low priority that may be needed later on: - Options - Sound (list sound options) - GFX (list gfx options)
1.0
Improve gui for title mode - We need menus. Most important thing for now is the ability to list all maps in maps/ folder and to make them clickable. Menu layout idea: - Load map (button) - List maps (scrollable widget, contains buttons) - Edit map (button) - New map (text box input) - List maps (scrollable widget, contains buttons) - Quit (button) Low priority that may be needed later on: - Options - Sound (list sound options) - GFX (list gfx options)
non_usab
improve gui for title mode we need menus most important thing for now is the ability to list all maps in maps folder and to make them clickable menu layout idea load map button list maps scrollable widget contains buttons edit map button new map text box input list maps scrollable widget contains buttons quit button low priority that may be needed later on options sound list sound options gfx list gfx options
0
607,253
18,778,026,532
IssuesEvent
2021-11-08 00:07:58
AY2122S1-CS2103-F09-3/tp
https://api.github.com/repos/AY2122S1-CS2103-F09-3/tp
closed
Clean up to do code
priority.High
<img width="1040" alt="Screenshot 2021-11-07 at 11 56 04 PM" src="https://user-images.githubusercontent.com/72030222/140652280-b1934e18-3afd-4e1e-ac13-f2fe647badf8.png"> <img width="936" alt="Screenshot 2021-11-07 at 11 56 42 PM" src="https://user-images.githubusercontent.com/72030222/140652300-9e476846-529d-491f-b4e1-29ac1d4c9538.png"> <img width="746" alt="Screenshot 2021-11-07 at 11 57 16 PM" src="https://user-images.githubusercontent.com/72030222/140652318-1b7809cf-099f-4c57-a44b-9fc4b6cb613c.png"> <img width="872" alt="Screenshot 2021-11-07 at 11 57 29 PM" src="https://user-images.githubusercontent.com/72030222/140652326-74f5ad48-870f-426e-a631-49bb9e167f05.png"> <img width="883" alt="Screenshot 2021-11-07 at 11 57 44 PM" src="https://user-images.githubusercontent.com/72030222/140652334-d81f5468-b11e-4531-895b-40f74faa938b.png">
1.0
Clean up to do code - <img width="1040" alt="Screenshot 2021-11-07 at 11 56 04 PM" src="https://user-images.githubusercontent.com/72030222/140652280-b1934e18-3afd-4e1e-ac13-f2fe647badf8.png"> <img width="936" alt="Screenshot 2021-11-07 at 11 56 42 PM" src="https://user-images.githubusercontent.com/72030222/140652300-9e476846-529d-491f-b4e1-29ac1d4c9538.png"> <img width="746" alt="Screenshot 2021-11-07 at 11 57 16 PM" src="https://user-images.githubusercontent.com/72030222/140652318-1b7809cf-099f-4c57-a44b-9fc4b6cb613c.png"> <img width="872" alt="Screenshot 2021-11-07 at 11 57 29 PM" src="https://user-images.githubusercontent.com/72030222/140652326-74f5ad48-870f-426e-a631-49bb9e167f05.png"> <img width="883" alt="Screenshot 2021-11-07 at 11 57 44 PM" src="https://user-images.githubusercontent.com/72030222/140652334-d81f5468-b11e-4531-895b-40f74faa938b.png">
non_usab
clean up to do code img width alt screenshot at pm src img width alt screenshot at pm src img width alt screenshot at pm src img width alt screenshot at pm src img width alt screenshot at pm src
0
27,668
30,085,372,924
IssuesEvent
2023-06-29 08:14:34
pulumi/pulumi
https://api.github.com/repos/pulumi/pulumi
closed
Python dynamic provider with boto3: Other threads are currently calling into gRPC, skipping fork() handlers
kind/bug impact/usability language/python resolution/fixed area/dynamic-providers
## Hello! <!-- Please leave this section as-is, it's designed to help others in the community know how to interact with our GitHub issues. --> - Vote on this issue by adding a 👍 reaction - To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already) ## Issue details We use Python dynamic providers that rely on `boto3`, the AWS SDK, to perform various operations. `pulumi up` works as expected, but always with a diagnostic error message: ``` Diagnostics: pulumi:pulumi:Stack (austin-pulumi-bug-repro-repro): E0303 15:09:18.160991000 123145385041920 fork_posix.cc:76] Other threads are currently calling into gRPC, skipping fork() handlers ``` ### Steps to reproduce ```python from typing import Any, Optional import boto3 import pulumi_aws as aws from pulumi import ResourceOptions from pulumi.dynamic import CreateResult, Resource, ResourceProvider class MyProvider(ResourceProvider): def create(self, props: Any) -> CreateResult: account_id = boto3.client('sts').get_caller_identity()['Account'] return CreateResult(id_=account_id, outs=props) class MyCustomResource(Resource): def __init__(self, name: str, opts: Optional[ResourceOptions] = None): super().__init__(MyProvider(), name, {}, opts) if __name__ == '__main__': aws.s3.Bucket('empty', aws.s3.BucketArgs(force_destroy=True)) MyCustomResource('custom') ``` <img width="237" alt="Screen Shot 2022-03-03 at 3 34 42 PM" src="https://user-images.githubusercontent.com/3608925/156671001-3e561ba8-5fd8-4e5c-9029-38feb509db71.png"> 1. `pulumi init` a stack 2. `pulumi up` with the source code above Expected: Success with no diagnostic error message Actual: `fork_posix` error msg #### Versions * `pulumi` CLI: v3.25.1 * Pip Libraries * `boto3`: 1.18.55 * `pulumi`: 3.25.0 * `pulumi_aws`: 4.38.0 ---- I've seen similar behavior if I put `boto3` in the `delete()` method and then call `pulumi destroy`
True
Python dynamic provider with boto3: Other threads are currently calling into gRPC, skipping fork() handlers - ## Hello! <!-- Please leave this section as-is, it's designed to help others in the community know how to interact with our GitHub issues. --> - Vote on this issue by adding a 👍 reaction - To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already) ## Issue details We use Python dynamic providers that rely on `boto3`, the AWS SDK, to perform various operations. `pulumi up` works as expected, but always with a diagnostic error message: ``` Diagnostics: pulumi:pulumi:Stack (austin-pulumi-bug-repro-repro): E0303 15:09:18.160991000 123145385041920 fork_posix.cc:76] Other threads are currently calling into gRPC, skipping fork() handlers ``` ### Steps to reproduce ```python from typing import Any, Optional import boto3 import pulumi_aws as aws from pulumi import ResourceOptions from pulumi.dynamic import CreateResult, Resource, ResourceProvider class MyProvider(ResourceProvider): def create(self, props: Any) -> CreateResult: account_id = boto3.client('sts').get_caller_identity()['Account'] return CreateResult(id_=account_id, outs=props) class MyCustomResource(Resource): def __init__(self, name: str, opts: Optional[ResourceOptions] = None): super().__init__(MyProvider(), name, {}, opts) if __name__ == '__main__': aws.s3.Bucket('empty', aws.s3.BucketArgs(force_destroy=True)) MyCustomResource('custom') ``` <img width="237" alt="Screen Shot 2022-03-03 at 3 34 42 PM" src="https://user-images.githubusercontent.com/3608925/156671001-3e561ba8-5fd8-4e5c-9029-38feb509db71.png"> 1. `pulumi init` a stack 2. `pulumi up` with the source code above Expected: Success with no diagnostic error message Actual: `fork_posix` error msg #### Versions * `pulumi` CLI: v3.25.1 * Pip Libraries * `boto3`: 1.18.55 * `pulumi`: 3.25.0 * `pulumi_aws`: 4.38.0 ---- I've seen similar behavior if I put `boto3` in the `delete()` method and then call `pulumi destroy`
usab
python dynamic provider with other threads are currently calling into grpc skipping fork handlers hello vote on this issue by adding a 👍 reaction to contribute a fix for this issue leave a comment and link to your pull request if you ve opened one already issue details we use python dynamic providers that rely on the aws sdk to perform various operations pulumi up works as expected but always with a diagnostic error message diagnostics pulumi pulumi stack austin pulumi bug repro repro fork posix cc other threads are currently calling into grpc skipping fork handlers steps to reproduce python from typing import any optional import import pulumi aws as aws from pulumi import resourceoptions from pulumi dynamic import createresult resource resourceprovider class myprovider resourceprovider def create self props any createresult account id client sts get caller identity return createresult id account id outs props class mycustomresource resource def init self name str opts optional none super init myprovider name opts if name main aws bucket empty aws bucketargs force destroy true mycustomresource custom img width alt screen shot at pm src pulumi init a stack pulumi up with the source code above expected success with no diagnostic error message actual fork posix error msg versions pulumi cli pip libraries pulumi pulumi aws i ve seen similar behavior if i put in the delete method and then call pulumi destroy
1
62,992
8,650,642,950
IssuesEvent
2018-11-26 23:20:16
KhronosGroup/glTF-Blender-IO
https://api.github.com/repos/KhronosGroup/glTF-Blender-IO
opened
Documentation
documentation
The [Blender release notes](https://wiki.blender.org/wiki/Reference/Release_Notes/2.80/Import_Export#glTF) currently link to the documentation from glTF-Blender-Exporter, which focus on the (no longer necessary) custom Cycles nodes. We should create new documentation within this project, covering at least: - Principled BSDF supported features and node arrangements - Transparency and alpha - Animation - How to export multiple animations - Which armature/skinning configurations are supported - How to test a model and report bugs
1.0
Documentation - The [Blender release notes](https://wiki.blender.org/wiki/Reference/Release_Notes/2.80/Import_Export#glTF) currently link to the documentation from glTF-Blender-Exporter, which focus on the (no longer necessary) custom Cycles nodes. We should create new documentation within this project, covering at least: - Principled BSDF supported features and node arrangements - Transparency and alpha - Animation - How to export multiple animations - Which armature/skinning configurations are supported - How to test a model and report bugs
non_usab
documentation the currently link to the documentation from gltf blender exporter which focus on the no longer necessary custom cycles nodes we should create new documentation within this project covering at least principled bsdf supported features and node arrangements transparency and alpha animation how to export multiple animations which armature skinning configurations are supported how to test a model and report bugs
0
19,828
14,616,076,227
IssuesEvent
2020-12-22 12:39:38
lablup/backend.ai
https://api.github.com/repos/lablup/backend.ai
opened
Format the announcement using Rich
cli feature good first issue usability
[Rich](https://github.com/willmcgugan/rich) is a terminal colorization and pretty-text-formatter. Let's use it for printing server announcements in our client SDK.
True
Format the announcement using Rich - [Rich](https://github.com/willmcgugan/rich) is a terminal colorization and pretty-text-formatter. Let's use it for printing server announcements in our client SDK.
usab
format the announcement using rich is a terminal colorization and pretty text formatter let s use it for printing server announcements in our client sdk
1
12,884
8,148,739,637
IssuesEvent
2018-08-22 07:16:42
FStarLang/FStar
https://api.github.com/repos/FStarLang/FStar
closed
Replacing type by provably propositionally equal type breaks typechecking
area/usability component/unifier kind/bug to-be-squashed
The example below shows a case where type checking fails after replacing a type defined transparently in another module by a type that is provably propositionally equal. Moreover, when redefining the problematic type locally, the code typechecks. ``` F# module M open FStar.UInt (* In FStar.UInt: type uint_t (n:pos) = x:int{size x n} In FStar.UInt64: val v : t -> Tot (uint_t n) val uint_to_t: uint_t n -> Pure t *) let n:pos = 32 val uint64_to_uint32: m:UInt64.t{fits (UInt64.v m) n} -> Tot FStar.UInt32.t let uint64_to_uint32 m = let m': x:int{size x n} = UInt64.v m in UInt32.uint_to_t m' //With this uncommented, uint64_to_uint32' below typechecks //type uint_t (n:pos) = x:int{size x n} val uint64_to_uint32': m:UInt64.t{fits (UInt64.v m) n} -> Tot FStar.UInt32.t let uint64_to_uint32' m = cut (uint_t n == x:int{size x n}); cut (forall (p:uint_t n). p:(x:int{size x n})); let m':uint_t n = UInt64.v m in // This fails, even if the above is provable UInt32.uint_to_t m' ``` Labelling this as a bug, but remove the label if you believe this is expected (and please explain why!).
True
Replacing type by provably propositionally equal type breaks typechecking - The example below shows a case where type checking fails after replacing a type defined transparently in another module by a type that is provably propositionally equal. Moreover, when redefining the problematic type locally, the code typechecks. ``` F# module M open FStar.UInt (* In FStar.UInt: type uint_t (n:pos) = x:int{size x n} In FStar.UInt64: val v : t -> Tot (uint_t n) val uint_to_t: uint_t n -> Pure t *) let n:pos = 32 val uint64_to_uint32: m:UInt64.t{fits (UInt64.v m) n} -> Tot FStar.UInt32.t let uint64_to_uint32 m = let m': x:int{size x n} = UInt64.v m in UInt32.uint_to_t m' //With this uncommented, uint64_to_uint32' below typechecks //type uint_t (n:pos) = x:int{size x n} val uint64_to_uint32': m:UInt64.t{fits (UInt64.v m) n} -> Tot FStar.UInt32.t let uint64_to_uint32' m = cut (uint_t n == x:int{size x n}); cut (forall (p:uint_t n). p:(x:int{size x n})); let m':uint_t n = UInt64.v m in // This fails, even if the above is provable UInt32.uint_to_t m' ``` Labelling this as a bug, but remove the label if you believe this is expected (and please explain why!).
usab
replacing type by provably propositionally equal type breaks typechecking the example below shows a case where type checking fails after replacing a type defined transparently in another module by a type that is provably propositionally equal moreover when redefining the problematic type locally the code typechecks f module m open fstar uint in fstar uint type uint t n pos x int size x n in fstar val v t tot uint t n val uint to t uint t n pure t let n pos val to m t fits v m n tot fstar t let to m let m x int size x n v m in uint to t m with this uncommented to below typechecks type uint t n pos x int size x n val to m t fits v m n tot fstar t let to m cut uint t n x int size x n cut forall p uint t n p x int size x n let m uint t n v m in this fails even if the above is provable uint to t m labelling this as a bug but remove the label if you believe this is expected and please explain why
1
91,528
8,306,904,421
IssuesEvent
2018-09-23 00:46:13
pkgcore/pkgcore
https://api.github.com/repos/pkgcore/pkgcore
opened
convert all custom fake objs to use actual obj code
tests
Using mocks, fixtures, and/or pyfakefs-backed objs where required. This should be able to exercise a lot more of pkgcore with the additional benefit of chopping away all the custom faked object support spread through the tests, e.g. fake domain, pkg, and repo objs.
1.0
convert all custom fake objs to use actual obj code - Using mocks, fixtures, and/or pyfakefs-backed objs where required. This should be able to exercise a lot more of pkgcore with the additional benefit of chopping away all the custom faked object support spread through the tests, e.g. fake domain, pkg, and repo objs.
non_usab
convert all custom fake objs to use actual obj code using mocks fixtures and or pyfakefs backed objs where required this should be able to exercise a lot more of pkgcore with the additional benefit of chopping away all the custom faked object support spread through the tests e g fake domain pkg and repo objs
0
5,538
3,951,851,019
IssuesEvent
2016-04-29 04:49:46
OctopusDeploy/Issues
https://api.github.com/repos/OctopusDeploy/Issues
closed
Long variables overlay history in release page
bug in progress usability
Variable value: "metadata=res://*/Entities.csdl|res://*/Entities.ssdl|res://*/Entities.msl;provider=System.Data.SqlClient;provider connection string="data source=.\Instance;initial catalog=DATABASE;Integrated Security=True;MultipleActiveResultSets=True;App=EntityFramework" ![variablesoverlay](https://cloud.githubusercontent.com/assets/6180562/13484457/b4078cea-e0dc-11e5-8933-236015b1f030.png) Octopus version: `3.3.0` Source: https://secure.helpscout.net/conversation/176760755/5294
True
Long variables overlay history in release page - Variable value: "metadata=res://*/Entities.csdl|res://*/Entities.ssdl|res://*/Entities.msl;provider=System.Data.SqlClient;provider connection string="data source=.\Instance;initial catalog=DATABASE;Integrated Security=True;MultipleActiveResultSets=True;App=EntityFramework" ![variablesoverlay](https://cloud.githubusercontent.com/assets/6180562/13484457/b4078cea-e0dc-11e5-8933-236015b1f030.png) Octopus version: `3.3.0` Source: https://secure.helpscout.net/conversation/176760755/5294
usab
long variables overlay history in release page variable value metadata res entities csdl res entities ssdl res entities msl provider system data sqlclient provider connection string data source instance initial catalog database integrated security true multipleactiveresultsets true app entityframework octopus version source
1
5,447
3,929,940,351
IssuesEvent
2016-04-25 04:21:16
kolliSuman/issues
https://api.github.com/repos/kolliSuman/issues
closed
QA_Design Of D-Flip Flop Using Verilog_Usability_smk
Category: Usability Developed By: VLEAD Release Number: Production Severity: S2 Status: Open
Defect Description : In the home page/landing page of "Design Of D-Flip Flop Using Verilog" experiment, an extra header link is present in the page where the extra header link should be removed as it is not required Actual Result : In the home page/landing page of "Design Of D-Flip Flop Using Verilog" experiment, an extra header link is present in the page Environment : OS: Windows 7, Linux Browsers: Firefox,Chrome Bandwidth : 100Mbps Hardware Configuration:8GBRAM , Processor:i5 Test Step Link: https://github.com/Virtual-Labs/vlsi-iiith/blob/master/test-cases/integration_test-cases/Design%20Of%20D-Flip%20Flop%20Using%20Verilog/Design%20Of%20D-Flip%20Flop%20Using%20Verilog_01_Usability_smk.org
True
QA_Design Of D-Flip Flop Using Verilog_Usability_smk - Defect Description : In the home page/landing page of "Design Of D-Flip Flop Using Verilog" experiment, an extra header link is present in the page where the extra header link should be removed as it is not required Actual Result : In the home page/landing page of "Design Of D-Flip Flop Using Verilog" experiment, an extra header link is present in the page Environment : OS: Windows 7, Linux Browsers: Firefox,Chrome Bandwidth : 100Mbps Hardware Configuration:8GBRAM , Processor:i5 Test Step Link: https://github.com/Virtual-Labs/vlsi-iiith/blob/master/test-cases/integration_test-cases/Design%20Of%20D-Flip%20Flop%20Using%20Verilog/Design%20Of%20D-Flip%20Flop%20Using%20Verilog_01_Usability_smk.org
usab
qa design of d flip flop using verilog usability smk defect description in the home page landing page of design of d flip flop using verilog experiment an extra header link is present in the page where the extra header link should be removed as it is not required actual result in the home page landing page of design of d flip flop using verilog experiment an extra header link is present in the page environment os windows linux browsers firefox chrome bandwidth hardware configuration processor test step link
1
788,315
27,750,819,145
IssuesEvent
2023-03-15 20:34:53
marjmekk/github-issues-template
https://api.github.com/repos/marjmekk/github-issues-template
opened
resource.html does not pass HTML validation
bug severity 3 priority 3
Describe the bug Several html errors come up when running resource.html page against HTML validator. To Reproduce Steps to reproduce the behavior: 1. Go to https://validator.w3.org/ 2. Past the URL to the resource page 3. View errors Expected behavior The page should be valid and error-free. However many errors show up. Additional context click the link below to view the HTML validation errors: https://validator.w3.org/check?uri=https%3A%2F%2Fmarjmekk.github.io%2Fgithub-issues-template%2Fresources.html&charset=%28detect+automatically%29&doctype=Inline&group=0
1.0
resource.html does not pass HTML validation - Describe the bug Several html errors come up when running resource.html page against HTML validator. To Reproduce Steps to reproduce the behavior: 1. Go to https://validator.w3.org/ 2. Past the URL to the resource page 3. View errors Expected behavior The page should be valid and error-free. However many errors show up. Additional context click the link below to view the HTML validation errors: https://validator.w3.org/check?uri=https%3A%2F%2Fmarjmekk.github.io%2Fgithub-issues-template%2Fresources.html&charset=%28detect+automatically%29&doctype=Inline&group=0
non_usab
resource html does not pass html validation describe the bug several html errors come up when running resource html page against html validator to reproduce steps to reproduce the behavior go to past the url to the resource page view errors expected behavior the page should be valid and error free however many errors show up additional context click the link below to view the html validation errors
0
11,227
7,113,955,902
IssuesEvent
2018-01-17 22:22:11
matomo-org/matomo
https://api.github.com/repos/matomo-org/matomo
opened
The widgets page should link to the embed guide
c: Usability help wanted
Eg here: ![image](https://user-images.githubusercontent.com/273120/35070321-c2979e94-fc41-11e7-9e5e-3bfdccf2a288.png) should be a link to https://matomo.org/docs/embed-piwik-report/ It is otherwise not clear what it is about
True
The widgets page should link to the embed guide - Eg here: ![image](https://user-images.githubusercontent.com/273120/35070321-c2979e94-fc41-11e7-9e5e-3bfdccf2a288.png) should be a link to https://matomo.org/docs/embed-piwik-report/ It is otherwise not clear what it is about
usab
the widgets page should link to the embed guide eg here should be a link to it is otherwise not clear what it is about
1
102,890
22,146,352,355
IssuesEvent
2022-06-03 12:28:49
Onelinerhub/onelinerhub
https://api.github.com/repos/Onelinerhub/onelinerhub
closed
Short solution needed: "How to set [x,y] axis range" (python-matplotlib)
help wanted good first issue code python-matplotlib
Please help us write most modern and shortest code solution for this issue: **How to set [x,y] axis range** (technology: [python-matplotlib](https://onelinerhub.com/python-matplotlib)) ### Fast way Just write the code solution in the comments. ### Prefered way 1. Create [pull request](https://github.com/Onelinerhub/onelinerhub/blob/main/how-to-contribute.md) with a new code file inside [inbox folder](https://github.com/Onelinerhub/onelinerhub/tree/main/inbox). 2. Don't forget to [use comments](https://github.com/Onelinerhub/onelinerhub/blob/main/how-to-contribute.md#code-file-md-format) explain solution. 3. Link to this issue in comments of pull request.
1.0
Short solution needed: "How to set [x,y] axis range" (python-matplotlib) - Please help us write most modern and shortest code solution for this issue: **How to set [x,y] axis range** (technology: [python-matplotlib](https://onelinerhub.com/python-matplotlib)) ### Fast way Just write the code solution in the comments. ### Prefered way 1. Create [pull request](https://github.com/Onelinerhub/onelinerhub/blob/main/how-to-contribute.md) with a new code file inside [inbox folder](https://github.com/Onelinerhub/onelinerhub/tree/main/inbox). 2. Don't forget to [use comments](https://github.com/Onelinerhub/onelinerhub/blob/main/how-to-contribute.md#code-file-md-format) explain solution. 3. Link to this issue in comments of pull request.
non_usab
short solution needed how to set axis range python matplotlib please help us write most modern and shortest code solution for this issue how to set axis range technology fast way just write the code solution in the comments prefered way create with a new code file inside don t forget to explain solution link to this issue in comments of pull request
0
624,279
19,692,701,250
IssuesEvent
2022-01-12 08:57:35
jina-ai/jina
https://api.github.com/repos/jina-ai/jina
closed
Make sure debug logs are disabled in K8s
priority/important-longterm size/S type/bug
By default the LogLevel should be Info in Kubernetes and not Debug. I think its Debug at the moment.
1.0
Make sure debug logs are disabled in K8s - By default the LogLevel should be Info in Kubernetes and not Debug. I think its Debug at the moment.
non_usab
make sure debug logs are disabled in by default the loglevel should be info in kubernetes and not debug i think its debug at the moment
0
5,021
3,899,289,100
IssuesEvent
2016-04-17 17:01:32
lionheart/openradar-mirror
https://api.github.com/repos/lionheart/openradar-mirror
opened
13541434: [xcode] misspelled 'self' doesn't give in-code error
classification:ui/usability reproducible:always status:open
#### Description Summary: "self" misspelled does not give an error indication in-code. The messages indication takes you to the build output. Steps to Reproduce: Use 'sef' instead of "self", such as sef.nextCueTimeLabel.text = nextTimeText; Expected Results: You get a red stop-bang in the margin, and an error message blob in the code. Click the red stop-bang to go to the code in question. Actual Results: Nothing in the code. Clicking the red stop-bang takes you to the build output. Regression: I don't recall seeing this in 4.5. But I don't recall having a sef-inflected aphasia like i have been having today. Notes: - Product Version: 4.6 (4H127) Created: 2013-03-30T04:25:48.676513 Originated: 2013-03-30T00:00:00 Open Radar Link: http://www.openradar.me/13541434
True
13541434: [xcode] misspelled 'self' doesn't give in-code error - #### Description Summary: "self" misspelled does not give an error indication in-code. The messages indication takes you to the build output. Steps to Reproduce: Use 'sef' instead of "self", such as sef.nextCueTimeLabel.text = nextTimeText; Expected Results: You get a red stop-bang in the margin, and an error message blob in the code. Click the red stop-bang to go to the code in question. Actual Results: Nothing in the code. Clicking the red stop-bang takes you to the build output. Regression: I don't recall seeing this in 4.5. But I don't recall having a sef-inflected aphasia like i have been having today. Notes: - Product Version: 4.6 (4H127) Created: 2013-03-30T04:25:48.676513 Originated: 2013-03-30T00:00:00 Open Radar Link: http://www.openradar.me/13541434
usab
misspelled self doesn t give in code error description summary self misspelled does not give an error indication in code the messages indication takes you to the build output steps to reproduce use sef instead of self such as sef nextcuetimelabel text nexttimetext expected results you get a red stop bang in the margin and an error message blob in the code click the red stop bang to go to the code in question actual results nothing in the code clicking the red stop bang takes you to the build output regression i don t recall seeing this in but i don t recall having a sef inflected aphasia like i have been having today notes product version created originated open radar link
1
18,350
12,807,650,611
IssuesEvent
2020-07-03 11:58:28
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
Double clicking on message in output should jump to file and line where message is printed
enhancement topic:editor usability
In unity's output window it is possible to double click on every printed message to open the corresponding file and jump to the line with the print() method. I think something similar would be a nice addition to godot.
True
Double clicking on message in output should jump to file and line where message is printed - In unity's output window it is possible to double click on every printed message to open the corresponding file and jump to the line with the print() method. I think something similar would be a nice addition to godot.
usab
double clicking on message in output should jump to file and line where message is printed in unity s output window it is possible to double click on every printed message to open the corresponding file and jump to the line with the print method i think something similar would be a nice addition to godot
1
9,753
6,412,527,805
IssuesEvent
2017-08-08 03:42:27
FReBOmusic/FReBO
https://api.github.com/repos/FReBOmusic/FReBO
opened
Hide Street Address Checkbox
Usability
In the event that the user navigates to the Create Listing Screen. **Expected Response**: The Hide Street Address Button should be displayed on the Create Listing Screen.
True
Hide Street Address Checkbox - In the event that the user navigates to the Create Listing Screen. **Expected Response**: The Hide Street Address Button should be displayed on the Create Listing Screen.
usab
hide street address checkbox in the event that the user navigates to the create listing screen expected response the hide street address button should be displayed on the create listing screen
1
43,924
11,348,960,342
IssuesEvent
2020-01-24 02:32:55
ChurchCRM/CRM
https://api.github.com/repos/ChurchCRM/CRM
closed
Missing bootstrap-timepicker?
Package Dependencies build
Logged in with admin, on initial load of dashboard, observed in console: ``` GET https://example.com/skin/external/bootstrap-timepicker/bootstrap-timepicker.min.css net::ERR_ABORTED 404 (Not Found) GET https://example.com/skin/external/bootstrap-timepicker/bootstrap-timepicker.min.js net::ERR_ABORTED 404 (Not Found) ``` Collected Value Title | Data ----------------------|---------------- Page Name |/Menu.php Screen Size |1080x1920 Window Size |882x1159 Page Size |2973x1159 Platform Information | Linux thomas-fitzsimmons 4.14.117-grsec-grsec+ #1 SMP Sat May 11 00:40:24 UTC 2019 x86_64 PHP Version | 7.3.11 SQL Version | 5.7.25-log ChurchCRM Version |3.5.5 Reporting Browser |Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36 Prerequisite Status |All Prerequisites met Integrity check status |{"status":"success"}
1.0
Missing bootstrap-timepicker? - Logged in with admin, on initial load of dashboard, observed in console: ``` GET https://example.com/skin/external/bootstrap-timepicker/bootstrap-timepicker.min.css net::ERR_ABORTED 404 (Not Found) GET https://example.com/skin/external/bootstrap-timepicker/bootstrap-timepicker.min.js net::ERR_ABORTED 404 (Not Found) ``` Collected Value Title | Data ----------------------|---------------- Page Name |/Menu.php Screen Size |1080x1920 Window Size |882x1159 Page Size |2973x1159 Platform Information | Linux thomas-fitzsimmons 4.14.117-grsec-grsec+ #1 SMP Sat May 11 00:40:24 UTC 2019 x86_64 PHP Version | 7.3.11 SQL Version | 5.7.25-log ChurchCRM Version |3.5.5 Reporting Browser |Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36 Prerequisite Status |All Prerequisites met Integrity check status |{"status":"success"}
non_usab
missing bootstrap timepicker logged in with admin on initial load of dashboard observed in console get net err aborted not found get net err aborted not found collected value title data page name menu php screen size window size page size platform information linux thomas fitzsimmons grsec grsec smp sat may utc php version sql version log churchcrm version reporting browser mozilla macintosh intel mac os x applewebkit khtml like gecko chrome safari prerequisite status all prerequisites met integrity check status status success
0
22,745
20,073,387,439
IssuesEvent
2022-02-04 09:56:27
CatalogueOfLife/checklistbank
https://api.github.com/repos/CatalogueOfLife/checklistbank
closed
Improving dataset search performance
usability
The default view of the [dataset search](https://data.catalogueoflife.org/dataset?limit=50&offset=0) takes too long to load because by default it is populating the datasets table with 50 unrequested search results. While the data is loading, the search interface hangs so it's not possible to search for the desired dataset until the unrequested empty search results load. It would be preferable to not load any search results by default until the user enters a search term, or perhaps add a browse datasets button that will load the full datasets list. Lowering the search limit to 5 helps a lot and could at least temporarily improve performance.
True
Improving dataset search performance - The default view of the [dataset search](https://data.catalogueoflife.org/dataset?limit=50&offset=0) takes too long to load because by default it is populating the datasets table with 50 unrequested search results. While the data is loading, the search interface hangs so it's not possible to search for the desired dataset until the unrequested empty search results load. It would be preferable to not load any search results by default until the user enters a search term, or perhaps add a browse datasets button that will load the full datasets list. Lowering the search limit to 5 helps a lot and could at least temporarily improve performance.
usab
improving dataset search performance the default view of the takes too long to load because by default it is populating the datasets table with unrequested search results while the data is loading the search interface hangs so it s not possible to search for the desired dataset until the unrequested empty search results load it would be preferable to not load any search results by default until the user enters a search term or perhaps add a browse datasets button that will load the full datasets list lowering the search limit to helps a lot and could at least temporarily improve performance
1
4,599
3,873,459,402
IssuesEvent
2016-04-11 17:02:19
OpenCollar/opencollar
https://api.github.com/repos/OpenCollar/opencollar
opened
RLV Suite: Outfits can only work on RLVa at the moment.
usability
**Version:** ``6.1.4 (160409.200000)`` The outfits feature in ``oc_rlvsuite`` is based on @SumiPerl's implementation of outfits. We filter paths for this dedicated feature by using ``.hidden`` folders with the period prefix to hide them from our dedicated ``# Folders`` browser. However, RLV and RLVa approach ``.hidden`` folders differently. In RLV when something is hidden, it is truly hidden also for the scripts, while in RLVa it can still be filtered and revealed by our menu and accessed via chat commands. This made RLVa a very popular choice among many OpenCollar users. The user can have a chaotic ``.hidden`` folder, for example ``.props`` where she keeps all kind of items to quickly wear (via fast, simple chat commands) during roleplay situations and without irritating partners with enormous, chaotic choice in the ``# Folders`` browser. Or yet shorter: On RLVa you can have a mess and hide it from your owners, while on RLV you should be tidy or you will overwhelm your owners. "Filtering" in that sense can only work on RLVa at the moment. That means for users of RLV, this should be common knowledge and thankfully we already have a kickass ``# Folders`` browser that works flawlessly on any flavour of RLV. For Outfits, we require RLVa though and to prevent confusion, we inform the user when trying to use Outfits while on RLV.
True
RLV Suite: Outfits can only work on RLVa at the moment. - **Version:** ``6.1.4 (160409.200000)`` The outfits feature in ``oc_rlvsuite`` is based on @SumiPerl's implementation of outfits. We filter paths for this dedicated feature by using ``.hidden`` folders with the period prefix to hide them from our dedicated ``# Folders`` browser. However, RLV and RLVa approach ``.hidden`` folders differently. In RLV when something is hidden, it is truly hidden also for the scripts, while in RLVa it can still be filtered and revealed by our menu and accessed via chat commands. This made RLVa a very popular choice among many OpenCollar users. The user can have a chaotic ``.hidden`` folder, for example ``.props`` where she keeps all kind of items to quickly wear (via fast, simple chat commands) during roleplay situations and without irritating partners with enormous, chaotic choice in the ``# Folders`` browser. Or yet shorter: On RLVa you can have a mess and hide it from your owners, while on RLV you should be tidy or you will overwhelm your owners. "Filtering" in that sense can only work on RLVa at the moment. That means for users of RLV, this should be common knowledge and thankfully we already have a kickass ``# Folders`` browser that works flawlessly on any flavour of RLV. For Outfits, we require RLVa though and to prevent confusion, we inform the user when trying to use Outfits while on RLV.
usab
rlv suite outfits can only work on rlva at the moment version the outfits feature in oc rlvsuite is based on sumiperl s implementation of outfits we filter paths for this dedicated feature by using hidden folders with the period prefix to hide them from our dedicated folders browser however rlv and rlva approach hidden folders differently in rlv when something is hidden it is truly hidden also for the scripts while in rlva it can still be filtered and revealed by our menu and accessed via chat commands this made rlva a very popular choice among many opencollar users the user can have a chaotic hidden folder for example props where she keeps all kind of items to quickly wear via fast simple chat commands during roleplay situations and without irritating partners with enormous chaotic choice in the folders browser or yet shorter on rlva you can have a mess and hide it from your owners while on rlv you should be tidy or you will overwhelm your owners filtering in that sense can only work on rlva at the moment that means for users of rlv this should be common knowledge and thankfully we already have a kickass folders browser that works flawlessly on any flavour of rlv for outfits we require rlva though and to prevent confusion we inform the user when trying to use outfits while on rlv
1
309,266
9,466,078,352
IssuesEvent
2019-04-18 02:42:34
minhphan156/Abode
https://api.github.com/repos/minhphan156/Abode
closed
SJSU-3002, Bugs in footer
1 Front End PRIORITY Sprint #5
please fix: - links in footer turn blue on hover over. they should stay white - footer is not bound to end of page
1.0
SJSU-3002, Bugs in footer - please fix: - links in footer turn blue on hover over. they should stay white - footer is not bound to end of page
non_usab
sjsu bugs in footer please fix links in footer turn blue on hover over they should stay white footer is not bound to end of page
0
5,384
3,918,154,765
IssuesEvent
2016-04-21 11:15:26
kolliSuman/issues
https://api.github.com/repos/kolliSuman/issues
closed
QA_Vibration Control_Back to experiments_smk
Category: Usability Developed By: VLEAD Release Number: Production Severity: S2 Status: Open
Defect Description : In the "Vibration Control" experiment,the back to experiments link is not present in the page instead the back to experiments link should be displayed on the screen in-order to view the list of experiments by the user. Actual Result : In the "Vibration Control" experiment,the back to experiments link is not present in the page. Environment : OS: Windows 7, Ubuntu-16.04,Centos-6 Browsers: Firefox-42.0,Chrome-47.0,chromium-45.0 Bandwidth : 100Mbps Hardware Configuration:8GBRAM Processor:i5 Test Step Link: https://github.com/Virtual-Labs/Structural Dynami/blob/master/test-cases/integration_test-cases/Vibration%20Control/Vibration%20Control_15_Back%20to%20experiments_smk.org
True
QA_Vibration Control_Back to experiments_smk - Defect Description : In the "Vibration Control" experiment,the back to experiments link is not present in the page instead the back to experiments link should be displayed on the screen in-order to view the list of experiments by the user. Actual Result : In the "Vibration Control" experiment,the back to experiments link is not present in the page. Environment : OS: Windows 7, Ubuntu-16.04,Centos-6 Browsers: Firefox-42.0,Chrome-47.0,chromium-45.0 Bandwidth : 100Mbps Hardware Configuration:8GBRAM Processor:i5 Test Step Link: https://github.com/Virtual-Labs/Structural Dynami/blob/master/test-cases/integration_test-cases/Vibration%20Control/Vibration%20Control_15_Back%20to%20experiments_smk.org
usab
qa vibration control back to experiments smk defect description in the vibration control experiment the back to experiments link is not present in the page instead the back to experiments link should be displayed on the screen in order to view the list of experiments by the user actual result in the vibration control experiment the back to experiments link is not present in the page environment os windows ubuntu centos browsers firefox chrome chromium bandwidth hardware configuration processor test step link dynami blob master test cases integration test cases vibration vibration back smk org
1
15,520
10,096,017,175
IssuesEvent
2019-07-27 14:25:37
rabbitmq/rabbitmq-management
https://api.github.com/repos/rabbitmq/rabbitmq-management
closed
Unable to delete binding with undefined routing key
effort-low usability
Hi, * RabbitMQ version: 3.7.15 * Erlang version: 22.0 * RabbitMQ server and client application log files - no entry found in log file. * A runnable code sample, terminal transcript or detailed set of instructions that can be used to reproduce the issue * RabbitMQ plugin information via `rabbitmq-plugins list` - rabbitmq_management - rabbitmq_management_agent - rabbitmq_web_dispatch * Client library version (for all libraries used) - powershell * Operating system, version, and patch level - Windows Server 2019 Standard When a binding is created through Management API with routing_key: null, it is not possible to delete such binding through DELETE api call: /api/bindings/vhost/e/exchange/q/queue/props. API returns 404 Not Found ```powershell Invoke-RestMethod -Method Post -Uri https://rabbit01.hrebitom.poc:15671/api/definitions -Headers $headers -Body ( @{"exchanges" = @(@{"name" = "test"; "type" = "headers"; "vhost" = "/"; "durable" = $true; "auto_delete" = $false; "internal"= "false"; "arguments" = @{}}); "queues" = @(@{"name" = "test"; "vhost" = "/"; "durable" = $true; "auto_delete" = $false; "arguments" = @{}}); "bindings" = @( @{"source" = "test"; "destination" = "test"; "destination_type"= "queue"; "vhost" = "/"; "arguments" = @{} })} | ConvertTo-Json -Depth 10 ) Invoke-RestMethod -Method Get -Uri https://rabbit01.hrebitom.poc:15671/api/bindings/%2F/e/test/q/test -Headers $headers # => # source : test # vhost : / # destination : test # destination_type : queue # routing_key : undefined # arguments : # properties_key : undefined Invoke-RestMethod -Method Delete -Uri https://rabbit01.hrebitom.poc:15671/api/bindings/%2F/e/test/q/test/undefined -Headers $headers # Invoke-RestMethod : {"error":"Object Not Found","reason":"Not Found"} ``` It's also not possible to delete the binding through Web UI. Tom
True
Unable to delete binding with undefined routing key - Hi, * RabbitMQ version: 3.7.15 * Erlang version: 22.0 * RabbitMQ server and client application log files - no entry found in log file. * A runnable code sample, terminal transcript or detailed set of instructions that can be used to reproduce the issue * RabbitMQ plugin information via `rabbitmq-plugins list` - rabbitmq_management - rabbitmq_management_agent - rabbitmq_web_dispatch * Client library version (for all libraries used) - powershell * Operating system, version, and patch level - Windows Server 2019 Standard When a binding is created through Management API with routing_key: null, it is not possible to delete such binding through DELETE api call: /api/bindings/vhost/e/exchange/q/queue/props. API returns 404 Not Found ```powershell Invoke-RestMethod -Method Post -Uri https://rabbit01.hrebitom.poc:15671/api/definitions -Headers $headers -Body ( @{"exchanges" = @(@{"name" = "test"; "type" = "headers"; "vhost" = "/"; "durable" = $true; "auto_delete" = $false; "internal"= "false"; "arguments" = @{}}); "queues" = @(@{"name" = "test"; "vhost" = "/"; "durable" = $true; "auto_delete" = $false; "arguments" = @{}}); "bindings" = @( @{"source" = "test"; "destination" = "test"; "destination_type"= "queue"; "vhost" = "/"; "arguments" = @{} })} | ConvertTo-Json -Depth 10 ) Invoke-RestMethod -Method Get -Uri https://rabbit01.hrebitom.poc:15671/api/bindings/%2F/e/test/q/test -Headers $headers # => # source : test # vhost : / # destination : test # destination_type : queue # routing_key : undefined # arguments : # properties_key : undefined Invoke-RestMethod -Method Delete -Uri https://rabbit01.hrebitom.poc:15671/api/bindings/%2F/e/test/q/test/undefined -Headers $headers # Invoke-RestMethod : {"error":"Object Not Found","reason":"Not Found"} ``` It's also not possible to delete the binding through Web UI. Tom
usab
unable to delete binding with undefined routing key hi rabbitmq version erlang version rabbitmq server and client application log files no entry found in log file a runnable code sample terminal transcript or detailed set of instructions that can be used to reproduce the issue rabbitmq plugin information via rabbitmq plugins list rabbitmq management rabbitmq management agent rabbitmq web dispatch client library version for all libraries used powershell operating system version and patch level windows server standard when a binding is created through management api with routing key null it is not possible to delete such binding through delete api call api bindings vhost e exchange q queue props api returns not found powershell invoke restmethod method post uri headers headers body exchanges name test type headers vhost durable true auto delete false internal false arguments queues name test vhost durable true auto delete false arguments bindings source test destination test destination type queue vhost arguments convertto json depth invoke restmethod method get uri headers headers source test vhost destination test destination type queue routing key undefined arguments properties key undefined invoke restmethod method delete uri headers headers invoke restmethod error object not found reason not found it s also not possible to delete the binding through web ui tom
1
3,139
3,352,056,431
IssuesEvent
2015-11-17 21:07:43
rabbitmq/rabbitmq-server
https://api.github.com/repos/rabbitmq/rabbitmq-server
closed
Improve connection_closed_abruptly error message
effort-tiny usability
It is not obvious from the message that client's TCP connection was closed or lost w/o closing AMQP 0-9-1 one properly. We can make that clearer.
True
Improve connection_closed_abruptly error message - It is not obvious from the message that client's TCP connection was closed or lost w/o closing AMQP 0-9-1 one properly. We can make that clearer.
usab
improve connection closed abruptly error message it is not obvious from the message that client s tcp connection was closed or lost w o closing amqp one properly we can make that clearer
1
62,262
25,931,692,015
IssuesEvent
2022-12-16 10:33:03
ArjunaCluster/ArjunaUsers
https://api.github.com/repos/ArjunaCluster/ArjunaUsers
opened
Arjuna is Down for Unplanned Maintenance
service-outage notify
### Node Name d*, f* ### When? 12:16am ### Additional Information? _No response_
1.0
Arjuna is Down for Unplanned Maintenance - ### Node Name d*, f* ### When? 12:16am ### Additional Information? _No response_
non_usab
arjuna is down for unplanned maintenance node name d f when additional information no response
0
6,668
4,428,061,491
IssuesEvent
2016-08-17 00:03:38
lionheart/openradar-mirror
https://api.github.com/repos/lionheart/openradar-mirror
opened
27875529: Xcode has two confusing external file change dialogs
classification:ui/usability reproducible:always status:open
#### Description Summary: Xcode displays a warning when a project file is changed by an outside interaction. However, it uses two different dialog boxes for this warning. The dialog boxes have different copy, and they switch the default action. One box's default action is to revert the file to Xcode's internal state, and the other one reloads the file from disk. Steps to Reproduce: 1. Open an Xcode project 2. Change the project file – this most often happens when I use version control to switch to a different commit 3. Observe one of the two dialogs. I'm not sure what influences which you see. Expected Results: There should be only one dialog warning about external file changes, and it should probably default to "read from disk." Actual Results: You get one of two dialogs, with the default actions reversed. - Product Version: 7.3 (7D175) Created: 2016-08-16T23:03:12.470360 Originated: 2016-08-16T00:00:00 Open Radar Link: http://www.openradar.me/27875529
True
27875529: Xcode has two confusing external file change dialogs - #### Description Summary: Xcode displays a warning when a project file is changed by an outside interaction. However, it uses two different dialog boxes for this warning. The dialog boxes have different copy, and they switch the default action. One box's default action is to revert the file to Xcode's internal state, and the other one reloads the file from disk. Steps to Reproduce: 1. Open an Xcode project 2. Change the project file – this most often happens when I use version control to switch to a different commit 3. Observe one of the two dialogs. I'm not sure what influences which you see. Expected Results: There should be only one dialog warning about external file changes, and it should probably default to "read from disk." Actual Results: You get one of two dialogs, with the default actions reversed. - Product Version: 7.3 (7D175) Created: 2016-08-16T23:03:12.470360 Originated: 2016-08-16T00:00:00 Open Radar Link: http://www.openradar.me/27875529
usab
xcode has two confusing external file change dialogs description summary xcode displays a warning when a project file is changed by an outside interaction however it uses two different dialog boxes for this warning the dialog boxes have different copy and they switch the default action one box s default action is to revert the file to xcode s internal state and the other one reloads the file from disk steps to reproduce open an xcode project change the project file – this most often happens when i use version control to switch to a different commit observe one of the two dialogs i m not sure what influences which you see expected results there should be only one dialog warning about external file changes and it should probably default to read from disk actual results you get one of two dialogs with the default actions reversed product version created originated open radar link
1
101,786
11,257,808,974
IssuesEvent
2020-01-13 01:18:23
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
Adding support for _ (underscore) to the configmap metadata.name field
kind/documentation kind/feature sig/api-machinery sig/network
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Adding _ to the configmap name as configuration files that are fetched from various configuration management tools support it. **Why is this needed**: Allow underscore in configMapKeyRef key's #23722 When it is allowed in the configMapKeyRef key's, it should also be allowed in metadata.name field of configmap. **ConfigMap File:** ``` --- apiVersion: v1 kind: ConfigMap metadata: name: configmap_test data: Values1: config_dir Values2: service ``` **Error:** The ConfigMap "configmap_test" is invalid: metadata.name: Invalid value: "configmap_test": a DNS-1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. 'example.com', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*') **name: configmap_test <-- Why is underscore not allowed?** From https://en.wikipedia.org/wiki/Hostname ``` While a hostname may not contain other characters, such as the underscore character (_), other DNS names may contain the underscore.[5][6] Systems such as DomainKeys and service records use the underscore as a means to assure that their special character is not confused with hostnames. For example, _http._sctp.www.example.com specifies a service pointer for an SCTP-capable webserver host (www) in the domain example.com. Notwithstanding the standard, Chrome, Firefox, Internet Explorer, Edge and Safari allow underscores in hostnames, although cookies in IE do not work correctly if any part of the hostname contains an underscore character.[7] However, it is valid to attempt to resolve a hostname that consists of an underscore. E.g. _.example.com. This is used by RFC 7816 to reduce the amount of information that is made available to intermediate DNS servers during an iterative query[8]. The Query Name Minimisation feature is enabled by default in BIND 9.14.0[9]. ``` From https://en.wikipedia.org/wiki/Domain_name#Domain_name_syntax ```A valid hostname is also a valid domain name``` **Changes required** https://github.com/kubernetes/kubernetes/blob/654aa1d846a72ba842967424d287304db1dad803/staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go#L110 Please correct me if I am wrong and if that is a standard.
1.0
Adding support for _ (underscore) to the configmap metadata.name field - <!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Adding _ to the configmap name as configuration files that are fetched from various configuration management tools support it. **Why is this needed**: Allow underscore in configMapKeyRef key's #23722 When it is allowed in the configMapKeyRef key's, it should also be allowed in metadata.name field of configmap. **ConfigMap File:** ``` --- apiVersion: v1 kind: ConfigMap metadata: name: configmap_test data: Values1: config_dir Values2: service ``` **Error:** The ConfigMap "configmap_test" is invalid: metadata.name: Invalid value: "configmap_test": a DNS-1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. 'example.com', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*') **name: configmap_test <-- Why is underscore not allowed?** From https://en.wikipedia.org/wiki/Hostname ``` While a hostname may not contain other characters, such as the underscore character (_), other DNS names may contain the underscore.[5][6] Systems such as DomainKeys and service records use the underscore as a means to assure that their special character is not confused with hostnames. For example, _http._sctp.www.example.com specifies a service pointer for an SCTP-capable webserver host (www) in the domain example.com. Notwithstanding the standard, Chrome, Firefox, Internet Explorer, Edge and Safari allow underscores in hostnames, although cookies in IE do not work correctly if any part of the hostname contains an underscore character.[7] However, it is valid to attempt to resolve a hostname that consists of an underscore. E.g. _.example.com. This is used by RFC 7816 to reduce the amount of information that is made available to intermediate DNS servers during an iterative query[8]. The Query Name Minimisation feature is enabled by default in BIND 9.14.0[9]. ``` From https://en.wikipedia.org/wiki/Domain_name#Domain_name_syntax ```A valid hostname is also a valid domain name``` **Changes required** https://github.com/kubernetes/kubernetes/blob/654aa1d846a72ba842967424d287304db1dad803/staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go#L110 Please correct me if I am wrong and if that is a standard.
non_usab
adding support for underscore to the configmap metadata name field what would you like to be added adding to the configmap name as configuration files that are fetched from various configuration management tools support it why is this needed allow underscore in configmapkeyref key s when it is allowed in the configmapkeyref key s it should also be allowed in metadata name field of configmap configmap file apiversion kind configmap metadata name configmap test data config dir service error the configmap configmap test is invalid metadata name invalid value configmap test a dns subdomain must consist of lower case alphanumeric characters or and must start and end with an alphanumeric character e g example com regex used for validation is name configmap test why is underscore not allowed from while a hostname may not contain other characters such as the underscore character other dns names may contain the underscore systems such as domainkeys and service records use the underscore as a means to assure that their special character is not confused with hostnames for example http sctp specifies a service pointer for an sctp capable webserver host www in the domain example com notwithstanding the standard chrome firefox internet explorer edge and safari allow underscores in hostnames although cookies in ie do not work correctly if any part of the hostname contains an underscore character however it is valid to attempt to resolve a hostname that consists of an underscore e g example com this is used by rfc to reduce the amount of information that is made available to intermediate dns servers during an iterative query the query name minimisation feature is enabled by default in bind from a valid hostname is also a valid domain name changes required please correct me if i am wrong and if that is a standard
0
152,049
12,069,979,626
IssuesEvent
2020-04-16 16:53:11
kubernetes/minikube
https://api.github.com/repos/kubernetes/minikube
closed
Integration: automate download of periodic clean up script from github
area/testing kind/feature lifecycle/rotten priority/important-longterm
We need to make our agents to download the clean up script for agents. the clean up script should do : - download latest version of clean up code if failed to download or not changed, use the previous file. - check if it is added to the cronjob if not add it.
1.0
Integration: automate download of periodic clean up script from github - We need to make our agents to download the clean up script for agents. the clean up script should do : - download latest version of clean up code if failed to download or not changed, use the previous file. - check if it is added to the cronjob if not add it.
non_usab
integration automate download of periodic clean up script from github we need to make our agents to download the clean up script for agents the clean up script should do download latest version of clean up code if failed to download or not changed use the previous file check if it is added to the cronjob if not add it
0
78,399
9,702,717,198
IssuesEvent
2019-05-27 09:27:05
Automattic/wp-calypso
https://api.github.com/repos/Automattic/wp-calypso
closed
Earn Page: Styling Frequently Lost
Design OSS Citizen WordAds
<!-- Thanks for contributing to Calypso! Pick a clear title ("Editor: add spell check") and proceed. --> #### Steps to reproduce 1. Starting at URL: https://horizon.wordpress.com/earn/ads-earnings/site-url 2. See lack of styling Or 1. Starting at URL: https://wordpress.com/stats 2. Click the Earn page 3. Click around for a bit 4. Refresh 5. See lack of styling Using Chrome 73, where I was expecting the regular styles to appear. ![Screenshot_20190419-085603](https://user-images.githubusercontent.com/43215253/56409334-489c0b00-6281-11e9-9099-2a116f05071c.jpg)
1.0
Earn Page: Styling Frequently Lost - <!-- Thanks for contributing to Calypso! Pick a clear title ("Editor: add spell check") and proceed. --> #### Steps to reproduce 1. Starting at URL: https://horizon.wordpress.com/earn/ads-earnings/site-url 2. See lack of styling Or 1. Starting at URL: https://wordpress.com/stats 2. Click the Earn page 3. Click around for a bit 4. Refresh 5. See lack of styling Using Chrome 73, where I was expecting the regular styles to appear. ![Screenshot_20190419-085603](https://user-images.githubusercontent.com/43215253/56409334-489c0b00-6281-11e9-9099-2a116f05071c.jpg)
non_usab
earn page styling frequently lost steps to reproduce starting at url see lack of styling or starting at url click the earn page click around for a bit refresh see lack of styling using chrome where i was expecting the regular styles to appear
0