Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1
value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3
values | title stringlengths 1 957 | labels stringlengths 4 795 | body stringlengths 1 259k | index stringclasses 12
values | text_combine stringlengths 96 259k | label stringclasses 2
values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
353,664 | 10,555,758,026 | IssuesEvent | 2019-10-03 22:54:53 | javalite/activeweb | https://api.github.com/repos/javalite/activeweb | closed | Add format parameter to link_to tag | Priority-Medium bug imported | _Original author: i...@expresspigeon.com (September 10, 2012 22:42:10)_
so as to be able to generate routes using formats
_Original issue: http://code.google.com/p/activeweb/issues/detail?id=113_
| 1.0 | Add format parameter to link_to tag - _Original author: i...@expresspigeon.com (September 10, 2012 22:42:10)_
so as to be able to generate routes using formats
_Original issue: http://code.google.com/p/activeweb/issues/detail?id=113_
| priority | add format parameter to link to tag original author i expresspigeon com september so as to be able to generate routes using formats original issue | 1 |
821,563 | 30,827,009,198 | IssuesEvent | 2023-08-01 20:57:25 | rstudio/gt | https://api.github.com/repos/rstudio/gt | closed | Error knitting to PDF when table has (Intercept) in a row | Type: ☹︎ Bug Difficulty: [2] Intermediate Effort: [2] Medium Priority: [3] High Focus: LaTeX Output | Really liking the look of gt so far and exploring it for an analysis. I'm attempting to knit regression tables generated by gt in an R Markdown document to PDF. I came across a (I think) bug where if the summary table has a variable called "(Intercept)", I get a knitting error. Removing the "(Intercept)" row allows the document to knit to PDF, and removing the ('s also allows the document to knit to PDF (i.e. replacing "(Intercept)" with "Intercept"). Not sure how to submit a reprex here since the error comes while knitting, but content of the .Rmd below. All three examples below work when knitting to HTML.
Working on gt version 0.1.0, tinytex 0.16
## `.Rmd` file
```
---
title: "test"
author: "Dan"
date: "11/7/2019"
output:
pdf_document: default
html_document: default
bookdown::pdf_document2: default
---
```{r}
library(tidyverse)
library(broom)
library(gt)
```
Attempting to knit this chunk to PDF causes error "! Undefined control sequence."
```{r, eval = TRUE}
mod <- lm(mpg ~ cyl, data = mtcars)
broom::tidy(mod) %>%
gt()
```
Works if I filter out the row with "(Intercept)" in it.
```{r, eval = TRUE}
mod <- lm(mpg ~ cyl, data = mtcars)
broom::tidy(mod) %>%
filter(term != "(Intercept)") %>%
gt()
```
```{r, eval = TRUE}
mod <- lm(mpg ~ cyl, data = mtcars)
broom::tidy(mod) %>%
mutate(term = ifelse(term == "(Intercept)","Intercept",term)) %>%
gt()
```
```
| 1.0 | Error knitting to PDF when table has (Intercept) in a row - Really liking the look of gt so far and exploring it for an analysis. I'm attempting to knit regression tables generated by gt in an R Markdown document to PDF. I came across a (I think) bug where if the summary table has a variable called "(Intercept)", I get a knitting error. Removing the "(Intercept)" row allows the document to knit to PDF, and removing the ('s also allows the document to knit to PDF (i.e. replacing "(Intercept)" with "Intercept"). Not sure how to submit a reprex here since the error comes while knitting, but content of the .Rmd below. All three examples below work when knitting to HTML.
Working on gt version 0.1.0, tinytex 0.16
## `.Rmd` file
```
---
title: "test"
author: "Dan"
date: "11/7/2019"
output:
pdf_document: default
html_document: default
bookdown::pdf_document2: default
---
```{r}
library(tidyverse)
library(broom)
library(gt)
```
Attempting to knit this chunk to PDF causes error "! Undefined control sequence."
```{r, eval = TRUE}
mod <- lm(mpg ~ cyl, data = mtcars)
broom::tidy(mod) %>%
gt()
```
Works if I filter out the row with "(Intercept)" in it.
```{r, eval = TRUE}
mod <- lm(mpg ~ cyl, data = mtcars)
broom::tidy(mod) %>%
filter(term != "(Intercept)") %>%
gt()
```
```{r, eval = TRUE}
mod <- lm(mpg ~ cyl, data = mtcars)
broom::tidy(mod) %>%
mutate(term = ifelse(term == "(Intercept)","Intercept",term)) %>%
gt()
```
```
| priority | error knitting to pdf when table has intercept in a row really liking the look of gt so far and exploring it for an analysis i m attempting to knit regression tables generated by gt in an r markdown document to pdf i came across a i think bug where if the summary table has a variable called intercept i get a knitting error removing the intercept row allows the document to knit to pdf and removing the s also allows the document to knit to pdf i e replacing intercept with intercept not sure how to submit a reprex here since the error comes while knitting but content of the rmd below all three examples below work when knitting to html working on gt version tinytex rmd file title test author dan date output pdf document default html document default bookdown pdf default r library tidyverse library broom library gt attempting to knit this chunk to pdf causes error undefined control sequence r eval true mod lm mpg cyl data mtcars broom tidy mod gt works if i filter out the row with intercept in it r eval true mod lm mpg cyl data mtcars broom tidy mod filter term intercept gt r eval true mod lm mpg cyl data mtcars broom tidy mod mutate term ifelse term intercept intercept term gt | 1 |
306,253 | 9,382,969,083 | IssuesEvent | 2019-04-05 00:51:01 | minio/minio | https://api.github.com/repos/minio/minio | closed | env variable MINIO_LOGGER_HTTP_ENDPOINT does not change configuration | community priority: medium | I am starting a standalone minio server with the following commands, inserting the corresponding hostname for the http endpoint env variable:
export MINIO_ACCESS_KEY=admin
export MINIO_SECRET_KEY=password
export MINIO_LOGGER_HTTP_ENDPOINT=http://hostname:8080/minio/logs
./minio server /archive/minio_storage
I would like to enable the http target logging. But when i try to access the endpoint it is not possible. Looking into the server configuration file, you can get with:
mc admin config get myminio > my-serverconfig
I see that the option for http target logging is not set according to the environment variable and still shows the default configuration:
"logger": {
"console": {
"enabled": true
},
"http": {
"target1": {
"enabled": false,
"endpoint": "https://username:password@example.com/api"
}
}
}
What am i doing wrong? I expect the http target to be enabled and the endpoint to be set to the one i specified with the corresponding environment variable and the log to be accessible through the url http://hostname:8080/minio/logs. | 1.0 | env variable MINIO_LOGGER_HTTP_ENDPOINT does not change configuration - I am starting a standalone minio server with the following commands, inserting the corresponding hostname for the http endpoint env variable:
export MINIO_ACCESS_KEY=admin
export MINIO_SECRET_KEY=password
export MINIO_LOGGER_HTTP_ENDPOINT=http://hostname:8080/minio/logs
./minio server /archive/minio_storage
I would like to enable the http target logging. But when i try to access the endpoint it is not possible. Looking into the server configuration file, you can get with:
mc admin config get myminio > my-serverconfig
I see that the option for http target logging is not set according to the environment variable and still shows the default configuration:
"logger": {
"console": {
"enabled": true
},
"http": {
"target1": {
"enabled": false,
"endpoint": "https://username:password@example.com/api"
}
}
}
What am i doing wrong? I expect the http target to be enabled and the endpoint to be set to the one i specified with the corresponding environment variable and the log to be accessible through the url http://hostname:8080/minio/logs. | priority | env variable minio logger http endpoint does not change configuration i am starting a standalone minio server with the following commands inserting the corresponding hostname for the http endpoint env variable export minio access key admin export minio secret key password export minio logger http endpoint minio server archive minio storage i would like to enable the http target logging but when i try to access the endpoint it is not possible looking into the server configuration file you can get with mc admin config get myminio my serverconfig i see that the option for http target logging is not set according to the environment variable and still shows the default configuration logger console enabled true http enabled false endpoint what am i doing wrong i expect the http target to be enabled and the endpoint to be set to the one i specified with the corresponding environment variable and the log to be accessible through the url | 1 |
388,604 | 11,489,888,825 | IssuesEvent | 2020-02-11 16:11:58 | salesagility/SuiteCRM | https://api.github.com/repos/salesagility/SuiteCRM | closed | Workflows with operator 'Equal To' on datetime fields not working properly | Bug Fix Proposed Medium Priority | <!--- Provide a general summary of the issue in the **Title** above -->
Workflows with conditions of type `Start Date` `Equal To` `Now` `+` `5 Minut` never reaches the condition.
<!--- Before you open an issue, please check if a similar issue already exists or has been closed before. --->
#### Steps to Reproduce
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug include code to reproduce, if relevant -->
1. Create a new workflow with the following parameters
- WorkFlow Module: Meetings
- Run: Only In The Scheduler
- Run On: All Records
- Repeated Runs: NO
- Add the following condition
+ Module: Meetings
+ Field: Start Date
+ Operator: Equal To
+ Type: Date
+ Value: Now + 5 Minut
- Add the following action
+ Select Action: Send Email
+ Email Template: Create new email template with some text.
+ To Email: some_email@example.com
2. Save and activate the workflow.
3. Create a new meeting with a future start_date
4. Note that 5 minutes before the start date of the meeting, the emai is not sent.
#### Context
<!--- How has this bug affected you? What were you trying to accomplish? -->
We want to send a custom email some time before (or after) of the start date of a meeting.
<!--- If you feel this should be a low/medium/high priority then please state so -->
#### Issue
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug -->
The AOW_WorkFlow build_query_where() method builds the resulting query considering the secconds on datetime fields. So if you create the workflow described on the `Steps to Reproduce` section you obtain a where condition like:
```
meetings.date_start = DATE_ADD(UTC_TIMESTAMP(), INTERVAL - 5 minute)
```
#### Expected Behavior
<!--- Tell us what should happen -->
Receive an email 5 minutes before of the start_date of a Meeting.
#### Actual Behavior
<!--- Tell us what happens instead -->
The flow condition is never satisfied, so email is never sent.
#### Possible Fix
<!--- Not obligatory, but suggest a fix or reason for the bug -->
We have modified the build_query_where() method to ignore the secconds when comparing the date fields. So now the obtained query for the previos workflow would be:
```
DATE_FORMAT(meetings.date_start, '%Y-%m-%d %H:%i') = DATE_FORMAT(DATE_ADD(UTC_TIMESTAMP(), INTERVAL - 5 minute), '%Y-%m-%d %H:%i')
```
This is only tested using MySQL. We don't know if this fix works for MSSQL installations.
#### Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* SuiteCRM Version used: 7.9.4
* Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): Versión 59.0.3071.115 (Build oficial) (64 bits)
* Environment name and version (e.g. MySQL, PHP 7): MySQL 5.5.57 and PHP 5.5.9
* Operating System and version (e.g Ubuntu 16.04): Ubuntu 14.04.5 LTS
| 1.0 | Workflows with operator 'Equal To' on datetime fields not working properly - <!--- Provide a general summary of the issue in the **Title** above -->
Workflows with conditions of type `Start Date` `Equal To` `Now` `+` `5 Minut` never reaches the condition.
<!--- Before you open an issue, please check if a similar issue already exists or has been closed before. --->
#### Steps to Reproduce
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug include code to reproduce, if relevant -->
1. Create a new workflow with the following parameters
- WorkFlow Module: Meetings
- Run: Only In The Scheduler
- Run On: All Records
- Repeated Runs: NO
- Add the following condition
+ Module: Meetings
+ Field: Start Date
+ Operator: Equal To
+ Type: Date
+ Value: Now + 5 Minut
- Add the following action
+ Select Action: Send Email
+ Email Template: Create new email template with some text.
+ To Email: some_email@example.com
2. Save and activate the workflow.
3. Create a new meeting with a future start_date
4. Note that 5 minutes before the start date of the meeting, the emai is not sent.
#### Context
<!--- How has this bug affected you? What were you trying to accomplish? -->
We want to send a custom email some time before (or after) of the start date of a meeting.
<!--- If you feel this should be a low/medium/high priority then please state so -->
#### Issue
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug -->
The AOW_WorkFlow build_query_where() method builds the resulting query considering the secconds on datetime fields. So if you create the workflow described on the `Steps to Reproduce` section you obtain a where condition like:
```
meetings.date_start = DATE_ADD(UTC_TIMESTAMP(), INTERVAL - 5 minute)
```
#### Expected Behavior
<!--- Tell us what should happen -->
Receive an email 5 minutes before of the start_date of a Meeting.
#### Actual Behavior
<!--- Tell us what happens instead -->
The flow condition is never satisfied, so email is never sent.
#### Possible Fix
<!--- Not obligatory, but suggest a fix or reason for the bug -->
We have modified the build_query_where() method to ignore the secconds when comparing the date fields. So now the obtained query for the previos workflow would be:
```
DATE_FORMAT(meetings.date_start, '%Y-%m-%d %H:%i') = DATE_FORMAT(DATE_ADD(UTC_TIMESTAMP(), INTERVAL - 5 minute), '%Y-%m-%d %H:%i')
```
This is only tested using MySQL. We don't know if this fix works for MSSQL installations.
#### Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* SuiteCRM Version used: 7.9.4
* Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): Versión 59.0.3071.115 (Build oficial) (64 bits)
* Environment name and version (e.g. MySQL, PHP 7): MySQL 5.5.57 and PHP 5.5.9
* Operating System and version (e.g Ubuntu 16.04): Ubuntu 14.04.5 LTS
| priority | workflows with operator equal to on datetime fields not working properly workflows with conditions of type start date equal to now minut never reaches the condition steps to reproduce create a new workflow with the following parameters workflow module meetings run only in the scheduler run on all records repeated runs no add the following condition module meetings field start date operator equal to type date value now minut add the following action select action send email email template create new email template with some text to email some email example com save and activate the workflow create a new meeting with a future start date note that minutes before the start date of the meeting the emai is not sent context we want to send a custom email some time before or after of the start date of a meeting issue the aow workflow build query where method builds the resulting query considering the secconds on datetime fields so if you create the workflow described on the steps to reproduce section you obtain a where condition like meetings date start date add utc timestamp interval minute expected behavior receive an email minutes before of the start date of a meeting actual behavior the flow condition is never satisfied so email is never sent possible fix we have modified the build query where method to ignore the secconds when comparing the date fields so now the obtained query for the previos workflow would be date format meetings date start y m d h i date format date add utc timestamp interval minute y m d h i this is only tested using mysql we don t know if this fix works for mssql installations your environment suitecrm version used browser name and version e g chrome version bit versión build oficial bits environment name and version e g mysql php mysql and php operating system and version e g ubuntu ubuntu lts | 1 |
804,365 | 29,485,189,014 | IssuesEvent | 2023-06-02 09:11:46 | Avaiga/taipy-core | https://api.github.com/repos/Avaiga/taipy-core | closed | BUG-ConfigurationUpdateBlocked should explain what it means and how to fix | Core 🟨 Priority: Medium 💥Malfunction | **Description**
ConfigurationUpdateBlocked is an error that happens often and it should explain what it means and how to fix it
**How to reproduce**
1. In notebooks:
Loading a scenario and then reloading it results in ConfigurationUpdateBlocked. To fix it: restart the kernel

2. In scripts:
I'm not sure when it happens, it seems to be when modifying the config then re-running it but I haven't found a reproducible way. To fix it: delete .data
**Runtime environment**
Please specify relevant indications.
- Taipy version: taipy 2.2.0
- OS: Windows
| 1.0 | BUG-ConfigurationUpdateBlocked should explain what it means and how to fix - **Description**
ConfigurationUpdateBlocked is an error that happens often and it should explain what it means and how to fix it
**How to reproduce**
1. In notebooks:
Loading a scenario and then reloading it results in ConfigurationUpdateBlocked. To fix it: restart the kernel

2. In scripts:
I'm not sure when it happens, it seems to be when modifying the config then re-running it but I haven't found a reproducible way. To fix it: delete .data
**Runtime environment**
Please specify relevant indications.
- Taipy version: taipy 2.2.0
- OS: Windows
| priority | bug configurationupdateblocked should explain what it means and how to fix description configurationupdateblocked is an error that happens often and it should explain what it means and how to fix it how to reproduce in notebooks loading a scenario and then reloading it results in configurationupdateblocked to fix it restart the kernel in scripts i m not sure when it happens it seems to be when modifying the config then re running it but i haven t found a reproducible way to fix it delete data runtime environment please specify relevant indications taipy version taipy os windows | 1 |
659,588 | 21,934,203,650 | IssuesEvent | 2022-05-23 12:29:57 | openedx/build-test-release-wg | https://api.github.com/repos/openedx/build-test-release-wg | closed | The new MFE payment flow does not support custom payment processors | help wanted affects:lilac priority:medium affects:maple ecommerce | Hi all,
@sambapete had outlined some very valid issues with the payment MFE as it exists today in this issue: https://github.com/openedx/build-test-release-wg/issues/67#issuecomment-843383541
After having a discussion at our team's standup (with @sarina @nedbat and @stvstnfrd), we were wondering if the right course of action for Lilac is to revive and support the non-MFE payment flow that was deprecated, since the MFE effectively hasn't attained feature parity yet.
Unfortunately, none of us who were talking about it were particularly familiar with what that old flow _was_ and how much of it is deprecated and/or removed.
Can anyone enlighten us and provide some links, and then maybe we can all make a decision about adding support for it back in?
| 1.0 | The new MFE payment flow does not support custom payment processors - Hi all,
@sambapete had outlined some very valid issues with the payment MFE as it exists today in this issue: https://github.com/openedx/build-test-release-wg/issues/67#issuecomment-843383541
After having a discussion at our team's standup (with @sarina @nedbat and @stvstnfrd), we were wondering if the right course of action for Lilac is to revive and support the non-MFE payment flow that was deprecated, since the MFE effectively hasn't attained feature parity yet.
Unfortunately, none of us who were talking about it were particularly familiar with what that old flow _was_ and how much of it is deprecated and/or removed.
Can anyone enlighten us and provide some links, and then maybe we can all make a decision about adding support for it back in?
| priority | the new mfe payment flow does not support custom payment processors hi all sambapete had outlined some very valid issues with the payment mfe as it exists today in this issue after having a discussion at our team s standup with sarina nedbat and stvstnfrd we were wondering if the right course of action for lilac is to revive and support the non mfe payment flow that was deprecated since the mfe effectively hasn t attained feature parity yet unfortunately none of us who were talking about it were particularly familiar with what that old flow was and how much of it is deprecated and or removed can anyone enlighten us and provide some links and then maybe we can all make a decision about adding support for it back in | 1 |
492,331 | 14,200,807,200 | IssuesEvent | 2020-11-16 06:23:24 | DavidLagou/mdia-4590 | https://api.github.com/repos/DavidLagou/mdia-4590 | opened | Artifact page link doesn't open in a new tab | Priority : Medium | ### Description:
On the artifact project page, when a user clicks on the
### Steps to reproduce:
- Visit https://davidlagou.com/groupeton-app.html
- On the header click on the live website
### Expected Results:
When a user clicks on the link, a new tab should appear with the
### Actual Result :
The page goes to the artifacts home screen
### Configurations:
This bug was found on the following configurations labeled in Blue.

### Severity:
low
### Priority
low
### Type:
Design Bug
### Assignee:
David Lagou
| 1.0 | Artifact page link doesn't open in a new tab - ### Description:
On the artifact project page, when a user clicks on the
### Steps to reproduce:
- Visit https://davidlagou.com/groupeton-app.html
- On the header click on the live website
### Expected Results:
When a user clicks on the link, a new tab should appear with the
### Actual Result :
The page goes to the artifacts home screen
### Configurations:
This bug was found on the following configurations labeled in Blue.

### Severity:
low
### Priority
low
### Type:
Design Bug
### Assignee:
David Lagou
| priority | artifact page link doesn t open in a new tab description on the artifact project page when a user clicks on the steps to reproduce visit on the header click on the live website expected results when a user clicks on the link a new tab should appear with the actual result the page goes to the artifacts home screen configurations this bug was found on the following configurations labeled in blue severity low priority low type design bug assignee david lagou | 1 |
822,829 | 30,886,682,113 | IssuesEvent | 2023-08-03 22:42:50 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [YSQL] Expressions are not pushed down with index scans on partitioned tables | kind/bug area/ysql priority/medium status/awaiting-triage | Jira Link: [DB-7484](https://yugabyte.atlassian.net/browse/DB-7484)
### Description
Setup:
```
CREATE TABLE prt1 (a int, b int, c varchar) PARTITION BY RANGE(a);
CREATE TABLE prt1_p1 PARTITION OF prt1 FOR VALUES FROM (0) TO (250);
CREATE TABLE prt1_p3 PARTITION OF prt1 FOR VALUES FROM (500) TO (600);
CREATE TABLE prt1_p2 PARTITION OF prt1 FOR VALUES FROM (250) TO (500);
CREATE INDEX iprt1_p1_a on prt1_p1(a);
CREATE INDEX iprt1_p2_a on prt1_p2(a);
CREATE INDEX iprt1_p3_a on prt1_p3(a);
```
Query to scan single partition properly plans expression pushdown (the filter is `Remote Filter`)
```
yugabyte=# EXPLAIN SELECT * FROM prt1_p1 WHERE a = 100 and c is null;
QUERY PLAN
----------------------------------------------------------------------------
Index Scan using iprt1_p1_a on prt1_p1 (cost=0.00..5.22 rows=10 width=40)
Index Cond: (a = 100)
Remote Filter: (c IS NULL)
(3 rows)
```
but not if the query is against the parent table:
```
yugabyte=# EXPLAIN SELECT * FROM prt1 WHERE a = 100 and c is null;
QUERY PLAN
----------------------------------------------------------------------------------
Append (cost=0.00..5.27 rows=10 width=40)
-> Index Scan using iprt1_p1_a on prt1_p1 (cost=0.00..5.22 rows=10 width=40)
Index Cond: (a = 100)
Filter: (c IS NULL)
(4 rows)
```
### Warning: Please confirm that this issue does not contain any sensitive information
- [X] I confirm this issue does not contain any sensitive information.
[DB-7484]: https://yugabyte.atlassian.net/browse/DB-7484?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | 1.0 | [YSQL] Expressions are not pushed down with index scans on partitioned tables - Jira Link: [DB-7484](https://yugabyte.atlassian.net/browse/DB-7484)
### Description
Setup:
```
CREATE TABLE prt1 (a int, b int, c varchar) PARTITION BY RANGE(a);
CREATE TABLE prt1_p1 PARTITION OF prt1 FOR VALUES FROM (0) TO (250);
CREATE TABLE prt1_p3 PARTITION OF prt1 FOR VALUES FROM (500) TO (600);
CREATE TABLE prt1_p2 PARTITION OF prt1 FOR VALUES FROM (250) TO (500);
CREATE INDEX iprt1_p1_a on prt1_p1(a);
CREATE INDEX iprt1_p2_a on prt1_p2(a);
CREATE INDEX iprt1_p3_a on prt1_p3(a);
```
Query to scan single partition properly plans expression pushdown (the filter is `Remote Filter`)
```
yugabyte=# EXPLAIN SELECT * FROM prt1_p1 WHERE a = 100 and c is null;
QUERY PLAN
----------------------------------------------------------------------------
Index Scan using iprt1_p1_a on prt1_p1 (cost=0.00..5.22 rows=10 width=40)
Index Cond: (a = 100)
Remote Filter: (c IS NULL)
(3 rows)
```
but not if the query is against the parent table:
```
yugabyte=# EXPLAIN SELECT * FROM prt1 WHERE a = 100 and c is null;
QUERY PLAN
----------------------------------------------------------------------------------
Append (cost=0.00..5.27 rows=10 width=40)
-> Index Scan using iprt1_p1_a on prt1_p1 (cost=0.00..5.22 rows=10 width=40)
Index Cond: (a = 100)
Filter: (c IS NULL)
(4 rows)
```
### Warning: Please confirm that this issue does not contain any sensitive information
- [X] I confirm this issue does not contain any sensitive information.
[DB-7484]: https://yugabyte.atlassian.net/browse/DB-7484?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | priority | expressions are not pushed down with index scans on partitioned tables jira link description setup create table a int b int c varchar partition by range a create table partition of for values from to create table partition of for values from to create table partition of for values from to create index a on a create index a on a create index a on a query to scan single partition properly plans expression pushdown the filter is remote filter yugabyte explain select from where a and c is null query plan index scan using a on cost rows width index cond a remote filter c is null rows but not if the query is against the parent table yugabyte explain select from where a and c is null query plan append cost rows width index scan using a on cost rows width index cond a filter c is null rows warning please confirm that this issue does not contain any sensitive information i confirm this issue does not contain any sensitive information | 1 |
643,113 | 20,923,893,575 | IssuesEvent | 2022-03-24 20:17:59 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | opened | rendering_multibody_plant tutorial crashing | component: distribution team: manipulation priority: medium | Related to #13683.
In the `rendering_multibody_plant` tutorial on Deepnote, the cell "## Render color and label images using matplotlib" crashes the deepnote interpreter with a corefile.
| 1.0 | rendering_multibody_plant tutorial crashing - Related to #13683.
In the `rendering_multibody_plant` tutorial on Deepnote, the cell "## Render color and label images using matplotlib" crashes the deepnote interpreter with a corefile.
| priority | rendering multibody plant tutorial crashing related to in the rendering multibody plant tutorial on deepnote the cell render color and label images using matplotlib crashes the deepnote interpreter with a corefile | 1 |
438,251 | 12,624,860,940 | IssuesEvent | 2020-06-14 08:46:00 | lorenzwalthert/precommit | https://api.github.com/repos/lorenzwalthert/precommit | closed | Don't run autoupdate() if .pre-commit-config.yaml is already present? | Complexity: Low Priority: Medium Status: Unassigned Type: Enhancement | Advantage
A way to increase the probability that up-to-date hooks are used. Otherwise, people might forget to run `autoupdate()` and don't benefit from improvement.
Disadvantage
Bound to convolute contributions, as the hook versions should be managed by the repo maintainer. | 1.0 | Don't run autoupdate() if .pre-commit-config.yaml is already present? - Advantage
A way to increase the probability that up-to-date hooks are used. Otherwise, people might forget to run `autoupdate()` and don't benefit from improvement.
Disadvantage
Bound to convolute contributions, as the hook versions should be managed by the repo maintainer. | priority | don t run autoupdate if pre commit config yaml is already present advantage a way to increase the probability that up to date hooks are used otherwise people might forget to run autoupdate and don t benefit from improvement disadvantage bound to convolute contributions as the hook versions should be managed by the repo maintainer | 1 |
338,096 | 10,224,277,261 | IssuesEvent | 2019-08-16 12:16:41 | netdata/netdata | https://api.github.com/repos/netdata/netdata | closed | Alarm on max on any dimension | area/health feature request priority/medium | I am trying to create an alarm based on my maximum hard drive temperature. I am using the hddtemp plugin which creates a chart with a dimension for each hard drive.
The problem I am running into is that hard drives are not always mounted to the same point, i.e. a drive might be /dev/sdb on one boot, but /dev/sda on another. Because not all my drives are capable of temperature monitoring, every boot I have to modify my alarms to match which drives are temperature monitoring capable.
Here is what I am currently using:
```
alarm: sdb_temp
on: hddtemp.temperatures
lookup: max -1m of sdb
green: 40
red: 45
every: 10s
warn: $this > $green
crit: $this > $red
info: max HDD temperature of the last 1 minute
```
Is there a better way to monitor the max drive temperature? | 1.0 | Alarm on max on any dimension - I am trying to create an alarm based on my maximum hard drive temperature. I am using the hddtemp plugin which creates a chart with a dimension for each hard drive.
The problem I am running into is that hard drives are not always mounted to the same point, i.e. a drive might be /dev/sdb on one boot, but /dev/sda on another. Because not all my drives are capable of temperature monitoring, every boot I have to modify my alarms to match which drives are temperature monitoring capable.
Here is what I am currently using:
```
alarm: sdb_temp
on: hddtemp.temperatures
lookup: max -1m of sdb
green: 40
red: 45
every: 10s
warn: $this > $green
crit: $this > $red
info: max HDD temperature of the last 1 minute
```
Is there a better way to monitor the max drive temperature? | priority | alarm on max on any dimension i am trying to create an alarm based on my maximum hard drive temperature i am using the hddtemp plugin which creates a chart with a dimension for each hard drive the problem i am running into is that hard drives are not always mounted to the same point i e a drive might be dev sdb on one boot but dev sda on another because not all my drives are capable of temperature monitoring every boot i have to modify my alarms to match which drives are temperature monitoring capable here is what i am currently using alarm sdb temp on hddtemp temperatures lookup max of sdb green red every warn this green crit this red info max hdd temperature of the last minute is there a better way to monitor the max drive temperature | 1 |
556,498 | 16,484,946,109 | IssuesEvent | 2021-05-24 16:33:17 | Baystation12/Baystation12 | https://api.github.com/repos/Baystation12/Baystation12 | closed | Bolted open airlocks that are damaged cannot be deconstructed | Bug :bug: Priority: Medium | - Open an airlock, and drop the door bolts.
- Break the airlock
- Attempting to close the airlock with crowbar is not possible as the airlock's bolts are down, and door bolts cannot be raised via multitool or AI control as the test light is turned off when the airlock is broken.
The only viable method of removing the airlock seems to be an RCD.
| 1.0 | Bolted open airlocks that are damaged cannot be deconstructed - - Open an airlock, and drop the door bolts.
- Break the airlock
- Attempting to close the airlock with crowbar is not possible as the airlock's bolts are down, and door bolts cannot be raised via multitool or AI control as the test light is turned off when the airlock is broken.
The only viable method of removing the airlock seems to be an RCD.
| priority | bolted open airlocks that are damaged cannot be deconstructed open an airlock and drop the door bolts break the airlock attempting to close the airlock with crowbar is not possible as the airlock s bolts are down and door bolts cannot be raised via multitool or ai control as the test light is turned off when the airlock is broken the only viable method of removing the airlock seems to be an rcd | 1 |
7,146 | 2,598,004,641 | IssuesEvent | 2015-02-22 01:41:44 | chrsmith/bwapi | https://api.github.com/repos/chrsmith/bwapi | opened | Make Type::getType find the index from a map | auto-migrated Milestone-MajorRelease NewFeature Priority-Medium Type-Enhancement | ```
It will improve the performance of the function.
```
-----
Original issue reported on code.google.com by `AHeinerm` on 25 Nov 2012 at 10:08 | 1.0 | Make Type::getType find the index from a map - ```
It will improve the performance of the function.
```
-----
Original issue reported on code.google.com by `AHeinerm` on 25 Nov 2012 at 10:08 | priority | make type gettype find the index from a map it will improve the performance of the function original issue reported on code google com by aheinerm on nov at | 1 |
550,377 | 16,110,578,324 | IssuesEvent | 2021-04-27 20:35:29 | hasgeek/funnel | https://api.github.com/repos/hasgeek/funnel | closed | Endpoint to hard-delete a proposal space required | enhancement priority-medium sanity | There is currently no way to delete a proposal space. This is required. The delete endpoint should warn the user that this is permanent and irreversible and that users should consider closing the space instead of deleting it.
| 1.0 | Endpoint to hard-delete a proposal space required - There is currently no way to delete a proposal space. This is required. The delete endpoint should warn the user that this is permanent and irreversible and that users should consider closing the space instead of deleting it.
| priority | endpoint to hard delete a proposal space required there is currently no way to delete a proposal space this is required the delete endpoint should warn the user that this is permanent and irreversible and that users should consider closing the space instead of deleting it | 1 |
114,669 | 4,642,374,067 | IssuesEvent | 2016-09-30 09:24:35 | mPowering/django-orb | https://api.github.com/repos/mPowering/django-orb | opened | Review/create appropraite text for the workflow emails | enhancement medium priority | [for mpowering team] check through the email text we already have and create for the new emails | 1.0 | Review/create appropraite text for the workflow emails - [for mpowering team] check through the email text we already have and create for the new emails | priority | review create appropraite text for the workflow emails check through the email text we already have and create for the new emails | 1 |
472,064 | 13,615,775,041 | IssuesEvent | 2020-09-23 14:50:28 | input-output-hk/cardano-wallet | https://api.github.com/repos/input-output-hk/cardano-wallet | closed | The reported value of pool saturation is incorrect | BUG PRIORITY:MEDIUM SEVERITY:MEDIUM | # Context
<!-- WHEN CREATED
Any information that is useful to understand the bug and the subsystem
it evolves in. References to documentation and or other tickets are
welcome.
-->
The wallet calculates and shows the saturation of stake pools. This does not affect the ranking, since the non myopic rewards are calculated in the ledger.
| Information | - |
| --- | --- |
| Version | `2020.7.28 (git revision: 351a1b1134fc67b90b16ed6d129bd1e1d509a1cc)` |
| Platform | <!-- Windows, Mac OS, Linux, Docker, All --> |
| Installation | <!-- From Source? From Github Release? --> |
# Steps to Reproduce
<!-- WHEN CREATED
Steps to reproduce the behavior.
-->
1. List stake pools
## Expected behavior
<!-- WHEN CREATED
A clear and concise description of what you expected to happen.
-->
1. Saturation is calculated correctly (same way as ledger; as spec specifies. Think it was total ada in circulation, but should be checked)
## Actual behavior
1. We calculate it based on the relative stake from the stake distribution, which is relative to the total _active_ stake. The active stake is less than e.g. the total ada in circulation.
<!-- WHEN CREATED
A clear and concise description of what you observe instead. If applicable add
screenshots to help explain your problem.
-->
---
# Resolution
- We need some kind of help from the node to solve this. Darko mentioned that they have added something, but I haven't checked.
<!-- WHEN IN PROGRESS
What is happening? How is this going to be fixed? Detail the approach and give,
in the form of a TODO list steps toward the resolution of the bug. Attach a PR to
each item in the list.
This may be refined as the investigation progresses.
-->
---
# QA
<!-- WHEN IN PROGRESS
How do we make sure the bug has been fixed? Give here manual steps or tests to
verify the fix. How/why could this bug slip through testing?
-->
Fixed with cardano-node 1.20.0. The saturation is now based on the _live_ stake, and _correctly_ calculated. API docs are/have been updated as part of #2155.
When I checked the saturation field now corresponds to data from pooltool.io and adapools.org, but with some very slight differences https://docs.google.com/spreadsheets/d/1mO4Ll4IdpniuIefOX9GHbKMpQNUhWpGMvgwrgB39thg/edit#gid=0. I checked with Philipp, but we guess their way of calculating the live stake is just somehow slightly different.
| 1.0 | The reported value of pool saturation is incorrect - # Context
<!-- WHEN CREATED
Any information that is useful to understand the bug and the subsystem
it evolves in. References to documentation and or other tickets are
welcome.
-->
The wallet calculates and shows the saturation of stake pools. This does not affect the ranking, since the non myopic rewards are calculated in the ledger.
| Information | - |
| --- | --- |
| Version | `2020.7.28 (git revision: 351a1b1134fc67b90b16ed6d129bd1e1d509a1cc)` |
| Platform | <!-- Windows, Mac OS, Linux, Docker, All --> |
| Installation | <!-- From Source? From Github Release? --> |
# Steps to Reproduce
<!-- WHEN CREATED
Steps to reproduce the behavior.
-->
1. List stake pools
## Expected behavior
<!-- WHEN CREATED
A clear and concise description of what you expected to happen.
-->
1. Saturation is calculated correctly (same way as ledger; as spec specifies. Think it was total ada in circulation, but should be checked)
## Actual behavior
1. We calculate it based on the relative stake from the stake distribution, which is relative to the total _active_ stake. The active stake is less than e.g. the total ada in circulation.
<!-- WHEN CREATED
A clear and concise description of what you observe instead. If applicable add
screenshots to help explain your problem.
-->
---
# Resolution
- We need some kind of help from the node to solve this. Darko mentioned that they have added something, but I haven't checked.
<!-- WHEN IN PROGRESS
What is happening? How is this going to be fixed? Detail the approach and give,
in the form of a TODO list steps toward the resolution of the bug. Attach a PR to
each item in the list.
This may be refined as the investigation progresses.
-->
---
# QA
<!-- WHEN IN PROGRESS
How do we make sure the bug has been fixed? Give here manual steps or tests to
verify the fix. How/why could this bug slip through testing?
-->
Fixed with cardano-node 1.20.0. The saturation is now based on the _live_ stake, and _correctly_ calculated. API docs are/have been updated as part of #2155.
When I checked the saturation field now corresponds to data from pooltool.io and adapools.org, but with some very slight differences https://docs.google.com/spreadsheets/d/1mO4Ll4IdpniuIefOX9GHbKMpQNUhWpGMvgwrgB39thg/edit#gid=0. I checked with Philipp, but we guess their way of calculating the live stake is just somehow slightly different.
| priority | the reported value of pool saturation is incorrect context when created any information that is useful to understand the bug and the subsystem it evolves in references to documentation and or other tickets are welcome the wallet calculates and shows the saturation of stake pools this does not affect the ranking since the non myopic rewards are calculated in the ledger information version git revision platform installation steps to reproduce when created steps to reproduce the behavior list stake pools expected behavior when created a clear and concise description of what you expected to happen saturation is calculated correctly same way as ledger as spec specifies think it was total ada in circulation but should be checked actual behavior we calculate it based on the relative stake from the stake distribution which is relative to the total active stake the active stake is less than e g the total ada in circulation when created a clear and concise description of what you observe instead if applicable add screenshots to help explain your problem resolution we need some kind of help from the node to solve this darko mentioned that they have added something but i haven t checked when in progress what is happening how is this going to be fixed detail the approach and give in the form of a todo list steps toward the resolution of the bug attach a pr to each item in the list this may be refined as the investigation progresses qa when in progress how do we make sure the bug has been fixed give here manual steps or tests to verify the fix how why could this bug slip through testing fixed with cardano node the saturation is now based on the live stake and correctly calculated api docs are have been updated as part of when i checked the saturation field now corresponds to data from pooltool io and adapools org but with some very slight differences i checked with philipp but we guess their way of calculating the live stake is just somehow slightly different | 1 |
170,499 | 6,445,316,861 | IssuesEvent | 2017-08-13 02:22:15 | andycasey/smhr | https://api.github.com/repos/andycasey/smhr | reopened | Equivalent width uncertainties | bug medium priority | When the equivalent width uncertainties are large, the uncertainty changes significantly every time you refit the same line. It's especially bad for degree 2 or higher continuum polynomials. I think this is due to insufficient samples from the covariance posterior?
| 1.0 | Equivalent width uncertainties - When the equivalent width uncertainties are large, the uncertainty changes significantly every time you refit the same line. It's especially bad for degree 2 or higher continuum polynomials. I think this is due to insufficient samples from the covariance posterior?
| priority | equivalent width uncertainties when the equivalent width uncertainties are large the uncertainty changes significantly every time you refit the same line it s especially bad for degree or higher continuum polynomials i think this is due to insufficient samples from the covariance posterior | 1 |
813,816 | 30,473,896,011 | IssuesEvent | 2023-07-17 15:13:13 | flatironinstitute/mcmc-monitor | https://api.github.com/repos/flatironinstitute/mcmc-monitor | opened | Perf: Performance issues with long-running sessions, particularly when jumping between data sets | bug medium-priority | Per @mitzimorris.
Will need to quantify this issue and investigate. Mitzi has provided an example `runs` directory where this is occurring, but it's 750MB and so may not attach properly to this ticket. | 1.0 | Perf: Performance issues with long-running sessions, particularly when jumping between data sets - Per @mitzimorris.
Will need to quantify this issue and investigate. Mitzi has provided an example `runs` directory where this is occurring, but it's 750MB and so may not attach properly to this ticket. | priority | perf performance issues with long running sessions particularly when jumping between data sets per mitzimorris will need to quantify this issue and investigate mitzi has provided an example runs directory where this is occurring but it s and so may not attach properly to this ticket | 1 |
25,624 | 2,683,867,486 | IssuesEvent | 2015-03-28 12:05:23 | ConEmu/old-issues | https://api.github.com/repos/ConEmu/old-issues | closed | ConEmu.Maximus5.100212: maximized window header buttons | 2–5 stars bug imported Priority-Medium | _From [pult....@gmail.com](https://code.google.com/u/108086555794593142651/) on February 12, 2010 20:18:37_
Версия ОС: Win7 32bit
Версия FAR: 2.0 build 1393 x86
Включён режим с темами в винде.
После максимизации окна заголовок для окна ищезает стить/тема...
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=185_ | 1.0 | ConEmu.Maximus5.100212: maximized window header buttons - _From [pult....@gmail.com](https://code.google.com/u/108086555794593142651/) on February 12, 2010 20:18:37_
Версия ОС: Win7 32bit
Версия FAR: 2.0 build 1393 x86
Включён режим с темами в винде.
После максимизации окна заголовок для окна ищезает стить/тема...
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=185_ | priority | conemu maximized window header buttons from on february версия ос версия far build включён режим с темами в винде после максимизации окна заголовок для окна ищезает стить тема original issue | 1 |
647,103 | 21,091,966,101 | IssuesEvent | 2022-04-04 06:30:27 | ut-issl/c2a-core | https://api.github.com/repos/ut-issl/c2a-core | closed | コーディング規約スクリプトで,プリプロセッサの改行 `\` がエラーになる | priority::medium tools | ## 概要
コーディング規約スクリプトで,プリプロセッサの改行 `\` がエラーになる
## 詳細
```
hoge.c: 253: THE END OF A STATEMENT SHOULD BE A COMMENT OR A LINE BREAK
hoge; \
```
がでる.
## close条件
エラーにならないようにする
| 1.0 | コーディング規約スクリプトで,プリプロセッサの改行 `\` がエラーになる - ## 概要
コーディング規約スクリプトで,プリプロセッサの改行 `\` がエラーになる
## 詳細
```
hoge.c: 253: THE END OF A STATEMENT SHOULD BE A COMMENT OR A LINE BREAK
hoge; \
```
がでる.
## close条件
エラーにならないようにする
| priority | コーディング規約スクリプトで,プリプロセッサの改行 がエラーになる 概要 コーディング規約スクリプトで,プリプロセッサの改行 がエラーになる 詳細 hoge c the end of a statement should be a comment or a line break hoge がでる. close条件 エラーにならないようにする | 1 |
622,857 | 19,657,912,513 | IssuesEvent | 2022-01-10 14:21:50 | buddyboss/buddyboss-platform | https://api.github.com/repos/buddyboss/buddyboss-platform | closed | Blog Activity > Need an option to set video preview layout | bug priority-medium Stale | **Describe the bug**
Blog activity layout updated in version 1.7.2.
Old layout: https://nimb.ws/BUu1q8
New layout: https://nimb.ws/FvkNJq
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Post > Add New
2. Add title and embed video
3. Go to the activity page
4. See new layout https://nimb.ws/FvkNJq
**Expected behavior**
There should be an option to set the video preview layout for the blog activity
**Screenshots**
Old layout: https://nimb.ws/BUu1q8
New layout: https://nimb.ws/FvkNJq
**Support ticket links**
https://secure.helpscout.net/conversation/1574475186/153993/
**Jira issue** : [PROD-770]
[PROD-770]: https://buddyboss.atlassian.net/browse/PROD-770?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | 1.0 | Blog Activity > Need an option to set video preview layout - **Describe the bug**
Blog activity layout updated in version 1.7.2.
Old layout: https://nimb.ws/BUu1q8
New layout: https://nimb.ws/FvkNJq
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Post > Add New
2. Add title and embed video
3. Go to the activity page
4. See new layout https://nimb.ws/FvkNJq
**Expected behavior**
There should be an option to set the video preview layout for the blog activity
**Screenshots**
Old layout: https://nimb.ws/BUu1q8
New layout: https://nimb.ws/FvkNJq
**Support ticket links**
https://secure.helpscout.net/conversation/1574475186/153993/
**Jira issue** : [PROD-770]
[PROD-770]: https://buddyboss.atlassian.net/browse/PROD-770?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | priority | blog activity need an option to set video preview layout describe the bug blog activity layout updated in version old layout new layout to reproduce steps to reproduce the behavior go to post add new add title and embed video go to the activity page see new layout expected behavior there should be an option to set the video preview layout for the blog activity screenshots old layout new layout support ticket links jira issue | 1 |
529,394 | 15,387,778,619 | IssuesEvent | 2021-03-03 09:57:27 | Cyberark-workato-dev/conjur-authn-k8s-client | https://api.github.com/repos/Cyberark-workato-dev/conjur-authn-k8s-client | reopened | Sanity Check 101 - updating summary | Bugtype/Functionality ONYX-6643 Severity/Low kind/bug priority/Medium team/Brian triage/Current Limitation |
##Bug description
Steps to reproduce:
Current Results:
Expected Results:
Error Messages:
Logs:
Other Symptoms:
Tenant ID / Pod Number:
##Found in version
10.5
##Workaround Complexity
There's an easy workaround
##Workaround Description
workaround description here
##Affects Version/s
##Link to JIRA bug
https://ca-il-jira-test.il.cyber-ark.com/browse/ONYX-6643 | 1.0 | Sanity Check 101 - updating summary -
##Bug description
Steps to reproduce:
Current Results:
Expected Results:
Error Messages:
Logs:
Other Symptoms:
Tenant ID / Pod Number:
##Found in version
10.5
##Workaround Complexity
There's an easy workaround
##Workaround Description
workaround description here
##Affects Version/s
##Link to JIRA bug
https://ca-il-jira-test.il.cyber-ark.com/browse/ONYX-6643 | priority | sanity check updating summary bug description steps to reproduce current results expected results error messages logs other symptoms tenant id pod number found in version workaround complexity there s an easy workaround workaround description workaround description here affects version s link to jira bug | 1 |
139,995 | 5,396,044,284 | IssuesEvent | 2017-02-27 10:29:27 | HPI-SWA-Lab/BP2016H1 | https://api.github.com/repos/HPI-SWA-Lab/BP2016H1 | opened | Notification for New Version of Project | priority medium | As a reviewer I want to be notified when a new version is there (since I last downloaded the font). | 1.0 | Notification for New Version of Project - As a reviewer I want to be notified when a new version is there (since I last downloaded the font). | priority | notification for new version of project as a reviewer i want to be notified when a new version is there since i last downloaded the font | 1 |
15,052 | 2,611,057,734 | IssuesEvent | 2015-02-27 00:26:35 | alistairreilly/andors-trail | https://api.github.com/repos/alistairreilly/andors-trail | closed | Suggestion: Scale creature difficulty to user's ability | auto-migrated Priority-Medium Type-Enhancement | ```
It would be nice if the auto-spawned creatures scaled to the user's fighting
ability appropriately. For example, at level 1, a wild boar is still a wild
boar. But when you get to level 10, any wild boars are now all anklebiters.
When you get to level 20 they become rabid anklebiters (or something to that
effect).
It makes sense for the fixed levels not to change, since it is a requirement
for the user to fight creatures in there, but for the forest paths where
fighting can often be avoided, I think this would be a nice enhancement to keep
the game more interesting, especially when the user has finished all available
quests.
I am playing on Samsung Captivate, Android 2.1.
I love the game. Eagerly awaiting the next installment!
```
Original issue reported on code.google.com by `arthurya...@gmail.com` on 18 Jan 2011 at 10:27 | 1.0 | Suggestion: Scale creature difficulty to user's ability - ```
It would be nice if the auto-spawned creatures scaled to the user's fighting
ability appropriately. For example, at level 1, a wild boar is still a wild
boar. But when you get to level 10, any wild boars are now all anklebiters.
When you get to level 20 they become rabid anklebiters (or something to that
effect).
It makes sense for the fixed levels not to change, since it is a requirement
for the user to fight creatures in there, but for the forest paths where
fighting can often be avoided, I think this would be a nice enhancement to keep
the game more interesting, especially when the user has finished all available
quests.
I am playing on Samsung Captivate, Android 2.1.
I love the game. Eagerly awaiting the next installment!
```
Original issue reported on code.google.com by `arthurya...@gmail.com` on 18 Jan 2011 at 10:27 | priority | suggestion scale creature difficulty to user s ability it would be nice if the auto spawned creatures scaled to the user s fighting ability appropriately for example at level a wild boar is still a wild boar but when you get to level any wild boars are now all anklebiters when you get to level they become rabid anklebiters or something to that effect it makes sense for the fixed levels not to change since it is a requirement for the user to fight creatures in there but for the forest paths where fighting can often be avoided i think this would be a nice enhancement to keep the game more interesting especially when the user has finished all available quests i am playing on samsung captivate android i love the game eagerly awaiting the next installment original issue reported on code google com by arthurya gmail com on jan at | 1 |
152,463 | 5,847,593,365 | IssuesEvent | 2017-05-10 18:51:25 | jhpratt/skrolr | https://api.github.com/repos/jhpratt/skrolr | closed | Negative scrollBy reverses direction of arrows | Priority: Medium Status: Pending Type: Bug | Could be resolved by tying arrows to `abs(scrollBy)`. Possibly related to #28. | 1.0 | Negative scrollBy reverses direction of arrows - Could be resolved by tying arrows to `abs(scrollBy)`. Possibly related to #28. | priority | negative scrollby reverses direction of arrows could be resolved by tying arrows to abs scrollby possibly related to | 1 |
467,401 | 13,447,554,810 | IssuesEvent | 2020-09-08 14:23:23 | ansible/awx | https://api.github.com/repos/ansible/awx | closed | Add 'ask_scm_branch' parameter support | component:awx_collection priority:medium state:needs_devel type:enhancement | ##### ISSUE TYPE
Feature request for adding 'ask_scm_branch' parameter to 'tower_job_template' module.
##### SUMMARY
Hello!
In our company we're actively using 'SCM branch' parameter in all AWX templates and also we've started to use playbooks for automated templates configuration, but I found that there is not ability to set "Prompt on launch" checkbox in 'tower_job_template' module. Could you please review this request? I believe it will be very helpful not only for my team, thanks in advance! | 1.0 | Add 'ask_scm_branch' parameter support - ##### ISSUE TYPE
Feature request for adding 'ask_scm_branch' parameter to 'tower_job_template' module.
##### SUMMARY
Hello!
In our company we're actively using 'SCM branch' parameter in all AWX templates and also we've started to use playbooks for automated templates configuration, but I found that there is not ability to set "Prompt on launch" checkbox in 'tower_job_template' module. Could you please review this request? I believe it will be very helpful not only for my team, thanks in advance! | priority | add ask scm branch parameter support issue type feature request for adding ask scm branch parameter to tower job template module summary hello in our company we re actively using scm branch parameter in all awx templates and also we ve started to use playbooks for automated templates configuration but i found that there is not ability to set prompt on launch checkbox in tower job template module could you please review this request i believe it will be very helpful not only for my team thanks in advance | 1 |
826,421 | 31,623,323,869 | IssuesEvent | 2023-09-06 02:01:36 | tdwg/ac | https://api.github.com/repos/tdwg/ac | closed | Typo in dc:format | Priority-Medium term proposal error | ### Submitter
@peterdesmet
### Efficacy Justification (why is this change necessary?)
Correcting a type (the the)
### Demand Justification (if the change is semantic in nature, name at least two organizations that independently need this term)
n/a
### Stability Justification (what concerns are there that this might affect existing implementations?)
n/a
### Current Term definition
https://ac.tdwg.org/termlist/#dc_format
## Term change
Proposed attributes of the new term version (Please put actual changes to be implemented in **bold** and ~strikethrough~):
### Usage
Second sentence in
> A controlled value string describing the technical format of the resource (file format or physical medium). The string SHOULD be a controlled value from the ~the~ Audiovisual Core Controlled Vocabulary for Dublin Core format, although it MAY be any Media Type (MIME type) value from the IANA list of Media Types (https://www.iana.org/assignments/media-types/media-types.xhtml) or any commonly used file extension string. Human-readable information about the Controlled Vocabulary for format is at http://rs.tdwg.org/ac/doc/format/ .
| 1.0 | Typo in dc:format - ### Submitter
@peterdesmet
### Efficacy Justification (why is this change necessary?)
Correcting a type (the the)
### Demand Justification (if the change is semantic in nature, name at least two organizations that independently need this term)
n/a
### Stability Justification (what concerns are there that this might affect existing implementations?)
n/a
### Current Term definition
https://ac.tdwg.org/termlist/#dc_format
## Term change
Proposed attributes of the new term version (Please put actual changes to be implemented in **bold** and ~strikethrough~):
### Usage
Second sentence in
> A controlled value string describing the technical format of the resource (file format or physical medium). The string SHOULD be a controlled value from the ~the~ Audiovisual Core Controlled Vocabulary for Dublin Core format, although it MAY be any Media Type (MIME type) value from the IANA list of Media Types (https://www.iana.org/assignments/media-types/media-types.xhtml) or any commonly used file extension string. Human-readable information about the Controlled Vocabulary for format is at http://rs.tdwg.org/ac/doc/format/ .
| priority | typo in dc format submitter peterdesmet efficacy justification why is this change necessary correcting a type the the demand justification if the change is semantic in nature name at least two organizations that independently need this term n a stability justification what concerns are there that this might affect existing implementations n a current term definition term change proposed attributes of the new term version please put actual changes to be implemented in bold and strikethrough usage second sentence in a controlled value string describing the technical format of the resource file format or physical medium the string should be a controlled value from the the audiovisual core controlled vocabulary for dublin core format although it may be any media type mime type value from the iana list of media types or any commonly used file extension string human readable information about the controlled vocabulary for format is at | 1 |
73,258 | 3,410,106,716 | IssuesEvent | 2015-12-04 18:38:08 | jpppina/migracion-galeno-art-forms11g | https://api.github.com/repos/jpppina/migracion-galeno-art-forms11g | closed | Diferencia de formato en las columnas fecha en los cvs entre Client-Server y Web | Aplicación-Comisiones DONE Error Priority-Medium | Por el menú de Comisiones yendo a la opción Reportes Generales y ejecutando por ejemplo el reporte Excel de Control de Liquidaciones Temporales

este genera un archivo csv en el disco c:, abriendo este archivo pasa lo siguiente,
Hay diferencias en el formato de fechas entre los reports que salen en csv desde la web y la versión Cliente-Servidor
En la version Cliente-Servidor las columnas fecha generadas en el csv salen con formato dd/mm/yyyy, esto es debido a que seteamos en el Regedit en HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ORACLE la variable NLS_DATE_FORMAT con valor dd/mm/yyyy, les paso un ejemplo de como sale

En la version Web las columnas fecha generadas en el csv salen con formato dd-MON-yyyy, les muestro un ejemplo

Los formatos de las columna fecha en los cvs generados en la version Web deberian salir con formato dd/mm/yyyy como salen en la version Client-Server.
Saludos | 1.0 | Diferencia de formato en las columnas fecha en los cvs entre Client-Server y Web - Por el menú de Comisiones yendo a la opción Reportes Generales y ejecutando por ejemplo el reporte Excel de Control de Liquidaciones Temporales

este genera un archivo csv en el disco c:, abriendo este archivo pasa lo siguiente,
Hay diferencias en el formato de fechas entre los reports que salen en csv desde la web y la versión Cliente-Servidor
En la version Cliente-Servidor las columnas fecha generadas en el csv salen con formato dd/mm/yyyy, esto es debido a que seteamos en el Regedit en HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ORACLE la variable NLS_DATE_FORMAT con valor dd/mm/yyyy, les paso un ejemplo de como sale

En la version Web las columnas fecha generadas en el csv salen con formato dd-MON-yyyy, les muestro un ejemplo

Los formatos de las columna fecha en los cvs generados en la version Web deberian salir con formato dd/mm/yyyy como salen en la version Client-Server.
Saludos | priority | diferencia de formato en las columnas fecha en los cvs entre client server y web por el menú de comisiones yendo a la opción reportes generales y ejecutando por ejemplo el reporte excel de control de liquidaciones temporales este genera un archivo csv en el disco c abriendo este archivo pasa lo siguiente hay diferencias en el formato de fechas entre los reports que salen en csv desde la web y la versión cliente servidor en la version cliente servidor las columnas fecha generadas en el csv salen con formato dd mm yyyy esto es debido a que seteamos en el regedit en hkey local machine software oracle la variable nls date format con valor dd mm yyyy les paso un ejemplo de como sale en la version web las columnas fecha generadas en el csv salen con formato dd mon yyyy les muestro un ejemplo los formatos de las columna fecha en los cvs generados en la version web deberian salir con formato dd mm yyyy como salen en la version client server saludos | 1 |
418,772 | 12,203,168,323 | IssuesEvent | 2020-04-30 10:08:22 | MHRA/products | https://api.github.com/repos/MHRA/products | closed | DATA - data layer - Page Category | Data Implementation :1234: EPIC - Data :100: Medium Priority :arrow_forward: STORY :book: |
### User want
as a user of analytics, I would like to be able to see page categories
**Customer acceptance criteria**
**Technical acceptance criteria**
- Google Analytics push occurs on pageload
- Pushed data includes information about current page type
**Data acceptance criteria**
how to set up detailed here
https://docs.google.com/spreadsheets/d/1yS7qlsTs3ksyFFSF5FHcC7-CwOg-Sllr9GSQ68gSApQ/edit#gid=0
Categories are like:
MHRA Homepage
Substance Page (with substance name)
Product Page (with product name)
Search Result Page (with keyword typed)
Drug Index Page (with letter)
MHRA About Page
MHRA Accessibility
MHRA Cookies
**Testing acceptance criteria**
that the we can capture the data layer element in Google Analytics
**Size**
XS
**Value**
9
**Effort**
5
### Exit Criteria met
- [x] Backlog
- [x] Discovery
- [x] DUXD
- [x] Development
- [x] Quality Assurance
- [x] Release and Validate | 1.0 | DATA - data layer - Page Category -
### User want
as a user of analytics, I would like to be able to see page categories
**Customer acceptance criteria**
**Technical acceptance criteria**
- Google Analytics push occurs on pageload
- Pushed data includes information about current page type
**Data acceptance criteria**
how to set up detailed here
https://docs.google.com/spreadsheets/d/1yS7qlsTs3ksyFFSF5FHcC7-CwOg-Sllr9GSQ68gSApQ/edit#gid=0
Categories are like:
MHRA Homepage
Substance Page (with substance name)
Product Page (with product name)
Search Result Page (with keyword typed)
Drug Index Page (with letter)
MHRA About Page
MHRA Accessibility
MHRA Cookies
**Testing acceptance criteria**
that the we can capture the data layer element in Google Analytics
**Size**
XS
**Value**
9
**Effort**
5
### Exit Criteria met
- [x] Backlog
- [x] Discovery
- [x] DUXD
- [x] Development
- [x] Quality Assurance
- [x] Release and Validate | priority | data data layer page category user want as a user of analytics i would like to be able to see page categories customer acceptance criteria technical acceptance criteria google analytics push occurs on pageload pushed data includes information about current page type data acceptance criteria how to set up detailed here categories are like mhra homepage substance page with substance name product page with product name search result page with keyword typed drug index page with letter mhra about page mhra accessibility mhra cookies testing acceptance criteria that the we can capture the data layer element in google analytics size xs value effort exit criteria met backlog discovery duxd development quality assurance release and validate | 1 |
122,332 | 4,833,925,465 | IssuesEvent | 2016-11-08 12:45:13 | Cadasta/cadasta-platform | https://api.github.com/repos/Cadasta/cadasta-platform | closed | API does not list relationships for a party | bug medium priority | ### Steps to reproduce the error
1. Create a relationship for a party
2. List the relationships for that party via the API (`/api/v1/organizations/{organization_slug}/projects/{project_slug}/parties/{party_id}/relationships/`)
### Actual behavior
The response is an empty array.
### Expected behavior
The response should contain an array with at least the relationship created.
| 1.0 | API does not list relationships for a party - ### Steps to reproduce the error
1. Create a relationship for a party
2. List the relationships for that party via the API (`/api/v1/organizations/{organization_slug}/projects/{project_slug}/parties/{party_id}/relationships/`)
### Actual behavior
The response is an empty array.
### Expected behavior
The response should contain an array with at least the relationship created.
| priority | api does not list relationships for a party steps to reproduce the error create a relationship for a party list the relationships for that party via the api api organizations organization slug projects project slug parties party id relationships actual behavior the response is an empty array expected behavior the response should contain an array with at least the relationship created | 1 |
82,864 | 3,619,678,260 | IssuesEvent | 2016-02-08 16:54:28 | miracle091/transmission-remote-dotnet | https://api.github.com/repos/miracle091/transmission-remote-dotnet | closed | Allow ip-address as hostname in server config | Priority-Medium Type-Enhancement | ```
At the moment you can *not* use an ip-address as hostname.
It will not allow you to save/connect: "No hostname specified".
Request: Allow ip-adress as hostname.
```
Original issue reported on code.google.com by `valentijnscholten` on 24 Sep 2011 at 7:59 | 1.0 | Allow ip-address as hostname in server config - ```
At the moment you can *not* use an ip-address as hostname.
It will not allow you to save/connect: "No hostname specified".
Request: Allow ip-adress as hostname.
```
Original issue reported on code.google.com by `valentijnscholten` on 24 Sep 2011 at 7:59 | priority | allow ip address as hostname in server config at the moment you can not use an ip address as hostname it will not allow you to save connect no hostname specified request allow ip adress as hostname original issue reported on code google com by valentijnscholten on sep at | 1 |
536,320 | 15,707,548,923 | IssuesEvent | 2021-03-26 19:03:26 | ansible/awx | https://api.github.com/repos/ansible/awx | closed | Observability and metrics - Surface metrics prometheus friendly | component:api priority:medium state:needs_devel type:feature | Websockets contain an [example](https://github.com/ansible/awx/blob/devel/awx/main/analytics/broadcast_websocket.py#L121) of Prometheus data structures serialized, deserialized & [exposed via a Prometheus endpoint](https://github.com/chrismeyersfsu/awx/commit/b58c71bb74bd5f5c836f88daa3d7806ff68cea47#diff-497de0f3f551df8d0333aa7a3d2cae353a08d4e2b500ca122195bafda82f6d3b). We want to do the same for our generalized metrics. Note that websockets didn't have the potential performance needs that this metrics tracking system will need. I'm unsure of the performance of storing the metrics in Prometheus objects and _then_ serializing them. Also, the websockets stats objects persist in memory for a long time. There are some metrics workloads where the metric object will be short lived in memory. So there will be many deserialize, modify, serialize operations. For this reason, we may have our own minimal data structure that we operate on (i.e. serialize, increment, deserialize) and only convert it to a Prometheus style data-structure when rendering in the API.
"Normal" prometheus usage is to have a `/metrics` endpoint per-node that you are monitoring. We are deviating from the norm and centralizing information about multiple nodes. It would be nice to have a filter so that you get the best of both worlds, centralized metrics and the ability to use existing tooling. To this end, a filter that supports filtering by-node would be useful i.e. `/metrics?node=node1.awx.mydomain.com`
We also have to consider performance. This new set of metrics should render very quickly. Our existing metrics can be slow since they require database queries. We should use filtering or a different endpoint to allow users to avoid the pre-existing DB query metrics. | 1.0 | Observability and metrics - Surface metrics prometheus friendly - Websockets contain an [example](https://github.com/ansible/awx/blob/devel/awx/main/analytics/broadcast_websocket.py#L121) of Prometheus data structures serialized, deserialized & [exposed via a Prometheus endpoint](https://github.com/chrismeyersfsu/awx/commit/b58c71bb74bd5f5c836f88daa3d7806ff68cea47#diff-497de0f3f551df8d0333aa7a3d2cae353a08d4e2b500ca122195bafda82f6d3b). We want to do the same for our generalized metrics. Note that websockets didn't have the potential performance needs that this metrics tracking system will need. I'm unsure of the performance of storing the metrics in Prometheus objects and _then_ serializing them. Also, the websockets stats objects persist in memory for a long time. There are some metrics workloads where the metric object will be short lived in memory. So there will be many deserialize, modify, serialize operations. For this reason, we may have our own minimal data structure that we operate on (i.e. serialize, increment, deserialize) and only convert it to a Prometheus style data-structure when rendering in the API.
"Normal" prometheus usage is to have a `/metrics` endpoint per-node that you are monitoring. We are deviating from the norm and centralizing information about multiple nodes. It would be nice to have a filter so that you get the best of both worlds, centralized metrics and the ability to use existing tooling. To this end, a filter that supports filtering by-node would be useful i.e. `/metrics?node=node1.awx.mydomain.com`
We also have to consider performance. This new set of metrics should render very quickly. Our existing metrics can be slow since they require database queries. We should use filtering or a different endpoint to allow users to avoid the pre-existing DB query metrics. | priority | observability and metrics surface metrics prometheus friendly websockets contain an of prometheus data structures serialized deserialized we want to do the same for our generalized metrics note that websockets didn t have the potential performance needs that this metrics tracking system will need i m unsure of the performance of storing the metrics in prometheus objects and then serializing them also the websockets stats objects persist in memory for a long time there are some metrics workloads where the metric object will be short lived in memory so there will be many deserialize modify serialize operations for this reason we may have our own minimal data structure that we operate on i e serialize increment deserialize and only convert it to a prometheus style data structure when rendering in the api normal prometheus usage is to have a metrics endpoint per node that you are monitoring we are deviating from the norm and centralizing information about multiple nodes it would be nice to have a filter so that you get the best of both worlds centralized metrics and the ability to use existing tooling to this end a filter that supports filtering by node would be useful i e metrics node awx mydomain com we also have to consider performance this new set of metrics should render very quickly our existing metrics can be slow since they require database queries we should use filtering or a different endpoint to allow users to avoid the pre existing db query metrics | 1 |
693,970 | 23,797,148,901 | IssuesEvent | 2022-09-02 21:20:45 | phetsims/joist | https://api.github.com/repos/phetsims/joist | closed | Screenshots have significantly impaired quality | type:bug priority:3-medium status:ready-for-review | <b>Test Device</b>
Windows 10 Laptop
<b>Operating System</b>
Windows 10 2004
<b>Browser</b>
Chrome 85.0.4183.102
<b>Problem Description</b>
For https://github.com/phetsims/QA/issues/551
Screenshots made in the screenshot wrapper show lower quality for the play area (seen best in the quality of the rabbits) than original sim.
<b>Visuals</b>


| 1.0 | Screenshots have significantly impaired quality - <b>Test Device</b>
Windows 10 Laptop
<b>Operating System</b>
Windows 10 2004
<b>Browser</b>
Chrome 85.0.4183.102
<b>Problem Description</b>
For https://github.com/phetsims/QA/issues/551
Screenshots made in the screenshot wrapper show lower quality for the play area (seen best in the quality of the rabbits) than original sim.
<b>Visuals</b>


| priority | screenshots have significantly impaired quality test device windows laptop operating system windows browser chrome problem description for screenshots made in the screenshot wrapper show lower quality for the play area seen best in the quality of the rabbits than original sim visuals | 1 |
710,320 | 24,414,419,927 | IssuesEvent | 2022-10-05 14:48:24 | IAmTamal/Milan | https://api.github.com/repos/IAmTamal/Milan | closed | [Adding minimal Contact form] | 🟨 priority: medium ⭐ goal: addition 🛠 status : under development | ### Description
### description
- I would like to add a minimalist design contact form at the footer of the home page
- although the contact form is there in the header menu a small at footer may be useful
@IAmTamal
I would like to work on this
please assign it to me
### Screenshots
### current

### expected

### Additional information
_No response_ | 1.0 | [Adding minimal Contact form] - ### Description
### description
- I would like to add a minimalist design contact form at the footer of the home page
- although the contact form is there in the header menu a small at footer may be useful
@IAmTamal
I would like to work on this
please assign it to me
### Screenshots
### current

### expected

### Additional information
_No response_ | priority | description description i would like to add a minimalist design contact form at the footer of the home page although the contact form is there in the header menu a small at footer may be useful iamtamal i would like to work on this please assign it to me screenshots current expected additional information no response | 1 |
476,446 | 13,745,029,734 | IssuesEvent | 2020-10-06 01:40:16 | discordextremelist/website | https://api.github.com/repos/discordextremelist/website | closed | remove instances of users.cache & members.cache | medium priority todo | we cannot and should not rely on members to be cached
we may also be able to stop using members intent | 1.0 | remove instances of users.cache & members.cache - we cannot and should not rely on members to be cached
we may also be able to stop using members intent | priority | remove instances of users cache members cache we cannot and should not rely on members to be cached we may also be able to stop using members intent | 1 |
625,802 | 19,766,071,693 | IssuesEvent | 2022-01-17 02:33:44 | TencentBlueKing/bk-iam-saas | https://api.github.com/repos/TencentBlueKing/bk-iam-saas | closed | [Backend] bk-iam-cli 支持本地.config并调试所有 API | Type: Enhancement Layer: Backend Priority: Medium Size: XS(Hours) | - [ ] 支持从本地文件读取app_code/app_secret
- [ ] 调试所有 API
- [ ] 升级go版本到 1.17
- [ ] 升级所有依赖包
--------
为开源提前做准备, 并且, 后续调试文档可以使用这个工具 | 1.0 | [Backend] bk-iam-cli 支持本地.config并调试所有 API - - [ ] 支持从本地文件读取app_code/app_secret
- [ ] 调试所有 API
- [ ] 升级go版本到 1.17
- [ ] 升级所有依赖包
--------
为开源提前做准备, 并且, 后续调试文档可以使用这个工具 | priority | bk iam cli 支持本地 config并调试所有 api 支持从本地文件读取app code app secret 调试所有 api 升级go版本到 升级所有依赖包 为开源提前做准备 并且 后续调试文档可以使用这个工具 | 1 |
209,222 | 7,166,403,810 | IssuesEvent | 2018-01-29 17:06:54 | salesagility/SuiteCRM | https://api.github.com/repos/salesagility/SuiteCRM | closed | Sanitization on PDF templates doesn't allow nested quotes | Medium Priority bug | <!--- Provide a general summary of the issue in the **Title** above -->
<!--- Before you open an issue, please check if a similar issue already exists or has been closed before. --->
<!--- If you have discovered a security risk please report it by emailing security@suitecrm.com. This will be delivered to the product team who handle security issues. Please don't disclose security bugs publicly until they have been handled by the security team. --->
#### Issue
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug -->
If a background image is used like so:
`<div style="height:100%;width:100%;background:url('http://my-url.com') no-repeat right bottom;"> </div>`
it is "sanitized" to
`<div style="height:100%;width:100%;background:url("http://my-url.com") no-repeat right bottom;"> </div>`
which will not work.
#### Expected Behavior
<!--- Tell us what should happen -->
Leave my quotes be or don't sanitize my input.
#### Actual Behavior
<!--- Tell us what happens instead -->
<!--- Also please check relevant logs (suitecrm.log, php error.log etc.) -->
Sanitization breaks layout
#### Possible Fix
<!--- Not obligatory, but suggest a fix or reason for the bug -->
#### Steps to Reproduce
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug include code to reproduce, if relevant -->
1. Put above mentioned line in template
2. Save
3. Reopen
#### Context
<!--- How has this bug affected you? What were you trying to accomplish? -->
<!--- If you feel this should be a low/medium/high priority then please state so -->
Breaks my layout
#### Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* SuiteCRM Version used:
* Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): FF 56
* Environment name and version (e.g. MySQL, PHP 7): MSSQL PHP 7
* Operating System and version (e.g Ubuntu 16.04): Microsoft Server 2012R2
| 1.0 | Sanitization on PDF templates doesn't allow nested quotes - <!--- Provide a general summary of the issue in the **Title** above -->
<!--- Before you open an issue, please check if a similar issue already exists or has been closed before. --->
<!--- If you have discovered a security risk please report it by emailing security@suitecrm.com. This will be delivered to the product team who handle security issues. Please don't disclose security bugs publicly until they have been handled by the security team. --->
#### Issue
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug -->
If a background image is used like so:
`<div style="height:100%;width:100%;background:url('http://my-url.com') no-repeat right bottom;"> </div>`
it is "sanitized" to
`<div style="height:100%;width:100%;background:url("http://my-url.com") no-repeat right bottom;"> </div>`
which will not work.
#### Expected Behavior
<!--- Tell us what should happen -->
Leave my quotes be or don't sanitize my input.
#### Actual Behavior
<!--- Tell us what happens instead -->
<!--- Also please check relevant logs (suitecrm.log, php error.log etc.) -->
Sanitization breaks layout
#### Possible Fix
<!--- Not obligatory, but suggest a fix or reason for the bug -->
#### Steps to Reproduce
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug include code to reproduce, if relevant -->
1. Put above mentioned line in template
2. Save
3. Reopen
#### Context
<!--- How has this bug affected you? What were you trying to accomplish? -->
<!--- If you feel this should be a low/medium/high priority then please state so -->
Breaks my layout
#### Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* SuiteCRM Version used:
* Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): FF 56
* Environment name and version (e.g. MySQL, PHP 7): MSSQL PHP 7
* Operating System and version (e.g Ubuntu 16.04): Microsoft Server 2012R2
| priority | sanitization on pdf templates doesn t allow nested quotes issue if a background image is used like so it is sanitized to which will not work expected behavior leave my quotes be or don t sanitize my input actual behavior sanitization breaks layout possible fix steps to reproduce put above mentioned line in template save reopen context breaks my layout your environment suitecrm version used browser name and version e g chrome version bit ff environment name and version e g mysql php mssql php operating system and version e g ubuntu microsoft server | 1 |
606,156 | 18,756,041,032 | IssuesEvent | 2021-11-05 10:52:40 | PlaceOS/user-interfaces | https://api.github.com/repos/PlaceOS/user-interfaces | closed | workplace/dashboard > Your Bookings: Clicking on a booking tile does nothing, but should show the booking details (/schedule/view) | Type: Enhancement Priority: Medium | workplace/dashboard > Your Bookings: Clicking on a booking tile does nothing, but should show the booking details (/schedule/view)

| 1.0 | workplace/dashboard > Your Bookings: Clicking on a booking tile does nothing, but should show the booking details (/schedule/view) - workplace/dashboard > Your Bookings: Clicking on a booking tile does nothing, but should show the booking details (/schedule/view)

| priority | workplace dashboard your bookings clicking on a booking tile does nothing but should show the booking details schedule view workplace dashboard your bookings clicking on a booking tile does nothing but should show the booking details schedule view | 1 |
61,408 | 3,145,539,379 | IssuesEvent | 2015-09-14 18:30:06 | Sistema-Integrado-Gestao-Academica/SiGA | https://api.github.com/repos/Sistema-Integrado-Gestao-Academica/SiGA | closed | Segurança na remoção de um PO | [Medium Priority] | Adicionar uma camada de segurança no script de remoção de um plano orçamentário.
* Perguntar se o usuário **realmente** tem certeza que deseja remover o plano | 1.0 | Segurança na remoção de um PO - Adicionar uma camada de segurança no script de remoção de um plano orçamentário.
* Perguntar se o usuário **realmente** tem certeza que deseja remover o plano | priority | segurança na remoção de um po adicionar uma camada de segurança no script de remoção de um plano orçamentário perguntar se o usuário realmente tem certeza que deseja remover o plano | 1 |
128,171 | 5,050,259,329 | IssuesEvent | 2016-12-20 18:11:27 | neuropoly/spinalcordtoolbox | https://api.github.com/repos/neuropoly/spinalcordtoolbox | opened | create a function to compute MTsat | enhancement priority: medium | similar to sct_compute_mtr
could be called sct_compute_mtsat | 1.0 | create a function to compute MTsat - similar to sct_compute_mtr
could be called sct_compute_mtsat | priority | create a function to compute mtsat similar to sct compute mtr could be called sct compute mtsat | 1 |
411,199 | 12,015,583,454 | IssuesEvent | 2020-04-10 14:18:22 | AY1920S2-CS2103T-W13-1/main | https://api.github.com/repos/AY1920S2-CS2103T-W13-1/main | closed | [SELFTEST - DIET] "Tracker" and "Diet Tracker" not consistent in Help command, same for EYLAH and Eylah. | priority.Medium severity.Low task.DietTracker | 
Under point `5. mode` its "Diet Tracker", but under point `6. height` and `7. weight` its "Tracker" | 1.0 | [SELFTEST - DIET] "Tracker" and "Diet Tracker" not consistent in Help command, same for EYLAH and Eylah. - 
Under point `5. mode` its "Diet Tracker", but under point `6. height` and `7. weight` its "Tracker" | priority | tracker and diet tracker not consistent in help command same for eylah and eylah under point mode its diet tracker but under point height and weight its tracker | 1 |
810,129 | 30,226,345,745 | IssuesEvent | 2023-07-06 01:03:54 | KingSupernova31/RulesGuru | https://api.github.com/repos/KingSupernova31/RulesGuru | closed | Format filters can have unexpected results | enhancement medium priority discussion wanted | A search for a modern question can return:
* A question involving no cards.
* A question about a variant like EDH or 2HG that happens to be using all modern-legal cards.
These are both technically accurate, but probably not what the user intended. Possible fixes for the first issue:
* If any format other than "all of magic" is selected, don't display questions that contain no cards.
* If "playable only" is selected, don't display questions that contain no cards.
* Remove all questions that contain no cards from the database, and make it a rule that all questions must contain at least one card.
* If a user's search criteria return fewer than 30 questions, remove from the list all questions that contain no cards.
These all have their own downsides. Possible fixes for the second issue:
* If any format other than "all of magic" is selected, exclude any tags that aren't for that format. (So "modern" would exclude any question with the "commander" tag, for example.)
I'm not sure what's best here. | 1.0 | Format filters can have unexpected results - A search for a modern question can return:
* A question involving no cards.
* A question about a variant like EDH or 2HG that happens to be using all modern-legal cards.
These are both technically accurate, but probably not what the user intended. Possible fixes for the first issue:
* If any format other than "all of magic" is selected, don't display questions that contain no cards.
* If "playable only" is selected, don't display questions that contain no cards.
* Remove all questions that contain no cards from the database, and make it a rule that all questions must contain at least one card.
* If a user's search criteria return fewer than 30 questions, remove from the list all questions that contain no cards.
These all have their own downsides. Possible fixes for the second issue:
* If any format other than "all of magic" is selected, exclude any tags that aren't for that format. (So "modern" would exclude any question with the "commander" tag, for example.)
I'm not sure what's best here. | priority | format filters can have unexpected results a search for a modern question can return a question involving no cards a question about a variant like edh or that happens to be using all modern legal cards these are both technically accurate but probably not what the user intended possible fixes for the first issue if any format other than all of magic is selected don t display questions that contain no cards if playable only is selected don t display questions that contain no cards remove all questions that contain no cards from the database and make it a rule that all questions must contain at least one card if a user s search criteria return fewer than questions remove from the list all questions that contain no cards these all have their own downsides possible fixes for the second issue if any format other than all of magic is selected exclude any tags that aren t for that format so modern would exclude any question with the commander tag for example i m not sure what s best here | 1 |
500,569 | 14,502,200,688 | IssuesEvent | 2020-12-11 20:39:37 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | opened | [0.9.1.8 beta release-130]Spawn point changes on new worlds ignoring config settings | Priority: Medium Status: Investigate | Server world creation and having players connect it will ignore the set spawn point in users.eco even if this has a set spawnpoint and also set to true. Need to further investigate if this is a consistent behavior when different client connects or when this alters spawn. | 1.0 | [0.9.1.8 beta release-130]Spawn point changes on new worlds ignoring config settings - Server world creation and having players connect it will ignore the set spawn point in users.eco even if this has a set spawnpoint and also set to true. Need to further investigate if this is a consistent behavior when different client connects or when this alters spawn. | priority | spawn point changes on new worlds ignoring config settings server world creation and having players connect it will ignore the set spawn point in users eco even if this has a set spawnpoint and also set to true need to further investigate if this is a consistent behavior when different client connects or when this alters spawn | 1 |
455,212 | 13,113,397,734 | IssuesEvent | 2020-08-05 05:17:47 | indianapublicmedia/indianapublicmedia-web | https://api.github.com/repos/indianapublicmedia/indianapublicmedia-web | closed | make "final" changes to db | enhancement medium priority | The modified date column need to be dropped from the post table to be included in related content, also the related content table needs a value column. These updates need to made in four places: sqldbm.com, the google doc of the schema, the IU hosted db and on localhost on my machine.
These should be the last changes to the DB before serious development. | 1.0 | make "final" changes to db - The modified date column need to be dropped from the post table to be included in related content, also the related content table needs a value column. These updates need to made in four places: sqldbm.com, the google doc of the schema, the IU hosted db and on localhost on my machine.
These should be the last changes to the DB before serious development. | priority | make final changes to db the modified date column need to be dropped from the post table to be included in related content also the related content table needs a value column these updates need to made in four places sqldbm com the google doc of the schema the iu hosted db and on localhost on my machine these should be the last changes to the db before serious development | 1 |
548,878 | 16,080,208,658 | IssuesEvent | 2021-04-26 02:19:53 | ahmedkaludi/accelerated-mobile-pages | https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages | closed | Need to create an option to move the search bar top and bottom. | NEXT UPDATE [Priority: MEDIUM] enhancement | Need to create an option to move the search bar top and bottom.
Ref screenshot: https://prnt.sc/ufz58t
Ref:https://secure.helpscout.net/conversation/1276261724/153230?folderId=3575684 | 1.0 | Need to create an option to move the search bar top and bottom. - Need to create an option to move the search bar top and bottom.
Ref screenshot: https://prnt.sc/ufz58t
Ref:https://secure.helpscout.net/conversation/1276261724/153230?folderId=3575684 | priority | need to create an option to move the search bar top and bottom need to create an option to move the search bar top and bottom ref screenshot ref | 1 |
540,313 | 15,805,924,119 | IssuesEvent | 2021-04-04 01:58:18 | CMPUT301W21T32/BooleanCatastrophe | https://api.github.com/repos/CMPUT301W21T32/BooleanCatastrophe | closed | In-app header | 04 - User Profile 05 - Searching Priority - MEDIUM UML - ui | Add a header bar as shown in some of the storyboards, for quick access to some app actions (user profile, searching).
Link to this issue when new functionality is added. | 1.0 | In-app header - Add a header bar as shown in some of the storyboards, for quick access to some app actions (user profile, searching).
Link to this issue when new functionality is added. | priority | in app header add a header bar as shown in some of the storyboards for quick access to some app actions user profile searching link to this issue when new functionality is added | 1 |
605,702 | 18,739,408,874 | IssuesEvent | 2021-11-04 11:50:18 | AY2122S1-CS2103-W14-2/tp | https://api.github.com/repos/AY2122S1-CS2103-W14-2/tp | closed | Better formatting for command results | type.Enhancement priority.Medium | The current output of command results is packed onto a single line and requires the user to scroll horizontally, which is not a friendly design. The output should be properly formatted (e.g. attributes on separate lines) and extraneous information should be removed (e.g. non-specified optional fields indicated as `Optional.empty`).

| 1.0 | Better formatting for command results - The current output of command results is packed onto a single line and requires the user to scroll horizontally, which is not a friendly design. The output should be properly formatted (e.g. attributes on separate lines) and extraneous information should be removed (e.g. non-specified optional fields indicated as `Optional.empty`).

| priority | better formatting for command results the current output of command results is packed onto a single line and requires the user to scroll horizontally which is not a friendly design the output should be properly formatted e g attributes on separate lines and extraneous information should be removed e g non specified optional fields indicated as optional empty | 1 |
798,244 | 28,241,168,163 | IssuesEvent | 2023-04-06 07:17:13 | AY2223S2-CS2103T-T12-2/tp | https://api.github.com/repos/AY2223S2-CS2103T-T12-2/tp | closed | Add a patient ward number | type.Story priority.Medium | As a staff member, I want to add a patient ward number so that I can locate the patient. | 1.0 | Add a patient ward number - As a staff member, I want to add a patient ward number so that I can locate the patient. | priority | add a patient ward number as a staff member i want to add a patient ward number so that i can locate the patient | 1 |
55,708 | 3,074,272,059 | IssuesEvent | 2015-08-20 05:43:21 | RobotiumTech/robotium | https://api.github.com/repos/RobotiumTech/robotium | closed | junit.framework.AssertionFailedError: EditText is not found! | bug imported invalid Priority-Medium | _From [Sameena....@gmail.com](https://code.google.com/u/104357694913142239122/) on September 24, 2013 06:24:33_
What steps will reproduce the problem? 1.Launch the emulator.
2.Execute the test cases->Run as Junit Test case.
3.App home screen is displayed.But Assertion failed error is displayed for Text fields and Check boxes. What is the expected output? What do you see instead? Expected Result:Navigates to Next Screen of the app.
Actual Result: junit.framework.AssertionFailedError: EditText is not found! What version of the product are you using? On what operating system? Robotium-solo-4.3,Windows 7,32bit Please provide any additional information below. Test Class:
package com.emd.test;
import com.jayway.android.robotium.solo.Solo;
import android.test.ActivityInstrumentationTestCase2;
@SuppressWarnings("unchecked")
public class Loginluck7 extends ActivityInstrumentationTestCase2 {
private static final String LAUNCHER_ACTIVITY_FULL_CLASSNAME="com.ncr.emd.Emd";
private static Class launcherActivityClass;
static{
try{
launcherActivityClass = Class.forName(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
}
catch (ClassNotFoundException e)
{
throw new RuntimeException(e);
}
}
public Loginluck7()
{
super(launcherActivityClass);
// TODO Auto-generated constructor stub
}
private Solo solo;
protected void setUp() throws Exception {
super.setUp();
solo = new Solo(getInstrumentation(), getActivity());
}
public void test_1_Rememberme()
{
solo.waitForActivity(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
solo.enterText(0, "user");
solo.enterText(1, "mobile");
solo.enterText(2, "password5");
solo.clickOnButton("Submit");
solo.waitForText("Deposits");
}
public void tearDown() throws Exception
{
solo.finishOpenedActivities();
}
}
AndroidManifest.xml:
\<?xml version="1.0" encoding="utf-8"?>
\<manifest xmlns:android=" http://schemas.android.com/apk/res/android "
package="com.emd.test"
android:versionCode="1"
android:versionName="1.0" >
\<uses-sdk android:minSdkVersion="10"
android:targetSdkVersion="17"/>
\<uses-permission android:name="android.permission.INTERNET"></uses-permission>
\<supports-screens android:anyDensity="true"/>
\<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.emd.Emd" />
\<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
\<uses-library android:name="android.test.runner" />
\</application>
\</manifest>
We have only apk file
Thanks,
Sameena
_Original issue: http://code.google.com/p/robotium/issues/detail?id=522_ | 1.0 | junit.framework.AssertionFailedError: EditText is not found! - _From [Sameena....@gmail.com](https://code.google.com/u/104357694913142239122/) on September 24, 2013 06:24:33_
What steps will reproduce the problem? 1.Launch the emulator.
2.Execute the test cases->Run as Junit Test case.
3.App home screen is displayed.But Assertion failed error is displayed for Text fields and Check boxes. What is the expected output? What do you see instead? Expected Result:Navigates to Next Screen of the app.
Actual Result: junit.framework.AssertionFailedError: EditText is not found! What version of the product are you using? On what operating system? Robotium-solo-4.3,Windows 7,32bit Please provide any additional information below. Test Class:
package com.emd.test;
import com.jayway.android.robotium.solo.Solo;
import android.test.ActivityInstrumentationTestCase2;
@SuppressWarnings("unchecked")
public class Loginluck7 extends ActivityInstrumentationTestCase2 {
private static final String LAUNCHER_ACTIVITY_FULL_CLASSNAME="com.ncr.emd.Emd";
private static Class launcherActivityClass;
static{
try{
launcherActivityClass = Class.forName(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
}
catch (ClassNotFoundException e)
{
throw new RuntimeException(e);
}
}
public Loginluck7()
{
super(launcherActivityClass);
// TODO Auto-generated constructor stub
}
private Solo solo;
protected void setUp() throws Exception {
super.setUp();
solo = new Solo(getInstrumentation(), getActivity());
}
public void test_1_Rememberme()
{
solo.waitForActivity(LAUNCHER_ACTIVITY_FULL_CLASSNAME);
solo.enterText(0, "user");
solo.enterText(1, "mobile");
solo.enterText(2, "password5");
solo.clickOnButton("Submit");
solo.waitForText("Deposits");
}
public void tearDown() throws Exception
{
solo.finishOpenedActivities();
}
}
AndroidManifest.xml:
\<?xml version="1.0" encoding="utf-8"?>
\<manifest xmlns:android=" http://schemas.android.com/apk/res/android "
package="com.emd.test"
android:versionCode="1"
android:versionName="1.0" >
\<uses-sdk android:minSdkVersion="10"
android:targetSdkVersion="17"/>
\<uses-permission android:name="android.permission.INTERNET"></uses-permission>
\<supports-screens android:anyDensity="true"/>
\<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.emd.Emd" />
\<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
\<uses-library android:name="android.test.runner" />
\</application>
\</manifest>
We have only apk file
Thanks,
Sameena
_Original issue: http://code.google.com/p/robotium/issues/detail?id=522_ | priority | junit framework assertionfailederror edittext is not found from on september what steps will reproduce the problem launch the emulator execute the test cases run as junit test case app home screen is displayed but assertion failed error is displayed for text fields and check boxes what is the expected output what do you see instead expected result navigates to next screen of the app actual result junit framework assertionfailederror edittext is not found what version of the product are you using on what operating system robotium solo windows please provide any additional information below test class package com emd test import com jayway android robotium solo solo import android test suppresswarnings unchecked public class extends private static final string launcher activity full classname com ncr emd emd private static class launcheractivityclass static try launcheractivityclass class forname launcher activity full classname catch classnotfoundexception e throw new runtimeexception e public super launcheractivityclass todo auto generated constructor stub private solo solo protected void setup throws exception super setup solo new solo getinstrumentation getactivity public void test rememberme solo waitforactivity launcher activity full classname solo entertext user solo entertext mobile solo entertext solo clickonbutton submit solo waitfortext deposits public void teardown throws exception solo finishopenedactivities androidmanifest xml manifest xmlns android package com emd test android versioncode android versionname uses sdk android minsdkversion android targetsdkversion instrumentation android name android test instrumentationtestrunner android targetpackage com emd emd application android icon drawable ic launcher android label string app name we have only apk file thanks sameena original issue | 1 |
230,906 | 7,621,229,463 | IssuesEvent | 2018-05-03 07:45:41 | andgein/SIStema | https://api.github.com/repos/andgein/SIStema | opened | EntranceStatus.PARTICIPATING вместе с is_status_visible=True неверно отображается в шаге EntranceResults | module:entrance priority:2:medium type:bug | Показывается красная плашка «Вы не зачислены в ЛКШ», а надо показывать что-то типа «Вы участвуете в конкурсе» | 1.0 | EntranceStatus.PARTICIPATING вместе с is_status_visible=True неверно отображается в шаге EntranceResults - Показывается красная плашка «Вы не зачислены в ЛКШ», а надо показывать что-то типа «Вы участвуете в конкурсе» | priority | entrancestatus participating вместе с is status visible true неверно отображается в шаге entranceresults показывается красная плашка «вы не зачислены в лкш» а надо показывать что то типа «вы участвуете в конкурсе» | 1 |
617,231 | 19,345,705,172 | IssuesEvent | 2021-12-15 10:34:05 | containrrr/watchtower | https://api.github.com/repos/containrrr/watchtower | opened | Not able to exclude containers from watchtower trying to update them | Type: Bug Priority: Medium Status: Available | I have a docker-compose file with 4 containers, including the watchtower container. It does a great job at updating my web-container, however when I check the logs for the watchtower container it's FLOODED with other pulls for my other containers. I don't want that. I tried two different ways to exclude the other containers, first one is just putting the name of the only container I want it to monitor (web) in the command section of the watchtower container:
```
version: '3.8'
services:
web:
container_name: web
restart: always
....
nginx-proxy:
container_name: nginx-proxy
restart: always
....
nginx-proxy-letsencrypt:
container_name: nginx-proxy-letsencrypt
....
watchtower:
container_name: watchtower
restart: unless-stopped
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
env_file:
- ./.env.prod
command: --interval 120 web
volumes:
static_volume:
media_volume:
certs:
html:
vhost:
acme:
```
This don't work, I still get logs for failing to pull from all the different containers, the other way I've tried is to work with labels, which don't work either:
`version: '3.8'
services:
web:
container_name: web
restart: always
labels:
- "com.centurylinklabs.watchtower.enable=true"
...
nginx-proxy:
container_name: nginx-proxy
restart: always
...
nginx-proxy-letsencrypt:
container_name: nginx-proxy-letsencrypt
image: jrcs/letsencrypt-nginx-proxy-companion
...
watchtower:
container_name: watchtower
restart: unless-stopped
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
env_file:
- ./.env.prod
command: --interval 120 --label-enable
volumes:
static_volume:
media_volume:
certs:
html:
vhost:
acme:`
This is how my logs look like:
`time="2021-12-15T10:31:21Z" level=info msg="Stopping /web (d9940153d93d) with SIGTERM"
time="2021-12-15T10:31:22Z" level=info msg="Creating /web"
time="2021-12-15T10:31:23Z" level=info msg="Removing image dbd31b664ef1"
Failed to send notification via shoutrrr (url=smtp://server%40myrepo.se:C8ZBL3_dYUK%40cMf@mymailserver.se:465/?auth=Plain&fromaddress=server%40myrepo.se&fromname=Watchtower&subject=Watchtower+updates+on+7582a1489f37&toaddresses=myemail%40gmail.com): failed to send using smtp: timed out
time="2021-12-15T10:31:34Z" level=warning msg="Could not do a head request for \"index.docker.io/myusername/myrepo:latest\", falling back to regular pull." container=/web image="index.docker.io/myusername/myrepo:latest"
time="2021-12-15T10:31:34Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:myusername/myrepo:pull\\\"\"" container=/web image="index.docker.io/myusername/myrepo:latest"
time="2021-12-15T10:31:36Z" level=warning msg="Could not do a head request for \"jrcs/letsencrypt-nginx-proxy-companion:latest\", falling back to regular pull." container=/myrepo_nginx-proxy-letsencrypt_1 image="jrcs/letsencrypt-nginx-proxy-companion:latest"
time="2021-12-15T10:31:36Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:jrcs/letsencrypt-nginx-proxy-companion:pull\\\"\"" container=/myrepo_nginx-proxy-letsencrypt_1 image="jrcs/letsencrypt-nginx-proxy-companion:latest"
time="2021-12-15T10:31:38Z" level=warning msg="Could not do a head request for \"containrrr/watchtower:latest\", falling back to regular pull." container=/myrepo_watchtower_1 image="containrrr/watchtower:latest"
time="2021-12-15T10:31:38Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:containrrr/watchtower:pull\\\"\"" container=/myrepo_watchtower_1 image="containrrr/watchtower:latest"
time="2021-12-15T10:31:40Z" level=warning msg="Could not do a head request for \"myrepo_nginx-proxy:latest\", falling back to regular pull." container=/nginx-proxy image="myrepo_nginx-proxy:latest"
time="2021-12-15T10:31:40Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:library/myrepo_nginx-proxy:pull\\\"\"" container=/nginx-proxy image="myrepo_nginx-proxy:latest"
time="2021-12-15T10:31:41Z" level=info msg="Unable to update container \"/nginx-proxy\": Error response from daemon: pull access denied for myrepo_nginx-proxy, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. Proceeding to next."
Failed to send notification via shoutrrr (url=smtp://server%40myrepo.se:C8ZBL3_dYUK%40cMf@mymailserver.se:465/?auth=Plain&fromaddress=server%40myrepo.se&fromname=Watchtower&subject=Watchtower+updates+on+7582a1489f37&toaddresses=myemail%40gmail.com): failed to send using smtp: timed out
time="2021-12-15T10:32:04Z" level=warning msg="Could not do a head request for \"index.docker.io/myusername/myrepo:latest\", falling back to regular pull." container=/web image="index.docker.io/myusername/myrepo:latest"
time="2021-12-15T10:32:04Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:myusername/myrepo:pull\\\"\"" container=/web image="index.docker.io/myusername/myrepo:latest"
time="2021-12-15T10:32:06Z" level=warning msg="Could not do a head request for \"jrcs/letsencrypt-nginx-proxy-companion:latest\", falling back to regular pull." container=/myrepo_nginx-proxy-letsencrypt_1 image="jrcs/letsencrypt-nginx-proxy-companion:latest"
time="2021-12-15T10:32:06Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:jrcs/letsencrypt-nginx-proxy-companion:pull\\\"\"" container=/myrepo_nginx-proxy-letsencrypt_1 image="jrcs/letsencrypt-nginx-proxy-companion:latest"
time="2021-12-15T10:32:08Z" level=warning msg="Could not do a head request for \"containrrr/watchtower:latest\", falling back to regular pull." container=/myrepo_watchtower_1 image="containrrr/watchtower:latest"
time="2021-12-15T10:32:08Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:containrrr/watchtower:pull\\\"\"" container=/myrepo_watchtower_1 image="containrrr/watchtower:latest"
time="2021-12-15T10:32:10Z" level=warning msg="Could not do a head request for \"myrepo_nginx-proxy:latest\", falling back to regular pull." container=/nginx-proxy image="myrepo_nginx-proxy:latest"
time="2021-12-15T10:32:10Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:library/myrepo_nginx-proxy:pull\\\"\"" container=/nginx-proxy image="myrepo_nginx-proxy:latest"
time="2021-12-15T10:32:11Z" level=info msg="Unable to update container \"/nginx-proxy\": Error response from daemon: pull access denied for myrepo_nginx-proxy, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. Proceeding to next."
Failed to send notification via shoutrrr (url=smtp://server%40myrepo.se:C8ZBL3_dYUK%40cMf@mymailserver.se:465/?auth=Plain&fromaddress=server%40myrepo.se&fromname=Watchtower&subject=Watchtower+updates+on+7582a1489f37&toaddresses=myemail%40gmail.com): failed to send using smtp: timed out` | 1.0 | Not able to exclude containers from watchtower trying to update them - I have a docker-compose file with 4 containers, including the watchtower container. It does a great job at updating my web-container, however when I check the logs for the watchtower container it's FLOODED with other pulls for my other containers. I don't want that. I tried two different ways to exclude the other containers, first one is just putting the name of the only container I want it to monitor (web) in the command section of the watchtower container:
```
version: '3.8'
services:
web:
container_name: web
restart: always
....
nginx-proxy:
container_name: nginx-proxy
restart: always
....
nginx-proxy-letsencrypt:
container_name: nginx-proxy-letsencrypt
....
watchtower:
container_name: watchtower
restart: unless-stopped
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
env_file:
- ./.env.prod
command: --interval 120 web
volumes:
static_volume:
media_volume:
certs:
html:
vhost:
acme:
```
This don't work, I still get logs for failing to pull from all the different containers, the other way I've tried is to work with labels, which don't work either:
`version: '3.8'
services:
web:
container_name: web
restart: always
labels:
- "com.centurylinklabs.watchtower.enable=true"
...
nginx-proxy:
container_name: nginx-proxy
restart: always
...
nginx-proxy-letsencrypt:
container_name: nginx-proxy-letsencrypt
image: jrcs/letsencrypt-nginx-proxy-companion
...
watchtower:
container_name: watchtower
restart: unless-stopped
image: containrrr/watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
env_file:
- ./.env.prod
command: --interval 120 --label-enable
volumes:
static_volume:
media_volume:
certs:
html:
vhost:
acme:`
This is how my logs look like:
`time="2021-12-15T10:31:21Z" level=info msg="Stopping /web (d9940153d93d) with SIGTERM"
time="2021-12-15T10:31:22Z" level=info msg="Creating /web"
time="2021-12-15T10:31:23Z" level=info msg="Removing image dbd31b664ef1"
Failed to send notification via shoutrrr (url=smtp://server%40myrepo.se:C8ZBL3_dYUK%40cMf@mymailserver.se:465/?auth=Plain&fromaddress=server%40myrepo.se&fromname=Watchtower&subject=Watchtower+updates+on+7582a1489f37&toaddresses=myemail%40gmail.com): failed to send using smtp: timed out
time="2021-12-15T10:31:34Z" level=warning msg="Could not do a head request for \"index.docker.io/myusername/myrepo:latest\", falling back to regular pull." container=/web image="index.docker.io/myusername/myrepo:latest"
time="2021-12-15T10:31:34Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:myusername/myrepo:pull\\\"\"" container=/web image="index.docker.io/myusername/myrepo:latest"
time="2021-12-15T10:31:36Z" level=warning msg="Could not do a head request for \"jrcs/letsencrypt-nginx-proxy-companion:latest\", falling back to regular pull." container=/myrepo_nginx-proxy-letsencrypt_1 image="jrcs/letsencrypt-nginx-proxy-companion:latest"
time="2021-12-15T10:31:36Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:jrcs/letsencrypt-nginx-proxy-companion:pull\\\"\"" container=/myrepo_nginx-proxy-letsencrypt_1 image="jrcs/letsencrypt-nginx-proxy-companion:latest"
time="2021-12-15T10:31:38Z" level=warning msg="Could not do a head request for \"containrrr/watchtower:latest\", falling back to regular pull." container=/myrepo_watchtower_1 image="containrrr/watchtower:latest"
time="2021-12-15T10:31:38Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:containrrr/watchtower:pull\\\"\"" container=/myrepo_watchtower_1 image="containrrr/watchtower:latest"
time="2021-12-15T10:31:40Z" level=warning msg="Could not do a head request for \"myrepo_nginx-proxy:latest\", falling back to regular pull." container=/nginx-proxy image="myrepo_nginx-proxy:latest"
time="2021-12-15T10:31:40Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:library/myrepo_nginx-proxy:pull\\\"\"" container=/nginx-proxy image="myrepo_nginx-proxy:latest"
time="2021-12-15T10:31:41Z" level=info msg="Unable to update container \"/nginx-proxy\": Error response from daemon: pull access denied for myrepo_nginx-proxy, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. Proceeding to next."
Failed to send notification via shoutrrr (url=smtp://server%40myrepo.se:C8ZBL3_dYUK%40cMf@mymailserver.se:465/?auth=Plain&fromaddress=server%40myrepo.se&fromname=Watchtower&subject=Watchtower+updates+on+7582a1489f37&toaddresses=myemail%40gmail.com): failed to send using smtp: timed out
time="2021-12-15T10:32:04Z" level=warning msg="Could not do a head request for \"index.docker.io/myusername/myrepo:latest\", falling back to regular pull." container=/web image="index.docker.io/myusername/myrepo:latest"
time="2021-12-15T10:32:04Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:myusername/myrepo:pull\\\"\"" container=/web image="index.docker.io/myusername/myrepo:latest"
time="2021-12-15T10:32:06Z" level=warning msg="Could not do a head request for \"jrcs/letsencrypt-nginx-proxy-companion:latest\", falling back to regular pull." container=/myrepo_nginx-proxy-letsencrypt_1 image="jrcs/letsencrypt-nginx-proxy-companion:latest"
time="2021-12-15T10:32:06Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:jrcs/letsencrypt-nginx-proxy-companion:pull\\\"\"" container=/myrepo_nginx-proxy-letsencrypt_1 image="jrcs/letsencrypt-nginx-proxy-companion:latest"
time="2021-12-15T10:32:08Z" level=warning msg="Could not do a head request for \"containrrr/watchtower:latest\", falling back to regular pull." container=/myrepo_watchtower_1 image="containrrr/watchtower:latest"
time="2021-12-15T10:32:08Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:containrrr/watchtower:pull\\\"\"" container=/myrepo_watchtower_1 image="containrrr/watchtower:latest"
time="2021-12-15T10:32:10Z" level=warning msg="Could not do a head request for \"myrepo_nginx-proxy:latest\", falling back to regular pull." container=/nginx-proxy image="myrepo_nginx-proxy:latest"
time="2021-12-15T10:32:10Z" level=warning msg="Reason: registry responded to head request with \"401 Unauthorized\", auth: \"Bearer realm=\\\"https://auth.docker.io/token\\\",service=\\\"registry.docker.io\\\",scope=\\\"repository:library/myrepo_nginx-proxy:pull\\\"\"" container=/nginx-proxy image="myrepo_nginx-proxy:latest"
time="2021-12-15T10:32:11Z" level=info msg="Unable to update container \"/nginx-proxy\": Error response from daemon: pull access denied for myrepo_nginx-proxy, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. Proceeding to next."
Failed to send notification via shoutrrr (url=smtp://server%40myrepo.se:C8ZBL3_dYUK%40cMf@mymailserver.se:465/?auth=Plain&fromaddress=server%40myrepo.se&fromname=Watchtower&subject=Watchtower+updates+on+7582a1489f37&toaddresses=myemail%40gmail.com): failed to send using smtp: timed out` | priority | not able to exclude containers from watchtower trying to update them i have a docker compose file with containers including the watchtower container it does a great job at updating my web container however when i check the logs for the watchtower container it s flooded with other pulls for my other containers i don t want that i tried two different ways to exclude the other containers first one is just putting the name of the only container i want it to monitor web in the command section of the watchtower container version services web container name web restart always nginx proxy container name nginx proxy restart always nginx proxy letsencrypt container name nginx proxy letsencrypt watchtower container name watchtower restart unless stopped image containrrr watchtower volumes var run docker sock var run docker sock env file env prod command interval web volumes static volume media volume certs html vhost acme this don t work i still get logs for failing to pull from all the different containers the other way i ve tried is to work with labels which don t work either version services web container name web restart always labels com centurylinklabs watchtower enable true nginx proxy container name nginx proxy restart always nginx proxy letsencrypt container name nginx proxy letsencrypt image jrcs letsencrypt nginx proxy companion watchtower container name watchtower restart unless stopped image containrrr watchtower volumes var run docker sock var run docker sock env file env prod command interval label enable volumes static volume media volume certs html vhost acme this is how my logs look like time level info msg stopping web with sigterm time level info msg creating web time level info msg removing image failed to send notification via shoutrrr url smtp server se dyuk mymailserver se auth plain fromaddress server se fromname watchtower subject watchtower updates on toaddresses myemail com failed to send using smtp timed out time level warning msg could not do a head request for index docker io myusername myrepo latest falling back to regular pull container web image index docker io myusername myrepo latest time level warning msg reason registry responded to head request with unauthorized auth bearer realm container web image index docker io myusername myrepo latest time level warning msg could not do a head request for jrcs letsencrypt nginx proxy companion latest falling back to regular pull container myrepo nginx proxy letsencrypt image jrcs letsencrypt nginx proxy companion latest time level warning msg reason registry responded to head request with unauthorized auth bearer realm container myrepo nginx proxy letsencrypt image jrcs letsencrypt nginx proxy companion latest time level warning msg could not do a head request for containrrr watchtower latest falling back to regular pull container myrepo watchtower image containrrr watchtower latest time level warning msg reason registry responded to head request with unauthorized auth bearer realm container myrepo watchtower image containrrr watchtower latest time level warning msg could not do a head request for myrepo nginx proxy latest falling back to regular pull container nginx proxy image myrepo nginx proxy latest time level warning msg reason registry responded to head request with unauthorized auth bearer realm container nginx proxy image myrepo nginx proxy latest time level info msg unable to update container nginx proxy error response from daemon pull access denied for myrepo nginx proxy repository does not exist or may require docker login denied requested access to the resource is denied proceeding to next failed to send notification via shoutrrr url smtp server se dyuk mymailserver se auth plain fromaddress server se fromname watchtower subject watchtower updates on toaddresses myemail com failed to send using smtp timed out time level warning msg could not do a head request for index docker io myusername myrepo latest falling back to regular pull container web image index docker io myusername myrepo latest time level warning msg reason registry responded to head request with unauthorized auth bearer realm container web image index docker io myusername myrepo latest time level warning msg could not do a head request for jrcs letsencrypt nginx proxy companion latest falling back to regular pull container myrepo nginx proxy letsencrypt image jrcs letsencrypt nginx proxy companion latest time level warning msg reason registry responded to head request with unauthorized auth bearer realm container myrepo nginx proxy letsencrypt image jrcs letsencrypt nginx proxy companion latest time level warning msg could not do a head request for containrrr watchtower latest falling back to regular pull container myrepo watchtower image containrrr watchtower latest time level warning msg reason registry responded to head request with unauthorized auth bearer realm container myrepo watchtower image containrrr watchtower latest time level warning msg could not do a head request for myrepo nginx proxy latest falling back to regular pull container nginx proxy image myrepo nginx proxy latest time level warning msg reason registry responded to head request with unauthorized auth bearer realm container nginx proxy image myrepo nginx proxy latest time level info msg unable to update container nginx proxy error response from daemon pull access denied for myrepo nginx proxy repository does not exist or may require docker login denied requested access to the resource is denied proceeding to next failed to send notification via shoutrrr url smtp server se dyuk mymailserver se auth plain fromaddress server se fromname watchtower subject watchtower updates on toaddresses myemail com failed to send using smtp timed out | 1 |
342,754 | 10,321,322,975 | IssuesEvent | 2019-08-31 00:53:50 | bcgov/ols-router | https://api.github.com/repos/bcgov/ols-router | opened | Add support for honouring border crossing closure times | ROUTE PLANNER api enhancement functional route planner medium priority time-dependent routing | Border crossings can close for certain periods of time, usually overnight. The time-dependent router should treat these closings in a similar way to road construction closures.
This feature is useful as an enhancement to support the TransLink Commercial Vehicle Route Planner after version 1.0 | 1.0 | Add support for honouring border crossing closure times - Border crossings can close for certain periods of time, usually overnight. The time-dependent router should treat these closings in a similar way to road construction closures.
This feature is useful as an enhancement to support the TransLink Commercial Vehicle Route Planner after version 1.0 | priority | add support for honouring border crossing closure times border crossings can close for certain periods of time usually overnight the time dependent router should treat these closings in a similar way to road construction closures this feature is useful as an enhancement to support the translink commercial vehicle route planner after version | 1 |
235,117 | 7,734,575,500 | IssuesEvent | 2018-05-27 03:30:36 | ODIQueensland/data-curator | https://api.github.com/repos/ODIQueensland/data-curator | closed | Extra scroll bar in provenance | env:MacOS est:Moderate fn:Set-Properties priority:Medium problem:Bug | ### Current Behaviour
There's an extra scroll bar in provenance. If you resize the top box, the inner scroll bar disappears
<img width="800" alt="screenshot 2018-03-29 05 55 11" src="https://user-images.githubusercontent.com/9379524/38052882-dd6cfac4-3315-11e8-9753-b9302fef0c23.png">
### Expected Behaviour
There's only 1 scroll bar
### Steps to Reproduce
1. Open Data Curator using the icon
2. Open Provenance
### Your Environment
* Data Curator version: 0.13.10
* Operating System and version: macOS High Sierra 10.13.3 | 1.0 | Extra scroll bar in provenance - ### Current Behaviour
There's an extra scroll bar in provenance. If you resize the top box, the inner scroll bar disappears
<img width="800" alt="screenshot 2018-03-29 05 55 11" src="https://user-images.githubusercontent.com/9379524/38052882-dd6cfac4-3315-11e8-9753-b9302fef0c23.png">
### Expected Behaviour
There's only 1 scroll bar
### Steps to Reproduce
1. Open Data Curator using the icon
2. Open Provenance
### Your Environment
* Data Curator version: 0.13.10
* Operating System and version: macOS High Sierra 10.13.3 | priority | extra scroll bar in provenance current behaviour there s an extra scroll bar in provenance if you resize the top box the inner scroll bar disappears img width alt screenshot src expected behaviour there s only scroll bar steps to reproduce open data curator using the icon open provenance your environment data curator version operating system and version macos high sierra | 1 |
386,801 | 11,450,718,169 | IssuesEvent | 2020-02-06 10:08:55 | sunpy/sunpy | https://api.github.com/repos/sunpy/sunpy | closed | make it easy to access the UnifiedResponse table | Effort Medium Feature Request Hacktoberfest Package Novice Priority Low net | if you want to access keys you should be able to get at the table | 1.0 | make it easy to access the UnifiedResponse table - if you want to access keys you should be able to get at the table | priority | make it easy to access the unifiedresponse table if you want to access keys you should be able to get at the table | 1 |
131,536 | 5,154,742,944 | IssuesEvent | 2017-01-15 03:01:43 | TheValarProject/AwakenDreamsClient | https://api.github.com/repos/TheValarProject/AwakenDreamsClient | opened | Some items appear backwards in hand | bug priority-medium | When rendering some items in a player's hand, they are in the opposite direction of the way they are supposed to face. Some items that most likely suffer from this issues are:
- orc swords
- hobbit axe
- orc halbard
- fell-wargrider sword
- yaznegs axe
- radagasts staff
- legolas sword
- aragorns elf knife
- bifurs spear
- rohirrim axe
The solution for now is to rotate/flip the textures. | 1.0 | Some items appear backwards in hand - When rendering some items in a player's hand, they are in the opposite direction of the way they are supposed to face. Some items that most likely suffer from this issues are:
- orc swords
- hobbit axe
- orc halbard
- fell-wargrider sword
- yaznegs axe
- radagasts staff
- legolas sword
- aragorns elf knife
- bifurs spear
- rohirrim axe
The solution for now is to rotate/flip the textures. | priority | some items appear backwards in hand when rendering some items in a player s hand they are in the opposite direction of the way they are supposed to face some items that most likely suffer from this issues are orc swords hobbit axe orc halbard fell wargrider sword yaznegs axe radagasts staff legolas sword aragorns elf knife bifurs spear rohirrim axe the solution for now is to rotate flip the textures | 1 |
593,809 | 18,017,414,602 | IssuesEvent | 2021-09-16 15:15:43 | monoai/GDAPDEV_MP | https://api.github.com/repos/monoai/GDAPDEV_MP | closed | Bosses | enhancement medium priority | We want that big bad enemy bosses with their own behaviors that will make the player have a hard time in the end of the levels | 1.0 | Bosses - We want that big bad enemy bosses with their own behaviors that will make the player have a hard time in the end of the levels | priority | bosses we want that big bad enemy bosses with their own behaviors that will make the player have a hard time in the end of the levels | 1 |
534,359 | 15,615,154,638 | IssuesEvent | 2021-03-19 18:45:02 | ita-social-projects/TeachUA | https://api.github.com/repos/ita-social-projects/TeachUA | opened | [Головна сторінка] Carousel item indicators are not aligned correctly | Priority: Medium bug | **Environment:** macOS Big Sur 11.1, Google Chrome 89.0.4
**Reproducible:** always, rarely, sometimes, etc.
**Build found:** last commit from https://speak-ukrainian.org.ua/dev/
**Steps to reproduce**
1. Go to https://speak-ukrainian.org.ua/dev/
2. Scroll down to suggested news.
3. Take a look at item indicators.
**Actual result**
Carousel item indicators are placed on the left below suggested news.
<img width="1631" alt="Знімок екрана 2021-03-19 о 19 57 30" src="https://user-images.githubusercontent.com/78917926/111828109-78cc0880-88f3-11eb-930f-804f2c7afd55.png">
**Expected result**
Carousel item indicators are centered below suggested news.
<img width="1406" alt="Знімок екрана 2021-03-19 о 19 58 17" src="https://user-images.githubusercontent.com/78917926/111828337-d1030a80-88f3-11eb-9fb6-5558d046cfd1.png">
**User story and test case links**
E.g.: "User story #108 #166
**Labels to be added**
"Bug", Priority ("pri: medium"), Severity ("severity: minor"), Type ("UI")
| 1.0 | [Головна сторінка] Carousel item indicators are not aligned correctly - **Environment:** macOS Big Sur 11.1, Google Chrome 89.0.4
**Reproducible:** always, rarely, sometimes, etc.
**Build found:** last commit from https://speak-ukrainian.org.ua/dev/
**Steps to reproduce**
1. Go to https://speak-ukrainian.org.ua/dev/
2. Scroll down to suggested news.
3. Take a look at item indicators.
**Actual result**
Carousel item indicators are placed on the left below suggested news.
<img width="1631" alt="Знімок екрана 2021-03-19 о 19 57 30" src="https://user-images.githubusercontent.com/78917926/111828109-78cc0880-88f3-11eb-930f-804f2c7afd55.png">
**Expected result**
Carousel item indicators are centered below suggested news.
<img width="1406" alt="Знімок екрана 2021-03-19 о 19 58 17" src="https://user-images.githubusercontent.com/78917926/111828337-d1030a80-88f3-11eb-9fb6-5558d046cfd1.png">
**User story and test case links**
E.g.: "User story #108 #166
**Labels to be added**
"Bug", Priority ("pri: medium"), Severity ("severity: minor"), Type ("UI")
| priority | carousel item indicators are not aligned correctly environment macos big sur google chrome reproducible always rarely sometimes etc build found last commit from steps to reproduce go to scroll down to suggested news take a look at item indicators actual result carousel item indicators are placed on the left below suggested news img width alt знімок екрана о src expected result carousel item indicators are centered below suggested news img width alt знімок екрана о src user story and test case links e g user story labels to be added bug priority pri medium severity severity minor type ui | 1 |
666,176 | 22,345,328,208 | IssuesEvent | 2022-06-15 07:15:49 | arriven/db1000n | https://api.github.com/repos/arriven/db1000n | opened | Add more stats (cpu/memory load, amount of open connections, etc.) | enhancement priority: medium | It would be both useful for monitoring and for external management of db1000n (see https://github.com/arriven/db1000n/issues/549#issuecomment-1154939869). Ideally we'd also want all of this info to be available as http endpoint
| 1.0 | Add more stats (cpu/memory load, amount of open connections, etc.) - It would be both useful for monitoring and for external management of db1000n (see https://github.com/arriven/db1000n/issues/549#issuecomment-1154939869). Ideally we'd also want all of this info to be available as http endpoint
| priority | add more stats cpu memory load amount of open connections etc it would be both useful for monitoring and for external management of see ideally we d also want all of this info to be available as http endpoint | 1 |
640,825 | 20,809,821,696 | IssuesEvent | 2022-03-18 00:24:37 | SE701-T1/frontend | https://api.github.com/repos/SE701-T1/frontend | opened | Fully organise popup component | Status: Blocked Type: Feature Priority: Medium Team: Messaging | **Describe the task that needs to be done.**
Ensure all components of the popup are present and functional
**Describe how a solution to your proposed task might look like (and any alternatives considered).**
Buttons are able to be clicked/dismiss screen, paired user is visible etc.
**Notes**
| 1.0 | Fully organise popup component - **Describe the task that needs to be done.**
Ensure all components of the popup are present and functional
**Describe how a solution to your proposed task might look like (and any alternatives considered).**
Buttons are able to be clicked/dismiss screen, paired user is visible etc.
**Notes**
| priority | fully organise popup component describe the task that needs to be done ensure all components of the popup are present and functional describe how a solution to your proposed task might look like and any alternatives considered buttons are able to be clicked dismiss screen paired user is visible etc notes | 1 |
773,126 | 27,147,033,019 | IssuesEvent | 2023-02-16 20:51:59 | aws/s2n-tls | https://api.github.com/repos/aws/s2n-tls | closed | Add support for AES-CBC Multi-buffer | type/performance priority/low size/medium | Intel reported up to 200% performance increase when using the "Multi-buffer" speed enhancements for AES-SHA-CBC in Openssl [1]. We could consider adding a "multi_buffer_encrypt" function to our s2n_cipher struct for S2N_CBC/S2N_COMPOSITE.
We'd need logic that:
1. Determines if multiblock is available on the system/libcrypto
2. Determines if the input is eligible for multiblock. It may not be worth applying this to smaller input buffers.
Resources:
[1] https://software.intel.com/en-us/articles/performance-of-multibuffer-aes-cbc-on-intel-xeon-processors-e5-v3
- https://github.com/openssl/openssl/blob/master/crypto/aes/asm/aesni-mb-x86_64.pl#L17
- https://github.com/openssl/openssl/blob/master/crypto/evp/e_aes_cbc_hmac_sha1.c#L170
- http://lkml.iu.edu/hypermail/linux/kernel/1510.3/03473.html
| 1.0 | Add support for AES-CBC Multi-buffer - Intel reported up to 200% performance increase when using the "Multi-buffer" speed enhancements for AES-SHA-CBC in Openssl [1]. We could consider adding a "multi_buffer_encrypt" function to our s2n_cipher struct for S2N_CBC/S2N_COMPOSITE.
We'd need logic that:
1. Determines if multiblock is available on the system/libcrypto
2. Determines if the input is eligible for multiblock. It may not be worth applying this to smaller input buffers.
Resources:
[1] https://software.intel.com/en-us/articles/performance-of-multibuffer-aes-cbc-on-intel-xeon-processors-e5-v3
- https://github.com/openssl/openssl/blob/master/crypto/aes/asm/aesni-mb-x86_64.pl#L17
- https://github.com/openssl/openssl/blob/master/crypto/evp/e_aes_cbc_hmac_sha1.c#L170
- http://lkml.iu.edu/hypermail/linux/kernel/1510.3/03473.html
| priority | add support for aes cbc multi buffer intel reported up to performance increase when using the multi buffer speed enhancements for aes sha cbc in openssl we could consider adding a multi buffer encrypt function to our cipher struct for cbc composite we d need logic that determines if multiblock is available on the system libcrypto determines if the input is eligible for multiblock it may not be worth applying this to smaller input buffers resources | 1 |
468,705 | 13,488,892,219 | IssuesEvent | 2020-09-11 13:10:12 | teamforus/general | https://api.github.com/repos/teamforus/general | closed | Add a welcoming pop-up | Approval: Granted Phase 1: Define Priority: Should have Scope: Medium Status: Not Planned Type: Change request | When people are using the app for the first time they need to be given some context and a short instruction regarding the use of the app. | 1.0 | Add a welcoming pop-up - When people are using the app for the first time they need to be given some context and a short instruction regarding the use of the app. | priority | add a welcoming pop up when people are using the app for the first time they need to be given some context and a short instruction regarding the use of the app | 1 |
661,627 | 22,062,373,164 | IssuesEvent | 2022-05-30 19:56:37 | aemtools/aemtools | https://api.github.com/repos/aemtools/aemtools | closed | HTL: Improve completion for component | Status: Completed Priority: Medium Type: Feature | Improve completion for `component` context object
e.g.
```
${component.properties.<caret>} <- here should be presented list of properties declared in corresponding cq:Component xml
```
Component property should contain a reference to it's declaration
Find usages triggered on component property within .content.xml file should reveal all it's usages from htl files
* [x] - Add completion for `component.properties`
* [x] - Add reference into `component.properties.property`
* [ ] - Implement `Find Usages` for component properties | 1.0 | HTL: Improve completion for component - Improve completion for `component` context object
e.g.
```
${component.properties.<caret>} <- here should be presented list of properties declared in corresponding cq:Component xml
```
Component property should contain a reference to it's declaration
Find usages triggered on component property within .content.xml file should reveal all it's usages from htl files
* [x] - Add completion for `component.properties`
* [x] - Add reference into `component.properties.property`
* [ ] - Implement `Find Usages` for component properties | priority | htl improve completion for component improve completion for component context object e g component properties here should be presented list of properties declared in corresponding cq component xml component property should contain a reference to it s declaration find usages triggered on component property within content xml file should reveal all it s usages from htl files add completion for component properties add reference into component properties property implement find usages for component properties | 1 |
598,773 | 18,251,444,674 | IssuesEvent | 2021-10-02 09:23:03 | returntocorp/semgrep | https://api.github.com/repos/returntocorp/semgrep | opened | Bad highlighting of pattern-regex matches and/or incorrect number of matches | bug priority:medium pattern:regex | **Describe the bug**
In the following example:
* There should be 3 matches corresponding to the 3 lowercase words.
* These 3 matches should be highlighted.
* The line containing the uppercase word should not be highlighted.
https://semgrep.dev/s/mjambon:regex-highlight shows this as of semgrep 0.67.0:

**What is the priority of the bug to you?**
- [ ] P0: blocking your adoption of Semgrep or workflow
- [ ] P1: important to fix or quite annoying
- [x] P2: regular bug that should get fixed
| 1.0 | Bad highlighting of pattern-regex matches and/or incorrect number of matches - **Describe the bug**
In the following example:
* There should be 3 matches corresponding to the 3 lowercase words.
* These 3 matches should be highlighted.
* The line containing the uppercase word should not be highlighted.
https://semgrep.dev/s/mjambon:regex-highlight shows this as of semgrep 0.67.0:

**What is the priority of the bug to you?**
- [ ] P0: blocking your adoption of Semgrep or workflow
- [ ] P1: important to fix or quite annoying
- [x] P2: regular bug that should get fixed
| priority | bad highlighting of pattern regex matches and or incorrect number of matches describe the bug in the following example there should be matches corresponding to the lowercase words these matches should be highlighted the line containing the uppercase word should not be highlighted shows this as of semgrep what is the priority of the bug to you blocking your adoption of semgrep or workflow important to fix or quite annoying regular bug that should get fixed | 1 |
667,247 | 22,441,012,641 | IssuesEvent | 2022-06-21 01:17:38 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio-ui] pagination is missing or cutoff on search result page | bug priority: medium validate | ### Duplicates
- [X] I have searched the existing issues
### Latest version
- [ ] The issue is in the latest released 4.0.x
- [X] The issue is in the latest released 3.1.x
### Describe the issue
If we try to add a component to our page by clicking "Searching for Existing" there is no pagination on the search result page.
Depending on the display window size, the pagination is cut off or hidden at the bottom of the page.
### Steps to reproduce
Steps:
1. Create a new site from Editorial BP
2. Update the `Article` content type to add an item selector, selecting shared content that does not specify a repository path, with the option to search.

3. Create a new article, and search for a shared component in step (2)
4. Notice that in the search result, the pagination is cutoff or hidden depending on the window size
### Relevant log output
_No response_
### Screenshots and/or videos


| 1.0 | [studio-ui] pagination is missing or cutoff on search result page - ### Duplicates
- [X] I have searched the existing issues
### Latest version
- [ ] The issue is in the latest released 4.0.x
- [X] The issue is in the latest released 3.1.x
### Describe the issue
If we try to add a component to our page by clicking "Searching for Existing" there is no pagination on the search result page.
Depending on the display window size, the pagination is cut off or hidden at the bottom of the page.
### Steps to reproduce
Steps:
1. Create a new site from Editorial BP
2. Update the `Article` content type to add an item selector, selecting shared content that does not specify a repository path, with the option to search.

3. Create a new article, and search for a shared component in step (2)
4. Notice that in the search result, the pagination is cutoff or hidden depending on the window size
### Relevant log output
_No response_
### Screenshots and/or videos


| priority | pagination is missing or cutoff on search result page duplicates i have searched the existing issues latest version the issue is in the latest released x the issue is in the latest released x describe the issue if we try to add a component to our page by clicking searching for existing there is no pagination on the search result page depending on the display window size the pagination is cut off or hidden at the bottom of the page steps to reproduce steps create a new site from editorial bp update the article content type to add an item selector selecting shared content that does not specify a repository path with the option to search create a new article and search for a shared component in step notice that in the search result the pagination is cutoff or hidden depending on the window size relevant log output no response screenshots and or videos | 1 |
555,041 | 16,446,141,587 | IssuesEvent | 2021-05-20 19:50:34 | sopra-fs21-group-03/Client | https://api.github.com/repos/sopra-fs21-group-03/Client | closed | On the LobbySelectionScreen a User can see all Lobbies and their details | medium priority task | Time estimate: 8h
This task is part of user story #2 | 1.0 | On the LobbySelectionScreen a User can see all Lobbies and their details - Time estimate: 8h
This task is part of user story #2 | priority | on the lobbyselectionscreen a user can see all lobbies and their details time estimate this task is part of user story | 1 |
723,397 | 24,895,857,391 | IssuesEvent | 2022-10-28 15:44:45 | bounswe/bounswe2022group2 | https://api.github.com/repos/bounswe/bounswe2022group2 | opened | Forntend: Adding Form Validations for Sign Up Form | priority-medium status-new feature front-end | ### Issue Description
I have implemented the initial sign up page with a form component in it, namely the sign up form. Although every main functionality is implemented, the sign up form lacks validation for input fields. Thus, I will be searching for validation methods in React and after finding the appropriate one, I will be adding validation feature for the sign up form.
For the validation guidelines, I decided to use below rules:
* Username: Should be at least 3 characters long
* E-Mail: Should be an appropriate email (xxx@xxx.xxx)
* Password: Should be between 6-20 chars long and contain at least one lowercase, one uppercase letter, and one number
* Confirm password: Should be same as the password
* KVKK Confirmation: Must be agreed
### Step Details
Steps that will be performed:
- [ ] Conduct research on possible form input validation methods in React.
- [ ] Determine an appropriate validation method.
- [ ] Validate username
- [ ] Validate email
- [ ] Validate password
- [ ] Validate password conformation
- [ ] Validate KVKK confirmation
### Final Actions
After I find an appropriate method, I will create a separate branch on our frontend development branch and then do the implementation of the validation. When everything is set and done, I will be creating a pull request accordingly. Upon approval, the changes will be live on our development branch.
### Deadline of the Issue
28.10.2022 - Friday - 23.59
### Reviewer
Koray Tekin
### Deadline for the Review
29.10.2022 - Saturday - 23.59 | 1.0 | Forntend: Adding Form Validations for Sign Up Form - ### Issue Description
I have implemented the initial sign up page with a form component in it, namely the sign up form. Although every main functionality is implemented, the sign up form lacks validation for input fields. Thus, I will be searching for validation methods in React and after finding the appropriate one, I will be adding validation feature for the sign up form.
For the validation guidelines, I decided to use below rules:
* Username: Should be at least 3 characters long
* E-Mail: Should be an appropriate email (xxx@xxx.xxx)
* Password: Should be between 6-20 chars long and contain at least one lowercase, one uppercase letter, and one number
* Confirm password: Should be same as the password
* KVKK Confirmation: Must be agreed
### Step Details
Steps that will be performed:
- [ ] Conduct research on possible form input validation methods in React.
- [ ] Determine an appropriate validation method.
- [ ] Validate username
- [ ] Validate email
- [ ] Validate password
- [ ] Validate password conformation
- [ ] Validate KVKK confirmation
### Final Actions
After I find an appropriate method, I will create a separate branch on our frontend development branch and then do the implementation of the validation. When everything is set and done, I will be creating a pull request accordingly. Upon approval, the changes will be live on our development branch.
### Deadline of the Issue
28.10.2022 - Friday - 23.59
### Reviewer
Koray Tekin
### Deadline for the Review
29.10.2022 - Saturday - 23.59 | priority | forntend adding form validations for sign up form issue description i have implemented the initial sign up page with a form component in it namely the sign up form although every main functionality is implemented the sign up form lacks validation for input fields thus i will be searching for validation methods in react and after finding the appropriate one i will be adding validation feature for the sign up form for the validation guidelines i decided to use below rules username should be at least characters long e mail should be an appropriate email xxx xxx xxx password should be between chars long and contain at least one lowercase one uppercase letter and one number confirm password should be same as the password kvkk confirmation must be agreed step details steps that will be performed conduct research on possible form input validation methods in react determine an appropriate validation method validate username validate email validate password validate password conformation validate kvkk confirmation final actions after i find an appropriate method i will create a separate branch on our frontend development branch and then do the implementation of the validation when everything is set and done i will be creating a pull request accordingly upon approval the changes will be live on our development branch deadline of the issue friday reviewer koray tekin deadline for the review saturday | 1 |
238,274 | 7,777,425,385 | IssuesEvent | 2018-06-05 11:10:21 | medic/medic-webapp | https://api.github.com/repos/medic/medic-webapp | opened | Make sure we can't infinitely recurse in the lineage shared library | Priority: 2 - Medium Status: 1 - Triaged Type: Improvement | Due to issues like https://github.com/medic/medic-webapp/issues/4596 and https://github.com/medic/medic-webapp/issues/4487 we should make sure, however unlikely, that we have guards in place to have us cleanly throw errors if we detect that we're hitting an infinite loop.
The alternative is that the app hangs / crashes, which isn't good!
Simplest is probably just to put depth guards on potentially problematic loops and throw if the number gets outrageously high (eg > 100 or something). | 1.0 | Make sure we can't infinitely recurse in the lineage shared library - Due to issues like https://github.com/medic/medic-webapp/issues/4596 and https://github.com/medic/medic-webapp/issues/4487 we should make sure, however unlikely, that we have guards in place to have us cleanly throw errors if we detect that we're hitting an infinite loop.
The alternative is that the app hangs / crashes, which isn't good!
Simplest is probably just to put depth guards on potentially problematic loops and throw if the number gets outrageously high (eg > 100 or something). | priority | make sure we can t infinitely recurse in the lineage shared library due to issues like and we should make sure however unlikely that we have guards in place to have us cleanly throw errors if we detect that we re hitting an infinite loop the alternative is that the app hangs crashes which isn t good simplest is probably just to put depth guards on potentially problematic loops and throw if the number gets outrageously high eg or something | 1 |
770,533 | 27,043,980,223 | IssuesEvent | 2023-02-13 08:22:30 | unicef-drp/GeoSight | https://api.github.com/repos/unicef-drp/GeoSight | reopened | Ability to define labels for indicator layers | :clock8: 8 - 8 hours at least 🦂 Medium Priority BATCH 2 SOM | Ability to define labels for indicator layers.
| 1.0 | Ability to define labels for indicator layers - Ability to define labels for indicator layers.
| priority | ability to define labels for indicator layers ability to define labels for indicator layers | 1 |
593,244 | 17,952,951,278 | IssuesEvent | 2021-09-13 01:31:38 | ckiplab/ckip-transformers | https://api.github.com/repos/ckiplab/ckip-transformers | closed | When I use model inference, why do the embedding generated by the same sentence are different every time | Priority: Medium Status: 2-Progressing Type: Question | this is my code

First generated embedding :

Second generated embedding :

You can see that the sentence embedding generated twice are different | 1.0 | When I use model inference, why do the embedding generated by the same sentence are different every time - this is my code

First generated embedding :

Second generated embedding :

You can see that the sentence embedding generated twice are different | priority | when i use model inference why do the embedding generated by the same sentence are different every time this is my code first generated embedding : second generated embedding : you can see that the sentence embedding generated twice are different | 1 |
577,127 | 17,103,857,957 | IssuesEvent | 2021-07-09 14:51:43 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio-ui] UI doesn't reflect the status of the publisher when disabled | bug priority: medium | ## Describe the bug
If Publisher is Stopped and a user does a publish operation(by commit, bulk, right-click and publish), the UI shows the publisher as queued and ready
## To Reproduce
Steps to reproduce the behavior:
1. Create a site from Editorial
2. Do a bulk publish and wait till it finishes
3. Stop the publishing and make sure the publishing status icon turns to red and the `Publishing stopped` message appears
4. Make a change and Approve and Publish
## Expected behavior
The UI should show the publisher as disabled (and red) and allow the user to start it.
## Screenshots
N/A
## Logs
N/A
## Specs
### Version
`3.1.15`
### OS
Any
### Browser
Any
## Additional context
N/A
| 1.0 | [studio-ui] UI doesn't reflect the status of the publisher when disabled - ## Describe the bug
If Publisher is Stopped and a user does a publish operation(by commit, bulk, right-click and publish), the UI shows the publisher as queued and ready
## To Reproduce
Steps to reproduce the behavior:
1. Create a site from Editorial
2. Do a bulk publish and wait till it finishes
3. Stop the publishing and make sure the publishing status icon turns to red and the `Publishing stopped` message appears
4. Make a change and Approve and Publish
## Expected behavior
The UI should show the publisher as disabled (and red) and allow the user to start it.
## Screenshots
N/A
## Logs
N/A
## Specs
### Version
`3.1.15`
### OS
Any
### Browser
Any
## Additional context
N/A
| priority | ui doesn t reflect the status of the publisher when disabled describe the bug if publisher is stopped and a user does a publish operation by commit bulk right click and publish the ui shows the publisher as queued and ready to reproduce steps to reproduce the behavior create a site from editorial do a bulk publish and wait till it finishes stop the publishing and make sure the publishing status icon turns to red and the publishing stopped message appears make a change and approve and publish expected behavior the ui should show the publisher as disabled and red and allow the user to start it screenshots n a logs n a specs version os any browser any additional context n a | 1 |
31,850 | 2,740,422,764 | IssuesEvent | 2015-04-21 01:47:28 | x360ce/x360ce | https://api.github.com/repos/x360ce/x360ce | closed | No vibration in Alpha Protocol | bug imported Priority-Medium | _From [CYB3Ri...@gmail.com](https://code.google.com/u/108781845056426023051/) on August 03, 2010 13:36:53_
What steps will reproduce the problem? 1. Playing the game with vibration enabled What is the expected output? What do you see instead? Rumble effects when shooting or taking hit. What version of the product are you using? On what operating system? XBOX 360 Controller Emulator 2.0.2.66 Beta 2 (XInput 3.2.0.133)
Win7 x64 What gamepad are you using? On what version of drivers? Saitek PS 2700 Driver 6.5.6.7
_Original issue: http://code.google.com/p/x360ce/issues/detail?id=49_ | 1.0 | No vibration in Alpha Protocol - _From [CYB3Ri...@gmail.com](https://code.google.com/u/108781845056426023051/) on August 03, 2010 13:36:53_
What steps will reproduce the problem? 1. Playing the game with vibration enabled What is the expected output? What do you see instead? Rumble effects when shooting or taking hit. What version of the product are you using? On what operating system? XBOX 360 Controller Emulator 2.0.2.66 Beta 2 (XInput 3.2.0.133)
Win7 x64 What gamepad are you using? On what version of drivers? Saitek PS 2700 Driver 6.5.6.7
_Original issue: http://code.google.com/p/x360ce/issues/detail?id=49_ | priority | no vibration in alpha protocol from on august what steps will reproduce the problem playing the game with vibration enabled what is the expected output what do you see instead rumble effects when shooting or taking hit what version of the product are you using on what operating system xbox controller emulator beta xinput what gamepad are you using on what version of drivers saitek ps driver original issue | 1 |
16,858 | 2,615,125,315 | IssuesEvent | 2015-03-01 05:53:24 | chrsmith/google-api-java-client | https://api.github.com/repos/chrsmith/google-api-java-client | opened | Need a sample of uploading doc to Google Docs on the Android platform. | auto-migrated Priority-Medium Type-Sample | ```
Which Google API and version (e.g. Google Calendar Data API version 2)?
google-api-java-client-1.6.0-beta
What format (e.g. JSON, Atom)?
Atom
What Authentation (e.g. OAuth, OAuth 2, ClientLogin)?
OAuth2
Java environment (e.g. Java 6, Android 2.3, App Engine)?
Java 6, Android 2.2
External references, such as API reference guide?
Please provide any additional information below.
```
Original issue reported on code.google.com by `kunal.ka...@yahoo.com` on 27 Mar 2012 at 12:21 | 1.0 | Need a sample of uploading doc to Google Docs on the Android platform. - ```
Which Google API and version (e.g. Google Calendar Data API version 2)?
google-api-java-client-1.6.0-beta
What format (e.g. JSON, Atom)?
Atom
What Authentation (e.g. OAuth, OAuth 2, ClientLogin)?
OAuth2
Java environment (e.g. Java 6, Android 2.3, App Engine)?
Java 6, Android 2.2
External references, such as API reference guide?
Please provide any additional information below.
```
Original issue reported on code.google.com by `kunal.ka...@yahoo.com` on 27 Mar 2012 at 12:21 | priority | need a sample of uploading doc to google docs on the android platform which google api and version e g google calendar data api version google api java client beta what format e g json atom atom what authentation e g oauth oauth clientlogin java environment e g java android app engine java android external references such as api reference guide please provide any additional information below original issue reported on code google com by kunal ka yahoo com on mar at | 1 |
30,644 | 2,724,490,087 | IssuesEvent | 2015-04-14 18:07:45 | CruxFramework/crux-widgets | https://api.github.com/repos/CruxFramework/crux-widgets | closed | Serialization problems in DTOs with @Subtype annotation | bug imported Priority-Medium | _From [samuel@cruxframework.org](https://code.google.com/u/samuel@cruxframework.org/) on March 14, 2014 16:07:40_
If we have type A with @Subtype annotation, and an inherited class passed as argument to a function this will work fine, but if we pass the type A itself to this function we'll have a serialization problem.
_Original issue: http://code.google.com/p/crux-framework/issues/detail?id=332_ | 1.0 | Serialization problems in DTOs with @Subtype annotation - _From [samuel@cruxframework.org](https://code.google.com/u/samuel@cruxframework.org/) on March 14, 2014 16:07:40_
If we have type A with @Subtype annotation, and an inherited class passed as argument to a function this will work fine, but if we pass the type A itself to this function we'll have a serialization problem.
_Original issue: http://code.google.com/p/crux-framework/issues/detail?id=332_ | priority | serialization problems in dtos with subtype annotation from on march if we have type a with subtype annotation and an inherited class passed as argument to a function this will work fine but if we pass the type a itself to this function we ll have a serialization problem original issue | 1 |
369,699 | 10,916,488,517 | IssuesEvent | 2019-11-21 13:28:08 | department-of-veterans-affairs/caseflow | https://api.github.com/repos/department-of-veterans-affairs/caseflow | closed | Document Viewer | Zoom level consistency | Ready-for-Dev bug-medium-priority caseflow-reader priority-low whiskey | ## Story
As a user, if I hit the zoom out button twice and then zoom in again twice, it won't show the same amount of documents from the previous views.
## Description
Per our story time discussion, seems like the end points are different from where it's being zoomed in and out from.
## AC
- [ ] Make sure that document viewer shows the same amount of documents at the same zoom level. | 2.0 | Document Viewer | Zoom level consistency - ## Story
As a user, if I hit the zoom out button twice and then zoom in again twice, it won't show the same amount of documents from the previous views.
## Description
Per our story time discussion, seems like the end points are different from where it's being zoomed in and out from.
## AC
- [ ] Make sure that document viewer shows the same amount of documents at the same zoom level. | priority | document viewer zoom level consistency story as a user if i hit the zoom out button twice and then zoom in again twice it won t show the same amount of documents from the previous views description per our story time discussion seems like the end points are different from where it s being zoomed in and out from ac make sure that document viewer shows the same amount of documents at the same zoom level | 1 |
540,049 | 15,798,870,289 | IssuesEvent | 2021-04-02 19:37:12 | oresat/CANopen-monitor | https://api.github.com/repos/oresat/CANopen-monitor | closed | Add EDS/OD file at run time | medium priority | As a user, I want the ability to add EDS or OD files to the application at runtime and have it automatically store (copy) the new file over to the application's cache (~/.cache/canopen-monitor/ as defined in the package init).
Something like a popup window prompt for a path to an EDS may be fine. | 1.0 | Add EDS/OD file at run time - As a user, I want the ability to add EDS or OD files to the application at runtime and have it automatically store (copy) the new file over to the application's cache (~/.cache/canopen-monitor/ as defined in the package init).
Something like a popup window prompt for a path to an EDS may be fine. | priority | add eds od file at run time as a user i want the ability to add eds or od files to the application at runtime and have it automatically store copy the new file over to the application s cache cache canopen monitor as defined in the package init something like a popup window prompt for a path to an eds may be fine | 1 |
388,793 | 11,492,644,852 | IssuesEvent | 2020-02-11 21:24:34 | HabitRPG/habitica | https://api.github.com/repos/HabitRPG/habitica | closed | Profiles are not displaying avatars or health/mana/experience bars | help wanted priority: important section: Avatar/User Modal type: medium level coding type: notify helpers | Profiles are not showing avatars or health/mana/experience bars. Example from a person who reported:

This appears to be only affecting users without tiers, but not *all* users without tiers, according to the reports.
Reported on Firefox, Chrome, Explorer and Edge.
EDIT: See this comment for the fix: https://github.com/HabitRPG/habitica/issues/11830#issuecomment-583717977
We need a quick fix for this so if a contributor would like to take it on, that's great, but please be willing to submit a pull request in a day or less. We'd still like you to test the fix on your own local install though to ensure that there's no other inadvertent bugs. :) | 1.0 | Profiles are not displaying avatars or health/mana/experience bars - Profiles are not showing avatars or health/mana/experience bars. Example from a person who reported:

This appears to be only affecting users without tiers, but not *all* users without tiers, according to the reports.
Reported on Firefox, Chrome, Explorer and Edge.
EDIT: See this comment for the fix: https://github.com/HabitRPG/habitica/issues/11830#issuecomment-583717977
We need a quick fix for this so if a contributor would like to take it on, that's great, but please be willing to submit a pull request in a day or less. We'd still like you to test the fix on your own local install though to ensure that there's no other inadvertent bugs. :) | priority | profiles are not displaying avatars or health mana experience bars profiles are not showing avatars or health mana experience bars example from a person who reported this appears to be only affecting users without tiers but not all users without tiers according to the reports reported on firefox chrome explorer and edge edit see this comment for the fix we need a quick fix for this so if a contributor would like to take it on that s great but please be willing to submit a pull request in a day or less we d still like you to test the fix on your own local install though to ensure that there s no other inadvertent bugs | 1 |
438,577 | 12,641,512,953 | IssuesEvent | 2020-06-16 06:20:36 | buddyboss/buddyboss-platform | https://api.github.com/repos/buddyboss/buddyboss-platform | closed | A lot of preview-image-folder-... folders in uploads directory | bug priority: medium | **Describe the bug**
`/wp-content/uploads/` folder has a lot of `preview-image-folder-...` folders. They all have the same content (preview of PDF file) and have 777 (full access) privileges.
**To Reproduce**
Steps to reproduce the behavior:
1. Try to upload PDF file to Documents
2. Open `/wp-content/uploads/` folder in file manager
3. You will see +3 new similar folders (`preview-image-folder-...`) with the same content (size also the same)

**Expected behavior**
I thinks it's a temporary folders and they are should be deleted.
Because in `bb_documents` folder already have generated images for preview for uploaded PDF files.

Or if they are really needed, then they should be located in the `bb_documents` folder and it should be only one folder for one file (not 3 identical folders).
- buddyboss-platform 1.4.1 | 1.0 | A lot of preview-image-folder-... folders in uploads directory - **Describe the bug**
`/wp-content/uploads/` folder has a lot of `preview-image-folder-...` folders. They all have the same content (preview of PDF file) and have 777 (full access) privileges.
**To Reproduce**
Steps to reproduce the behavior:
1. Try to upload PDF file to Documents
2. Open `/wp-content/uploads/` folder in file manager
3. You will see +3 new similar folders (`preview-image-folder-...`) with the same content (size also the same)

**Expected behavior**
I thinks it's a temporary folders and they are should be deleted.
Because in `bb_documents` folder already have generated images for preview for uploaded PDF files.

Or if they are really needed, then they should be located in the `bb_documents` folder and it should be only one folder for one file (not 3 identical folders).
- buddyboss-platform 1.4.1 | priority | a lot of preview image folder folders in uploads directory describe the bug wp content uploads folder has a lot of preview image folder folders they all have the same content preview of pdf file and have full access privileges to reproduce steps to reproduce the behavior try to upload pdf file to documents open wp content uploads folder in file manager you will see new similar folders preview image folder with the same content size also the same expected behavior i thinks it s a temporary folders and they are should be deleted because in bb documents folder already have generated images for preview for uploaded pdf files or if they are really needed then they should be located in the bb documents folder and it should be only one folder for one file not identical folders buddyboss platform | 1 |
417,242 | 12,157,600,289 | IssuesEvent | 2020-04-25 22:53:46 | GeyserMC/Geyser | https://api.github.com/repos/GeyserMC/Geyser | closed | Geyser List Bug | Confirmed Bug Priority: Medium Work in Progress | <!--- Please follow this format COMPLETELY and make sure the bug you are reporting has not been reported yet. Reports should contain as much information or context as possible to help us find the problem. Simply creating an issue on a vague topic will not help us at all, and if you are unsure if something should belong here, please contact us on [Discord](http://discord.geysermc.org).-->
<!--- Issues pertaining to connection problem, or anything of that covered on the [Common Issues](https://github.com/GeyserMC/Geyser/wiki/Common-Issues) do not belong here and only clutter this issue tracker. -->
**Describe the bug**
<!--- A clear and concise description of what the bug is. -->
Sometimes when bedrock players leave, they aren't removed from the Geyser list.
**To Reproduce**
<!--- Steps to reproduce the behavior: -->
<!--- 1. Go to '...' -->
<!--- 2. Click on '....' -->
<!--- 3. Scroll down to '....' -->
<!--- 4. See error -->
idk what causes it atm so I'll do more testing
**Expected behavior**
<!--- A clear and concise description of what you expected to happen. -->
A disconnected Player through Geyser should no longer appear in "/geyser list"
**Screenshots / Videos**
<!--- If applicable, add screenshots to help explain your problem. -->
**Server Version**
<!--- Give us the exact output from /version. Saying "latest" does not help us at all. -->
[Sat, 25. Apr 2020 10:25:54 BST INFO] This server is running Paper version git-Paper-211 (MC: 1.15.2) (Implementing API version 1.15.2-R0.1-SNAPSHOT)
[Sat, 25. Apr 2020 10:25:54 BST INFO] You are 3 version(s) behind
**Geyser Version**
<!--- Give us the exact build number as well as branch if applicable. Saying "latest" does not help us at all. Please also include if you are running the standalone version, or specify which plugin version you are using. If your issue is a connection problem, please specify if you are using the Floodgate plugin. -->
Build Number: 70
Geyser Type: Plugin
Branch Type: master
**Minecraft: Bedrock Edition Version**
<!-- The version of your Minecraft: Bedrock Edition client you tested with. -->
1.14.6(0)
**Additional Context**
<!--- Add any other context about the problem here. Include any plugins on the Minecraft server that may cause problems. --->
| 1.0 | Geyser List Bug - <!--- Please follow this format COMPLETELY and make sure the bug you are reporting has not been reported yet. Reports should contain as much information or context as possible to help us find the problem. Simply creating an issue on a vague topic will not help us at all, and if you are unsure if something should belong here, please contact us on [Discord](http://discord.geysermc.org).-->
<!--- Issues pertaining to connection problem, or anything of that covered on the [Common Issues](https://github.com/GeyserMC/Geyser/wiki/Common-Issues) do not belong here and only clutter this issue tracker. -->
**Describe the bug**
<!--- A clear and concise description of what the bug is. -->
Sometimes when bedrock players leave, they aren't removed from the Geyser list.
**To Reproduce**
<!--- Steps to reproduce the behavior: -->
<!--- 1. Go to '...' -->
<!--- 2. Click on '....' -->
<!--- 3. Scroll down to '....' -->
<!--- 4. See error -->
idk what causes it atm so I'll do more testing
**Expected behavior**
<!--- A clear and concise description of what you expected to happen. -->
A disconnected Player through Geyser should no longer appear in "/geyser list"
**Screenshots / Videos**
<!--- If applicable, add screenshots to help explain your problem. -->
**Server Version**
<!--- Give us the exact output from /version. Saying "latest" does not help us at all. -->
[Sat, 25. Apr 2020 10:25:54 BST INFO] This server is running Paper version git-Paper-211 (MC: 1.15.2) (Implementing API version 1.15.2-R0.1-SNAPSHOT)
[Sat, 25. Apr 2020 10:25:54 BST INFO] You are 3 version(s) behind
**Geyser Version**
<!--- Give us the exact build number as well as branch if applicable. Saying "latest" does not help us at all. Please also include if you are running the standalone version, or specify which plugin version you are using. If your issue is a connection problem, please specify if you are using the Floodgate plugin. -->
Build Number: 70
Geyser Type: Plugin
Branch Type: master
**Minecraft: Bedrock Edition Version**
<!-- The version of your Minecraft: Bedrock Edition client you tested with. -->
1.14.6(0)
**Additional Context**
<!--- Add any other context about the problem here. Include any plugins on the Minecraft server that may cause problems. --->
| priority | geyser list bug please follow this format completely and make sure the bug you are reporting has not been reported yet reports should contain as much information or context as possible to help us find the problem simply creating an issue on a vague topic will not help us at all and if you are unsure if something should belong here please contact us on describe the bug sometimes when bedrock players leave they aren t removed from the geyser list to reproduce idk what causes it atm so i ll do more testing expected behavior a disconnected player through geyser should no longer appear in geyser list screenshots videos server version this server is running paper version git paper mc implementing api version snapshot you are version s behind geyser version build number geyser type plugin branch type master minecraft bedrock edition version additional context | 1 |
249,091 | 7,953,784,285 | IssuesEvent | 2018-07-12 03:48:45 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | USER ISSUE: Crash when place stone atop of storage | Medium Priority | **Version:** 0.7.1.2 beta
**Steps to Reproduce:**
I have 6 stockpiles in my world, 4 of them right next to each other and next to my mine where i store tailings. since i need a lot of space for tailing deposit. I started to put stones on top of the stockpile when suddenly the stones stopped to be placed and instead vanished. a second later the game crashed
**Expected behavior:**
place the stone bits in front of me
**Actual behavior:**
decreased the stone count, vanished the stone and then the game crashed. | 1.0 | USER ISSUE: Crash when place stone atop of storage - **Version:** 0.7.1.2 beta
**Steps to Reproduce:**
I have 6 stockpiles in my world, 4 of them right next to each other and next to my mine where i store tailings. since i need a lot of space for tailing deposit. I started to put stones on top of the stockpile when suddenly the stones stopped to be placed and instead vanished. a second later the game crashed
**Expected behavior:**
place the stone bits in front of me
**Actual behavior:**
decreased the stone count, vanished the stone and then the game crashed. | priority | user issue crash when place stone atop of storage version beta steps to reproduce i have stockpiles in my world of them right next to each other and next to my mine where i store tailings since i need a lot of space for tailing deposit i started to put stones on top of the stockpile when suddenly the stones stopped to be placed and instead vanished a second later the game crashed expected behavior place the stone bits in front of me actual behavior decreased the stone count vanished the stone and then the game crashed | 1 |
689,394 | 23,618,720,649 | IssuesEvent | 2022-08-24 18:19:45 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [YSQL] Add new tserver flag for bulk loading | kind/enhancement area/ysql priority/medium | Jira Link: [DB-1560](https://yugabyte.atlassian.net/browse/DB-1560)
### Description
We will add a new tserver flag (**yb-bulk-mode**) in YugabyteDB . This flag will in-turn enable the following session variables for `copy` command automatically. This will avoid any application changes for optimized bulk loading.
- **yb_enable_upsert_mode**
- Type -- Session variable,
- Default Value -- false ,
- Description -- Allows to skip duplicate primary key check. Improve performance but more important when the copy command needs to be restarted to ignore the duplicate key errors.
- **session_replication_role**
- Type -- Session variable,
- Default Value -- origin,
- Description -- Setting this value to replica allows disabling of FK and triggers checking for that session . only primary key check is skipped. FK check, triggers, index writes will happen the same as insert happens for the first time. | 1.0 | [YSQL] Add new tserver flag for bulk loading - Jira Link: [DB-1560](https://yugabyte.atlassian.net/browse/DB-1560)
### Description
We will add a new tserver flag (**yb-bulk-mode**) in YugabyteDB . This flag will in-turn enable the following session variables for `copy` command automatically. This will avoid any application changes for optimized bulk loading.
- **yb_enable_upsert_mode**
- Type -- Session variable,
- Default Value -- false ,
- Description -- Allows to skip duplicate primary key check. Improve performance but more important when the copy command needs to be restarted to ignore the duplicate key errors.
- **session_replication_role**
- Type -- Session variable,
- Default Value -- origin,
- Description -- Setting this value to replica allows disabling of FK and triggers checking for that session . only primary key check is skipped. FK check, triggers, index writes will happen the same as insert happens for the first time. | priority | add new tserver flag for bulk loading jira link description we will add a new tserver flag yb bulk mode in yugabytedb this flag will in turn enable the following session variables for copy command automatically this will avoid any application changes for optimized bulk loading yb enable upsert mode type session variable default value false description allows to skip duplicate primary key check improve performance but more important when the copy command needs to be restarted to ignore the duplicate key errors session replication role type session variable default value origin description setting this value to replica allows disabling of fk and triggers checking for that session only primary key check is skipped fk check triggers index writes will happen the same as insert happens for the first time | 1 |
594,564 | 18,048,364,997 | IssuesEvent | 2021-09-19 09:44:38 | google/mozc | https://api.github.com/repos/google/mozc | closed | Checklist for wrong yomigana words | Priority-Medium auto-migrated OpSys-All Type-Conversion | ```
I made a checklist for wrong yomigana words.
e.g.
南新宿 aaa みなみしんじゅく #CN
南新宿 mmm みなみしんしゅく 2315 2315 5680
単行本化 aaa たんこうぼんか #T30
単行本化 mmm たんこうほんげ 2244 2325 6335
占守島 aaa しゅむしゅとう #T35
占守島 mmm うらないもりとう 2249 2333 7020
卵性 aaa らんせい #T35
卵性 mmm たまごせい 2249 2328 6544
同一人物 aaa どういつじんぶつ #T35
同一人物 mmm どういちじんぶつ 2999 2249 4919
女子大生 aaa じょしだいせい #T35
女子大生 mmm じょしたいせい 2249 2328 7438
aaa = anthy
mmm = mozc
It is a hint to fix broken yomigana words.
```
Original issue reported on code.google.com by `heathros...@gmail.com` on 1 Nov 2010 at 5:14
Attachments:
- [mozc-checklist-wrong-yomigana.txt.7z](https://storage.googleapis.com/google-code-attachments/mozc/issue-63/comment-0/mozc-checklist-wrong-yomigana.txt.7z)
| 1.0 | Checklist for wrong yomigana words - ```
I made a checklist for wrong yomigana words.
e.g.
南新宿 aaa みなみしんじゅく #CN
南新宿 mmm みなみしんしゅく 2315 2315 5680
単行本化 aaa たんこうぼんか #T30
単行本化 mmm たんこうほんげ 2244 2325 6335
占守島 aaa しゅむしゅとう #T35
占守島 mmm うらないもりとう 2249 2333 7020
卵性 aaa らんせい #T35
卵性 mmm たまごせい 2249 2328 6544
同一人物 aaa どういつじんぶつ #T35
同一人物 mmm どういちじんぶつ 2999 2249 4919
女子大生 aaa じょしだいせい #T35
女子大生 mmm じょしたいせい 2249 2328 7438
aaa = anthy
mmm = mozc
It is a hint to fix broken yomigana words.
```
Original issue reported on code.google.com by `heathros...@gmail.com` on 1 Nov 2010 at 5:14
Attachments:
- [mozc-checklist-wrong-yomigana.txt.7z](https://storage.googleapis.com/google-code-attachments/mozc/issue-63/comment-0/mozc-checklist-wrong-yomigana.txt.7z)
| priority | checklist for wrong yomigana words i made a checklist for wrong yomigana words e g 南新宿 aaa みなみしんじゅく cn 南新宿 mmm みなみしんしゅく 単行本化 aaa たんこうぼんか 単行本化 mmm たんこうほんげ 占守島 aaa しゅむしゅとう 占守島 mmm うらないもりとう 卵性 aaa らんせい 卵性 mmm たまごせい 同一人物 aaa どういつじんぶつ 同一人物 mmm どういちじんぶつ 女子大生 aaa じょしだいせい 女子大生 mmm じょしたいせい aaa anthy mmm mozc it is a hint to fix broken yomigana words original issue reported on code google com by heathros gmail com on nov at attachments | 1 |
671,017 | 22,719,148,057 | IssuesEvent | 2022-07-06 06:37:17 | gladiaio/gladia | https://api.github.com/repos/gladiaio/gladia | closed | GET request on model should not return a list of string but a list of dict describing each model | type: enhancement good first issue priority: medium status : confirmed | ## What is the underlying problem you're trying to solve?
<!--
By making this change, what are you hoping to improve?
Why would this change make the Gladia experience better?
Are there any current solutions that are inefficient or frustrating?
-->
When requesting a route we could need to know other informations in addition to the model name (i.e inference time, engine)
## Describe the ideal solution you'd like
<!--
In the ideal scenario, there are more than enough resources to solve any problem. Describe what this solution would look like if the resources were available.
-->
Change the behaviour of submodules to handle a list of dict
| 1.0 | GET request on model should not return a list of string but a list of dict describing each model - ## What is the underlying problem you're trying to solve?
<!--
By making this change, what are you hoping to improve?
Why would this change make the Gladia experience better?
Are there any current solutions that are inefficient or frustrating?
-->
When requesting a route we could need to know other informations in addition to the model name (i.e inference time, engine)
## Describe the ideal solution you'd like
<!--
In the ideal scenario, there are more than enough resources to solve any problem. Describe what this solution would look like if the resources were available.
-->
Change the behaviour of submodules to handle a list of dict
| priority | get request on model should not return a list of string but a list of dict describing each model what is the underlying problem you re trying to solve by making this change what are you hoping to improve why would this change make the gladia experience better are there any current solutions that are inefficient or frustrating when requesting a route we could need to know other informations in addition to the model name i e inference time engine describe the ideal solution you d like in the ideal scenario there are more than enough resources to solve any problem describe what this solution would look like if the resources were available change the behaviour of submodules to handle a list of dict | 1 |
3,121 | 2,537,119,441 | IssuesEvent | 2015-01-26 18:26:02 | bireme/proethos | https://api.github.com/repos/bireme/proethos | opened | Creacion de nuevo usuario y uso de opcion "olvido contrasenha" no funciona | priority 2 (medium) severity 2 (significant impact) | Cree un Nuevo usuario para realizer pruebas y recibir emails, etc... pero el Sistema no reconoce el Nuevo usuario (aunque el Sistema dice que el usuario ha sido validado) y al ir a la opcion de olvido contrasenha, el Sistema no envia ningun correo con la info de la contrasenha. | 1.0 | Creacion de nuevo usuario y uso de opcion "olvido contrasenha" no funciona - Cree un Nuevo usuario para realizer pruebas y recibir emails, etc... pero el Sistema no reconoce el Nuevo usuario (aunque el Sistema dice que el usuario ha sido validado) y al ir a la opcion de olvido contrasenha, el Sistema no envia ningun correo con la info de la contrasenha. | priority | creacion de nuevo usuario y uso de opcion olvido contrasenha no funciona cree un nuevo usuario para realizer pruebas y recibir emails etc pero el sistema no reconoce el nuevo usuario aunque el sistema dice que el usuario ha sido validado y al ir a la opcion de olvido contrasenha el sistema no envia ningun correo con la info de la contrasenha | 1 |
820,005 | 30,757,528,200 | IssuesEvent | 2023-07-29 08:47:00 | code4romania/asistent-medical-comunitar | https://api.github.com/repos/code4romania/asistent-medical-comunitar | closed | [Beneficiari/Gospodării] change ''Vezi household'' modal screen title | medium-priority | **Describe the bug**
Wrong modal screen title. When you open an individual household you can notice that the modal screen title is ''Vezi household''
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Listă beneficiari section
2. Go to Gospodării tab
3. Click on a household
4. Notice the modal screen title

**Expected behavior**
Change modal screen title from ''Vezi household'' to ''Vezi gospodărie''
| 1.0 | [Beneficiari/Gospodării] change ''Vezi household'' modal screen title - **Describe the bug**
Wrong modal screen title. When you open an individual household you can notice that the modal screen title is ''Vezi household''
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Listă beneficiari section
2. Go to Gospodării tab
3. Click on a household
4. Notice the modal screen title

**Expected behavior**
Change modal screen title from ''Vezi household'' to ''Vezi gospodărie''
| priority | change vezi household modal screen title describe the bug wrong modal screen title when you open an individual household you can notice that the modal screen title is vezi household to reproduce steps to reproduce the behavior go to listă beneficiari section go to gospodării tab click on a household notice the modal screen title expected behavior change modal screen title from vezi household to vezi gospodărie | 1 |
772,743 | 27,134,164,529 | IssuesEvent | 2023-02-16 12:00:27 | Financial-Instruments-Mini/Project_BE | https://api.github.com/repos/Financial-Instruments-Mini/Project_BE | closed | [feat] 관심 상품 목록 조회, 신청 상품 목록 조회 | Status: On Hold Priority: Medium For: API | ## Description (설명)
마이페이지에서 확인가능한 유저 본인이 신청하고, 관심등록했던 상품 조회 기능을 구현한다.
ResponseDTO가 동일하여 함께 구현한다.
## Tasks(New feature)
- [x] 상품 목록 조회에 필요한 dto 생성
- [x] 관심 상품 목록 조회 api
- [x] 신청 상품 목록 조회 api
- [x] 테스트
## References
[link text]()
| 1.0 | [feat] 관심 상품 목록 조회, 신청 상품 목록 조회 - ## Description (설명)
마이페이지에서 확인가능한 유저 본인이 신청하고, 관심등록했던 상품 조회 기능을 구현한다.
ResponseDTO가 동일하여 함께 구현한다.
## Tasks(New feature)
- [x] 상품 목록 조회에 필요한 dto 생성
- [x] 관심 상품 목록 조회 api
- [x] 신청 상품 목록 조회 api
- [x] 테스트
## References
[link text]()
| priority | 관심 상품 목록 조회 신청 상품 목록 조회 description 설명 마이페이지에서 확인가능한 유저 본인이 신청하고 관심등록했던 상품 조회 기능을 구현한다 responsedto가 동일하여 함께 구현한다 tasks new feature 상품 목록 조회에 필요한 dto 생성 관심 상품 목록 조회 api 신청 상품 목록 조회 api 테스트 references | 1 |
579,587 | 17,195,267,911 | IssuesEvent | 2021-07-16 16:22:59 | MaibornWolff/codecharta | https://api.github.com/repos/MaibornWolff/codecharta | closed | Show the numbers always in the distribution bar | UX / UI difficulty:low javascript pr-visualization priority:medium | # Feature request
<Please note by far the quickest way to get a new feature is to file a Pull Request.>
<We will consider your request but it may be closed,>
<if it's something we're not actively planning to work on>
<or it does not match our visison of this software.>
## Description
As user I want display of the numbers in the distribution bar so that I can see the numbers at one glance and I don't have to click on the bar.
## Acceptance criteria
- display of numbers is located in the distribution bar (as shown in the image)
- if the bar of one language is to small for the display of the numbers the display is hidden in a tooltip (as shown in the image)
- if the user clicks on the bar the numbers change from percentage to absolute or from absolute to percentage.

| 1.0 | Show the numbers always in the distribution bar - # Feature request
<Please note by far the quickest way to get a new feature is to file a Pull Request.>
<We will consider your request but it may be closed,>
<if it's something we're not actively planning to work on>
<or it does not match our visison of this software.>
## Description
As user I want display of the numbers in the distribution bar so that I can see the numbers at one glance and I don't have to click on the bar.
## Acceptance criteria
- display of numbers is located in the distribution bar (as shown in the image)
- if the bar of one language is to small for the display of the numbers the display is hidden in a tooltip (as shown in the image)
- if the user clicks on the bar the numbers change from percentage to absolute or from absolute to percentage.

| priority | show the numbers always in the distribution bar feature request description as user i want display of the numbers in the distribution bar so that i can see the numbers at one glance and i don t have to click on the bar acceptance criteria display of numbers is located in the distribution bar as shown in the image if the bar of one language is to small for the display of the numbers the display is hidden in a tooltip as shown in the image if the user clicks on the bar the numbers change from percentage to absolute or from absolute to percentage | 1 |
88,660 | 3,783,650,662 | IssuesEvent | 2016-03-19 08:28:47 | cs2103jan2016-v15-1j/main | https://api.github.com/repos/cs2103jan2016-v15-1j/main | opened | Syntax for searching | priority.medium | My proposal:
`search {filter} {filter} ...`: can use as many filters as the user wanted
`{filter}` can be:
* `task(s)`: search for tasks only
* `event(s)`: search for events only
* `before {date}`: note that for event this will include events starting before the specified date but ending after it
* `after {date}`: note that for event this will include events starting before the specified date but ending after it
* `on {date}`: note that for event this will include events starting before the specified date and ending after it
* `before {time}`
* `after {time}`
* `before {datetime}`
* `after {datetime}`
* `contain(s) {words}`: search for certain keywords
_Note: before and after are strict, i.e. after today means excluding today_
What do you think? @cs2103jan2016-v15-1j/developers | 1.0 | Syntax for searching - My proposal:
`search {filter} {filter} ...`: can use as many filters as the user wanted
`{filter}` can be:
* `task(s)`: search for tasks only
* `event(s)`: search for events only
* `before {date}`: note that for event this will include events starting before the specified date but ending after it
* `after {date}`: note that for event this will include events starting before the specified date but ending after it
* `on {date}`: note that for event this will include events starting before the specified date and ending after it
* `before {time}`
* `after {time}`
* `before {datetime}`
* `after {datetime}`
* `contain(s) {words}`: search for certain keywords
_Note: before and after are strict, i.e. after today means excluding today_
What do you think? @cs2103jan2016-v15-1j/developers | priority | syntax for searching my proposal search filter filter can use as many filters as the user wanted filter can be task s search for tasks only event s search for events only before date note that for event this will include events starting before the specified date but ending after it after date note that for event this will include events starting before the specified date but ending after it on date note that for event this will include events starting before the specified date and ending after it before time after time before datetime after datetime contain s words search for certain keywords note before and after are strict i e after today means excluding today what do you think developers | 1 |
99,899 | 4,074,298,997 | IssuesEvent | 2016-05-28 10:29:18 | BugBusterSWE/userManual | https://api.github.com/repos/BugBusterSWE/userManual | opened | Sistemare immagini | priority:medium | *Documento in cui si trova il problema*:
Manuale Utente
Activity #11
*Descrizione del problema*:
Sistemare immagini
Link task: [https://bugbusters.teamwork.com/tasks/6938659](https://bugbusters.teamwork.com/tasks/6938659) | 1.0 | Sistemare immagini - *Documento in cui si trova il problema*:
Manuale Utente
Activity #11
*Descrizione del problema*:
Sistemare immagini
Link task: [https://bugbusters.teamwork.com/tasks/6938659](https://bugbusters.teamwork.com/tasks/6938659) | priority | sistemare immagini documento in cui si trova il problema manuale utente activity descrizione del problema sistemare immagini link task | 1 |
694,479 | 23,815,635,489 | IssuesEvent | 2022-09-05 06:22:22 | Co-Laon/claon-server | https://api.github.com/repos/Co-Laon/claon-server | closed | 사용자 정보 수정 | refactor priority: medium | ## Describe
주요 활동 지역 삭제 및 신체 정보 추가
## (Optional) Solution
Please describe your preferred solution
-
| 1.0 | 사용자 정보 수정 - ## Describe
주요 활동 지역 삭제 및 신체 정보 추가
## (Optional) Solution
Please describe your preferred solution
-
| priority | 사용자 정보 수정 describe 주요 활동 지역 삭제 및 신체 정보 추가 optional solution please describe your preferred solution | 1 |
391,576 | 11,575,930,972 | IssuesEvent | 2020-02-21 10:47:23 | ahmedkaludi/accelerated-mobile-pages | https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages | closed | Create an option for DNS prefetching which allows users to enter URLs to prefetch. | NEXT UPDATE [Priority: MEDIUM] enhancement | Create an option for DNS prefetch which allows users to enter URLs which they need to prefetch.
Or any other automated method which does not require to enter URLs manually.
Ref:- https://secure.helpscout.net/conversation/1031536963/102298?folderId=3243584
| 1.0 | Create an option for DNS prefetching which allows users to enter URLs to prefetch. - Create an option for DNS prefetch which allows users to enter URLs which they need to prefetch.
Or any other automated method which does not require to enter URLs manually.
Ref:- https://secure.helpscout.net/conversation/1031536963/102298?folderId=3243584
| priority | create an option for dns prefetching which allows users to enter urls to prefetch create an option for dns prefetch which allows users to enter urls which they need to prefetch or any other automated method which does not require to enter urls manually ref | 1 |
54,184 | 3,060,567,420 | IssuesEvent | 2015-08-14 21:30:54 | aic-collections/aicdams-lakeshore | https://api.github.com/repos/aic-collections/aicdams-lakeshore | closed | HOLD: All Work metadata is viewable while editing | MEDIUM priority | As an authenticated user
When I am on the edit work page
Then I should be able to view all the fields | 1.0 | HOLD: All Work metadata is viewable while editing - As an authenticated user
When I am on the edit work page
Then I should be able to view all the fields | priority | hold all work metadata is viewable while editing as an authenticated user when i am on the edit work page then i should be able to view all the fields | 1 |
178,205 | 6,599,892,781 | IssuesEvent | 2017-09-17 03:07:44 | honestbleeps/Reddit-Enhancement-Suite | https://api.github.com/repos/honestbleeps/Reddit-Enhancement-Suite | closed | Multireddit navigation popup disappears before you can hover over it | Difficulty-2_Medium Priority-2_A litte more Interest | Repro steps:
- visit a multi
- hover over the currently selected multi
- move mouse towards popup
This could be a Firefox only issue, @andytuba mentioned on irc:
> <andytuba> but in chrome it works fine for me if i move my mouse directly from the tab onto the menu
Browser: Firefox 49.0.1 x64, RES: 5.0.2.
| 1.0 | Multireddit navigation popup disappears before you can hover over it - Repro steps:
- visit a multi
- hover over the currently selected multi
- move mouse towards popup
This could be a Firefox only issue, @andytuba mentioned on irc:
> <andytuba> but in chrome it works fine for me if i move my mouse directly from the tab onto the menu
Browser: Firefox 49.0.1 x64, RES: 5.0.2.
| priority | multireddit navigation popup disappears before you can hover over it repro steps visit a multi hover over the currently selected multi move mouse towards popup this could be a firefox only issue andytuba mentioned on irc but in chrome it works fine for me if i move my mouse directly from the tab onto the menu browser firefox res | 1 |
426,254 | 12,369,927,242 | IssuesEvent | 2020-05-18 15:58:48 | geosolutions-it/MapStore2-C028 | https://api.github.com/repos/geosolutions-it/MapStore2-C028 | opened | ELK Training | Priority: Medium | - Possible use cases and samples: how to use a dashboard to catch up with errors and identify performance issues
- Doc for instance and services management
- Others? TBD
| 1.0 | ELK Training - - Possible use cases and samples: how to use a dashboard to catch up with errors and identify performance issues
- Doc for instance and services management
- Others? TBD
| priority | elk training possible use cases and samples how to use a dashboard to catch up with errors and identify performance issues doc for instance and services management others tbd | 1 |
16,723 | 2,615,122,425 | IssuesEvent | 2015-03-01 05:49:42 | chrsmith/google-api-java-client | https://api.github.com/repos/chrsmith/google-api-java-client | opened | POST request on youtube-jsonc-sample | auto-migrated Priority-Medium Type-Sample | ```
Which Google API and version (e.g. Google Calendar Data API version 2)? YouTube
API
What format (e.g. JSON, Atom)?
Any format that works
What Authentation (e.g. OAuth, OAuth 2, ClientLogin)?
ClientLogin
Java environment (e.g. Java 6, Android 2.3, App Engine)?
Java 6
External references, such as API reference guide?
Please provide any additional information below.
The one and only YouTube sample lacks any POST request to the API, like one to
create a playlist. I'd be glad if this is added to the sample, it would help us
a lot!
Thanks,
```
Original issue reported on code.google.com by `helderga...@gmail.com` on 17 Sep 2011 at 9:17 | 1.0 | POST request on youtube-jsonc-sample - ```
Which Google API and version (e.g. Google Calendar Data API version 2)? YouTube
API
What format (e.g. JSON, Atom)?
Any format that works
What Authentation (e.g. OAuth, OAuth 2, ClientLogin)?
ClientLogin
Java environment (e.g. Java 6, Android 2.3, App Engine)?
Java 6
External references, such as API reference guide?
Please provide any additional information below.
The one and only YouTube sample lacks any POST request to the API, like one to
create a playlist. I'd be glad if this is added to the sample, it would help us
a lot!
Thanks,
```
Original issue reported on code.google.com by `helderga...@gmail.com` on 17 Sep 2011 at 9:17 | priority | post request on youtube jsonc sample which google api and version e g google calendar data api version youtube api what format e g json atom any format that works what authentation e g oauth oauth clientlogin clientlogin java environment e g java android app engine java external references such as api reference guide please provide any additional information below the one and only youtube sample lacks any post request to the api like one to create a playlist i d be glad if this is added to the sample it would help us a lot thanks original issue reported on code google com by helderga gmail com on sep at | 1 |
529,297 | 15,386,036,757 | IssuesEvent | 2021-03-03 07:35:31 | openmsupply/mobile | https://api.github.com/repos/openmsupply/mobile | closed | Vaccine->Sensor: Sensor code is showing previous value even if its left blank/empty | Bug: development Effort: medium Module: vaccines Priority: normal | ## Describe the bug
Sensor code is showing previous value even if its left blank/empty.
### To reproduce
Steps to reproduce the behavior:
1. Go to Vaccine -> Sensor -> Add Sensor
2. Enter details Sensor name and Sensor code . Click save
3. Remove the sensor. Try adding same sensor with different sensor name and Sensor code (can be left blank as well)
4. See error. Sensor Code shows exisiting old value.
https://user-images.githubusercontent.com/58979436/109124783-6e46a500-7773-11eb-930b-7cc8604d64da.mp4
https://user-images.githubusercontent.com/58979436/109124899-8caca080-7773-11eb-8aa0-1d4364bb0542.mp4
### Expected behaviour
Sensor code should be updated and reflect the updated value
### Proposed Solution
Leave if you don't know how to fix/implement. Edit this issue description and explain here if you know the best path of implementing the fix within the codebase.
### Version and device info
- App version: v7.0.0 RC7
- Tablet model: Lenovo
- OS version: 8.1
### Additional context
Add any other context about the problem here.
| 1.0 | Vaccine->Sensor: Sensor code is showing previous value even if its left blank/empty - ## Describe the bug
Sensor code is showing previous value even if its left blank/empty.
### To reproduce
Steps to reproduce the behavior:
1. Go to Vaccine -> Sensor -> Add Sensor
2. Enter details Sensor name and Sensor code . Click save
3. Remove the sensor. Try adding same sensor with different sensor name and Sensor code (can be left blank as well)
4. See error. Sensor Code shows exisiting old value.
https://user-images.githubusercontent.com/58979436/109124783-6e46a500-7773-11eb-930b-7cc8604d64da.mp4
https://user-images.githubusercontent.com/58979436/109124899-8caca080-7773-11eb-8aa0-1d4364bb0542.mp4
### Expected behaviour
Sensor code should be updated and reflect the updated value
### Proposed Solution
Leave if you don't know how to fix/implement. Edit this issue description and explain here if you know the best path of implementing the fix within the codebase.
### Version and device info
- App version: v7.0.0 RC7
- Tablet model: Lenovo
- OS version: 8.1
### Additional context
Add any other context about the problem here.
| priority | vaccine sensor sensor code is showing previous value even if its left blank empty describe the bug sensor code is showing previous value even if its left blank empty to reproduce steps to reproduce the behavior go to vaccine sensor add sensor enter details sensor name and sensor code click save remove the sensor try adding same sensor with different sensor name and sensor code can be left blank as well see error sensor code shows exisiting old value expected behaviour sensor code should be updated and reflect the updated value proposed solution leave if you don t know how to fix implement edit this issue description and explain here if you know the best path of implementing the fix within the codebase version and device info app version tablet model lenovo os version additional context add any other context about the problem here | 1 |
354,345 | 10,565,876,163 | IssuesEvent | 2019-10-05 14:49:25 | OperationCode/resources_api | https://api.github.com/repos/OperationCode/resources_api | closed | CONTRIBUTING.md file doesn't include docker | Hacktoberfest Priority: Medium good first issue | The CONTRIBUTING.md file has a list of technologies the project uses, but it's outdated. You actually don't need Postgres installed because we use docker now, but you definitely need docker installed, etc. That whole part of the file could use some updating with the latest information about the repo, and possibly more "getting started" stuff surrounding docker. | 1.0 | CONTRIBUTING.md file doesn't include docker - The CONTRIBUTING.md file has a list of technologies the project uses, but it's outdated. You actually don't need Postgres installed because we use docker now, but you definitely need docker installed, etc. That whole part of the file could use some updating with the latest information about the repo, and possibly more "getting started" stuff surrounding docker. | priority | contributing md file doesn t include docker the contributing md file has a list of technologies the project uses but it s outdated you actually don t need postgres installed because we use docker now but you definitely need docker installed etc that whole part of the file could use some updating with the latest information about the repo and possibly more getting started stuff surrounding docker | 1 |
593,489 | 18,009,127,471 | IssuesEvent | 2021-09-16 06:14:21 | inverse-inc/packetfence | https://api.github.com/repos/inverse-inc/packetfence | opened | Creating a new EAP profile doesn't generate symlinks in /usr/local/pf/conf/certmanager/ | Type: Bug Priority: Medium | **Describe the bug**
If you create a new EAP profile and assign it to a REALM, restart of RADIUS services failed because symlinks related to new EAP profile in `/usr/local/pf/conf/certmanager/` are not generated by `pfcertmanager` until you restart it.
**To Reproduce**
Steps to reproduce the behavior:
1. Create a new EAP profile (by cloning default EAP profile)
2. Assign new EAP profile to DEFAULT and NULL realms
3. Restart RADIUS services
=> You got following error when running RADIUS command at foreground:
```
Unable to check file "/usr/local/pf/conf/certmanager/radius_default-copy_tls-common-copy.key": No such file or directory
/usr/local/pf/raddb/mods-enabled/eap[864]: Failed parsing configuration item "private_key_file"
rlm_eap_peap: Failed initializing SSL context
rlm_eap (default-copy): Failed to initialise rlm_eap_peap
/usr/local/pf/raddb/mods-enabled/eap[19]: Instantiation failed for module "default-copy"
```
**Expected behavior**
New symlinks should be automatically created when creating a new EAP profile
**Additional context**
I think it's a bug because when reading https://www.packetfence.org/doc/PacketFence_Installation_Guide.html#_radius_eap_profiles, I didn't see any mention of a `pfcertmanager` restart.
**Workaround**
Restart `pfcertmanager` before restarting RADIUS services. | 1.0 | Creating a new EAP profile doesn't generate symlinks in /usr/local/pf/conf/certmanager/ - **Describe the bug**
If you create a new EAP profile and assign it to a REALM, restart of RADIUS services failed because symlinks related to new EAP profile in `/usr/local/pf/conf/certmanager/` are not generated by `pfcertmanager` until you restart it.
**To Reproduce**
Steps to reproduce the behavior:
1. Create a new EAP profile (by cloning default EAP profile)
2. Assign new EAP profile to DEFAULT and NULL realms
3. Restart RADIUS services
=> You got following error when running RADIUS command at foreground:
```
Unable to check file "/usr/local/pf/conf/certmanager/radius_default-copy_tls-common-copy.key": No such file or directory
/usr/local/pf/raddb/mods-enabled/eap[864]: Failed parsing configuration item "private_key_file"
rlm_eap_peap: Failed initializing SSL context
rlm_eap (default-copy): Failed to initialise rlm_eap_peap
/usr/local/pf/raddb/mods-enabled/eap[19]: Instantiation failed for module "default-copy"
```
**Expected behavior**
New symlinks should be automatically created when creating a new EAP profile
**Additional context**
I think it's a bug because when reading https://www.packetfence.org/doc/PacketFence_Installation_Guide.html#_radius_eap_profiles, I didn't see any mention of a `pfcertmanager` restart.
**Workaround**
Restart `pfcertmanager` before restarting RADIUS services. | priority | creating a new eap profile doesn t generate symlinks in usr local pf conf certmanager describe the bug if you create a new eap profile and assign it to a realm restart of radius services failed because symlinks related to new eap profile in usr local pf conf certmanager are not generated by pfcertmanager until you restart it to reproduce steps to reproduce the behavior create a new eap profile by cloning default eap profile assign new eap profile to default and null realms restart radius services you got following error when running radius command at foreground unable to check file usr local pf conf certmanager radius default copy tls common copy key no such file or directory usr local pf raddb mods enabled eap failed parsing configuration item private key file rlm eap peap failed initializing ssl context rlm eap default copy failed to initialise rlm eap peap usr local pf raddb mods enabled eap instantiation failed for module default copy expected behavior new symlinks should be automatically created when creating a new eap profile additional context i think it s a bug because when reading i didn t see any mention of a pfcertmanager restart workaround restart pfcertmanager before restarting radius services | 1 |
667,664 | 22,495,767,977 | IssuesEvent | 2022-06-23 07:25:52 | TencentBlueKing/bk-iam-saas | https://api.github.com/repos/TencentBlueKing/bk-iam-saas | opened | [产品需求] 超级管理员可以查看各个系统的注册信息 | Type: Enhancement Layer: SaaS Priority: Medium Size: S backlog | 场景: 用户注册信息有问题, 例如回调接口注册错误导致的报错, 需要确认注册的什么地址
目前只能通过后台 db 或者查询 api 获取
需求来源: 运维 | 1.0 | [产品需求] 超级管理员可以查看各个系统的注册信息 - 场景: 用户注册信息有问题, 例如回调接口注册错误导致的报错, 需要确认注册的什么地址
目前只能通过后台 db 或者查询 api 获取
需求来源: 运维 | priority | 超级管理员可以查看各个系统的注册信息 场景 用户注册信息有问题 例如回调接口注册错误导致的报错 需要确认注册的什么地址 目前只能通过后台 db 或者查询 api 获取 需求来源 运维 | 1 |
602,701 | 18,497,588,885 | IssuesEvent | 2021-10-19 10:19:38 | GrottoCenter/Grottocenter3 | https://api.github.com/repos/GrottoCenter/Grottocenter3 | closed | [ORGANIZATION SEARCH] Undefined name | Type: Bug Priority: Medium | Quand je choisi une organisation dans la liste (pour définir l'éditeur) certaines organisation apparaissentndifféremment

Sur l'image c'est le cas de la société quebecoise de spéléo
si je la sélectionne alors elle apparait comme "undefined". J'ai l'impression qu'il manque quelque chose en base de données pour certaines organisations | 1.0 | [ORGANIZATION SEARCH] Undefined name - Quand je choisi une organisation dans la liste (pour définir l'éditeur) certaines organisation apparaissentndifféremment

Sur l'image c'est le cas de la société quebecoise de spéléo
si je la sélectionne alors elle apparait comme "undefined". J'ai l'impression qu'il manque quelque chose en base de données pour certaines organisations | priority | undefined name quand je choisi une organisation dans la liste pour définir l éditeur certaines organisation apparaissentndifféremment sur l image c est le cas de la société quebecoise de spéléo si je la sélectionne alors elle apparait comme undefined j ai l impression qu il manque quelque chose en base de données pour certaines organisations | 1 |
189,406 | 6,797,316,227 | IssuesEvent | 2017-11-01 22:18:29 | minio/minio | https://api.github.com/repos/minio/minio | closed | Explore alternatives for browser ux | priority: medium | What could we use instead of react (in case license issue with react does not resolve). | 1.0 | Explore alternatives for browser ux - What could we use instead of react (in case license issue with react does not resolve). | priority | explore alternatives for browser ux what could we use instead of react in case license issue with react does not resolve | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.