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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
739,339 | 25,592,316,031 | IssuesEvent | 2022-12-01 13:53:20 | apache/airflow | https://api.github.com/repos/apache/airflow | closed | `SQLColumnCheckOperator` failures after upgrading to `common-sql==1.3.0` | kind:bug area:providers priority:medium | ### Apache Airflow Provider(s)
common-sql
### Versions of Apache Airflow Providers
apache-airflow-providers-google==8.2.0
apache-airflow-providers-http==4.0.0
apache-airflow-providers-salesforce==5.0.0
apache-airflow-providers-slack==5.1.0
apache-airflow-providers-snowflake==3.2.0
Issue:
apache-airflow-providers-common-sql==1.3.0
### Apache Airflow version
2.4.3
### Operating System
Debian GNU/Linux 11 (bullseye)
### Deployment
Astronomer
### Deployment details
_No response_
### What happened
Problem occurred when upgrading from common-sql=1.2.0 to common-sql=1.3.0
Getting a `KEY_ERROR` when running a unique_check and null_check on a column.
1.3.0 log:
<img width="1609" alt="Screen Shot 2022-11-28 at 2 01 20 PM" src="https://user-images.githubusercontent.com/15257610/204390144-97ae35b7-1a2c-4ee1-9c12-4f3940047cde.png">
1.2.0 log:
<img width="1501" alt="Screen Shot 2022-11-28 at 2 00 15 PM" src="https://user-images.githubusercontent.com/15257610/204389994-7e8eae17-a346-41ac-84c4-9de4be71af20.png">
### What you think should happen instead
Potential causes:
- seems to be indexing based on the test query column `COL_NAME` instead of the table column `STRIPE_ID`
- the `record` from the test changed types went from a tuple to a list of dictionaries.
- no `tolerance` is specified for these tests, so `.get('tolerance')` looks like it will cause an error without a default specified like `.get('tolerance', None)`
Expected behavior:
- these tests continue to pass with the upgrade
- `tolerance` is not a required key.
### How to reproduce
```
from datetime import datetime
from airflow import DAG
from airflow.providers.snowflake.operators.snowflake import SnowflakeOperator
from airflow.providers.common.sql.operators.sql import SQLColumnCheckOperator
my_conn_id = "snowflake_default"
default_args={"conn_id": my_conn_id}
with DAG(
dag_id="airflow_providers_example",
schedule=None,
start_date=datetime(2022, 11, 27),
default_args=default_args,
) as dag:
create_table = SnowflakeOperator(
task_id="create_table",
sql=""" CREATE OR REPLACE TABLE testing AS (
SELECT
1 AS row_num,
'not null' AS field
UNION ALL
SELECT
2 AS row_num,
'test' AS field
UNION ALL
SELECT
3 AS row_num,
'test 2' AS field
)""",
)
column_checks = SQLColumnCheckOperator(
task_id="column_checks",
table="testing",
column_mapping={
"field": {"unique_check": {"equal_to": 0}, "null_check": {"equal_to": 0}}
},
)
create_table >> column_checks
```
### Anything else
_No response_
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
| 1.0 | `SQLColumnCheckOperator` failures after upgrading to `common-sql==1.3.0` - ### Apache Airflow Provider(s)
common-sql
### Versions of Apache Airflow Providers
apache-airflow-providers-google==8.2.0
apache-airflow-providers-http==4.0.0
apache-airflow-providers-salesforce==5.0.0
apache-airflow-providers-slack==5.1.0
apache-airflow-providers-snowflake==3.2.0
Issue:
apache-airflow-providers-common-sql==1.3.0
### Apache Airflow version
2.4.3
### Operating System
Debian GNU/Linux 11 (bullseye)
### Deployment
Astronomer
### Deployment details
_No response_
### What happened
Problem occurred when upgrading from common-sql=1.2.0 to common-sql=1.3.0
Getting a `KEY_ERROR` when running a unique_check and null_check on a column.
1.3.0 log:
<img width="1609" alt="Screen Shot 2022-11-28 at 2 01 20 PM" src="https://user-images.githubusercontent.com/15257610/204390144-97ae35b7-1a2c-4ee1-9c12-4f3940047cde.png">
1.2.0 log:
<img width="1501" alt="Screen Shot 2022-11-28 at 2 00 15 PM" src="https://user-images.githubusercontent.com/15257610/204389994-7e8eae17-a346-41ac-84c4-9de4be71af20.png">
### What you think should happen instead
Potential causes:
- seems to be indexing based on the test query column `COL_NAME` instead of the table column `STRIPE_ID`
- the `record` from the test changed types went from a tuple to a list of dictionaries.
- no `tolerance` is specified for these tests, so `.get('tolerance')` looks like it will cause an error without a default specified like `.get('tolerance', None)`
Expected behavior:
- these tests continue to pass with the upgrade
- `tolerance` is not a required key.
### How to reproduce
```
from datetime import datetime
from airflow import DAG
from airflow.providers.snowflake.operators.snowflake import SnowflakeOperator
from airflow.providers.common.sql.operators.sql import SQLColumnCheckOperator
my_conn_id = "snowflake_default"
default_args={"conn_id": my_conn_id}
with DAG(
dag_id="airflow_providers_example",
schedule=None,
start_date=datetime(2022, 11, 27),
default_args=default_args,
) as dag:
create_table = SnowflakeOperator(
task_id="create_table",
sql=""" CREATE OR REPLACE TABLE testing AS (
SELECT
1 AS row_num,
'not null' AS field
UNION ALL
SELECT
2 AS row_num,
'test' AS field
UNION ALL
SELECT
3 AS row_num,
'test 2' AS field
)""",
)
column_checks = SQLColumnCheckOperator(
task_id="column_checks",
table="testing",
column_mapping={
"field": {"unique_check": {"equal_to": 0}, "null_check": {"equal_to": 0}}
},
)
create_table >> column_checks
```
### Anything else
_No response_
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
| priority | sqlcolumncheckoperator failures after upgrading to common sql apache airflow provider s common sql versions of apache airflow providers apache airflow providers google apache airflow providers http apache airflow providers salesforce apache airflow providers slack apache airflow providers snowflake issue apache airflow providers common sql apache airflow version operating system debian gnu linux bullseye deployment astronomer deployment details no response what happened problem occurred when upgrading from common sql to common sql getting a key error when running a unique check and null check on a column log img width alt screen shot at pm src log img width alt screen shot at pm src what you think should happen instead potential causes seems to be indexing based on the test query column col name instead of the table column stripe id the record from the test changed types went from a tuple to a list of dictionaries no tolerance is specified for these tests so get tolerance looks like it will cause an error without a default specified like get tolerance none expected behavior these tests continue to pass with the upgrade tolerance is not a required key how to reproduce from datetime import datetime from airflow import dag from airflow providers snowflake operators snowflake import snowflakeoperator from airflow providers common sql operators sql import sqlcolumncheckoperator my conn id snowflake default default args conn id my conn id with dag dag id airflow providers example schedule none start date datetime default args default args as dag create table snowflakeoperator task id create table sql create or replace table testing as select as row num not null as field union all select as row num test as field union all select as row num test as field column checks sqlcolumncheckoperator task id column checks table testing column mapping field unique check equal to null check equal to create table column checks anything else no response are you willing to submit pr yes i am willing to submit a pr code of conduct i agree to follow this project s | 1 |
667,727 | 22,498,665,477 | IssuesEvent | 2022-06-23 09:47:42 | inverse-inc/packetfence | https://api.github.com/repos/inverse-inc/packetfence | closed | captive-portal: adjust timeout to handle alarms correctly | Type: Bug Priority: Medium | **Describe the bug**
I'm pasting here what @julsemaan described regarding that issue:
> The code we have that sets an alarm: https://github.com/inverse-inc/packetfence/blob/dcad5965b8bb527ca19e20765b40411511c736e6/html/captive-portal/lib/captiveportal.pm#L52-L73
> This line is problematic: https://github.com/inverse-inc/packetfence/blob/devel/conf/httpd.conf.d/httpd.portal.tt.example#L111
> After 5 seconds, the request can timeout in Apache mod_perl but the alarm is still setup in Catalyst. 10 seconds after, the alarm is fired in Catalyst but the code to catch it isn't active anymore (killed after the 5 seconds) and the alarm bubbles up to the parent process
>
> We need to make the Apache timeout a value of captive_portal.request_timeout + 5 seconds so that the Catalyst code always has a chance to run before Apache kills the process
**Additional context**
This is what I see in `httpd.portal-error` when this issue occured:
```
Jun 20 16:32:54 packetfence httpd_portal_err: [Mon Jun 20 16:32:54.446558 2022] [perl:error] [pid 22162] [client 127.0.0.1:55382] Apache2::RequestIO::read: (70007) The timeout specified has expired at (eval 4288) line 5
Jun 20 16:32:54 packetfence httpd_portal_err: [Mon Jun 20 16:32:54.509008 2022] [perl:error] [pid 21225] [client 127.0.0.1:55384] Apache2::RequestIO::read: (70007) The timeout specified has expired at (eval 4678) line 5
Jun 20 16:32:54 packetfence httpd_portal_err: [Mon Jun 20 16:32:54.612337 2022] [perl:error] [pid 21759] [client 127.0.0.1:55386] Apache2::RequestIO::read: (70007) The timeout specified has expired at (eval 5046) line 5
[..]
Jun 20 16:33:05 packetfence httpd_portal_err: [Mon Jun 20 16:33:05.375322 2022] [core:notice] [pid 10615] AH00052: child pid 22162 exit signal Alarm clock (14)
```
Results: `httpd.portal` is not working anymore and need to be restarted. | 1.0 | captive-portal: adjust timeout to handle alarms correctly - **Describe the bug**
I'm pasting here what @julsemaan described regarding that issue:
> The code we have that sets an alarm: https://github.com/inverse-inc/packetfence/blob/dcad5965b8bb527ca19e20765b40411511c736e6/html/captive-portal/lib/captiveportal.pm#L52-L73
> This line is problematic: https://github.com/inverse-inc/packetfence/blob/devel/conf/httpd.conf.d/httpd.portal.tt.example#L111
> After 5 seconds, the request can timeout in Apache mod_perl but the alarm is still setup in Catalyst. 10 seconds after, the alarm is fired in Catalyst but the code to catch it isn't active anymore (killed after the 5 seconds) and the alarm bubbles up to the parent process
>
> We need to make the Apache timeout a value of captive_portal.request_timeout + 5 seconds so that the Catalyst code always has a chance to run before Apache kills the process
**Additional context**
This is what I see in `httpd.portal-error` when this issue occured:
```
Jun 20 16:32:54 packetfence httpd_portal_err: [Mon Jun 20 16:32:54.446558 2022] [perl:error] [pid 22162] [client 127.0.0.1:55382] Apache2::RequestIO::read: (70007) The timeout specified has expired at (eval 4288) line 5
Jun 20 16:32:54 packetfence httpd_portal_err: [Mon Jun 20 16:32:54.509008 2022] [perl:error] [pid 21225] [client 127.0.0.1:55384] Apache2::RequestIO::read: (70007) The timeout specified has expired at (eval 4678) line 5
Jun 20 16:32:54 packetfence httpd_portal_err: [Mon Jun 20 16:32:54.612337 2022] [perl:error] [pid 21759] [client 127.0.0.1:55386] Apache2::RequestIO::read: (70007) The timeout specified has expired at (eval 5046) line 5
[..]
Jun 20 16:33:05 packetfence httpd_portal_err: [Mon Jun 20 16:33:05.375322 2022] [core:notice] [pid 10615] AH00052: child pid 22162 exit signal Alarm clock (14)
```
Results: `httpd.portal` is not working anymore and need to be restarted. | priority | captive portal adjust timeout to handle alarms correctly describe the bug i m pasting here what julsemaan described regarding that issue the code we have that sets an alarm this line is problematic after seconds the request can timeout in apache mod perl but the alarm is still setup in catalyst seconds after the alarm is fired in catalyst but the code to catch it isn t active anymore killed after the seconds and the alarm bubbles up to the parent process we need to make the apache timeout a value of captive portal request timeout seconds so that the catalyst code always has a chance to run before apache kills the process additional context this is what i see in httpd portal error when this issue occured jun packetfence httpd portal err requestio read the timeout specified has expired at eval line jun packetfence httpd portal err requestio read the timeout specified has expired at eval line jun packetfence httpd portal err requestio read the timeout specified has expired at eval line jun packetfence httpd portal err child pid exit signal alarm clock results httpd portal is not working anymore and need to be restarted | 1 |
131,327 | 5,146,178,768 | IssuesEvent | 2017-01-13 00:02:53 | Innovate-Inc/EMEMetadataToolKit | https://api.github.com/repos/Innovate-Inc/EMEMetadataToolKit | closed | Streamline editing of constraints | Priority: Medium | Seems highly desirable to have a single-button option for "public" records that populates the license and use constraint.
Also need to make validation rule requiring license and use constraint per technical spec - should confirm license is URL.
| 1.0 | Streamline editing of constraints - Seems highly desirable to have a single-button option for "public" records that populates the license and use constraint.
Also need to make validation rule requiring license and use constraint per technical spec - should confirm license is URL.
| priority | streamline editing of constraints seems highly desirable to have a single button option for public records that populates the license and use constraint also need to make validation rule requiring license and use constraint per technical spec should confirm license is url | 1 |
414,621 | 12,109,244,350 | IssuesEvent | 2020-04-21 08:26:50 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.0 staging-1386] Biomes and species: need balance | Priority: Medium Status: Fixed Week Task | In the 0.52 km world I have usually pretty small rainforest with pretty small ceiba counts
Like this one.

And its only 16 ceiba

Cedar for comparison 333

Actually rainforest needs to be quite wide and heavy.
Is it intentional or maybe need some more tweaks?
| 1.0 | [0.9.0 staging-1386] Biomes and species: need balance - In the 0.52 km world I have usually pretty small rainforest with pretty small ceiba counts
Like this one.

And its only 16 ceiba

Cedar for comparison 333

Actually rainforest needs to be quite wide and heavy.
Is it intentional or maybe need some more tweaks?
| priority | biomes and species need balance in the km world i have usually pretty small rainforest with pretty small ceiba counts like this one and its only ceiba cedar for comparison actually rainforest needs to be quite wide and heavy is it intentional or maybe need some more tweaks | 1 |
632,750 | 20,205,922,226 | IssuesEvent | 2022-02-11 20:20:46 | docker-mailserver/docker-mailserver | https://api.github.com/repos/docker-mailserver/docker-mailserver | closed | [BUG] virtual_alias_maps contains the regexp entry multiple times | kind/bug priority/medium area/scripts | ### Miscellaneous first checks
- [X] I checked that all ports are open and not blocked by my ISP / hosting provider.
- [X] I know that SSL errors are likely the result of a wrong setup on the user side and not caused by DMS itself. I'm confident my setup is correct.
### Affected Component(s)
postfix
### What happened and when does this occur?
```Markdown
virtual_alias_maps ends up with multiple `pcre:/etc/postfix/regexp` entries
```
### What did you expect to happen?
```Markdown
Only a single entry
```
### How do we replicate the issue?
```Markdown
1. Start dms
2. create data/config/postfix-regexp.cf
2. edit the alias file; wait one second
3. edit the alias file; again
```
### DMS version
edge
### What operating system is DMS running on?
Linux
### What instruction set architecture is DMS running on?
x86_64 / AMD64
### What container orchestration tool are you using?
Docker
### docker-compose.yml
_No response_
### Relevant log output
_No response_
### Other relevant information
```Markdown
The sed line in `_handle_postfix_regexp_config` that adds the config to `virtual_alias_maps` is not guarded by a check to see if it is already present in the file.
I think it may be possible to just always include the `pcre:/etc/postfix/regexp` as `_handle_postfix_virtual_config` always creates that file as empty.
```
### What level of experience do you have with Docker and mail servers?
- [X] I am inexperienced with docker
- [ ] I am inexperienced with mail servers
- [X] I am uncomfortable with the CLI
### Code of conduct
- [X] I have read this project's [Code of Conduct](https://github.com/docker-mailserver/docker-mailserver/blob/master/CODE_OF_CONDUCT.md) and I agree
- [X] I have read the [README](https://github.com/docker-mailserver/docker-mailserver/blob/master/README.md) and the [documentation](https://docker-mailserver.github.io/docker-mailserver/edge/) and I searched the [issue tracker](https://github.com/docker-mailserver/docker-mailserver/issues?q=is%3Aissue) but could not find a solution
### Improvements to this form?
_No response_ | 1.0 | [BUG] virtual_alias_maps contains the regexp entry multiple times - ### Miscellaneous first checks
- [X] I checked that all ports are open and not blocked by my ISP / hosting provider.
- [X] I know that SSL errors are likely the result of a wrong setup on the user side and not caused by DMS itself. I'm confident my setup is correct.
### Affected Component(s)
postfix
### What happened and when does this occur?
```Markdown
virtual_alias_maps ends up with multiple `pcre:/etc/postfix/regexp` entries
```
### What did you expect to happen?
```Markdown
Only a single entry
```
### How do we replicate the issue?
```Markdown
1. Start dms
2. create data/config/postfix-regexp.cf
2. edit the alias file; wait one second
3. edit the alias file; again
```
### DMS version
edge
### What operating system is DMS running on?
Linux
### What instruction set architecture is DMS running on?
x86_64 / AMD64
### What container orchestration tool are you using?
Docker
### docker-compose.yml
_No response_
### Relevant log output
_No response_
### Other relevant information
```Markdown
The sed line in `_handle_postfix_regexp_config` that adds the config to `virtual_alias_maps` is not guarded by a check to see if it is already present in the file.
I think it may be possible to just always include the `pcre:/etc/postfix/regexp` as `_handle_postfix_virtual_config` always creates that file as empty.
```
### What level of experience do you have with Docker and mail servers?
- [X] I am inexperienced with docker
- [ ] I am inexperienced with mail servers
- [X] I am uncomfortable with the CLI
### Code of conduct
- [X] I have read this project's [Code of Conduct](https://github.com/docker-mailserver/docker-mailserver/blob/master/CODE_OF_CONDUCT.md) and I agree
- [X] I have read the [README](https://github.com/docker-mailserver/docker-mailserver/blob/master/README.md) and the [documentation](https://docker-mailserver.github.io/docker-mailserver/edge/) and I searched the [issue tracker](https://github.com/docker-mailserver/docker-mailserver/issues?q=is%3Aissue) but could not find a solution
### Improvements to this form?
_No response_ | priority | virtual alias maps contains the regexp entry multiple times miscellaneous first checks i checked that all ports are open and not blocked by my isp hosting provider i know that ssl errors are likely the result of a wrong setup on the user side and not caused by dms itself i m confident my setup is correct affected component s postfix what happened and when does this occur markdown virtual alias maps ends up with multiple pcre etc postfix regexp entries what did you expect to happen markdown only a single entry how do we replicate the issue markdown start dms create data config postfix regexp cf edit the alias file wait one second edit the alias file again dms version edge what operating system is dms running on linux what instruction set architecture is dms running on what container orchestration tool are you using docker docker compose yml no response relevant log output no response other relevant information markdown the sed line in handle postfix regexp config that adds the config to virtual alias maps is not guarded by a check to see if it is already present in the file i think it may be possible to just always include the pcre etc postfix regexp as handle postfix virtual config always creates that file as empty what level of experience do you have with docker and mail servers i am inexperienced with docker i am inexperienced with mail servers i am uncomfortable with the cli code of conduct i have read this project s and i agree i have read the and the and i searched the but could not find a solution improvements to this form no response | 1 |
705,360 | 24,232,487,655 | IssuesEvent | 2022-09-26 19:36:09 | SuperCoopBerlin/tapir | https://api.github.com/repos/SuperCoopBerlin/tapir | opened | Remove the share delete button | medium priority easy product | There is a button for deleting shares. There is a text explaining that it should only be done to fix mistakes, but now that we send confirmation emails and accounting recap emails, I think this button should be removed completely.
Errors should be fixed by devs if required. | 1.0 | Remove the share delete button - There is a button for deleting shares. There is a text explaining that it should only be done to fix mistakes, but now that we send confirmation emails and accounting recap emails, I think this button should be removed completely.
Errors should be fixed by devs if required. | priority | remove the share delete button there is a button for deleting shares there is a text explaining that it should only be done to fix mistakes but now that we send confirmation emails and accounting recap emails i think this button should be removed completely errors should be fixed by devs if required | 1 |
666,712 | 22,364,905,428 | IssuesEvent | 2022-06-16 02:14:34 | cypress-io/cypress | https://api.github.com/repos/cypress-io/cypress | closed | Update wording of 'rename specs' area when the specs are not actually being renamed | unification stage: internal bug-hunt epic:ui-ux-improvements jira-migration fast-follows-1 priority: medium | ## **Summary**
I know this step is for renaming and moving but it feels odd to have everything say ‘rename’ when in this case there isn’t a rename and just a move:
<img width="1473" alt="Screen Shot 2022-05-19 at 2 07 18 PM" src="https://user-images.githubusercontent.com/1271364/171213964-e179d68d-b2e8-4c34-a9eb-28ac498d489c.png">
[https://cypressio.slack.com/archives/C02MYBT9Y5S/p1652990922196199](https://cypressio.slack.com/archives/C02MYBT9Y5S/p1652990922196199|smart-card)
**Acceptance Criteria**
If we are not renaming the spec extension (like for an existing Dashboard project)
1. Have heading say ‘Move existing specs’
1. Have sub description say ‘In this step, we’ll automatically move your existing spec files.
1. Remove the sub-heading in the content that says ‘We recommend automatically…..etc'
┆Issue is synchronized with this [Jira Task](https://cypress-io.atlassian.net/browse/UNIFY-1801) by [Unito](https://www.unito.io)
┆Attachments: <a href="https://cypress-io.atlassian.net/rest/api/2/attachment/content/12035">Screen Shot 2022-05-19 at 2.07.18 PM.png</a>
┆author: Matthew Schile
┆epic: UI/UX Improvements
┆friendlyId: UNIFY-1801
┆priority: Medium
┆sprint: Fast Follows 1
┆taskType: Task
| 1.0 | Update wording of 'rename specs' area when the specs are not actually being renamed - ## **Summary**
I know this step is for renaming and moving but it feels odd to have everything say ‘rename’ when in this case there isn’t a rename and just a move:
<img width="1473" alt="Screen Shot 2022-05-19 at 2 07 18 PM" src="https://user-images.githubusercontent.com/1271364/171213964-e179d68d-b2e8-4c34-a9eb-28ac498d489c.png">
[https://cypressio.slack.com/archives/C02MYBT9Y5S/p1652990922196199](https://cypressio.slack.com/archives/C02MYBT9Y5S/p1652990922196199|smart-card)
**Acceptance Criteria**
If we are not renaming the spec extension (like for an existing Dashboard project)
1. Have heading say ‘Move existing specs’
1. Have sub description say ‘In this step, we’ll automatically move your existing spec files.
1. Remove the sub-heading in the content that says ‘We recommend automatically…..etc'
┆Issue is synchronized with this [Jira Task](https://cypress-io.atlassian.net/browse/UNIFY-1801) by [Unito](https://www.unito.io)
┆Attachments: <a href="https://cypress-io.atlassian.net/rest/api/2/attachment/content/12035">Screen Shot 2022-05-19 at 2.07.18 PM.png</a>
┆author: Matthew Schile
┆epic: UI/UX Improvements
┆friendlyId: UNIFY-1801
┆priority: Medium
┆sprint: Fast Follows 1
┆taskType: Task
| priority | update wording of rename specs area when the specs are not actually being renamed summary i know this step is for renaming and moving but it feels odd to have everything say ‘rename’ when in this case there isn’t a rename and just a move img width alt screen shot at pm src acceptance criteria if we are not renaming the spec extension like for an existing dashboard project have heading say ‘move existing specs’ have sub description say ‘in this step we’ll automatically move your existing spec files remove the sub heading in the content that says ‘we recommend automatically… etc ┆issue is synchronized with this by ┆attachments ┆author matthew schile ┆epic ui ux improvements ┆friendlyid unify ┆priority medium ┆sprint fast follows ┆tasktype task | 1 |
159,780 | 6,060,987,459 | IssuesEvent | 2017-06-14 04:27:29 | gregswindle/eslint-plugin-crc | https://api.github.com/repos/gregswindle/eslint-plugin-crc | closed | An in-range update of sinon is breaking the build 🚨 | greenkeeper Priority: Medium Status: Completed Type: Chore |
## Version **2.3.3** of [sinon](https://github.com/sinonjs/sinon) just got published.
<table>
<tr>
<th align=left>
Branch
</th>
<td>
<a href="/gregswindle/eslint-plugin-crc/compare/greenkeeper%2Fsinon-2.3.3">Build failing 🚨</a>
</td>
</tr>
<tr>
<th align=left>
Dependency
</td>
<td>
sinon
</td>
</tr>
<tr>
<th align=left>
Current Version
</td>
<td>
2.3.2
</td>
</tr>
<tr>
<th align=left>
Type
</td>
<td>
devDependency
</td>
</tr>
</table>
This version is **covered** by your **current version range** and after updating it in your project **the build failed**.
As sinon is “only” a devDependency of this project it **might not break production or downstream projects**, but “only” your build or test tools – **preventing new deploys or publishes**.
I recommend you give this issue a high priority. I’m sure you can resolve this :muscle:
<details>
<summary>Status Details</summary>
- ✅ **dependency-ci** Dependencies checked [Details](https://dependencyci.com/builds/230992)
- ❌ **continuous-integration/travis-ci/push** The Travis CI build is in progress [Details](https://travis-ci.org/gregswindle/eslint-plugin-crc/builds/241472449?utm_source=github_status&utm_medium=notification)
- ❌ **bitHound - Code** 2 failing files. [Details](https://www.bithound.io/github/gregswindle/eslint-plugin-crc/8d293294bc1bcfe23c5f3d8a21f2e25b905bd5f8/files#filter-failing-file)
- ❌ **bitHound - Dependencies** 2 failing dependencies. [Details](https://www.bithound.io/github/gregswindle/eslint-plugin-crc/8d293294bc1bcfe23c5f3d8a21f2e25b905bd5f8/dependencies/npm#filter-failing-dep)
</details>
---
<details>
<summary>Release Notes</summary>
<strong>Make stubbing of static function properties possible</strong>
<ul>
<li>Fix <a href="https://urls.greenkeeper.io/sinonjs/sinon/pull/1450" class="issue-link js-issue-link" data-url="https://github.com/sinonjs/sinon/issues/1450" data-id="233995752" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#1450</a>, make stubbing of static function properties possible</li>
</ul>
</details>
<details>
<summary>Commits</summary>
<p>The new version differs by 24 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/bade31816023abe1b4d5711e95f20370187a0aa1"><code>bade318</code></a> <code>Update docs/changelog.md and set new release id in docs/_config.yml</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/65d4e8837cea94bbd5f913447da442e0aef76a41"><code>65d4e88</code></a> <code>Add release documentation for v2.3.3</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/2204e72f6d851ca416e9e4a43ace2ba0796ef1e6"><code>2204e72</code></a> <code>2.3.3</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/64034eecf7c6b5dbd02b6e629f94c8f2ab164134"><code>64034ee</code></a> <code>Update Changelog.txt and AUTHORS for new release</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/1ece07c8c7b1ca1249e76dc8a8498c9260c1dac9"><code>1ece07c</code></a> <code>Merge pull request #1450 from raulmatei/fix-1445-sandbox-stubbing-static-function-property-throws-error</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/452981c6032afde45281f79bbb1d55c92db3674a"><code>452981c</code></a> <code>Fix 1445: make stubbing of static function properties possible</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/25f3eebf90d462c5a311d3a5818af250c8fbb54e"><code>25f3eeb</code></a> <code>Update sandbox configuration docs. (#1443)</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/c76fa2e045f4a76354d0389fc81d54510b2e5f6e"><code>c76fa2e</code></a> <code>Merge pull request #1444 from piperchester/patch-1</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/6539d9480512dcbd573757b41ec0ffedf2b07eb7"><code>6539d94</code></a> <code>Update README.md</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/c6d01d879f84995aa6632828c0635aa1acc038cc"><code>c6d01d8</code></a> <code>Add missing function name (#1440)</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/5f989a8ce442eaa10020ced4326f7991d34735fe"><code>5f989a8</code></a> <code>Remove confusing .withArgs from spy documentation (#1438)</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/9ca272e0f405105021e1cbb791cff641168fdcb2"><code>9ca272e</code></a> <code>Remove superfluous calls in example (#1437)</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/9e3eac3ccab892aba072d765b2078f3ee1a53177"><code>9e3eac3</code></a> <code>Merge pull request #1436 from sinonjs/feature-detect-name-property</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/65d3d7b3ef12bbd6bab2446f802b1b4226663fe8"><code>65d3d7b</code></a> <code>Feature detect function name property in issue 950</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/e0c75bd83a92e5e1f614f9d7504d5b303b26fc96"><code>e0c75bd</code></a> <code>Add test for #950, show that it has been fixed (#1435)</code></li>
</ul>
<p>There are 24 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/sinonjs/sinon/compare/2463d1030a786f8a5133686b79a0b6c3e0ff886c...bade31816023abe1b4d5711e95f20370187a0aa1">full diff</a></p>
</details>
<details>
<summary>Not sure how things should work exactly?</summary>
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>
---
Your [Greenkeeper](https://greenkeeper.io) Bot :palm_tree:
| 1.0 | An in-range update of sinon is breaking the build 🚨 -
## Version **2.3.3** of [sinon](https://github.com/sinonjs/sinon) just got published.
<table>
<tr>
<th align=left>
Branch
</th>
<td>
<a href="/gregswindle/eslint-plugin-crc/compare/greenkeeper%2Fsinon-2.3.3">Build failing 🚨</a>
</td>
</tr>
<tr>
<th align=left>
Dependency
</td>
<td>
sinon
</td>
</tr>
<tr>
<th align=left>
Current Version
</td>
<td>
2.3.2
</td>
</tr>
<tr>
<th align=left>
Type
</td>
<td>
devDependency
</td>
</tr>
</table>
This version is **covered** by your **current version range** and after updating it in your project **the build failed**.
As sinon is “only” a devDependency of this project it **might not break production or downstream projects**, but “only” your build or test tools – **preventing new deploys or publishes**.
I recommend you give this issue a high priority. I’m sure you can resolve this :muscle:
<details>
<summary>Status Details</summary>
- ✅ **dependency-ci** Dependencies checked [Details](https://dependencyci.com/builds/230992)
- ❌ **continuous-integration/travis-ci/push** The Travis CI build is in progress [Details](https://travis-ci.org/gregswindle/eslint-plugin-crc/builds/241472449?utm_source=github_status&utm_medium=notification)
- ❌ **bitHound - Code** 2 failing files. [Details](https://www.bithound.io/github/gregswindle/eslint-plugin-crc/8d293294bc1bcfe23c5f3d8a21f2e25b905bd5f8/files#filter-failing-file)
- ❌ **bitHound - Dependencies** 2 failing dependencies. [Details](https://www.bithound.io/github/gregswindle/eslint-plugin-crc/8d293294bc1bcfe23c5f3d8a21f2e25b905bd5f8/dependencies/npm#filter-failing-dep)
</details>
---
<details>
<summary>Release Notes</summary>
<strong>Make stubbing of static function properties possible</strong>
<ul>
<li>Fix <a href="https://urls.greenkeeper.io/sinonjs/sinon/pull/1450" class="issue-link js-issue-link" data-url="https://github.com/sinonjs/sinon/issues/1450" data-id="233995752" data-error-text="Failed to load issue title" data-permission-text="Issue title is private">#1450</a>, make stubbing of static function properties possible</li>
</ul>
</details>
<details>
<summary>Commits</summary>
<p>The new version differs by 24 commits.</p>
<ul>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/bade31816023abe1b4d5711e95f20370187a0aa1"><code>bade318</code></a> <code>Update docs/changelog.md and set new release id in docs/_config.yml</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/65d4e8837cea94bbd5f913447da442e0aef76a41"><code>65d4e88</code></a> <code>Add release documentation for v2.3.3</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/2204e72f6d851ca416e9e4a43ace2ba0796ef1e6"><code>2204e72</code></a> <code>2.3.3</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/64034eecf7c6b5dbd02b6e629f94c8f2ab164134"><code>64034ee</code></a> <code>Update Changelog.txt and AUTHORS for new release</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/1ece07c8c7b1ca1249e76dc8a8498c9260c1dac9"><code>1ece07c</code></a> <code>Merge pull request #1450 from raulmatei/fix-1445-sandbox-stubbing-static-function-property-throws-error</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/452981c6032afde45281f79bbb1d55c92db3674a"><code>452981c</code></a> <code>Fix 1445: make stubbing of static function properties possible</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/25f3eebf90d462c5a311d3a5818af250c8fbb54e"><code>25f3eeb</code></a> <code>Update sandbox configuration docs. (#1443)</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/c76fa2e045f4a76354d0389fc81d54510b2e5f6e"><code>c76fa2e</code></a> <code>Merge pull request #1444 from piperchester/patch-1</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/6539d9480512dcbd573757b41ec0ffedf2b07eb7"><code>6539d94</code></a> <code>Update README.md</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/c6d01d879f84995aa6632828c0635aa1acc038cc"><code>c6d01d8</code></a> <code>Add missing function name (#1440)</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/5f989a8ce442eaa10020ced4326f7991d34735fe"><code>5f989a8</code></a> <code>Remove confusing .withArgs from spy documentation (#1438)</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/9ca272e0f405105021e1cbb791cff641168fdcb2"><code>9ca272e</code></a> <code>Remove superfluous calls in example (#1437)</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/9e3eac3ccab892aba072d765b2078f3ee1a53177"><code>9e3eac3</code></a> <code>Merge pull request #1436 from sinonjs/feature-detect-name-property</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/65d3d7b3ef12bbd6bab2446f802b1b4226663fe8"><code>65d3d7b</code></a> <code>Feature detect function name property in issue 950</code></li>
<li><a href="https://urls.greenkeeper.io/sinonjs/sinon/commit/e0c75bd83a92e5e1f614f9d7504d5b303b26fc96"><code>e0c75bd</code></a> <code>Add test for #950, show that it has been fixed (#1435)</code></li>
</ul>
<p>There are 24 commits in total.</p>
<p>See the <a href="https://urls.greenkeeper.io/sinonjs/sinon/compare/2463d1030a786f8a5133686b79a0b6c3e0ff886c...bade31816023abe1b4d5711e95f20370187a0aa1">full diff</a></p>
</details>
<details>
<summary>Not sure how things should work exactly?</summary>
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).
</details>
---
Your [Greenkeeper](https://greenkeeper.io) Bot :palm_tree:
| priority | an in range update of sinon is breaking the build 🚨 version of just got published branch build failing 🚨 dependency sinon current version type devdependency this version is covered by your current version range and after updating it in your project the build failed as sinon is “only” a devdependency of this project it might not break production or downstream projects but “only” your build or test tools – preventing new deploys or publishes i recommend you give this issue a high priority i’m sure you can resolve this muscle status details ✅ dependency ci dependencies checked ❌ continuous integration travis ci push the travis ci build is in progress ❌ bithound code failing files ❌ bithound dependencies failing dependencies release notes make stubbing of static function properties possible fix make stubbing of static function properties possible commits the new version differs by commits update docs changelog md and set new release id in docs config yml add release documentation for update changelog txt and authors for new release merge pull request from raulmatei fix sandbox stubbing static function property throws error fix make stubbing of static function properties possible update sandbox configuration docs merge pull request from piperchester patch update readme md add missing function name remove confusing withargs from spy documentation remove superfluous calls in example merge pull request from sinonjs feature detect name property feature detect function name property in issue add test for show that it has been fixed there are commits in total see the not sure how things should work exactly there is a collection of and of course you may always your bot palm tree | 1 |
599,799 | 18,283,324,225 | IssuesEvent | 2021-10-05 07:29:27 | ita-social-projects/TeachUA | https://api.github.com/repos/ita-social-projects/TeachUA | opened | [Розширений пошук] The Search field does not become disabled when to click on advanced search | bug UI Priority: Medium | **Environment:** Windows 10, Google Chrome version 92.0.4515.107
**Reproducible:** always
**Build found:** last commit
**Preconditions**
Go to https://speak-ukrainian.org.ua/dev/
**Steps to reproduce**
1. Click on 'Розширений пошук' button
2. Pay attention to the Search field
**Actual result**
The Search field does not become disabled when to click on advanced search

**Expected result**
The Search field becomes disabled when to click on advanced search

**User story and test case links**
User story #274
| 1.0 | [Розширений пошук] The Search field does not become disabled when to click on advanced search - **Environment:** Windows 10, Google Chrome version 92.0.4515.107
**Reproducible:** always
**Build found:** last commit
**Preconditions**
Go to https://speak-ukrainian.org.ua/dev/
**Steps to reproduce**
1. Click on 'Розширений пошук' button
2. Pay attention to the Search field
**Actual result**
The Search field does not become disabled when to click on advanced search

**Expected result**
The Search field becomes disabled when to click on advanced search

**User story and test case links**
User story #274
| priority | the search field does not become disabled when to click on advanced search environment windows google chrome version reproducible always build found last commit preconditions go to steps to reproduce click on розширений пошук button pay attention to the search field actual result the search field does not become disabled when to click on advanced search expected result the search field becomes disabled when to click on advanced search user story and test case links user story | 1 |
763,518 | 26,760,712,852 | IssuesEvent | 2023-01-31 06:31:37 | heehyohoo/repo-setup-sample | https://api.github.com/repos/heehyohoo/repo-setup-sample | reopened | Sample Backlog 1 | For: CI/CD Priority:Medium Type:Idea Satatus:Available | ## Description
프로젝트 작업 전 수행되어야 할 issue(backlog)를 활용하여 template을 활용하여 만들었습니다.
## Tasks(Progress)
- [ ] 저녁메뉴 결정하기
- [ ] 저녁 먹기
- [ ] 양치 하기
- [ ] 야근 기
## References
- [google] (http://www.google.com/)
| 1.0 | Sample Backlog 1 - ## Description
프로젝트 작업 전 수행되어야 할 issue(backlog)를 활용하여 template을 활용하여 만들었습니다.
## Tasks(Progress)
- [ ] 저녁메뉴 결정하기
- [ ] 저녁 먹기
- [ ] 양치 하기
- [ ] 야근 기
## References
- [google] (http://www.google.com/)
| priority | sample backlog description 프로젝트 작업 전 수행되어야 할 issue backlog 를 활용하여 template을 활용하여 만들었습니다 tasks progress 저녁메뉴 결정하기 저녁 먹기 양치 하기 야근 기 references | 1 |
26,580 | 2,684,879,670 | IssuesEvent | 2015-03-29 13:30:57 | ConEmu/old-issues | https://api.github.com/repos/ConEmu/old-issues | closed | When Local and Remote Desktop are different sizes and in Quake mode, permanently takes on smaller screen size | 1 star bug imported Priority-Medium | _From [msumer...@gmail.com](https://code.google.com/u/118120358928560564340/) on June 18, 2013 07:08:34_
OS version: Win7 SP1 x64 ConEmu version: 130427 x64 *Bug description* When I use ConEmu locally, then go to another machine and remote desktop (RDP) into my machine, ConEmu resizes itself to the smaller screen. When I log back in locally, it does not reset itself to the larger screen. I use Quake mode. So, I'm not sure if this is only an issue with Quake mode or an issue in general. The only way I found to fix it is to restart ConEmu . *Steps to reproduction* 1. Run ConEmu in Quake mode while logged in locally.
2. Go to another machine with a smaller screen, remote desktop to machine, and observe ConEmu .
3. Log back into machine locally and observe that ConEmu screen has been resized to smaller screen and doesn't fix itself.
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=1101_ | 1.0 | When Local and Remote Desktop are different sizes and in Quake mode, permanently takes on smaller screen size - _From [msumer...@gmail.com](https://code.google.com/u/118120358928560564340/) on June 18, 2013 07:08:34_
OS version: Win7 SP1 x64 ConEmu version: 130427 x64 *Bug description* When I use ConEmu locally, then go to another machine and remote desktop (RDP) into my machine, ConEmu resizes itself to the smaller screen. When I log back in locally, it does not reset itself to the larger screen. I use Quake mode. So, I'm not sure if this is only an issue with Quake mode or an issue in general. The only way I found to fix it is to restart ConEmu . *Steps to reproduction* 1. Run ConEmu in Quake mode while logged in locally.
2. Go to another machine with a smaller screen, remote desktop to machine, and observe ConEmu .
3. Log back into machine locally and observe that ConEmu screen has been resized to smaller screen and doesn't fix itself.
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=1101_ | priority | when local and remote desktop are different sizes and in quake mode permanently takes on smaller screen size from on june os version conemu version bug description when i use conemu locally then go to another machine and remote desktop rdp into my machine conemu resizes itself to the smaller screen when i log back in locally it does not reset itself to the larger screen i use quake mode so i m not sure if this is only an issue with quake mode or an issue in general the only way i found to fix it is to restart conemu steps to reproduction run conemu in quake mode while logged in locally go to another machine with a smaller screen remote desktop to machine and observe conemu log back into machine locally and observe that conemu screen has been resized to smaller screen and doesn t fix itself original issue | 1 |
445,174 | 12,827,235,366 | IssuesEvent | 2020-07-06 18:04:47 | input-output-hk/cardano-ledger-specs | https://api.github.com/repos/input-output-hk/cardano-ledger-specs | opened | Build the shelley benchmark package in CI | devops :hammer_and_wrench: priority medium shelley era | In order to prevent the [benchmark tests](https://github.com/input-output-hk/cardano-ledger-specs/blob/master/shelley/chain-and-ledger/executable-spec/shelley-spec-ledger.cabal#L233) from bit-rotting, we need to build them in CI. | 1.0 | Build the shelley benchmark package in CI - In order to prevent the [benchmark tests](https://github.com/input-output-hk/cardano-ledger-specs/blob/master/shelley/chain-and-ledger/executable-spec/shelley-spec-ledger.cabal#L233) from bit-rotting, we need to build them in CI. | priority | build the shelley benchmark package in ci in order to prevent the from bit rotting we need to build them in ci | 1 |
505,344 | 14,631,866,076 | IssuesEvent | 2020-12-23 20:54:22 | MikeVedsted/JoinMe | https://api.github.com/repos/MikeVedsted/JoinMe | closed | [FEAT] Edit user information page | Priority: Medium :zap: Status: In review :mag: Type: Enhancement :rocket: | **💡 I would really like to solve or include**
Add a page where we can edit user information
User should be able to update their first name, last name, add interest, profile intro, and upload profile picture. User **SHOULD NOT** be able to change the email.
_Check the components division and naming in this figma file: https://www.figma.com/file/CZn7N02015QxKByVw9vRP1/JoinMe-Components?node-id=0%3A1_

**👶 How would a user describe this?**
In this page I can edit my own information
**🏆 My dream solution would be**
Just like Chiran’s layout on figma.
**:2nd_place_medal: But I'd also consider it solved if**
If it’s just a little bit similar to Chiran’s layout.
**💭 If you were doing it, what would you do?**
- Follow figma file
**♻️ Additional context**
It requires Navbar, Footer and UserForm
**🚀 I'm ready for take off**
Before submitting, please mark if you:
- [x] Checked that this feature doesn't already exists
- [x] Checked that a feature request doesn't already exists
- [x] Went through the user flow, and understand the impact
- [x] Made sure the request shows why it is important to users but doesn't exaggerate the value
| 1.0 | [FEAT] Edit user information page - **💡 I would really like to solve or include**
Add a page where we can edit user information
User should be able to update their first name, last name, add interest, profile intro, and upload profile picture. User **SHOULD NOT** be able to change the email.
_Check the components division and naming in this figma file: https://www.figma.com/file/CZn7N02015QxKByVw9vRP1/JoinMe-Components?node-id=0%3A1_

**👶 How would a user describe this?**
In this page I can edit my own information
**🏆 My dream solution would be**
Just like Chiran’s layout on figma.
**:2nd_place_medal: But I'd also consider it solved if**
If it’s just a little bit similar to Chiran’s layout.
**💭 If you were doing it, what would you do?**
- Follow figma file
**♻️ Additional context**
It requires Navbar, Footer and UserForm
**🚀 I'm ready for take off**
Before submitting, please mark if you:
- [x] Checked that this feature doesn't already exists
- [x] Checked that a feature request doesn't already exists
- [x] Went through the user flow, and understand the impact
- [x] Made sure the request shows why it is important to users but doesn't exaggerate the value
| priority | edit user information page 💡 i would really like to solve or include add a page where we can edit user information user should be able to update their first name last name add interest profile intro and upload profile picture user should not be able to change the email check the components division and naming in this figma file 👶 how would a user describe this in this page i can edit my own information 🏆 my dream solution would be just like chiran’s layout on figma place medal but i d also consider it solved if if it’s just a little bit similar to chiran’s layout 💭 if you were doing it what would you do follow figma file ♻️ additional context it requires navbar footer and userform 🚀 i m ready for take off before submitting please mark if you checked that this feature doesn t already exists checked that a feature request doesn t already exists went through the user flow and understand the impact made sure the request shows why it is important to users but doesn t exaggerate the value | 1 |
806,500 | 29,830,916,105 | IssuesEvent | 2023-06-18 09:03:51 | lbarreteau/ZAPPY | https://api.github.com/repos/lbarreteau/ZAPPY | closed | Implement look command | MEDIUM LEVEL MEDIUM PRIORITY | For various reasons, the players’ field of vision is limited.
With each elevation, the vision increases by one unit in front, and one on each side of the new line.
At the first level, the unit is defined as 1.
In order for a player to recognize their team, the client sends the look command. The server will respond
with the character string, as follows.
look
[ player , object - on - tile1 , ... , object - on - tileP ,...] | 1.0 | Implement look command - For various reasons, the players’ field of vision is limited.
With each elevation, the vision increases by one unit in front, and one on each side of the new line.
At the first level, the unit is defined as 1.
In order for a player to recognize their team, the client sends the look command. The server will respond
with the character string, as follows.
look
[ player , object - on - tile1 , ... , object - on - tileP ,...] | priority | implement look command for various reasons the players’ field of vision is limited with each elevation the vision increases by one unit in front and one on each side of the new line at the first level the unit is defined as in order for a player to recognize their team the client sends the look command the server will respond with the character string as follows look | 1 |
124,257 | 4,894,207,292 | IssuesEvent | 2016-11-19 05:23:47 | ncssar/radiolog | https://api.github.com/repos/ncssar/radiolog | opened | change-callsign send last coords | enhancement help wanted Priority:Medium | change callsign should send locator at last known coords (if any) with new name so that new name has at least one point | 1.0 | change-callsign send last coords - change callsign should send locator at last known coords (if any) with new name so that new name has at least one point | priority | change callsign send last coords change callsign should send locator at last known coords if any with new name so that new name has at least one point | 1 |
538,420 | 15,768,640,394 | IssuesEvent | 2021-03-31 17:27:07 | guardicore/monkey | https://api.github.com/repos/guardicore/monkey | reopened | Add more data services to the fingerprinters list to look for unencrypted access to data | Complexity: High Feature MonkeyZoo Priority: Medium | <!--
Thank you for suggesting an idea to make Infection Monkey better.
Please fill in as much of the template below as you're able.
-->
**Is your feature request related to a problem? Please describe.**
Increase the coverage of ZT tests in the Data pillar
Right now we're testing for open data endpoints by looking for HTTP and Elastic servers.
**Describe the solution you'd like**
1. List the top 10 on-prem data servers we're likely to see. This list probably includes stuff like Splunk.
2. Choose which ones we develop fingerprinters for.
3. Add the relevant tests and telem processing in `monkey/monkey_island/cc/services/telemetry/zero_trust_tests/data_endpoints.py`.
4. *Bonus*: Add these servers to the MonkeyZoo and check the results in the test to make sure the fingerprinters aren't broken.
**Describe alternatives you've considered**
n/a
<hr>
UPDATE:
We planned to start with the top 6 databases from [here](https://www.explore-group.com/blog/the-most-popular-databases-2019/bp46/). | 1.0 | Add more data services to the fingerprinters list to look for unencrypted access to data - <!--
Thank you for suggesting an idea to make Infection Monkey better.
Please fill in as much of the template below as you're able.
-->
**Is your feature request related to a problem? Please describe.**
Increase the coverage of ZT tests in the Data pillar
Right now we're testing for open data endpoints by looking for HTTP and Elastic servers.
**Describe the solution you'd like**
1. List the top 10 on-prem data servers we're likely to see. This list probably includes stuff like Splunk.
2. Choose which ones we develop fingerprinters for.
3. Add the relevant tests and telem processing in `monkey/monkey_island/cc/services/telemetry/zero_trust_tests/data_endpoints.py`.
4. *Bonus*: Add these servers to the MonkeyZoo and check the results in the test to make sure the fingerprinters aren't broken.
**Describe alternatives you've considered**
n/a
<hr>
UPDATE:
We planned to start with the top 6 databases from [here](https://www.explore-group.com/blog/the-most-popular-databases-2019/bp46/). | priority | add more data services to the fingerprinters list to look for unencrypted access to data thank you for suggesting an idea to make infection monkey better please fill in as much of the template below as you re able is your feature request related to a problem please describe increase the coverage of zt tests in the data pillar right now we re testing for open data endpoints by looking for http and elastic servers describe the solution you d like list the top on prem data servers we re likely to see this list probably includes stuff like splunk choose which ones we develop fingerprinters for add the relevant tests and telem processing in monkey monkey island cc services telemetry zero trust tests data endpoints py bonus add these servers to the monkeyzoo and check the results in the test to make sure the fingerprinters aren t broken describe alternatives you ve considered n a update we planned to start with the top databases from | 1 |
599,243 | 18,268,678,431 | IssuesEvent | 2021-10-04 11:30:25 | moducate/heimdall | https://api.github.com/repos/moducate/heimdall | closed | Dockerfile and Docker Compose Example | Priority: Medium Status: Available Type: Enhancement good first issue Hacktoberfest | Docker will be the preferred method for deploying Heimdall so we need to develop a Dockerfile and probably an exemplar Docker Compose configuration that includes a PostgreSQL instance (with migration handling).
By default, the Dockerfile should serve the HTTP service (serving **all** services when #1 is implemented), but the Dockerfile should be set up so that the ENTRYPOINT is the Heimdall executable, and the CMD is `serve` (allowing users to run different subcommands with Docker). | 1.0 | Dockerfile and Docker Compose Example - Docker will be the preferred method for deploying Heimdall so we need to develop a Dockerfile and probably an exemplar Docker Compose configuration that includes a PostgreSQL instance (with migration handling).
By default, the Dockerfile should serve the HTTP service (serving **all** services when #1 is implemented), but the Dockerfile should be set up so that the ENTRYPOINT is the Heimdall executable, and the CMD is `serve` (allowing users to run different subcommands with Docker). | priority | dockerfile and docker compose example docker will be the preferred method for deploying heimdall so we need to develop a dockerfile and probably an exemplar docker compose configuration that includes a postgresql instance with migration handling by default the dockerfile should serve the http service serving all services when is implemented but the dockerfile should be set up so that the entrypoint is the heimdall executable and the cmd is serve allowing users to run different subcommands with docker | 1 |
136,082 | 5,271,010,916 | IssuesEvent | 2017-02-06 08:10:33 | Esteemed-Innovation/Esteemed-Innovation | https://api.github.com/repos/Esteemed-Innovation/Esteemed-Innovation | closed | Overclocker slows down or speeds up? | Content: Tools Priority: Medium Type: Bug | "Overclocker" ускоряет или замедляет в 2,5 раза? / (Google) "Overclocker" speeds up or slows down in 2.5?
https://youtu.be/NiUawD3itZ0
- Minecraft version: 1.7.10
- Minecraft Forge version: 1566
- Flaxbeard's Steam Power version: 0.29.2
| 1.0 | Overclocker slows down or speeds up? - "Overclocker" ускоряет или замедляет в 2,5 раза? / (Google) "Overclocker" speeds up or slows down in 2.5?
https://youtu.be/NiUawD3itZ0
- Minecraft version: 1.7.10
- Minecraft Forge version: 1566
- Flaxbeard's Steam Power version: 0.29.2
| priority | overclocker slows down or speeds up overclocker ускоряет или замедляет в раза google overclocker speeds up or slows down in minecraft version minecraft forge version flaxbeard s steam power version | 1 |
301,092 | 9,215,806,674 | IssuesEvent | 2019-03-11 05:21:06 | uwigem/uwigem.com | https://api.github.com/repos/uwigem/uwigem.com | opened | Create Timeline Component | Priority: Medium Status: Accepted Type: Enhancement | https://github.com/uwigem/uwigem.com/wiki/Formatting-of-components
Timeline will be a standalone component taking in no props. It will get data from firebase. Feel free to fetch data from a local test file for now. We will use that schema on Firebase.
When planning that data schema, make sure it is scalable. Feel free to ask for advice if you have any concerns! | 1.0 | Create Timeline Component - https://github.com/uwigem/uwigem.com/wiki/Formatting-of-components
Timeline will be a standalone component taking in no props. It will get data from firebase. Feel free to fetch data from a local test file for now. We will use that schema on Firebase.
When planning that data schema, make sure it is scalable. Feel free to ask for advice if you have any concerns! | priority | create timeline component timeline will be a standalone component taking in no props it will get data from firebase feel free to fetch data from a local test file for now we will use that schema on firebase when planning that data schema make sure it is scalable feel free to ask for advice if you have any concerns | 1 |
224,707 | 7,472,053,720 | IssuesEvent | 2018-04-03 11:20:54 | salesagility/SuiteCRM | https://api.github.com/repos/salesagility/SuiteCRM | closed | Edit Call: Additional details popup is empty | Fix Proposed Medium Priority Resolved: Next Release 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 -->
When editing a call, in the Scheduling section you can hover over the names of the meeting attendees a popup surfaces with additional details for that person.
This popup is now empty after an upgrade from 7.8.6->7.8.13.
#### Expected Behavior
<!--- Tell us what should happen -->
The popup should contain prmary_address, etc. from the Contact record.
#### Actual Behavior
<!--- Tell us what happens instead -->
<!--- Also please check relevant logs (suitecrm.log, php error.log etc.) -->
The popup is empty.
#### Possible Fix
<!--- Not obligatory, but suggest a fix or reason for the bug -->
In file modules/Meetings/jsclass_scheduler.js
`$.each(arguments,function(index,value){eval(value[0]) ....`
was changed to
`$.each(arguments,function(index,value){SUGAR.util.evalScript(value[0]) ....`
I.e. replacement of `eval()` with `SUGAR.util.evalScript()`.
Restoring the `eval()` call fixes the problem. Also replacing it with SUGAR.util.globalEval() also works. I'm not qualified to know exactly which is better or why.
P.S. Why is that source file so badly formatted?
#### 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. Edit a call
2. Hover over one of the meeting attendees
3. The popup is empty.
#### 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 -->
#### Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* SuiteCRM Version used: 7.8.13
* Browser name : Chrome: Version 64.0.3282.140 (Official Build) (64-bit)
| 1.0 | Edit Call: Additional details popup is empty - <!--- 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 -->
When editing a call, in the Scheduling section you can hover over the names of the meeting attendees a popup surfaces with additional details for that person.
This popup is now empty after an upgrade from 7.8.6->7.8.13.
#### Expected Behavior
<!--- Tell us what should happen -->
The popup should contain prmary_address, etc. from the Contact record.
#### Actual Behavior
<!--- Tell us what happens instead -->
<!--- Also please check relevant logs (suitecrm.log, php error.log etc.) -->
The popup is empty.
#### Possible Fix
<!--- Not obligatory, but suggest a fix or reason for the bug -->
In file modules/Meetings/jsclass_scheduler.js
`$.each(arguments,function(index,value){eval(value[0]) ....`
was changed to
`$.each(arguments,function(index,value){SUGAR.util.evalScript(value[0]) ....`
I.e. replacement of `eval()` with `SUGAR.util.evalScript()`.
Restoring the `eval()` call fixes the problem. Also replacing it with SUGAR.util.globalEval() also works. I'm not qualified to know exactly which is better or why.
P.S. Why is that source file so badly formatted?
#### 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. Edit a call
2. Hover over one of the meeting attendees
3. The popup is empty.
#### 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 -->
#### Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* SuiteCRM Version used: 7.8.13
* Browser name : Chrome: Version 64.0.3282.140 (Official Build) (64-bit)
| priority | edit call additional details popup is empty issue when editing a call in the scheduling section you can hover over the names of the meeting attendees a popup surfaces with additional details for that person this popup is now empty after an upgrade from expected behavior the popup should contain prmary address etc from the contact record actual behavior the popup is empty possible fix in file modules meetings jsclass scheduler js each arguments function index value eval value was changed to each arguments function index value sugar util evalscript value i e replacement of eval with sugar util evalscript restoring the eval call fixes the problem also replacing it with sugar util globaleval also works i m not qualified to know exactly which is better or why p s why is that source file so badly formatted steps to reproduce edit a call hover over one of the meeting attendees the popup is empty context your environment suitecrm version used browser name chrome version official build bit | 1 |
302,416 | 9,258,162,023 | IssuesEvent | 2019-03-17 13:39:39 | richelbilderbeek/djog_unos_2018 | https://api.github.com/repos/richelbilderbeek/djog_unos_2018 | closed | Actually use the SFML view | medium priority | **Is your feature request related to a problem? Please describe.**
Currently, we use an SFML view (#496). Using such a view allows us to move the camera in any direction, zoom in/out and rotate.
However, there are a lot of magic numbers in the code that code for the transformation that should be done by the view:
```
void game::spawn(agent_type type, tile t)
{
// ...
move_agent_to_tile(a1, t.get_x()/122, t.get_y()/122);
// ...
}
```
**Describe the solution you'd like**
Replace the magic numbers by usage of the view.
I do not know the exact syntax, but the `122` should be something like the view's zoom factor instead.
**Describe alternatives you've considered**
None.
**Additional context**
None. | 1.0 | Actually use the SFML view - **Is your feature request related to a problem? Please describe.**
Currently, we use an SFML view (#496). Using such a view allows us to move the camera in any direction, zoom in/out and rotate.
However, there are a lot of magic numbers in the code that code for the transformation that should be done by the view:
```
void game::spawn(agent_type type, tile t)
{
// ...
move_agent_to_tile(a1, t.get_x()/122, t.get_y()/122);
// ...
}
```
**Describe the solution you'd like**
Replace the magic numbers by usage of the view.
I do not know the exact syntax, but the `122` should be something like the view's zoom factor instead.
**Describe alternatives you've considered**
None.
**Additional context**
None. | priority | actually use the sfml view is your feature request related to a problem please describe currently we use an sfml view using such a view allows us to move the camera in any direction zoom in out and rotate however there are a lot of magic numbers in the code that code for the transformation that should be done by the view void game spawn agent type type tile t move agent to tile t get x t get y describe the solution you d like replace the magic numbers by usage of the view i do not know the exact syntax but the should be something like the view s zoom factor instead describe alternatives you ve considered none additional context none | 1 |
134,835 | 5,238,101,451 | IssuesEvent | 2017-01-31 02:41:35 | RoboJackets/rrt | https://api.github.com/repos/RoboJackets/rrt | opened | RRT Documentation + Doc Generation | area / support exp / beginner priority / medium status / ready type / enhancement | Right now the RRT has much less documentation than I'd like (the RRT is one of the most useful parts of our codebase, since it's modularized). We need to try to make thorough docs for the rrt.
Once we have most of the way done to this, I'll add documentation generation so we can have a RRT docs site we can link to on our README, just like robocup-software and robocup-firmware.
This is a good beginner issue, especially for new members interested in path planning, if you were ok with just reading some code. | 1.0 | RRT Documentation + Doc Generation - Right now the RRT has much less documentation than I'd like (the RRT is one of the most useful parts of our codebase, since it's modularized). We need to try to make thorough docs for the rrt.
Once we have most of the way done to this, I'll add documentation generation so we can have a RRT docs site we can link to on our README, just like robocup-software and robocup-firmware.
This is a good beginner issue, especially for new members interested in path planning, if you were ok with just reading some code. | priority | rrt documentation doc generation right now the rrt has much less documentation than i d like the rrt is one of the most useful parts of our codebase since it s modularized we need to try to make thorough docs for the rrt once we have most of the way done to this i ll add documentation generation so we can have a rrt docs site we can link to on our readme just like robocup software and robocup firmware this is a good beginner issue especially for new members interested in path planning if you were ok with just reading some code | 1 |
624,878 | 19,711,826,464 | IssuesEvent | 2022-01-13 06:39:47 | frappe/erpnext | https://api.github.com/repos/frappe/erpnext | closed | After Import employee with Emp No, we can change Emp No with new number but its show old number on the list. | bug HR valid Medium Priority | ### Information about bug


### Module
HR
### Version
Frappe Version 14
ERPNext Version 13.18
### Installation method
_No response_
### Relevant log output / Stack trace / Full Error Message.
_No response_ | 1.0 | After Import employee with Emp No, we can change Emp No with new number but its show old number on the list. - ### Information about bug


### Module
HR
### Version
Frappe Version 14
ERPNext Version 13.18
### Installation method
_No response_
### Relevant log output / Stack trace / Full Error Message.
_No response_ | priority | after import employee with emp no we can change emp no with new number but its show old number on the list information about bug module hr version frappe version erpnext version installation method no response relevant log output stack trace full error message no response | 1 |
320,017 | 9,763,643,689 | IssuesEvent | 2019-06-05 14:13:58 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | Bluetooth: Mesh: Proxy SAR timeout is not implemented | area: Bluetooth bug priority: medium | The MESH/SR/PROX/BV-05-C qualification test case is passing only because the current setup does an explicit disconnect request. However, the proper way to do it is to use a 20 second timeout like the spec defines in Mesh Profile 1.0 Section 6.6:
"The timeout for the SAR transfer is 20 seconds. When the timeout expires,
the Proxy Server shall disconnect."
There's already a proposed fix for this in the MyNewt (nimble) fork of the Zephyr Bluetooth Mesh stack: https://github.com/apache/mynewt-nimble/pull/457 | 1.0 | Bluetooth: Mesh: Proxy SAR timeout is not implemented - The MESH/SR/PROX/BV-05-C qualification test case is passing only because the current setup does an explicit disconnect request. However, the proper way to do it is to use a 20 second timeout like the spec defines in Mesh Profile 1.0 Section 6.6:
"The timeout for the SAR transfer is 20 seconds. When the timeout expires,
the Proxy Server shall disconnect."
There's already a proposed fix for this in the MyNewt (nimble) fork of the Zephyr Bluetooth Mesh stack: https://github.com/apache/mynewt-nimble/pull/457 | priority | bluetooth mesh proxy sar timeout is not implemented the mesh sr prox bv c qualification test case is passing only because the current setup does an explicit disconnect request however the proper way to do it is to use a second timeout like the spec defines in mesh profile section the timeout for the sar transfer is seconds when the timeout expires the proxy server shall disconnect there s already a proposed fix for this in the mynewt nimble fork of the zephyr bluetooth mesh stack | 1 |
547,769 | 16,046,748,940 | IssuesEvent | 2021-04-22 14:25:47 | canonical-web-and-design/vanilla-framework | https://api.github.com/repos/canonical-web-and-design/vanilla-framework | closed | Vertically-align hides videos | Bug 🐛 Priority: Medium | When using `u-vertically-align` with `u-embedded-media` the video is hidden:
https://codepen.io/anthonydillon/pen/yLBpRpX | 1.0 | Vertically-align hides videos - When using `u-vertically-align` with `u-embedded-media` the video is hidden:
https://codepen.io/anthonydillon/pen/yLBpRpX | priority | vertically align hides videos when using u vertically align with u embedded media the video is hidden | 1 |
458,597 | 13,178,197,936 | IssuesEvent | 2020-08-12 08:44:27 | magda-io/magda | https://api.github.com/repos/magda-io/magda | opened | Allow Magda serves multiple Web UI server | feature request priority: medium | ### Allow Magda serves multiple Web UI server
When customising Magda as their own solution, people may want to keep existing Magda UI running while implementing their own UI (to leverage magda's existing `login` or `Admin panel`) functionality.
We currently allow people to replace the UI but Magda web UI can't be running at the same time from a different path.
We probably can:
- No changes to `Gateway` (rather than #2928)
- Update `web-server` to:
- Add helm chart parameter `baseUrlPath`. Default Value "/".
- e.g. `/magda-web-ui` means serving magda UI from path `/magda-web-ui/`
- Add proper `<base />` tag to
- Update `web-client`
- Add `basename` to `BrowserRouter` component in `index.js`. Its value should be same as `baseUrlPath` that receives as part of [web-server-config](https://github.com/magda-io/magda/blob/master/magda-web-client/src/config.ts)
- Replace all `<a>` tags with `<Link>` where applicable
@mwu2018 already implement most it [at here](https://github.com/TerriaJS/magda/blob/16c2b67b7e78a45f59f3e6bf68f920a37e02543e/magda-web-server/src/getIndexFileContent.ts#L12)
Although, we probably can simplify a bit (e.g. we don't need to replace `getIncludeHtml`)
| 1.0 | Allow Magda serves multiple Web UI server - ### Allow Magda serves multiple Web UI server
When customising Magda as their own solution, people may want to keep existing Magda UI running while implementing their own UI (to leverage magda's existing `login` or `Admin panel`) functionality.
We currently allow people to replace the UI but Magda web UI can't be running at the same time from a different path.
We probably can:
- No changes to `Gateway` (rather than #2928)
- Update `web-server` to:
- Add helm chart parameter `baseUrlPath`. Default Value "/".
- e.g. `/magda-web-ui` means serving magda UI from path `/magda-web-ui/`
- Add proper `<base />` tag to
- Update `web-client`
- Add `basename` to `BrowserRouter` component in `index.js`. Its value should be same as `baseUrlPath` that receives as part of [web-server-config](https://github.com/magda-io/magda/blob/master/magda-web-client/src/config.ts)
- Replace all `<a>` tags with `<Link>` where applicable
@mwu2018 already implement most it [at here](https://github.com/TerriaJS/magda/blob/16c2b67b7e78a45f59f3e6bf68f920a37e02543e/magda-web-server/src/getIndexFileContent.ts#L12)
Although, we probably can simplify a bit (e.g. we don't need to replace `getIncludeHtml`)
| priority | allow magda serves multiple web ui server allow magda serves multiple web ui server when customising magda as their own solution people may want to keep existing magda ui running while implementing their own ui to leverage magda s existing login or admin panel functionality we currently allow people to replace the ui but magda web ui can t be running at the same time from a different path we probably can no changes to gateway rather than update web server to add helm chart parameter baseurlpath default value e g magda web ui means serving magda ui from path magda web ui add proper tag to update web client add basename to browserrouter component in index js its value should be same as baseurlpath that receives as part of replace all tags with where applicable already implement most it although we probably can simplify a bit e g we don t need to replace getincludehtml | 1 |
718,741 | 24,730,302,501 | IssuesEvent | 2022-10-20 16:59:45 | AY2223S1-CS2103T-W11-3/tp | https://api.github.com/repos/AY2223S1-CS2103T-W11-3/tp | opened | Feat: Support CLI commands in GUI | type.Task priority.Medium | Add functionality to allow users to execute some commands in the GUI as well (through pop-up windows):
- [X] Add Commission
- [ ] Add Customer
- [ ] Edit Customer
- [ ] (Edit Commission)
- [ ] Delete Commission
- [ ] Delete Customer
- [ ] Add Iteration
- [ ] (Edit Iteration)
- [ ] Delete Iteration
See #114 | 1.0 | Feat: Support CLI commands in GUI - Add functionality to allow users to execute some commands in the GUI as well (through pop-up windows):
- [X] Add Commission
- [ ] Add Customer
- [ ] Edit Customer
- [ ] (Edit Commission)
- [ ] Delete Commission
- [ ] Delete Customer
- [ ] Add Iteration
- [ ] (Edit Iteration)
- [ ] Delete Iteration
See #114 | priority | feat support cli commands in gui add functionality to allow users to execute some commands in the gui as well through pop up windows add commission add customer edit customer edit commission delete commission delete customer add iteration edit iteration delete iteration see | 1 |
605,707 | 18,739,409,026 | IssuesEvent | 2021-11-04 11:50:18 | AY2122S1-CS2103-W14-2/tp | https://api.github.com/repos/AY2122S1-CS2103-W14-2/tp | closed | [PE-D] Possible improvement in message displayed | priority.Medium | Currently, the `sort` command's message is consistent with the command but it may not be straightforward to the user. A better way would be to write the message in words in full sentences.

<!--session: 1635494377311-d41650c4-696e-4265-8ee9-02581697ab8b-->
<!--Version: Web v3.4.1-->
-------------
Labels: `severity.Low` `type.FeatureFlaw`
original: charliemoweng/ped#4 | 1.0 | [PE-D] Possible improvement in message displayed - Currently, the `sort` command's message is consistent with the command but it may not be straightforward to the user. A better way would be to write the message in words in full sentences.

<!--session: 1635494377311-d41650c4-696e-4265-8ee9-02581697ab8b-->
<!--Version: Web v3.4.1-->
-------------
Labels: `severity.Low` `type.FeatureFlaw`
original: charliemoweng/ped#4 | priority | possible improvement in message displayed currently the sort command s message is consistent with the command but it may not be straightforward to the user a better way would be to write the message in words in full sentences labels severity low type featureflaw original charliemoweng ped | 1 |
444,968 | 12,824,305,572 | IssuesEvent | 2020-07-06 13:16:57 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | opened | [studio-ui] Quick-create dropdown with very large number of items disallows reaching all items based on screen-size | bug priority: medium | Reproduce:
1. Add many content-types to quick create
2. Shrink the height of your screen enough so that quick create menu doesn't fit all items on screen
3. Try to reach the last items
Expected:
Whole list is reachable. | 1.0 | [studio-ui] Quick-create dropdown with very large number of items disallows reaching all items based on screen-size - Reproduce:
1. Add many content-types to quick create
2. Shrink the height of your screen enough so that quick create menu doesn't fit all items on screen
3. Try to reach the last items
Expected:
Whole list is reachable. | priority | quick create dropdown with very large number of items disallows reaching all items based on screen size reproduce add many content types to quick create shrink the height of your screen enough so that quick create menu doesn t fit all items on screen try to reach the last items expected whole list is reachable | 1 |
477,569 | 13,764,650,602 | IssuesEvent | 2020-10-07 12:23:16 | buddyboss/buddyboss-platform | https://api.github.com/repos/buddyboss/buddyboss-platform | opened | LearnDash courses count not showing on Groups view | bug priority: medium | **Describe the bug**
Courses count on tab not showing on Group view
**To Reproduce**
Steps to reproduce the behavior:
Issue can be replicated on LearnDash demo
Create a Course
Add course to a group
View group on front end
See error on Courses tab
(you can view this directly on our LearnDash demo, just vising Coffee Addicts group)
**Expected behavior**
Courses count show show in the tab just like Members tab
**Screenshots**
https://user-images.githubusercontent.com/58522224/92922198-040da280-f468-11ea-9e33-439846cff2c1.JPG
**Support ticket links**
https://secure.helpscout.net/conversation/1263411275/89929
| 1.0 | LearnDash courses count not showing on Groups view - **Describe the bug**
Courses count on tab not showing on Group view
**To Reproduce**
Steps to reproduce the behavior:
Issue can be replicated on LearnDash demo
Create a Course
Add course to a group
View group on front end
See error on Courses tab
(you can view this directly on our LearnDash demo, just vising Coffee Addicts group)
**Expected behavior**
Courses count show show in the tab just like Members tab
**Screenshots**
https://user-images.githubusercontent.com/58522224/92922198-040da280-f468-11ea-9e33-439846cff2c1.JPG
**Support ticket links**
https://secure.helpscout.net/conversation/1263411275/89929
| priority | learndash courses count not showing on groups view describe the bug courses count on tab not showing on group view to reproduce steps to reproduce the behavior issue can be replicated on learndash demo create a course add course to a group view group on front end see error on courses tab you can view this directly on our learndash demo just vising coffee addicts group expected behavior courses count show show in the tab just like members tab screenshots support ticket links | 1 |
647,151 | 21,093,215,779 | IssuesEvent | 2022-04-04 07:53:04 | Redocly/openapi-cli | https://api.github.com/repos/Redocly/openapi-cli | closed | feature: assertions | Priority: Medium Type: Enhancement GA | ## Request for comments
This feature request is not yet actionable. We need to collect some feedback first.
---
**Is your feature request related to a problem? Please describe.**
We need a generic rules to be used in cases which our other built-in rules do not cover.
**Describe the solution you'd like**
I'd like to have a set of built-in rules which can be configured to enforce different generic usecases:
- `enum` to enforce a value to be among set of predefined values
- `pattern` - to enforce a value to match a regex
- `casing` - to enforce specific casing style (camelCase, kebab-case, snake_case, PascalCase)
- `mutuallyExclusive` - to mark some properties as mutually exclusive (`a` or `b` but not `a` and `b` together)
- `defined`/`undefined`/`nonEmpty`
- `length` - to enforce length of specific array or string
- `sortOrder` - to enforce sort order in array of strings or array of objects (collection)
Example usage:
```yaml
lint:
rules:
enforcements: # I would like a better suggestion here
- on: SecuritySchema.type
description: Only API key authorization is allowed
severity: error
enum:
- apiKey
- on: 'MediaTypeMap.$keys'
enum:
- apiKey
- on: MediaTypeMap.$keys
description: Only application/json can be used
enum:
- 'application/json'
nonEmpty:
description: Schema title and description should be non-empty
locations:
- on: Schema.description
- on: Schema.title
```
**Additional context**
none | 1.0 | feature: assertions - ## Request for comments
This feature request is not yet actionable. We need to collect some feedback first.
---
**Is your feature request related to a problem? Please describe.**
We need a generic rules to be used in cases which our other built-in rules do not cover.
**Describe the solution you'd like**
I'd like to have a set of built-in rules which can be configured to enforce different generic usecases:
- `enum` to enforce a value to be among set of predefined values
- `pattern` - to enforce a value to match a regex
- `casing` - to enforce specific casing style (camelCase, kebab-case, snake_case, PascalCase)
- `mutuallyExclusive` - to mark some properties as mutually exclusive (`a` or `b` but not `a` and `b` together)
- `defined`/`undefined`/`nonEmpty`
- `length` - to enforce length of specific array or string
- `sortOrder` - to enforce sort order in array of strings or array of objects (collection)
Example usage:
```yaml
lint:
rules:
enforcements: # I would like a better suggestion here
- on: SecuritySchema.type
description: Only API key authorization is allowed
severity: error
enum:
- apiKey
- on: 'MediaTypeMap.$keys'
enum:
- apiKey
- on: MediaTypeMap.$keys
description: Only application/json can be used
enum:
- 'application/json'
nonEmpty:
description: Schema title and description should be non-empty
locations:
- on: Schema.description
- on: Schema.title
```
**Additional context**
none | priority | feature assertions request for comments this feature request is not yet actionable we need to collect some feedback first is your feature request related to a problem please describe we need a generic rules to be used in cases which our other built in rules do not cover describe the solution you d like i d like to have a set of built in rules which can be configured to enforce different generic usecases enum to enforce a value to be among set of predefined values pattern to enforce a value to match a regex casing to enforce specific casing style camelcase kebab case snake case pascalcase mutuallyexclusive to mark some properties as mutually exclusive a or b but not a and b together defined undefined nonempty length to enforce length of specific array or string sortorder to enforce sort order in array of strings or array of objects collection example usage yaml lint rules enforcements i would like a better suggestion here on securityschema type description only api key authorization is allowed severity error enum apikey on mediatypemap keys enum apikey on mediatypemap keys description only application json can be used enum application json nonempty description schema title and description should be non empty locations on schema description on schema title additional context none | 1 |
344,478 | 10,345,336,870 | IssuesEvent | 2019-09-04 13:16:41 | DeclareDesign/estimatr | https://api.github.com/repos/DeclareDesign/estimatr | closed | Fix segfault issue in demeanMat | Priority: Medium bug | This error comes up during a couple calls to `demeanMat` on Solaris (https://www.r-project.org/nosvn/R.check/r-patched-solaris-x86/estimatr-00check.html).
Seems to mostly be triggered by `iv_robust()`. | 1.0 | Fix segfault issue in demeanMat - This error comes up during a couple calls to `demeanMat` on Solaris (https://www.r-project.org/nosvn/R.check/r-patched-solaris-x86/estimatr-00check.html).
Seems to mostly be triggered by `iv_robust()`. | priority | fix segfault issue in demeanmat this error comes up during a couple calls to demeanmat on solaris seems to mostly be triggered by iv robust | 1 |
312,956 | 9,555,433,293 | IssuesEvent | 2019-05-03 03:17:06 | NCIOCPL/cgov-digital-platform | https://api.github.com/repos/NCIOCPL/cgov-digital-platform | closed | On Blogs Posts, Related Resources Should Appear ABOVE Pagination | In Scope (June 2019) Medium priority Passed IA Review bug | Related Resources should display before < Older Post / Newer Post > links at the bottom of blog posts. Currently on DEV, they are displaying after the pagination links. See screenshots below of the ODE vs current Production site.
The correct order, following the body, is:
- Related Resources
- Older / Newer Post links
- Recommended Content
- Public Reuse Text + Comment Policy
- Disqus
### This is what's on the ODE:

### This is what's live now, and how it should look:

| 1.0 | On Blogs Posts, Related Resources Should Appear ABOVE Pagination - Related Resources should display before < Older Post / Newer Post > links at the bottom of blog posts. Currently on DEV, they are displaying after the pagination links. See screenshots below of the ODE vs current Production site.
The correct order, following the body, is:
- Related Resources
- Older / Newer Post links
- Recommended Content
- Public Reuse Text + Comment Policy
- Disqus
### This is what's on the ODE:

### This is what's live now, and how it should look:

| priority | on blogs posts related resources should appear above pagination related resources should display before links at the bottom of blog posts currently on dev they are displaying after the pagination links see screenshots below of the ode vs current production site the correct order following the body is related resources older newer post links recommended content public reuse text comment policy disqus this is what s on the ode this is what s live now and how it should look | 1 |
244,300 | 7,873,240,916 | IssuesEvent | 2018-06-25 13:46:53 | Repair-DeskPOS/RepairDesk-Bugs | https://api.github.com/repos/Repair-DeskPOS/RepairDesk-Bugs | closed | Pricing Error with Appointment Calendar Widget | Medium Priority Resolved bug | Retail prices set in the backend have extra pennies added when displayed in the appointment calendar widget.
For example:
A repair with a retail price of £24.99 tax inclusive gets displayed as £25.00 in the widget.
See screenshots below for how these differ.
Backend price:

Widget price:

| 1.0 | Pricing Error with Appointment Calendar Widget - Retail prices set in the backend have extra pennies added when displayed in the appointment calendar widget.
For example:
A repair with a retail price of £24.99 tax inclusive gets displayed as £25.00 in the widget.
See screenshots below for how these differ.
Backend price:

Widget price:

| priority | pricing error with appointment calendar widget retail prices set in the backend have extra pennies added when displayed in the appointment calendar widget for example a repair with a retail price of £ tax inclusive gets displayed as £ in the widget see screenshots below for how these differ backend price widget price | 1 |
144,093 | 5,535,685,644 | IssuesEvent | 2017-03-21 17:53:10 | Baystation12/Baystation12 | https://api.github.com/repos/Baystation12/Baystation12 | closed | Renegades spawn with their gun visible | balance oversight priority: medium | <!--
If a specific field doesn't apply, remove it!
Anything inside tags like these is a comment and will not be displayed in the final issue.
Be careful not to write inside them!
Joke or spammed issues can and will result in punishment.
PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS
(The lines with four #'s)
Don't edit them or delete them it's part of the formatting
-->
#### Description of issue
Renegades spawn with their gun shown openly on them.
This can cause problems at round-start, when they appear next to the _entire_ rest of the crew holding their shotgun or handgun.
#### Difference between expected and actual behavior
Renegades would get access to their guns discreetly, and not openly in Stasis at round-start next to the entire crew. Discreetly meaning teleport or being told the guns location- ie "In the Third Deck Fore Oxygen closet"
Renegades at round-start instead spawn with their weapon visible, infront of everyone else.
#### Steps to reproduce
Roll renegade. Spawn at round-start. Get half the crew asking you why you have a gun 30 seconds into the round.
#### Length of time in which bug has been known to occur
<!--
Be specific if you approximately know the time it's been occurring
for—this can speed up finding the source. If you're not sure
about it, tell us too!
-->
Unknown. Probably always, but wasn't an issue before Torch had everyone spawn in two rooms.
#### Client version, Server revision & Game ID
<!-- Found with the "Show server revision" verb in the OOC tab in game. -->
Server Revision: c6e433f4858735c2b5157340d545f920144a26c8 - dev -
Game ID: bNA-cRhc
#### Issue bingo
Please check whatever applies. More checkboxes checked increase your chances of the issue being looked at sooner.
<!-- Check these by writing an x inside the [ ] (like this: [x])-->
<!-- Don't forget to remove the space between the brackets, or it won't work! -->
- [ ] Issue could be reproduced at least once
- [x] Issue could be reproduced by different players
- [ ] Issue could be reproduced in multiple rounds
- [x] Issue happened in a recent (less than 7 days ago) round
- [x] [Couldn't find an existing issue about this](https://github.com/Baystation12/Baystation12/issues)
| 1.0 | Renegades spawn with their gun visible - <!--
If a specific field doesn't apply, remove it!
Anything inside tags like these is a comment and will not be displayed in the final issue.
Be careful not to write inside them!
Joke or spammed issues can and will result in punishment.
PUT YOUR ANSWERS ON THE BLANK LINES BELOW THE HEADERS
(The lines with four #'s)
Don't edit them or delete them it's part of the formatting
-->
#### Description of issue
Renegades spawn with their gun shown openly on them.
This can cause problems at round-start, when they appear next to the _entire_ rest of the crew holding their shotgun or handgun.
#### Difference between expected and actual behavior
Renegades would get access to their guns discreetly, and not openly in Stasis at round-start next to the entire crew. Discreetly meaning teleport or being told the guns location- ie "In the Third Deck Fore Oxygen closet"
Renegades at round-start instead spawn with their weapon visible, infront of everyone else.
#### Steps to reproduce
Roll renegade. Spawn at round-start. Get half the crew asking you why you have a gun 30 seconds into the round.
#### Length of time in which bug has been known to occur
<!--
Be specific if you approximately know the time it's been occurring
for—this can speed up finding the source. If you're not sure
about it, tell us too!
-->
Unknown. Probably always, but wasn't an issue before Torch had everyone spawn in two rooms.
#### Client version, Server revision & Game ID
<!-- Found with the "Show server revision" verb in the OOC tab in game. -->
Server Revision: c6e433f4858735c2b5157340d545f920144a26c8 - dev -
Game ID: bNA-cRhc
#### Issue bingo
Please check whatever applies. More checkboxes checked increase your chances of the issue being looked at sooner.
<!-- Check these by writing an x inside the [ ] (like this: [x])-->
<!-- Don't forget to remove the space between the brackets, or it won't work! -->
- [ ] Issue could be reproduced at least once
- [x] Issue could be reproduced by different players
- [ ] Issue could be reproduced in multiple rounds
- [x] Issue happened in a recent (less than 7 days ago) round
- [x] [Couldn't find an existing issue about this](https://github.com/Baystation12/Baystation12/issues)
| priority | renegades spawn with their gun visible if a specific field doesn t apply remove it anything inside tags like these is a comment and will not be displayed in the final issue be careful not to write inside them joke or spammed issues can and will result in punishment put your answers on the blank lines below the headers the lines with four s don t edit them or delete them it s part of the formatting description of issue renegades spawn with their gun shown openly on them this can cause problems at round start when they appear next to the entire rest of the crew holding their shotgun or handgun difference between expected and actual behavior renegades would get access to their guns discreetly and not openly in stasis at round start next to the entire crew discreetly meaning teleport or being told the guns location ie in the third deck fore oxygen closet renegades at round start instead spawn with their weapon visible infront of everyone else steps to reproduce roll renegade spawn at round start get half the crew asking you why you have a gun seconds into the round length of time in which bug has been known to occur be specific if you approximately know the time it s been occurring for—this can speed up finding the source if you re not sure about it tell us too unknown probably always but wasn t an issue before torch had everyone spawn in two rooms client version server revision game id server revision dev game id bna crhc issue bingo please check whatever applies more checkboxes checked increase your chances of the issue being looked at sooner issue could be reproduced at least once issue could be reproduced by different players issue could be reproduced in multiple rounds issue happened in a recent less than days ago round | 1 |
663,543 | 22,196,465,860 | IssuesEvent | 2022-06-07 07:24:41 | capgemini-stavanger/gi-en-jul | https://api.github.com/repos/capgemini-stavanger/gi-en-jul | opened | Move to new Azure Subscription | Priority Medium | Move the test and production environment to a new Azure Subscription. | 1.0 | Move to new Azure Subscription - Move the test and production environment to a new Azure Subscription. | priority | move to new azure subscription move the test and production environment to a new azure subscription | 1 |
289,136 | 8,855,185,908 | IssuesEvent | 2019-01-09 05:11:19 | visit-dav/issues-test | https://api.github.com/repos/visit-dav/issues-test | closed | VisIt exits when you exit the CLI | bug likelihood medium priority reviewed severity medium | Barbara Kornblum had saved setting with the macro window containing some macros in the macro tab. This caused the python window to come up each time she started VisIt. Whenever she exited it, VisIt would exit as well. This should not happen. I also tried the simple of case of starting VisIt, bringing up the python cli window and then typing "quit()" in the window would exit VisIt.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 2264
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: Urgent
Subject: VisIt exits when you exit the CLI
Assigned to: Kevin Griffin
Category: -
Target version: 2.9.2
Author: Eric Brugger
Start: 05/08/2015
Due date:
% Done: 100%
Estimated time:
Created: 05/08/2015 03:29 pm
Updated: 06/05/2015 03:17 pm
Likelihood: 3 - Occasional
Severity: 3 - Major Irritation
Found in version: 2.8.2
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
Barbara Kornblum had saved setting with the macro window containing some macros in the macro tab. This caused the python window to come up each time she started VisIt. Whenever she exited it, VisIt would exit as well. This should not happen. I also tried the simple of case of starting VisIt, bringing up the python cli window and then typing "quit()" in the window would exit VisIt.
Comments:
In the latest release (2.9.1) the python cld window does come up, however, typing "quit()" in the python cli window DOESN'T shut down VisIt. I talked to Eric and he still wants the python cli to not come up each time VisIt starts so I will change that for 2.9.2 Kevin chatted with me about this. I guess Barbara doesn't like the CLI window coming up when she has no immediate plans to use it. I kinda agree. Kevin and I think we can adjust when VisIt reads the visitrc file from startup to when the user realizes either the 'Options>Command' window or the 'Options>Macros' window. Removing it from startup means the cli window won't be realized on startup. It will be realized only when the user dives into either commands or macros, both of which are a pretty good indication they will want the CLI window anyways. So, I confirmed with Brad that changing VisIt to a) read visitrc and b) start CLI only when Options>Commands or Options>Macros windows are updated is not a bad idea. Hello:Ive updated VisIt so that the CLI no longer starts automatically on the existence of the visitrc file. The CLI will now start ondemand when the user selects the Macromenu item or the Macro window is posted or set to be visible on startup.2.9RC:Sending gui/QvisGUIApplication.CSending resources/help/en_US/relnotes2.9.2.htmlTransmitting file data ..Committed revision 26618.Trunk:Sending gui/QvisGUIApplication.CSending resources/help/en_US/relnotes2.9.2.htmlTransmitting file data ..Committed revision 26620.KevinKevin S. GriffinVisIt Software Developer, ASQPhD Student, Univ of California Davis Phone: 925.422.7178 EMail: griffin28`llnl.gov<mailto:griffin28`llnl.gov> Mail Stop: L-098
| 1.0 | VisIt exits when you exit the CLI - Barbara Kornblum had saved setting with the macro window containing some macros in the macro tab. This caused the python window to come up each time she started VisIt. Whenever she exited it, VisIt would exit as well. This should not happen. I also tried the simple of case of starting VisIt, bringing up the python cli window and then typing "quit()" in the window would exit VisIt.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 2264
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: Urgent
Subject: VisIt exits when you exit the CLI
Assigned to: Kevin Griffin
Category: -
Target version: 2.9.2
Author: Eric Brugger
Start: 05/08/2015
Due date:
% Done: 100%
Estimated time:
Created: 05/08/2015 03:29 pm
Updated: 06/05/2015 03:17 pm
Likelihood: 3 - Occasional
Severity: 3 - Major Irritation
Found in version: 2.8.2
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
Barbara Kornblum had saved setting with the macro window containing some macros in the macro tab. This caused the python window to come up each time she started VisIt. Whenever she exited it, VisIt would exit as well. This should not happen. I also tried the simple of case of starting VisIt, bringing up the python cli window and then typing "quit()" in the window would exit VisIt.
Comments:
In the latest release (2.9.1) the python cld window does come up, however, typing "quit()" in the python cli window DOESN'T shut down VisIt. I talked to Eric and he still wants the python cli to not come up each time VisIt starts so I will change that for 2.9.2 Kevin chatted with me about this. I guess Barbara doesn't like the CLI window coming up when she has no immediate plans to use it. I kinda agree. Kevin and I think we can adjust when VisIt reads the visitrc file from startup to when the user realizes either the 'Options>Command' window or the 'Options>Macros' window. Removing it from startup means the cli window won't be realized on startup. It will be realized only when the user dives into either commands or macros, both of which are a pretty good indication they will want the CLI window anyways. So, I confirmed with Brad that changing VisIt to a) read visitrc and b) start CLI only when Options>Commands or Options>Macros windows are updated is not a bad idea. Hello:Ive updated VisIt so that the CLI no longer starts automatically on the existence of the visitrc file. The CLI will now start ondemand when the user selects the Macromenu item or the Macro window is posted or set to be visible on startup.2.9RC:Sending gui/QvisGUIApplication.CSending resources/help/en_US/relnotes2.9.2.htmlTransmitting file data ..Committed revision 26618.Trunk:Sending gui/QvisGUIApplication.CSending resources/help/en_US/relnotes2.9.2.htmlTransmitting file data ..Committed revision 26620.KevinKevin S. GriffinVisIt Software Developer, ASQPhD Student, Univ of California Davis Phone: 925.422.7178 EMail: griffin28`llnl.gov<mailto:griffin28`llnl.gov> Mail Stop: L-098
| priority | visit exits when you exit the cli barbara kornblum had saved setting with the macro window containing some macros in the macro tab this caused the python window to come up each time she started visit whenever she exited it visit would exit as well this should not happen i also tried the simple of case of starting visit bringing up the python cli window and then typing quit in the window would exit visit redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status resolved project visit tracker bug priority urgent subject visit exits when you exit the cli assigned to kevin griffin category target version author eric brugger start due date done estimated time created pm updated pm likelihood occasional severity major irritation found in version impact expected use os all support group any description barbara kornblum had saved setting with the macro window containing some macros in the macro tab this caused the python window to come up each time she started visit whenever she exited it visit would exit as well this should not happen i also tried the simple of case of starting visit bringing up the python cli window and then typing quit in the window would exit visit comments in the latest release the python cld window does come up however typing quit in the python cli window doesn t shut down visit i talked to eric and he still wants the python cli to not come up each time visit starts so i will change that for kevin chatted with me about this i guess barbara doesn t like the cli window coming up when she has no immediate plans to use it i kinda agree kevin and i think we can adjust when visit reads the visitrc file from startup to when the user realizes either the options command window or the options macros window removing it from startup means the cli window won t be realized on startup it will be realized only when the user dives into either commands or macros both of which are a pretty good indication they will want the cli window anyways so i confirmed with brad that changing visit to a read visitrc and b start cli only when options commands or options macros windows are updated is not a bad idea hello ive updated visit so that the cli no longer starts automatically on the existence of the visitrc file the cli will now start ondemand when the user selects the macromenu item or the macro window is posted or set to be visible on startup sending gui qvisguiapplication csending resources help en us htmltransmitting file data committed revision trunk sending gui qvisguiapplication csending resources help en us htmltransmitting file data committed revision kevinkevin s griffinvisit software developer asqphd student univ of california davis phone email llnl gov mail stop l | 1 |
41,929 | 2,869,088,509 | IssuesEvent | 2015-06-05 23:14:25 | dart-lang/polymer-dart | https://api.github.com/repos/dart-lang/polymer-dart | closed | messages generated by the tool need to escape {{ }} | bug Fixed Priority-Medium | <a href="https://github.com/sigmundch"><img src="https://avatars.githubusercontent.com/u/2049220?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [sigmundch](https://github.com/sigmundch)**
_Originally opened as dart-lang/sdk#21019_
----
Because the dartlang.org site also uses more than makrdown (jekyll and other things), the {{ }} bindings end up interpreted as some kind of expression. We need to escape them in the tool that generates the markdown for the warning/errors page. | 1.0 | messages generated by the tool need to escape {{ }} - <a href="https://github.com/sigmundch"><img src="https://avatars.githubusercontent.com/u/2049220?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [sigmundch](https://github.com/sigmundch)**
_Originally opened as dart-lang/sdk#21019_
----
Because the dartlang.org site also uses more than makrdown (jekyll and other things), the {{ }} bindings end up interpreted as some kind of expression. We need to escape them in the tool that generates the markdown for the warning/errors page. | priority | messages generated by the tool need to escape issue by originally opened as dart lang sdk because the dartlang org site also uses more than makrdown jekyll and other things the bindings end up interpreted as some kind of expression we need to escape them in the tool that generates the markdown for the warning errors page | 1 |
184,526 | 6,714,011,656 | IssuesEvent | 2017-10-13 15:19:56 | HoneycuttInc/Thorncastle | https://api.github.com/repos/HoneycuttInc/Thorncastle | closed | Task 7.6: Not prompted to press "Y" | Medium Priority | The task contains: "When prompted to confirm, type Y and then select Enter."
However, I was never prompted to confirm anything. | 1.0 | Task 7.6: Not prompted to press "Y" - The task contains: "When prompted to confirm, type Y and then select Enter."
However, I was never prompted to confirm anything. | priority | task not prompted to press y the task contains when prompted to confirm type y and then select enter however i was never prompted to confirm anything | 1 |
80,032 | 3,549,765,668 | IssuesEvent | 2016-01-20 19:18:01 | bcroden/QuizDeck-Client | https://api.github.com/repos/bcroden/QuizDeck-Client | opened | Create Quiz Management Screen | feature priority: medium | Need to implement a screen for a user to manage the quizzes that they have created. | 1.0 | Create Quiz Management Screen - Need to implement a screen for a user to manage the quizzes that they have created. | priority | create quiz management screen need to implement a screen for a user to manage the quizzes that they have created | 1 |
432,604 | 12,495,627,076 | IssuesEvent | 2020-06-01 13:31:43 | dhenry-KCI/FredCo-Post-Go-Live- | https://api.github.com/repos/dhenry-KCI/FredCo-Post-Go-Live- | closed | Business License - Liquor License - Add Hotel Lobby Fee | Medium Priority | See issue/request from Dawn's email below. Need to confirm whether or not the Hotel Lobby fees exists and is expired, and therefore needs to be unexpired, or if the fee needs to be created as new.


| 1.0 | Business License - Liquor License - Add Hotel Lobby Fee - See issue/request from Dawn's email below. Need to confirm whether or not the Hotel Lobby fees exists and is expired, and therefore needs to be unexpired, or if the fee needs to be created as new.


| priority | business license liquor license add hotel lobby fee see issue request from dawn s email below need to confirm whether or not the hotel lobby fees exists and is expired and therefore needs to be unexpired or if the fee needs to be created as new | 1 |
75,384 | 3,461,917,290 | IssuesEvent | 2015-12-20 14:07:25 | sandrotosi/fdupes-issues | https://api.github.com/repos/sandrotosi/fdupes-issues | closed | please respect access permissions for -L | bug imported Priority-Medium | _From [matrixhasu](https://code.google.com/u/matrixhasu/) on August 01, 2011 15:36:46_
I'm forwarding the debian bug 635158, http://bugs.debian.org/635158 :
\>>>
fdupes should respect uid, gid and access permissions before
replacing files by hard links. Sample session:
% umask 0022; echo hello >a; cp -p a b; ln b c; chmod go-r b; ls -li
total 12
27394110 -rw-r--r-- 1 harri harri 6 Jul 23 11:36 a
27394111 -rw------- 2 harri harri 6 Jul 23 11:36 b
27394111 -rw------- 2 harri harri 6 Jul 23 11:36 c
% fdupes -L .
[+] ./c
[h] ./a
[h] ./b
% ls -li
total 12
27394111 -rw------- 3 harri harri 6 Jul 23 11:36 a
27394111 -rw------- 3 harri harri 6 Jul 23 11:36 b
27394111 -rw------- 3 harri harri 6 Jul 23 11:36 c
See how a world readable file became unreadable for anybody
but the owner?
Since "a" has different access permissions it shouldn't
have been replaced by a hard link to b. Same goes for
identical files with different owners. fdupes is loosing
too much information here.
\<<<
_Original issue: http://code.google.com/p/fdupes/issues/detail?id=18_ | 1.0 | please respect access permissions for -L - _From [matrixhasu](https://code.google.com/u/matrixhasu/) on August 01, 2011 15:36:46_
I'm forwarding the debian bug 635158, http://bugs.debian.org/635158 :
\>>>
fdupes should respect uid, gid and access permissions before
replacing files by hard links. Sample session:
% umask 0022; echo hello >a; cp -p a b; ln b c; chmod go-r b; ls -li
total 12
27394110 -rw-r--r-- 1 harri harri 6 Jul 23 11:36 a
27394111 -rw------- 2 harri harri 6 Jul 23 11:36 b
27394111 -rw------- 2 harri harri 6 Jul 23 11:36 c
% fdupes -L .
[+] ./c
[h] ./a
[h] ./b
% ls -li
total 12
27394111 -rw------- 3 harri harri 6 Jul 23 11:36 a
27394111 -rw------- 3 harri harri 6 Jul 23 11:36 b
27394111 -rw------- 3 harri harri 6 Jul 23 11:36 c
See how a world readable file became unreadable for anybody
but the owner?
Since "a" has different access permissions it shouldn't
have been replaced by a hard link to b. Same goes for
identical files with different owners. fdupes is loosing
too much information here.
\<<<
_Original issue: http://code.google.com/p/fdupes/issues/detail?id=18_ | priority | please respect access permissions for l from on august i m forwarding the debian bug fdupes should respect uid gid and access permissions before replacing files by hard links sample session umask echo hello a cp p a b ln b c chmod go r b ls li total rw r r harri harri jul a rw harri harri jul b rw harri harri jul c fdupes l c a b ls li total rw harri harri jul a rw harri harri jul b rw harri harri jul c see how a world readable file became unreadable for anybody but the owner since a has different access permissions it shouldn t have been replaced by a hard link to b same goes for identical files with different owners fdupes is loosing too much information here original issue | 1 |
308,383 | 9,438,543,671 | IssuesEvent | 2019-04-14 00:59:17 | x13pixels/remedybg-issues | https://api.github.com/repos/x13pixels/remedybg-issues | opened | Memory window: no indication upon clipping values | Component: Memory Window Priority: 6 (Medium) Status: Accepted Type: Bug | [simon] There is no visual indication that the panel is clipped if it's too big for the available size. At some point I wasn't understanding why I didn't see enough memory because the panel only had space for the first 16 columns but the memory setting was on 32 column. Also there is no way to see what is clipped unless I resize the panel. So a scroll bar would be useful | 1.0 | Memory window: no indication upon clipping values - [simon] There is no visual indication that the panel is clipped if it's too big for the available size. At some point I wasn't understanding why I didn't see enough memory because the panel only had space for the first 16 columns but the memory setting was on 32 column. Also there is no way to see what is clipped unless I resize the panel. So a scroll bar would be useful | priority | memory window no indication upon clipping values there is no visual indication that the panel is clipped if it s too big for the available size at some point i wasn t understanding why i didn t see enough memory because the panel only had space for the first columns but the memory setting was on column also there is no way to see what is clipped unless i resize the panel so a scroll bar would be useful | 1 |
497,305 | 14,367,842,693 | IssuesEvent | 2020-12-01 07:25:19 | teamforus/general | https://api.github.com/repos/teamforus/general | closed | Image uploader: link to image rights explanation | Approval: Granted Epic Priority: Must have Scope: Medium Status: Planned Type: Change request project-100 | Learn more about change requests here: https://bit.ly/39CWeEE
### Requested by:
Groningen
### Change description
There should be a terms and conditions page that is linked from the image uploader. This page will be a generic external website.
- [x] @maartenfv could you share the link
Ik beschik over [de rechten]() van de afbeelding.
| 1.0 | Image uploader: link to image rights explanation - Learn more about change requests here: https://bit.ly/39CWeEE
### Requested by:
Groningen
### Change description
There should be a terms and conditions page that is linked from the image uploader. This page will be a generic external website.
- [x] @maartenfv could you share the link
Ik beschik over [de rechten]() van de afbeelding.
| priority | image uploader link to image rights explanation learn more about change requests here requested by groningen change description there should be a terms and conditions page that is linked from the image uploader this page will be a generic external website maartenfv could you share the link ik beschik over van de afbeelding | 1 |
58,520 | 3,089,699,800 | IssuesEvent | 2015-08-25 23:06:30 | google/googletest | https://api.github.com/repos/google/googletest | opened | Make thread-safe on Windows | auto-migrated Priority-Medium Type-Enhancement | _From @GoogleCodeExporter on August 24, 2015 22:40_
```
As the CookBook states, gmock currently is not thread-safe on Windows.
It would be great for Chrome if this feature could be added. Chrome is highly
multi-threaded and it is sometimes not possible to avoid spinning up a helper
thread in unit tests.
As things stand right now, it is easy to write a multi-threaded test under
Linux only to have it flake in weird ways under Windows.
```
Original issue reported on code.google.com by `bartfab@chromium.org` on 11 May 2012 at 2:10
_Copied from original issue: google/googlemock#156_ | 1.0 | Make thread-safe on Windows - _From @GoogleCodeExporter on August 24, 2015 22:40_
```
As the CookBook states, gmock currently is not thread-safe on Windows.
It would be great for Chrome if this feature could be added. Chrome is highly
multi-threaded and it is sometimes not possible to avoid spinning up a helper
thread in unit tests.
As things stand right now, it is easy to write a multi-threaded test under
Linux only to have it flake in weird ways under Windows.
```
Original issue reported on code.google.com by `bartfab@chromium.org` on 11 May 2012 at 2:10
_Copied from original issue: google/googlemock#156_ | priority | make thread safe on windows from googlecodeexporter on august as the cookbook states gmock currently is not thread safe on windows it would be great for chrome if this feature could be added chrome is highly multi threaded and it is sometimes not possible to avoid spinning up a helper thread in unit tests as things stand right now it is easy to write a multi threaded test under linux only to have it flake in weird ways under windows original issue reported on code google com by bartfab chromium org on may at copied from original issue google googlemock | 1 |
290,361 | 8,893,763,963 | IssuesEvent | 2019-01-16 00:50:28 | quipucords/quipucords | https://api.github.com/repos/quipucords/quipucords | closed | Change default port for Quipucords server to 9443 | 0.0.46-required externally reported feature request priority - medium | ## Feature description:
Since QPC could potentially be installed on a system with other HTTPS services, we should choose a port other than the default. A good example is customers may have their Satellite server configured to be able to communicate with all RHEL servers in the network through SSH, so it's a good candidate to run QPC, but if QPC is installed, it will conflict with satellite on the default port.
### Is your feature request related to a problem?
Potential to conflict with common applications
### Describe the solution you'd like
Change it to something less common through the automated installer and change the CLI to connect to that port by default. I think 8443 was suggested, but it might also be too common since JBoss EAP and others use it.
We will use 9443
___
## Acceptance Criteria:
- [ ] Verify that user who installs QPC with automated installer can log in without changing settings on CLI
- [ ] Verify that application configured for HTTPS already on the box are not affected by QPC's port
___
## Additional context
Add any other context or screenshots about the feature request here.
| 1.0 | Change default port for Quipucords server to 9443 - ## Feature description:
Since QPC could potentially be installed on a system with other HTTPS services, we should choose a port other than the default. A good example is customers may have their Satellite server configured to be able to communicate with all RHEL servers in the network through SSH, so it's a good candidate to run QPC, but if QPC is installed, it will conflict with satellite on the default port.
### Is your feature request related to a problem?
Potential to conflict with common applications
### Describe the solution you'd like
Change it to something less common through the automated installer and change the CLI to connect to that port by default. I think 8443 was suggested, but it might also be too common since JBoss EAP and others use it.
We will use 9443
___
## Acceptance Criteria:
- [ ] Verify that user who installs QPC with automated installer can log in without changing settings on CLI
- [ ] Verify that application configured for HTTPS already on the box are not affected by QPC's port
___
## Additional context
Add any other context or screenshots about the feature request here.
| priority | change default port for quipucords server to feature description since qpc could potentially be installed on a system with other https services we should choose a port other than the default a good example is customers may have their satellite server configured to be able to communicate with all rhel servers in the network through ssh so it s a good candidate to run qpc but if qpc is installed it will conflict with satellite on the default port is your feature request related to a problem potential to conflict with common applications describe the solution you d like change it to something less common through the automated installer and change the cli to connect to that port by default i think was suggested but it might also be too common since jboss eap and others use it we will use acceptance criteria verify that user who installs qpc with automated installer can log in without changing settings on cli verify that application configured for https already on the box are not affected by qpc s port additional context add any other context or screenshots about the feature request here | 1 |
509,787 | 14,743,451,168 | IssuesEvent | 2021-01-07 13:56:21 | MapColonies/image-exporter-client | https://api.github.com/repos/MapColonies/image-exporter-client | closed | Export table has no indication of exported layer | bug enhancement priority: medium severity: low | When looking at the export table, there is no indication of the layer from which the geopackage was exported from. If the layer source is switched, the user may think the exports refer to the current displayed layer.
We should add an "source layer" column to the export table. | 1.0 | Export table has no indication of exported layer - When looking at the export table, there is no indication of the layer from which the geopackage was exported from. If the layer source is switched, the user may think the exports refer to the current displayed layer.
We should add an "source layer" column to the export table. | priority | export table has no indication of exported layer when looking at the export table there is no indication of the layer from which the geopackage was exported from if the layer source is switched the user may think the exports refer to the current displayed layer we should add an source layer column to the export table | 1 |
712,333 | 24,491,610,910 | IssuesEvent | 2022-10-10 03:02:28 | AY2223S1-CS2103-F13-3/tp | https://api.github.com/repos/AY2223S1-CS2103-F13-3/tp | closed | I can add new people to my meetings | Enhancement Priority Medium | Currently, when meetings are created and the initial people are included in them, there are no other ways to include new people in these meetings. Thus, this enhancement would incorporate the feature of adding new people to existing meetings and solve this issue. | 1.0 | I can add new people to my meetings - Currently, when meetings are created and the initial people are included in them, there are no other ways to include new people in these meetings. Thus, this enhancement would incorporate the feature of adding new people to existing meetings and solve this issue. | priority | i can add new people to my meetings currently when meetings are created and the initial people are included in them there are no other ways to include new people in these meetings thus this enhancement would incorporate the feature of adding new people to existing meetings and solve this issue | 1 |
281,734 | 8,698,699,404 | IssuesEvent | 2018-12-05 00:35:54 | AugurProject/augur | https://api.github.com/repos/AugurProject/augur | closed | transaction pg displaying transactions for trades being queued despite not having confirmation | Bug Priority: Medium | those trades do eventually go away with a refresh or going to another pg.
Steps to reproduce (hopefully)...
Create a Cat 5 market
Add 3 bids and 3 offers for outcome 1
4 offers for Outcome 2
4 bids for outcome 3
3 bids/offers for outcome 4
continuously approve all MM signing boxes...
This only occurs when only some of the orders make it onto the orderbook and some do not | 1.0 | transaction pg displaying transactions for trades being queued despite not having confirmation - those trades do eventually go away with a refresh or going to another pg.
Steps to reproduce (hopefully)...
Create a Cat 5 market
Add 3 bids and 3 offers for outcome 1
4 offers for Outcome 2
4 bids for outcome 3
3 bids/offers for outcome 4
continuously approve all MM signing boxes...
This only occurs when only some of the orders make it onto the orderbook and some do not | priority | transaction pg displaying transactions for trades being queued despite not having confirmation those trades do eventually go away with a refresh or going to another pg steps to reproduce hopefully create a cat market add bids and offers for outcome offers for outcome bids for outcome bids offers for outcome continuously approve all mm signing boxes this only occurs when only some of the orders make it onto the orderbook and some do not | 1 |
396,935 | 11,716,000,704 | IssuesEvent | 2020-03-09 14:59:40 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio] S3 datasources with only slash in path should upload to root of s3 folder | bug priority: medium | ## Describe the bug
Currently having only `/` in the path for any S3 datasources cause the upload and upload from browse to save the files in `//`
## To Reproduce
Steps to reproduce the behavior:
1. Add a browse / upload S3 datasource and set the Repository Path to `/`
2. Upload a file to S3
3. The file in Studio is reference as `/remote-assets/s3/s3-default//download.html` notice the double `/`
## Expected behavior
When Repository Path is set to `/` Studio should save the files in the root of S3
## Screenshots
File uploaded in S3 is saved in `/` folder in the root of S3

## Logs
N/A
## Specs
### Version
`3.1.6-SNAPSHOT`
### OS
Any
### Browser
Any
## Additional context
Related to https://github.com/craftercms/craftercms/issues/3680
| 1.0 | [studio] S3 datasources with only slash in path should upload to root of s3 folder - ## Describe the bug
Currently having only `/` in the path for any S3 datasources cause the upload and upload from browse to save the files in `//`
## To Reproduce
Steps to reproduce the behavior:
1. Add a browse / upload S3 datasource and set the Repository Path to `/`
2. Upload a file to S3
3. The file in Studio is reference as `/remote-assets/s3/s3-default//download.html` notice the double `/`
## Expected behavior
When Repository Path is set to `/` Studio should save the files in the root of S3
## Screenshots
File uploaded in S3 is saved in `/` folder in the root of S3

## Logs
N/A
## Specs
### Version
`3.1.6-SNAPSHOT`
### OS
Any
### Browser
Any
## Additional context
Related to https://github.com/craftercms/craftercms/issues/3680
| priority | datasources with only slash in path should upload to root of folder describe the bug currently having only in the path for any datasources cause the upload and upload from browse to save the files in to reproduce steps to reproduce the behavior add a browse upload datasource and set the repository path to upload a file to the file in studio is reference as remote assets default download html notice the double expected behavior when repository path is set to studio should save the files in the root of screenshots file uploaded in is saved in folder in the root of logs n a specs version snapshot os any browser any additional context related to | 1 |
212,686 | 7,241,574,111 | IssuesEvent | 2018-02-14 02:00:09 | ValkyrienWarfare/Valkyrien-Warfare-Revamped | https://api.github.com/repos/ValkyrienWarfare/Valkyrien-Warfare-Revamped | closed | Incompatibility with NotEnoughIDs | bug compatibility priority: medium unconfirmed | Game Crashes during world gen when NotEnoughIDs is installed.
See:
[2018-02-10-7.log](https://github.com/ValkyrienWarfare/Valkyrien-Warfare-Revamped/files/1713324/2018-02-10-7.log)
| 1.0 | Incompatibility with NotEnoughIDs - Game Crashes during world gen when NotEnoughIDs is installed.
See:
[2018-02-10-7.log](https://github.com/ValkyrienWarfare/Valkyrien-Warfare-Revamped/files/1713324/2018-02-10-7.log)
| priority | incompatibility with notenoughids game crashes during world gen when notenoughids is installed see | 1 |
718,046 | 24,702,279,632 | IssuesEvent | 2022-10-19 16:07:30 | returntocorp/semgrep | https://api.github.com/repos/returntocorp/semgrep | closed | autofix mishandles embedded quotes in string replacements for Python | bug priority:medium user:external feature:autofix alpha | Given a rule like this:
```yaml
rules:
- pattern: foo("$S")
fix: bar("$S")
languages: [python]
```
autofix will replace:
```python
foo('hello "friend"')
```
with
```python
bar("hello "friend"")
```
which is a syntax error.
**Expected behavior**
Should get a properly quoted string, either:
```python
bar('hello "friend"')
```
or
```python
bar("hello \"friend\"")
```
**What is the priority of the bug to you?**
- P1: important to fix or quite annoying
**Environment**
Latest Semgrep (0.59 at time of writing)
Example in playground: https://semgrep.dev/s/spookylukey:string-quoting-bug | 1.0 | autofix mishandles embedded quotes in string replacements for Python - Given a rule like this:
```yaml
rules:
- pattern: foo("$S")
fix: bar("$S")
languages: [python]
```
autofix will replace:
```python
foo('hello "friend"')
```
with
```python
bar("hello "friend"")
```
which is a syntax error.
**Expected behavior**
Should get a properly quoted string, either:
```python
bar('hello "friend"')
```
or
```python
bar("hello \"friend\"")
```
**What is the priority of the bug to you?**
- P1: important to fix or quite annoying
**Environment**
Latest Semgrep (0.59 at time of writing)
Example in playground: https://semgrep.dev/s/spookylukey:string-quoting-bug | priority | autofix mishandles embedded quotes in string replacements for python given a rule like this yaml rules pattern foo s fix bar s languages autofix will replace python foo hello friend with python bar hello friend which is a syntax error expected behavior should get a properly quoted string either python bar hello friend or python bar hello friend what is the priority of the bug to you important to fix or quite annoying environment latest semgrep at time of writing example in playground | 1 |
241,044 | 7,808,431,560 | IssuesEvent | 2018-06-11 20:10:03 | hydroshare/hydroshare | https://api.github.com/repos/hydroshare/hydroshare | closed | Timeout issue for large set of file display on resource landing page | Medium Priority User Experience bug | For resources with large set of files, such as https://www.hydroshare.org/resource/8fd42ad1d86f495a914e7ce9be21bbce/ which has about 15k files all residing at the top level, the spinning wheel goes on and on until receiving a 504 (Gateway Time-out) error with no files being displayed. On the current www, there is also an request error as shown below:
```
Failed to load resource: /resource/8fd42ad1d86f495a914e7ce9be21bbce/undefined/ the server responded with a status of 404 (NOT FOUND)
```
However, we don't see the error above on beta, so assume the error has been fixed along the way for release 1.10. However, we need to think through how to handle file display for a resource with such large set of files. Assigning this to @alvacouch and @Maurier for initial ideas for now. | 1.0 | Timeout issue for large set of file display on resource landing page - For resources with large set of files, such as https://www.hydroshare.org/resource/8fd42ad1d86f495a914e7ce9be21bbce/ which has about 15k files all residing at the top level, the spinning wheel goes on and on until receiving a 504 (Gateway Time-out) error with no files being displayed. On the current www, there is also an request error as shown below:
```
Failed to load resource: /resource/8fd42ad1d86f495a914e7ce9be21bbce/undefined/ the server responded with a status of 404 (NOT FOUND)
```
However, we don't see the error above on beta, so assume the error has been fixed along the way for release 1.10. However, we need to think through how to handle file display for a resource with such large set of files. Assigning this to @alvacouch and @Maurier for initial ideas for now. | priority | timeout issue for large set of file display on resource landing page for resources with large set of files such as which has about files all residing at the top level the spinning wheel goes on and on until receiving a gateway time out error with no files being displayed on the current www there is also an request error as shown below failed to load resource resource undefined the server responded with a status of not found however we don t see the error above on beta so assume the error has been fixed along the way for release however we need to think through how to handle file display for a resource with such large set of files assigning this to alvacouch and maurier for initial ideas for now | 1 |
116,231 | 4,698,904,720 | IssuesEvent | 2016-10-12 14:18:04 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | Mysterious CI Failure - Undefined function 'parseparams' for input arguments of type 'cell'. | configuration: matlab priority: medium type: bug type: continuous integration | # The Problem
Example 1:
```
Undefined function 'parseparams' for input arguments of type 'cell'.
Error in mesh (line 53)
[reg, prop]=parseparams(args);
Error in RigidBodyHeightMapTerrain/plotTerrain (line 66)
mesh(reshape(xyz(1,:),size(X)),reshape(xyz(2,:),size(X)),reshape(xyz(3,:),size(X)));
Error in terrainInterpTest (line 20)
plotTerrain(options.terrain);
CMake Error at /usr/local/share/cmake-3.7/Modules/MatlabTestsRedirect.cmake:104 (message):
[MATLAB] TEST FAILED Matlab returned 1
```
Example 2:
```
Error using quiver (line 44)
Undefined function 'parseparams' for input arguments of type 'cell'.
Error in testFootstepSolvers/test_solver (line 74)
quiver(h, steps(1,r_ndx), steps(2, r_ndx), cos(steps(6,r_ndx)), sin(steps(6,r_ndx)), 'b', 'AutoScaleFactor', 0.2)
Error in testFootstepSolvers (line 92)
test_solver(@footstepPlanner.footstepMIQP, h, 'miqp');
CMake Error at /usr/local/share/cmake-3.7/Modules/MatlabTestsRedirect.cmake:104 (message):
[MATLAB] TEST FAILED Matlab returned 1
```
Example 3:
```
Error using quiver (line 44)
Undefined function 'parseparams' for input arguments of type 'cell'.
Error in testFootstepSolversNoRegions/test_solver (line 57)
quiver(h, steps(1,r_ndx), steps(2, r_ndx), cos(steps(6,r_ndx)), sin(steps(6,r_ndx)), 'b', 'AutoScaleFactor', 0.2)
Error in testFootstepSolversNoRegions (line 69)
test_solver(@footstepPlanner.footstepMIQP, h, 'miqp');
CMake Error at /usr/local/share/cmake-3.7/Modules/MatlabTestsRedirect.cmake:104 (message):
[MATLAB] TEST FAILED Matlab returned 1
```
# Example Logs
* https://drake-jenkins.csail.mit.edu/view/Nightly%20Production/job/linux-gcc-ninja-nightly-matlab-debug/70/
# Prognosis
MATLAB toolbox license issue? | 1.0 | Mysterious CI Failure - Undefined function 'parseparams' for input arguments of type 'cell'. - # The Problem
Example 1:
```
Undefined function 'parseparams' for input arguments of type 'cell'.
Error in mesh (line 53)
[reg, prop]=parseparams(args);
Error in RigidBodyHeightMapTerrain/plotTerrain (line 66)
mesh(reshape(xyz(1,:),size(X)),reshape(xyz(2,:),size(X)),reshape(xyz(3,:),size(X)));
Error in terrainInterpTest (line 20)
plotTerrain(options.terrain);
CMake Error at /usr/local/share/cmake-3.7/Modules/MatlabTestsRedirect.cmake:104 (message):
[MATLAB] TEST FAILED Matlab returned 1
```
Example 2:
```
Error using quiver (line 44)
Undefined function 'parseparams' for input arguments of type 'cell'.
Error in testFootstepSolvers/test_solver (line 74)
quiver(h, steps(1,r_ndx), steps(2, r_ndx), cos(steps(6,r_ndx)), sin(steps(6,r_ndx)), 'b', 'AutoScaleFactor', 0.2)
Error in testFootstepSolvers (line 92)
test_solver(@footstepPlanner.footstepMIQP, h, 'miqp');
CMake Error at /usr/local/share/cmake-3.7/Modules/MatlabTestsRedirect.cmake:104 (message):
[MATLAB] TEST FAILED Matlab returned 1
```
Example 3:
```
Error using quiver (line 44)
Undefined function 'parseparams' for input arguments of type 'cell'.
Error in testFootstepSolversNoRegions/test_solver (line 57)
quiver(h, steps(1,r_ndx), steps(2, r_ndx), cos(steps(6,r_ndx)), sin(steps(6,r_ndx)), 'b', 'AutoScaleFactor', 0.2)
Error in testFootstepSolversNoRegions (line 69)
test_solver(@footstepPlanner.footstepMIQP, h, 'miqp');
CMake Error at /usr/local/share/cmake-3.7/Modules/MatlabTestsRedirect.cmake:104 (message):
[MATLAB] TEST FAILED Matlab returned 1
```
# Example Logs
* https://drake-jenkins.csail.mit.edu/view/Nightly%20Production/job/linux-gcc-ninja-nightly-matlab-debug/70/
# Prognosis
MATLAB toolbox license issue? | priority | mysterious ci failure undefined function parseparams for input arguments of type cell the problem example undefined function parseparams for input arguments of type cell error in mesh line parseparams args error in rigidbodyheightmapterrain plotterrain line mesh reshape xyz size x reshape xyz size x reshape xyz size x error in terraininterptest line plotterrain options terrain cmake error at usr local share cmake modules matlabtestsredirect cmake message test failed matlab returned example error using quiver line undefined function parseparams for input arguments of type cell error in testfootstepsolvers test solver line quiver h steps r ndx steps r ndx cos steps r ndx sin steps r ndx b autoscalefactor error in testfootstepsolvers line test solver footstepplanner footstepmiqp h miqp cmake error at usr local share cmake modules matlabtestsredirect cmake message test failed matlab returned example error using quiver line undefined function parseparams for input arguments of type cell error in testfootstepsolversnoregions test solver line quiver h steps r ndx steps r ndx cos steps r ndx sin steps r ndx b autoscalefactor error in testfootstepsolversnoregions line test solver footstepplanner footstepmiqp h miqp cmake error at usr local share cmake modules matlabtestsredirect cmake message test failed matlab returned example logs prognosis matlab toolbox license issue | 1 |
482,940 | 13,916,158,957 | IssuesEvent | 2020-10-21 02:36:07 | AY2021S1-CS2103T-T11-1/tp | https://api.github.com/repos/AY2021S1-CS2103T-T11-1/tp | closed | Backlog of Test Cases for Reminder and Meeting | priority.Medium type.Task | - [x] `commands/reminder/AddCommand`
- [x] `commands/reminder/DeleteCommand`
- [x] `commands/reminder/ListCommand`
- [x] `commands/meeting/AddCommand`
- [x] `commands/meeting/DeleteCommand`
- [x] `commands/meeting/ListCommand`
- [x] `parser/reminder/AddCommandParser`
- [x] `parser/reminder/DeleteCommandParser`
- [x] `parser/reminder/ReminderCommandsParser` | 1.0 | Backlog of Test Cases for Reminder and Meeting - - [x] `commands/reminder/AddCommand`
- [x] `commands/reminder/DeleteCommand`
- [x] `commands/reminder/ListCommand`
- [x] `commands/meeting/AddCommand`
- [x] `commands/meeting/DeleteCommand`
- [x] `commands/meeting/ListCommand`
- [x] `parser/reminder/AddCommandParser`
- [x] `parser/reminder/DeleteCommandParser`
- [x] `parser/reminder/ReminderCommandsParser` | priority | backlog of test cases for reminder and meeting commands reminder addcommand commands reminder deletecommand commands reminder listcommand commands meeting addcommand commands meeting deletecommand commands meeting listcommand parser reminder addcommandparser parser reminder deletecommandparser parser reminder remindercommandsparser | 1 |
391,499 | 11,574,756,450 | IssuesEvent | 2020-02-21 08:13:39 | AY1920S2-CS2103T-W17-3/main | https://api.github.com/repos/AY1920S2-CS2103T-W17-3/main | opened | As a careless traveller, I want to be notified if I have forgotten certain aspects of my trip | priority.Medium type.Story | Avoid being underprepared for my trip | 1.0 | As a careless traveller, I want to be notified if I have forgotten certain aspects of my trip - Avoid being underprepared for my trip | priority | as a careless traveller i want to be notified if i have forgotten certain aspects of my trip avoid being underprepared for my trip | 1 |
599,686 | 18,280,715,159 | IssuesEvent | 2021-10-05 02:42:30 | lokka30/Treasury | https://api.github.com/repos/lokka30/Treasury | opened | Work on a Permissions API | enhancement help wanted on hold priority: medium developer thoughts wanted unknown target version approved | I'd like to implement a Permissions API into Treasury.
I'm very interested in what anyone has to say about this, since this is the perfect opportunity to create a great Permissions API.
I'm unsure when this will be added, and the Economy API is heavily prioritized over this. | 1.0 | Work on a Permissions API - I'd like to implement a Permissions API into Treasury.
I'm very interested in what anyone has to say about this, since this is the perfect opportunity to create a great Permissions API.
I'm unsure when this will be added, and the Economy API is heavily prioritized over this. | priority | work on a permissions api i d like to implement a permissions api into treasury i m very interested in what anyone has to say about this since this is the perfect opportunity to create a great permissions api i m unsure when this will be added and the economy api is heavily prioritized over this | 1 |
486,955 | 14,017,015,112 | IssuesEvent | 2020-10-29 15:10:32 | ChainSafe/forest | https://api.github.com/repos/ChainSafe/forest | closed | Moving types for actors into a different crate | Priority: 3 - Medium Type: Maintenance | **Issue summary**
<!-- A clear and concise description of what the task is. -->
This is to facilitate the upgrade to actors v2, while still supporting v1 in the future. Need to look into actors v2 to determine what types are shared. All types within actors that are shared between v1 and v2 must be moved into it's own crate.
**Other information and links**
<!-- Add any other context or screenshots about the issue here. -->
<!-- Thank you 🙏 --> | 1.0 | Moving types for actors into a different crate - **Issue summary**
<!-- A clear and concise description of what the task is. -->
This is to facilitate the upgrade to actors v2, while still supporting v1 in the future. Need to look into actors v2 to determine what types are shared. All types within actors that are shared between v1 and v2 must be moved into it's own crate.
**Other information and links**
<!-- Add any other context or screenshots about the issue here. -->
<!-- Thank you 🙏 --> | priority | moving types for actors into a different crate issue summary this is to facilitate the upgrade to actors while still supporting in the future need to look into actors to determine what types are shared all types within actors that are shared between and must be moved into it s own crate other information and links | 1 |
720,892 | 24,810,142,843 | IssuesEvent | 2022-10-25 08:47:09 | chaotic-aur/packages | https://api.github.com/repos/chaotic-aur/packages | closed | [Request] keeweb-desktop-bin | request:new-pkg priority:medium | ### Link to the package(s) in the AUR
https://aur.archlinux.org/packages/keeweb-desktop-bin
~~https://aur.archlinux.org/packages/keeweb-git~~
~~https://aur.archlinux.org/packages/keeweb~~
### Utility this package has for you
Desktop password manager compatible with KeePass databases
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
YES!
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [ ] Yes
### Does the package's license allow redistributing it?
YES!
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
_No response_ | 1.0 | [Request] keeweb-desktop-bin - ### Link to the package(s) in the AUR
https://aur.archlinux.org/packages/keeweb-desktop-bin
~~https://aur.archlinux.org/packages/keeweb-git~~
~~https://aur.archlinux.org/packages/keeweb~~
### Utility this package has for you
Desktop password manager compatible with KeePass databases
### Do you consider the package(s) to be useful for every Chaotic-AUR user?
YES!
### Do you consider the package to be useful for feature testing/preview?
- [ ] Yes
### Have you tested if the package builds in a clean chroot?
- [ ] Yes
### Does the package's license allow redistributing it?
YES!
### Have you searched the issues to ensure this request is unique?
- [X] YES!
### Have you read the README to ensure this package is not banned?
- [X] YES!
### More information
_No response_ | priority | keeweb desktop bin link to the package s in the aur utility this package has for you desktop password manager compatible with keepass databases do you consider the package s to be useful for every chaotic aur user yes do you consider the package to be useful for feature testing preview yes have you tested if the package builds in a clean chroot yes does the package s license allow redistributing it yes have you searched the issues to ensure this request is unique yes have you read the readme to ensure this package is not banned yes more information no response | 1 |
279,264 | 8,663,089,131 | IssuesEvent | 2018-11-28 16:29:49 | NCAR/METviewer | https://api.github.com/repos/NCAR/METviewer | closed | Enable the user to specify a plotting job name. MET-504 | component: client priority: medium type: enhancement | As of mv_1_1, the METViewer web GUI creates plots named "plot_YYYYMMDD_HHMMSS.png". Users often go through several iterations in the process of making one plot and doing so causes several version of the plot to show up in the history. Suggest adding a way for the user to specify the plotting job name to be used in place of "plot_timestamp". Each time that job is run, it'd over-write the existing output. That same job name should be used in the file names for the plot, xml, log, rscript, data, and sql. Also, when displaying the plot history along the left side, sort the files by revision date rather than in alphabetical order... that may already be happening, but we just need to check.
Need to check how would this affect the <cache_agg_stat> option? That's intended to avoid doing bootstrapping over and over again. If the same plot name is used, it'd be easy to check if that bootstrapping output file already exists for that job name.
| 1.0 | Enable the user to specify a plotting job name. MET-504 - As of mv_1_1, the METViewer web GUI creates plots named "plot_YYYYMMDD_HHMMSS.png". Users often go through several iterations in the process of making one plot and doing so causes several version of the plot to show up in the history. Suggest adding a way for the user to specify the plotting job name to be used in place of "plot_timestamp". Each time that job is run, it'd over-write the existing output. That same job name should be used in the file names for the plot, xml, log, rscript, data, and sql. Also, when displaying the plot history along the left side, sort the files by revision date rather than in alphabetical order... that may already be happening, but we just need to check.
Need to check how would this affect the <cache_agg_stat> option? That's intended to avoid doing bootstrapping over and over again. If the same plot name is used, it'd be easy to check if that bootstrapping output file already exists for that job name.
| priority | enable the user to specify a plotting job name met as of mv the metviewer web gui creates plots named plot yyyymmdd hhmmss png users often go through several iterations in the process of making one plot and doing so causes several version of the plot to show up in the history suggest adding a way for the user to specify the plotting job name to be used in place of plot timestamp each time that job is run it d over write the existing output that same job name should be used in the file names for the plot xml log rscript data and sql also when displaying the plot history along the left side sort the files by revision date rather than in alphabetical order that may already be happening but we just need to check need to check how would this affect the option that s intended to avoid doing bootstrapping over and over again if the same plot name is used it d be easy to check if that bootstrapping output file already exists for that job name | 1 |
580,103 | 17,205,069,865 | IssuesEvent | 2021-07-18 04:25:28 | mikemerin/FM-layouts | https://api.github.com/repos/mikemerin/FM-layouts | opened | Long Name Sensor | Category - Graphics Priority - 2 (medium) Type - Upgrade / Fix | For certain layouts improve showing the names if they're long. For example this year in 8:7 PineappleDerp_ was too long even when sizing down the font size | 1.0 | Long Name Sensor - For certain layouts improve showing the names if they're long. For example this year in 8:7 PineappleDerp_ was too long even when sizing down the font size | priority | long name sensor for certain layouts improve showing the names if they re long for example this year in pineapplederp was too long even when sizing down the font size | 1 |
500,208 | 14,493,103,051 | IssuesEvent | 2020-12-11 08:04:12 | bounswe/bounswe2020group7 | https://api.github.com/repos/bounswe/bounswe2020group7 | closed | Backend - Bug of PUT request of User Endpoint | Priority: Medium Subteam: Backend Type: Bug | When a request with all same values given to the PUT request it gives error. Please solve this bug, because it creates more load on the Frontend and Android.
Deadline: 08.12.2020 | 1.0 | Backend - Bug of PUT request of User Endpoint - When a request with all same values given to the PUT request it gives error. Please solve this bug, because it creates more load on the Frontend and Android.
Deadline: 08.12.2020 | priority | backend bug of put request of user endpoint when a request with all same values given to the put request it gives error please solve this bug because it creates more load on the frontend and android deadline | 1 |
82,500 | 3,610,486,254 | IssuesEvent | 2016-02-05 06:03:51 | DailyDilemma/COMP4350 | https://api.github.com/repos/DailyDilemma/COMP4350 | opened | Restrict viewing of sub-lists in Christmas list | Detailed User Story Priority: Medium | As a user, I should be able to restrict who can view each of my Christmas sub-lists, so anyone else viewing the shared list can only see the parts they are allowed to.
Cost: 1 day | 1.0 | Restrict viewing of sub-lists in Christmas list - As a user, I should be able to restrict who can view each of my Christmas sub-lists, so anyone else viewing the shared list can only see the parts they are allowed to.
Cost: 1 day | priority | restrict viewing of sub lists in christmas list as a user i should be able to restrict who can view each of my christmas sub lists so anyone else viewing the shared list can only see the parts they are allowed to cost day | 1 |
26,779 | 2,685,462,557 | IssuesEvent | 2015-03-30 01:11:47 | IssueMigrationTest/Test5 | https://api.github.com/repos/IssueMigrationTest/Test5 | closed | Makefile definitions | auto-migrated Priority-Medium Type-Enhancement | **Issue by [Fahrzin Hemmati](/fahhem)**
_16 Dec 2010 at 12:26 GMT_
_Originally opened on Google Code_
----
```
In the generated makefiles, there are multiple references to the location of
Python headers and shedskin's library code. This causes issues when Shedskin is
run on one computer and then the output is sent to another computer to be
compiled. If the other computer has a different version of python as the
default or installed Shedskin differently (/usr/share/shedskin/ or
/usr/share/python2.x/...) they have to run a find-and-replace on the
makefile(s).
Running a find-and-replace isn't the problem so much as the confusing errors
make outputs either when it can't find, for instance, Python.h or when it can't
find the sys.cpp target: "No rule to make sys.cpp".
If the generated makefiles instead had these lines at the top, it would signal
more clearly what to change, and allow single-line edits to affect the whole
makefile:
PYTHONDIR = /usr/share...
SHEDSKINDIR = /usr/share/shedskin/...
Of course, with the correct directories as found by Shedskin.
```
| 1.0 | Makefile definitions - **Issue by [Fahrzin Hemmati](/fahhem)**
_16 Dec 2010 at 12:26 GMT_
_Originally opened on Google Code_
----
```
In the generated makefiles, there are multiple references to the location of
Python headers and shedskin's library code. This causes issues when Shedskin is
run on one computer and then the output is sent to another computer to be
compiled. If the other computer has a different version of python as the
default or installed Shedskin differently (/usr/share/shedskin/ or
/usr/share/python2.x/...) they have to run a find-and-replace on the
makefile(s).
Running a find-and-replace isn't the problem so much as the confusing errors
make outputs either when it can't find, for instance, Python.h or when it can't
find the sys.cpp target: "No rule to make sys.cpp".
If the generated makefiles instead had these lines at the top, it would signal
more clearly what to change, and allow single-line edits to affect the whole
makefile:
PYTHONDIR = /usr/share...
SHEDSKINDIR = /usr/share/shedskin/...
Of course, with the correct directories as found by Shedskin.
```
| priority | makefile definitions issue by fahhem dec at gmt originally opened on google code in the generated makefiles there are multiple references to the location of python headers and shedskin s library code this causes issues when shedskin is run on one computer and then the output is sent to another computer to be compiled if the other computer has a different version of python as the default or installed shedskin differently usr share shedskin or usr share x they have to run a find and replace on the makefile s running a find and replace isn t the problem so much as the confusing errors make outputs either when it can t find for instance python h or when it can t find the sys cpp target no rule to make sys cpp if the generated makefiles instead had these lines at the top it would signal more clearly what to change and allow single line edits to affect the whole makefile pythondir usr share shedskindir usr share shedskin of course with the correct directories as found by shedskin | 1 |
228,832 | 7,568,206,349 | IssuesEvent | 2018-04-22 17:45:26 | RoboJackets/robocup-software | https://api.github.com/repos/RoboJackets/robocup-software | opened | Don't immediately kick on timeout when passing | area / soccer exp / adept (2) priority / medium status / new type / enhancement | Right now when we timeout while passing the robot immediately kicks even if it is facing backwards which seems like a problem. | 1.0 | Don't immediately kick on timeout when passing - Right now when we timeout while passing the robot immediately kicks even if it is facing backwards which seems like a problem. | priority | don t immediately kick on timeout when passing right now when we timeout while passing the robot immediately kicks even if it is facing backwards which seems like a problem | 1 |
200,169 | 7,000,905,855 | IssuesEvent | 2017-12-18 08:02:50 | b3aver/Automate | https://api.github.com/repos/b3aver/Automate | closed | Manage running errors | priority:medium time:medium topic:ui type:enhancement | - [x] Stop the execution if an error occurs.
- [x] Color in red the Action causing the error. | 1.0 | Manage running errors - - [x] Stop the execution if an error occurs.
- [x] Color in red the Action causing the error. | priority | manage running errors stop the execution if an error occurs color in red the action causing the error | 1 |
470,571 | 13,540,550,549 | IssuesEvent | 2020-09-16 14:47:54 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [studio] Deployment error when a site is created using the same site id of a site that was previously removed | bug priority: medium | ## Describe the bug
Studio fails to do the initial deploy sync content when a site is created using the same site id of a site that was previously removed.
## To Reproduce
Steps to reproduce the behavior:
1. Create a site from any BP
2. Remove the site
3. Create a new site from any BP using the same site id as Step 1
4. See error in tomcat log
## Expected behavior
No errors when site is created.
## Screenshots
N/A
## Logs
https://gist.github.com/yacdaniel/60aee7068c93d28aa7a2aff458a656e9
Email notification received
```
Deployment error on site empty01
The following content was unable to deploy:
Error:
org.springframework.jdbc.BadSqlGrammarException: ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: (conn:18) Result consisted of more than one row Query is: call tryLockPublishingForSite(?, ?, ?,?), parameters ['empty01','localhost/127.0.0.1',180,] ### The error may exist in org/craftercms/studio/api/v1/dal/SiteFeedMapper.xml ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: call tryLockPublishingForSite(?, ?, ?,?) ### Cause: java.sql.SQLSyntaxErrorException: (conn:18) Result consisted of more than one row Query is: call tryLockPublishingForSite(?, ?, ?,?), parameters ['empty01','localhost/127.0.0.1',180,] ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: (conn:18) Result consisted of more than one row Query is: call tryLockPublishingForSite(?, ?, ?,?), parameters ['empty01','localhost/127.0.0.1',180,]
```
## Specs
### Version
`3.1.x` and `3.2.x`
### OS
Any
### Browser
Any
## Additional context
N/A
| 1.0 | [studio] Deployment error when a site is created using the same site id of a site that was previously removed - ## Describe the bug
Studio fails to do the initial deploy sync content when a site is created using the same site id of a site that was previously removed.
## To Reproduce
Steps to reproduce the behavior:
1. Create a site from any BP
2. Remove the site
3. Create a new site from any BP using the same site id as Step 1
4. See error in tomcat log
## Expected behavior
No errors when site is created.
## Screenshots
N/A
## Logs
https://gist.github.com/yacdaniel/60aee7068c93d28aa7a2aff458a656e9
Email notification received
```
Deployment error on site empty01
The following content was unable to deploy:
Error:
org.springframework.jdbc.BadSqlGrammarException: ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: (conn:18) Result consisted of more than one row Query is: call tryLockPublishingForSite(?, ?, ?,?), parameters ['empty01','localhost/127.0.0.1',180,] ### The error may exist in org/craftercms/studio/api/v1/dal/SiteFeedMapper.xml ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: call tryLockPublishingForSite(?, ?, ?,?) ### Cause: java.sql.SQLSyntaxErrorException: (conn:18) Result consisted of more than one row Query is: call tryLockPublishingForSite(?, ?, ?,?), parameters ['empty01','localhost/127.0.0.1',180,] ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: (conn:18) Result consisted of more than one row Query is: call tryLockPublishingForSite(?, ?, ?,?), parameters ['empty01','localhost/127.0.0.1',180,]
```
## Specs
### Version
`3.1.x` and `3.2.x`
### OS
Any
### Browser
Any
## Additional context
N/A
| priority | deployment error when a site is created using the same site id of a site that was previously removed describe the bug studio fails to do the initial deploy sync content when a site is created using the same site id of a site that was previously removed to reproduce steps to reproduce the behavior create a site from any bp remove the site create a new site from any bp using the same site id as step see error in tomcat log expected behavior no errors when site is created screenshots n a logs email notification received deployment error on site the following content was unable to deploy error org springframework jdbc badsqlgrammarexception error querying database cause java sql sqlsyntaxerrorexception conn result consisted of more than one row query is call trylockpublishingforsite parameters the error may exist in org craftercms studio api dal sitefeedmapper xml the error may involve defaultparametermap the error occurred while setting parameters sql call trylockpublishingforsite cause java sql sqlsyntaxerrorexception conn result consisted of more than one row query is call trylockpublishingforsite parameters bad sql grammar nested exception is java sql sqlsyntaxerrorexception conn result consisted of more than one row query is call trylockpublishingforsite parameters specs version x and x os any browser any additional context n a | 1 |
38,134 | 2,839,413,577 | IssuesEvent | 2015-05-27 13:39:27 | NREL/EnergyPlus | https://api.github.com/repos/NREL/EnergyPlus | reopened | Remove support for obsolete load management options in HVACTemplate:Plant objects | ExpandObjects Priority S2 - Medium | Currently HVACTemplate:Plant:* objects have input for Load Distribution Scheme that have choices of Sequential, Uniform, and Optimal. These are really just a pass-through to the plantloop and condenserloop object, so I could add the new keywords as choices in the IDD.
@Myoldmopar If you don't object, I'm going to add the correct new key choices to the IDD (to match what's in the plantloop and condenserloop objects) as part of my expand objects update. And I will change expandobjects to accept any of those, including the old sequential.
This issue will remain open until after v8.2 release to add a new transition rule to convert any old Sequential or Uniform inputs to SequentialLoad and UniformLoad, unless you want to bite the bullet and to that for this round. | 1.0 | Remove support for obsolete load management options in HVACTemplate:Plant objects - Currently HVACTemplate:Plant:* objects have input for Load Distribution Scheme that have choices of Sequential, Uniform, and Optimal. These are really just a pass-through to the plantloop and condenserloop object, so I could add the new keywords as choices in the IDD.
@Myoldmopar If you don't object, I'm going to add the correct new key choices to the IDD (to match what's in the plantloop and condenserloop objects) as part of my expand objects update. And I will change expandobjects to accept any of those, including the old sequential.
This issue will remain open until after v8.2 release to add a new transition rule to convert any old Sequential or Uniform inputs to SequentialLoad and UniformLoad, unless you want to bite the bullet and to that for this round. | priority | remove support for obsolete load management options in hvactemplate plant objects currently hvactemplate plant objects have input for load distribution scheme that have choices of sequential uniform and optimal these are really just a pass through to the plantloop and condenserloop object so i could add the new keywords as choices in the idd myoldmopar if you don t object i m going to add the correct new key choices to the idd to match what s in the plantloop and condenserloop objects as part of my expand objects update and i will change expandobjects to accept any of those including the old sequential this issue will remain open until after release to add a new transition rule to convert any old sequential or uniform inputs to sequentialload and uniformload unless you want to bite the bullet and to that for this round | 1 |
719,936 | 24,774,111,468 | IssuesEvent | 2022-10-23 14:14:22 | AY2223S1-CS2113-W12-2/tp | https://api.github.com/repos/AY2223S1-CS2113-W12-2/tp | closed | As a user, I want to archive my financial transactions from the previous years | type.Story priority.Medium | ... so that I can focus on transactions that matter only for the current year | 1.0 | As a user, I want to archive my financial transactions from the previous years - ... so that I can focus on transactions that matter only for the current year | priority | as a user i want to archive my financial transactions from the previous years so that i can focus on transactions that matter only for the current year | 1 |
463,398 | 13,264,667,722 | IssuesEvent | 2020-08-21 04:24:20 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.0 staging-1732] NullReferenceException when have shadowplacement of Wooden Elevator Call Post | Category: Tech Priority: Medium | - /give wooden elevator call post, add to toolbar it, select and mouseover to some surface:

- I have exception:
```
NullReferenceException: Object reference not set to an instance of an object.
at EcoEngine.Rendering.RenderingSystem.IsIndirect (UnityEngine.Renderer renderer) [0x00000] in <00000000000000000000000000000000>:0
at EcoEngine.Rendering.RenderingSystem.TryGetIndirectRenderingBatch (UnityEngine.Renderer renderer, EcoEngine.Rendering.IndirectRenderingBatch& batch) [0x00000] in <00000000000000000000000000000000>:0
at EcoEngine.Rendering.RenderingSystem.OnHighlightRenderer (UnityEngine.Renderer renderer) [0x00000] in <00000000000000000000000000000000>:0
at System.Action`2[T1,T2].Invoke (T1 arg1, T2 arg2) [0x00000] in <00000000000000000000000000000000>:0
at UnityUtils.ForEachComponentInChildrenWithValue[TComponent,TValue] (UnityEngine.GameObject obj, TValue value, System.Boolean includeInactive, System.Action`2[T1,T2] action) [0x00000] in <00000000000000000000000000000000>:0
at EcoEngine.Rendering.RenderingSystem.OnObjectHighlighted (HighlightableObject obj) [0x00000] in <00000000000000000000000000000000>:0
at System.Action`1[T].Invoke (T obj) [0x00000] in <00000000000000000000000000000000>:0
at HighlightableObject.Highlight (UnityEngine.Color highlightColor) [0x00000] in <00000000000000000000000000000000>:0
at ShadowPlacement.SetVisible (System.Boolean visible) [0x00000] in <00000000000000000000000000000000>:0
at PlayerHeldObject.UpdateHeldObject (ItemStackView stack, HeldObject held, System.Boolean& somethingVisible) [0x00000] in <00000000000000000000000000000000>:0
at PlayerHeldObject.Update () [0x00000] in <00000000000000000000000000000000>:0
UnityEngine.Logger:LogException(Exception, Object)
UnityEngine.Debug:CallOverridenDebugHandler(Exception, Object)
```
[Player.log](https://github.com/StrangeLoopGames/EcoIssues/files/5102305/Player.log)
| 1.0 | [0.9.0 staging-1732] NullReferenceException when have shadowplacement of Wooden Elevator Call Post - - /give wooden elevator call post, add to toolbar it, select and mouseover to some surface:

- I have exception:
```
NullReferenceException: Object reference not set to an instance of an object.
at EcoEngine.Rendering.RenderingSystem.IsIndirect (UnityEngine.Renderer renderer) [0x00000] in <00000000000000000000000000000000>:0
at EcoEngine.Rendering.RenderingSystem.TryGetIndirectRenderingBatch (UnityEngine.Renderer renderer, EcoEngine.Rendering.IndirectRenderingBatch& batch) [0x00000] in <00000000000000000000000000000000>:0
at EcoEngine.Rendering.RenderingSystem.OnHighlightRenderer (UnityEngine.Renderer renderer) [0x00000] in <00000000000000000000000000000000>:0
at System.Action`2[T1,T2].Invoke (T1 arg1, T2 arg2) [0x00000] in <00000000000000000000000000000000>:0
at UnityUtils.ForEachComponentInChildrenWithValue[TComponent,TValue] (UnityEngine.GameObject obj, TValue value, System.Boolean includeInactive, System.Action`2[T1,T2] action) [0x00000] in <00000000000000000000000000000000>:0
at EcoEngine.Rendering.RenderingSystem.OnObjectHighlighted (HighlightableObject obj) [0x00000] in <00000000000000000000000000000000>:0
at System.Action`1[T].Invoke (T obj) [0x00000] in <00000000000000000000000000000000>:0
at HighlightableObject.Highlight (UnityEngine.Color highlightColor) [0x00000] in <00000000000000000000000000000000>:0
at ShadowPlacement.SetVisible (System.Boolean visible) [0x00000] in <00000000000000000000000000000000>:0
at PlayerHeldObject.UpdateHeldObject (ItemStackView stack, HeldObject held, System.Boolean& somethingVisible) [0x00000] in <00000000000000000000000000000000>:0
at PlayerHeldObject.Update () [0x00000] in <00000000000000000000000000000000>:0
UnityEngine.Logger:LogException(Exception, Object)
UnityEngine.Debug:CallOverridenDebugHandler(Exception, Object)
```
[Player.log](https://github.com/StrangeLoopGames/EcoIssues/files/5102305/Player.log)
| priority | nullreferenceexception when have shadowplacement of wooden elevator call post give wooden elevator call post add to toolbar it select and mouseover to some surface i have exception nullreferenceexception object reference not set to an instance of an object at ecoengine rendering renderingsystem isindirect unityengine renderer renderer in at ecoengine rendering renderingsystem trygetindirectrenderingbatch unityengine renderer renderer ecoengine rendering indirectrenderingbatch batch in at ecoengine rendering renderingsystem onhighlightrenderer unityengine renderer renderer in at system action invoke in at unityutils foreachcomponentinchildrenwithvalue unityengine gameobject obj tvalue value system boolean includeinactive system action action in at ecoengine rendering renderingsystem onobjecthighlighted highlightableobject obj in at system action invoke t obj in at highlightableobject highlight unityengine color highlightcolor in at shadowplacement setvisible system boolean visible in at playerheldobject updateheldobject itemstackview stack heldobject held system boolean somethingvisible in at playerheldobject update in unityengine logger logexception exception object unityengine debug calloverridendebughandler exception object | 1 |
421,413 | 12,256,740,396 | IssuesEvent | 2020-05-06 12:37:43 | AzWhaleLab/AragoJ | https://api.github.com/repos/AzWhaleLab/AragoJ | opened | Auto-split line | medium-priority | It would be useful to be able to auto-segment a line into pre-specified segment fractions (%). For example, after being drawn, I could select it and using a right click ask it to be split at 10, 50, and 73% of the total length creating three new lines with lengths of 10, 50 and 73% of the initial one. | 1.0 | Auto-split line - It would be useful to be able to auto-segment a line into pre-specified segment fractions (%). For example, after being drawn, I could select it and using a right click ask it to be split at 10, 50, and 73% of the total length creating three new lines with lengths of 10, 50 and 73% of the initial one. | priority | auto split line it would be useful to be able to auto segment a line into pre specified segment fractions for example after being drawn i could select it and using a right click ask it to be split at and of the total length creating three new lines with lengths of and of the initial one | 1 |
42,019 | 2,869,093,839 | IssuesEvent | 2015-06-05 23:17:03 | dart-lang/source_maps | https://api.github.com/repos/dart-lang/source_maps | closed | Parser bug in source maps | bug Fixed Priority-Medium | <a href="https://github.com/peter-ahe-google"><img src="https://avatars.githubusercontent.com/u/5689005?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [peter-ahe-google](https://github.com/peter-ahe-google)**
_Originally opened as dart-lang/sdk#15124_
----
From issue dart-lang/sdk#14746:
Although I haven't tested it, from looking at the source, I believe there is a similar issue when parsing a sourcemap. Sourcemap entries can have 1, 4, or 5 fields and the 1-field entries (representing an unmapped range) aren't handled correctly; the sourceUrlId, sourceLine, sourceColumn, and fields in a TargetEntry should be set to null but instead they will be set to whatever the values were in the previous TargetEntry.
| 1.0 | Parser bug in source maps - <a href="https://github.com/peter-ahe-google"><img src="https://avatars.githubusercontent.com/u/5689005?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [peter-ahe-google](https://github.com/peter-ahe-google)**
_Originally opened as dart-lang/sdk#15124_
----
From issue dart-lang/sdk#14746:
Although I haven't tested it, from looking at the source, I believe there is a similar issue when parsing a sourcemap. Sourcemap entries can have 1, 4, or 5 fields and the 1-field entries (representing an unmapped range) aren't handled correctly; the sourceUrlId, sourceLine, sourceColumn, and fields in a TargetEntry should be set to null but instead they will be set to whatever the values were in the previous TargetEntry.
| priority | parser bug in source maps issue by originally opened as dart lang sdk from issue dart lang sdk although i haven t tested it from looking at the source i believe there is a similar issue when parsing a sourcemap sourcemap entries can have or fields and the field entries representing an unmapped range aren t handled correctly the sourceurlid sourceline sourcecolumn and fields in a targetentry should be set to null but instead they will be set to whatever the values were in the previous targetentry | 1 |
315,790 | 9,632,164,061 | IssuesEvent | 2019-05-15 15:37:05 | inverse-inc/packetfence | https://api.github.com/repos/inverse-inc/packetfence | closed | v9-gui: dot1x_unset_on_unmatch is missing in connection profiles | Priority: Medium Type: Bug | Missing parameter on connection profile.
Recent feature added by @fdurand. | 1.0 | v9-gui: dot1x_unset_on_unmatch is missing in connection profiles - Missing parameter on connection profile.
Recent feature added by @fdurand. | priority | gui unset on unmatch is missing in connection profiles missing parameter on connection profile recent feature added by fdurand | 1 |
591,021 | 17,793,136,001 | IssuesEvent | 2021-08-31 18:39:06 | dtcenter/METplus | https://api.github.com/repos/dtcenter/METplus | closed | Develop use-case example of running GFDL tracker for TC genesis | priority: medium type: new feature alert: NEED MORE DEFINITION required: FOR DEVELOPMENT RELEASE | *Replace italics below with details for this issue.*
## Describe the New Feature ##
Need to develop a use-case example of running GFDL tracker for TC genesis - which uses a different GFDL tracker config
### Acceptance Testing ###
*List input data types and sources.*
*Describe tests required for new functionality.*
### Time Estimate ###
*Estimate the amount of work required here.*
*Issues should represent approximately 1 to 3 days of work.*
### Sub-Issues ###
Consider breaking the new feature down into sub-issues.
- [ ] *Add a checkbox for each sub-issue here.*
### Relevant Deadlines ###
*List relevant project deadlines here or state NONE.*
### Funding Source ###
2788881
## Define the Metadata ##
### Assignee ###
- [ ] Select **engineer(s)** or **no engineer** required
- [ ] Select **scientist(s)** or **no scientist** required
### Labels ###
- [ ] Select **component(s)**
- [ ] Select **priority**
- [ ] Select **requestor(s)**
### Projects and Milestone ###
- [ ] Review **projects** and select relevant **Repository** and **Organization** ones or add "alert:NEED PROJECT ASSIGNMENT" label
- [ ] Select **milestone** to next major version milestone or "Future Versions"
## Define Related Issue(s) ##
Consider the impact to the other METplus components.
- [ ] [METplus](https://github.com/dtcenter/METplus/issues/new/choose), [MET](https://github.com/dtcenter/MET/issues/new/choose), [METdatadb](https://github.com/dtcenter/METdatadb/issues/new/choose), [METviewer](https://github.com/dtcenter/METviewer/issues/new/choose), [METexpress](https://github.com/dtcenter/METexpress/issues/new/choose), [METcalcpy](https://github.com/dtcenter/METcalcpy/issues/new/choose), [METplotpy](https://github.com/dtcenter/METplotpy/issues/new/choose)
## New Feature Checklist ##
See the [METplus Workflow](https://dtcenter.github.io/METplus/Contributors_Guide/github_workflow.html) for details.
- [ ] Complete the issue definition above, including the **Time Estimate** and **Funding source**.
- [ ] Fork this repository or create a branch of **develop**.
Branch name: `feature_<Issue Number>_<Description>`
- [ ] Complete the development and test your changes.
- [ ] Add/update log messages for easier debugging.
- [ ] Add/update unit tests.
- [ ] Add/update documentation.
- [ ] Push local changes to GitHub.
- [ ] Submit a pull request to merge into **develop**.
Pull request: `feature <Issue Number> <Description>`
- [ ] Define the pull request metadata, as permissions allow.
Select: **Reviewer(s)**, **Project(s)**, **Milestone**, and **Linked issues**
- [ ] Iterate until the reviewer(s) accept and merge your changes.
- [ ] Delete your fork or branch.
- [ ] Close this issue.
| 1.0 | Develop use-case example of running GFDL tracker for TC genesis - *Replace italics below with details for this issue.*
## Describe the New Feature ##
Need to develop a use-case example of running GFDL tracker for TC genesis - which uses a different GFDL tracker config
### Acceptance Testing ###
*List input data types and sources.*
*Describe tests required for new functionality.*
### Time Estimate ###
*Estimate the amount of work required here.*
*Issues should represent approximately 1 to 3 days of work.*
### Sub-Issues ###
Consider breaking the new feature down into sub-issues.
- [ ] *Add a checkbox for each sub-issue here.*
### Relevant Deadlines ###
*List relevant project deadlines here or state NONE.*
### Funding Source ###
2788881
## Define the Metadata ##
### Assignee ###
- [ ] Select **engineer(s)** or **no engineer** required
- [ ] Select **scientist(s)** or **no scientist** required
### Labels ###
- [ ] Select **component(s)**
- [ ] Select **priority**
- [ ] Select **requestor(s)**
### Projects and Milestone ###
- [ ] Review **projects** and select relevant **Repository** and **Organization** ones or add "alert:NEED PROJECT ASSIGNMENT" label
- [ ] Select **milestone** to next major version milestone or "Future Versions"
## Define Related Issue(s) ##
Consider the impact to the other METplus components.
- [ ] [METplus](https://github.com/dtcenter/METplus/issues/new/choose), [MET](https://github.com/dtcenter/MET/issues/new/choose), [METdatadb](https://github.com/dtcenter/METdatadb/issues/new/choose), [METviewer](https://github.com/dtcenter/METviewer/issues/new/choose), [METexpress](https://github.com/dtcenter/METexpress/issues/new/choose), [METcalcpy](https://github.com/dtcenter/METcalcpy/issues/new/choose), [METplotpy](https://github.com/dtcenter/METplotpy/issues/new/choose)
## New Feature Checklist ##
See the [METplus Workflow](https://dtcenter.github.io/METplus/Contributors_Guide/github_workflow.html) for details.
- [ ] Complete the issue definition above, including the **Time Estimate** and **Funding source**.
- [ ] Fork this repository or create a branch of **develop**.
Branch name: `feature_<Issue Number>_<Description>`
- [ ] Complete the development and test your changes.
- [ ] Add/update log messages for easier debugging.
- [ ] Add/update unit tests.
- [ ] Add/update documentation.
- [ ] Push local changes to GitHub.
- [ ] Submit a pull request to merge into **develop**.
Pull request: `feature <Issue Number> <Description>`
- [ ] Define the pull request metadata, as permissions allow.
Select: **Reviewer(s)**, **Project(s)**, **Milestone**, and **Linked issues**
- [ ] Iterate until the reviewer(s) accept and merge your changes.
- [ ] Delete your fork or branch.
- [ ] Close this issue.
| priority | develop use case example of running gfdl tracker for tc genesis replace italics below with details for this issue describe the new feature need to develop a use case example of running gfdl tracker for tc genesis which uses a different gfdl tracker config acceptance testing list input data types and sources describe tests required for new functionality time estimate estimate the amount of work required here issues should represent approximately to days of work sub issues consider breaking the new feature down into sub issues add a checkbox for each sub issue here relevant deadlines list relevant project deadlines here or state none funding source define the metadata assignee select engineer s or no engineer required select scientist s or no scientist required labels select component s select priority select requestor s projects and milestone review projects and select relevant repository and organization ones or add alert need project assignment label select milestone to next major version milestone or future versions define related issue s consider the impact to the other metplus components new feature checklist see the for details complete the issue definition above including the time estimate and funding source fork this repository or create a branch of develop branch name feature complete the development and test your changes add update log messages for easier debugging add update unit tests add update documentation push local changes to github submit a pull request to merge into develop pull request feature define the pull request metadata as permissions allow select reviewer s project s milestone and linked issues iterate until the reviewer s accept and merge your changes delete your fork or branch close this issue | 1 |
100,926 | 4,104,341,396 | IssuesEvent | 2016-06-05 09:37:36 | dhowe/AdNauseam | https://api.github.com/repos/dhowe/AdNauseam | closed | Set correct referer for click requests | Enhancement Needs-verification PRIORITY: Medium | Unless the noOutgoingReferer option is set, the 'referer' header for all adn clicks (including redirects) should be the page on which the ad was found (ad.pageUrl) | 1.0 | Set correct referer for click requests - Unless the noOutgoingReferer option is set, the 'referer' header for all adn clicks (including redirects) should be the page on which the ad was found (ad.pageUrl) | priority | set correct referer for click requests unless the nooutgoingreferer option is set the referer header for all adn clicks including redirects should be the page on which the ad was found ad pageurl | 1 |
724,388 | 24,928,304,352 | IssuesEvent | 2022-10-31 09:27:39 | AY2223S1-CS2103T-T08-1/tp | https://api.github.com/repos/AY2223S1-CS2103T-T08-1/tp | closed | [PE-D][Tester B] Find command does not list incorrect syntax | type.Bug priority.High severity.Medium | 
Entering the wrong syntax to the find command e.g. "find Timmy" (without an "n/") returns "0 persons listed" even though it should be a syntax error. See the above screenshot.
<!--session: 1666943811191-e701f8d5-44b9-44e3-a417-1c73abbf3de5-->
<!--Version: Web v3.4.4-->
-------------
Labels: `type.FunctionalityBug` `severity.Medium`
original: GenFusion122/ped#5 | 1.0 | [PE-D][Tester B] Find command does not list incorrect syntax - 
Entering the wrong syntax to the find command e.g. "find Timmy" (without an "n/") returns "0 persons listed" even though it should be a syntax error. See the above screenshot.
<!--session: 1666943811191-e701f8d5-44b9-44e3-a417-1c73abbf3de5-->
<!--Version: Web v3.4.4-->
-------------
Labels: `type.FunctionalityBug` `severity.Medium`
original: GenFusion122/ped#5 | priority | find command does not list incorrect syntax entering the wrong syntax to the find command e g find timmy without an n returns persons listed even though it should be a syntax error see the above screenshot labels type functionalitybug severity medium original ped | 1 |
440,455 | 12,700,189,602 | IssuesEvent | 2020-06-22 15:56:33 | MrLever/VoidEngine | https://api.github.com/repos/MrLever/VoidEngine | opened | Revamp Resource System | Priority:Medium Utilities:ResourceManagement | - [ ] Allow system to define resource dependencies
- [ ] Clean up Post Load Initialization faculties
- [ ] Allow garbage collection like described in Game Engine Architecture pg. 510
| 1.0 | Revamp Resource System - - [ ] Allow system to define resource dependencies
- [ ] Clean up Post Load Initialization faculties
- [ ] Allow garbage collection like described in Game Engine Architecture pg. 510
| priority | revamp resource system allow system to define resource dependencies clean up post load initialization faculties allow garbage collection like described in game engine architecture pg | 1 |
709,165 | 24,369,200,020 | IssuesEvent | 2022-10-03 17:42:35 | Unity-Technologies/com.unity.netcode.gameobjects | https://api.github.com/repos/Unity-Technologies/com.unity.netcode.gameobjects | closed | Wrong IsOwner/IsOwnedByServer in NetworkBehaviour on Server | type:bug priority:medium stat:awaiting response stat:imported | ### Description
https://github.com/Unity-Technologies/com.unity.netcode.gameobjects/blob/ba302860e6edf4e710633145e96592eab06d310a/com.unity.netcode.gameobjects/Runtime/Spawning/NetworkSpawnManager.cs#L217-L219
When a client owner is removed **UpdateNetworkProperties** is called on the server with the previous **OwnerClientId** still set, which leads to wrong values in **NetworkBehaviour.IsOwner**, **IsOwnedByServer** and **OwnerClientId**
Not sure if a simple swap of lines 217 and 219 will introduce side effects, so I haven't created a pull request.
### Reproduce Steps
Remove ownership from an object which is controlled by a client and has a **NetworkBehaviour** assigned.
Compare **IsOwner** etc. properties between **NetworkObject** and the behaviour on the server.
### Actual Outcome
**NetworkBehaviour** properties aren't properly set on the server.
### Expected Outcome
Correct owner is set in the **NetworkBehaviours** on the server after ownership is lost.
### Environment
- OS: Windows
- Unity Version: 2021.1.24f1
- Netcode Version: 1.0.0
| 1.0 | Wrong IsOwner/IsOwnedByServer in NetworkBehaviour on Server - ### Description
https://github.com/Unity-Technologies/com.unity.netcode.gameobjects/blob/ba302860e6edf4e710633145e96592eab06d310a/com.unity.netcode.gameobjects/Runtime/Spawning/NetworkSpawnManager.cs#L217-L219
When a client owner is removed **UpdateNetworkProperties** is called on the server with the previous **OwnerClientId** still set, which leads to wrong values in **NetworkBehaviour.IsOwner**, **IsOwnedByServer** and **OwnerClientId**
Not sure if a simple swap of lines 217 and 219 will introduce side effects, so I haven't created a pull request.
### Reproduce Steps
Remove ownership from an object which is controlled by a client and has a **NetworkBehaviour** assigned.
Compare **IsOwner** etc. properties between **NetworkObject** and the behaviour on the server.
### Actual Outcome
**NetworkBehaviour** properties aren't properly set on the server.
### Expected Outcome
Correct owner is set in the **NetworkBehaviours** on the server after ownership is lost.
### Environment
- OS: Windows
- Unity Version: 2021.1.24f1
- Netcode Version: 1.0.0
| priority | wrong isowner isownedbyserver in networkbehaviour on server description when a client owner is removed updatenetworkproperties is called on the server with the previous ownerclientid still set which leads to wrong values in networkbehaviour isowner isownedbyserver and ownerclientid not sure if a simple swap of lines and will introduce side effects so i haven t created a pull request reproduce steps remove ownership from an object which is controlled by a client and has a networkbehaviour assigned compare isowner etc properties between networkobject and the behaviour on the server actual outcome networkbehaviour properties aren t properly set on the server expected outcome correct owner is set in the networkbehaviours on the server after ownership is lost environment os windows unity version netcode version | 1 |
520,947 | 15,098,121,229 | IssuesEvent | 2021-02-07 21:22:52 | codidact/qpixel | https://api.github.com/repos/codidact/qpixel | opened | Search by tag(s) and, particularly, "not [tag]" | area: ruby complexity: unassessed priority: medium type: change request | https://meta.codidact.com/posts/280584
You can see posts with a single tag by clicking on the tag. This doesn't go through the search function. This means we don't yet have a way to search for more than one tag or to *exclude* a tag by using '-' with a tag (like you can for words).
Could we have some search syntax for tags, so that tags can be combined with other search terms and used with operators?
| 1.0 | Search by tag(s) and, particularly, "not [tag]" - https://meta.codidact.com/posts/280584
You can see posts with a single tag by clicking on the tag. This doesn't go through the search function. This means we don't yet have a way to search for more than one tag or to *exclude* a tag by using '-' with a tag (like you can for words).
Could we have some search syntax for tags, so that tags can be combined with other search terms and used with operators?
| priority | search by tag s and particularly not you can see posts with a single tag by clicking on the tag this doesn t go through the search function this means we don t yet have a way to search for more than one tag or to exclude a tag by using with a tag like you can for words could we have some search syntax for tags so that tags can be combined with other search terms and used with operators | 1 |
47,919 | 2,989,782,343 | IssuesEvent | 2015-07-21 03:03:01 | patrickomni/omnimobileserver | https://api.github.com/repos/patrickomni/omnimobileserver | opened | User Guides - link to files with logo, version, date, copyright notices | enhancement Priority MEDIUM | Per email, please replace the current copies of user guides (dashboard/rules) with those sent in email around 20:00 20-Jul | 1.0 | User Guides - link to files with logo, version, date, copyright notices - Per email, please replace the current copies of user guides (dashboard/rules) with those sent in email around 20:00 20-Jul | priority | user guides link to files with logo version date copyright notices per email please replace the current copies of user guides dashboard rules with those sent in email around jul | 1 |
71,833 | 3,368,358,327 | IssuesEvent | 2015-11-22 22:15:37 | libkml/libkml | https://api.github.com/repos/libkml/libkml | closed | Support OpenSolaris | auto-migrated Priority-Medium Type-Enhancement | ```
OS: SunOS opensolaris 5.11 snv_101b i86pc i386 i86xpv Solaris
What steps will reproduce the problem?
1. download libkml-0.9.0
2. Install libcurl dependency:
# pkg install SUNWlibcurl
(this also installs SUNWgnu-idn
2. run configure
# ./configure
3. run make
# make
... things run well... then:
make all-recursive
Making all in third_party
Making all in src
Making all in kml
Making all in .
Making all in base
/bin/sh ../../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.
-I../../.. -
I../../../src -I../../../third_party/boost_1_34_1
-I../../../third_party/uriparser-0.7.1/include -
I../../../third_party/googletest-r108/include -Wall -Werror -ansi -pedantic
-fno-rtti -g -O2 -
MT date_time.lo -MD -MP -MF .deps/date_time.Tpo -c -o date_time.lo date_time.cc
g++ -DHAVE_CONFIG_H -I. -I../../.. -I../../../src -I../../../third_party/boost_1_34_1 -
I../../../third_party/uriparser-0.7.1/include
-I../../../third_party/googletest-r108/include -Wall
-Werror -ansi -pedantic -fno-rtti -g -O2 -MT date_time.lo -MD -MP -MF
.deps/date_time.Tpo
-c date_time.cc -fPIC -DPIC -o .libs/date_time.o
date_time.cc: In member function `time_t kmlbase::DateTime::GetTimeT()':
date_time.cc:64: error: `timegm' undeclared (first use this function)
date_time.cc:64: error: (Each undeclared identifier is reported only once for
each function it
appears in.)
*** Error code 1
make: Fatal error: Command failed for target `date_time.lo'
Current working directory /export/home/idbill/libkml-0.9.0/src/kml/base
*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='. base convenience dom engine regionator xsd'; for subdir in $list; do \
echo "Making $target in $subdir"; \
if test "$subdir" = "."; then \
dot_seen=yes; \
local_target="$target-am"; \
else \
local_target="$target"; \
fi; \
(cd $subdir && make $local_target) \
|| eval $failcom; \
done; \
if test "$dot_seen" = "no"; then \
make "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Current working directory /export/home/idbill/libkml-0.9.0/src/kml
*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='kml swig'; for subdir in $list; do \
echo "Making $target in $subdir"; \
if test "$subdir" = "."; then \
dot_seen=yes; \
local_target="$target-am"; \
else \
local_target="$target"; \
fi; \
(cd $subdir && make $local_target) \
|| eval $failcom; \
done; \
if test "$dot_seen" = "no"; then \
make "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Current working directory /export/home/idbill/libkml-0.9.0/src
*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='third_party src testdata examples msvc xcode'; for subdir in $list; do \
echo "Making $target in $subdir"; \
if test "$subdir" = "."; then \
dot_seen=yes; \
local_target="$target-am"; \
else \
local_target="$target"; \
fi; \
(cd $subdir && make $local_target) \
|| eval $failcom; \
done; \
if test "$dot_seen" = "no"; then \
make "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Current working directory /export/home/idbill/libkml-0.9.0
*** Error code 1
make: Fatal error: Command failed for target `all'
```
Original issue reported on code.google.com by `idbill.p...@gmail.com` on 3 Mar 2009 at 9:39 | 1.0 | Support OpenSolaris - ```
OS: SunOS opensolaris 5.11 snv_101b i86pc i386 i86xpv Solaris
What steps will reproduce the problem?
1. download libkml-0.9.0
2. Install libcurl dependency:
# pkg install SUNWlibcurl
(this also installs SUNWgnu-idn
2. run configure
# ./configure
3. run make
# make
... things run well... then:
make all-recursive
Making all in third_party
Making all in src
Making all in kml
Making all in .
Making all in base
/bin/sh ../../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.
-I../../.. -
I../../../src -I../../../third_party/boost_1_34_1
-I../../../third_party/uriparser-0.7.1/include -
I../../../third_party/googletest-r108/include -Wall -Werror -ansi -pedantic
-fno-rtti -g -O2 -
MT date_time.lo -MD -MP -MF .deps/date_time.Tpo -c -o date_time.lo date_time.cc
g++ -DHAVE_CONFIG_H -I. -I../../.. -I../../../src -I../../../third_party/boost_1_34_1 -
I../../../third_party/uriparser-0.7.1/include
-I../../../third_party/googletest-r108/include -Wall
-Werror -ansi -pedantic -fno-rtti -g -O2 -MT date_time.lo -MD -MP -MF
.deps/date_time.Tpo
-c date_time.cc -fPIC -DPIC -o .libs/date_time.o
date_time.cc: In member function `time_t kmlbase::DateTime::GetTimeT()':
date_time.cc:64: error: `timegm' undeclared (first use this function)
date_time.cc:64: error: (Each undeclared identifier is reported only once for
each function it
appears in.)
*** Error code 1
make: Fatal error: Command failed for target `date_time.lo'
Current working directory /export/home/idbill/libkml-0.9.0/src/kml/base
*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='. base convenience dom engine regionator xsd'; for subdir in $list; do \
echo "Making $target in $subdir"; \
if test "$subdir" = "."; then \
dot_seen=yes; \
local_target="$target-am"; \
else \
local_target="$target"; \
fi; \
(cd $subdir && make $local_target) \
|| eval $failcom; \
done; \
if test "$dot_seen" = "no"; then \
make "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Current working directory /export/home/idbill/libkml-0.9.0/src/kml
*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='kml swig'; for subdir in $list; do \
echo "Making $target in $subdir"; \
if test "$subdir" = "."; then \
dot_seen=yes; \
local_target="$target-am"; \
else \
local_target="$target"; \
fi; \
(cd $subdir && make $local_target) \
|| eval $failcom; \
done; \
if test "$dot_seen" = "no"; then \
make "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Current working directory /export/home/idbill/libkml-0.9.0/src
*** Error code 1
The following command caused the error:
failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='third_party src testdata examples msvc xcode'; for subdir in $list; do \
echo "Making $target in $subdir"; \
if test "$subdir" = "."; then \
dot_seen=yes; \
local_target="$target-am"; \
else \
local_target="$target"; \
fi; \
(cd $subdir && make $local_target) \
|| eval $failcom; \
done; \
if test "$dot_seen" = "no"; then \
make "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Current working directory /export/home/idbill/libkml-0.9.0
*** Error code 1
make: Fatal error: Command failed for target `all'
```
Original issue reported on code.google.com by `idbill.p...@gmail.com` on 3 Mar 2009 at 9:39 | priority | support opensolaris os sunos opensolaris snv solaris what steps will reproduce the problem download libkml install libcurl dependency pkg install sunwlibcurl this also installs sunwgnu idn run configure configure run make make things run well then make all recursive making all in third party making all in src making all in kml making all in making all in base bin sh libtool tag cxx mode compile g dhave config h i i i src i third party boost i third party uriparser include i third party googletest include wall werror ansi pedantic fno rtti g mt date time lo md mp mf deps date time tpo c o date time lo date time cc g dhave config h i i i src i third party boost i third party uriparser include i third party googletest include wall werror ansi pedantic fno rtti g mt date time lo md mp mf deps date time tpo c date time cc fpic dpic o libs date time o date time cc in member function time t kmlbase datetime gettimet date time cc error timegm undeclared first use this function date time cc error each undeclared identifier is reported only once for each function it appears in error code make fatal error command failed for target date time lo current working directory export home idbill libkml src kml base error code the following command caused the error failcom exit for f in x makeflags do case f in k failcom fail yes esac done dot seen no target echo all recursive sed s recursive list base convenience dom engine regionator xsd for subdir in list do echo making target in subdir if test subdir then dot seen yes local target target am else local target target fi cd subdir make local target eval failcom done if test dot seen no then make target am exit fi test z fail make fatal error command failed for target all recursive current working directory export home idbill libkml src kml error code the following command caused the error failcom exit for f in x makeflags do case f in k failcom fail yes esac done dot seen no target echo all recursive sed s recursive list kml swig for subdir in list do echo making target in subdir if test subdir then dot seen yes local target target am else local target target fi cd subdir make local target eval failcom done if test dot seen no then make target am exit fi test z fail make fatal error command failed for target all recursive current working directory export home idbill libkml src error code the following command caused the error failcom exit for f in x makeflags do case f in k failcom fail yes esac done dot seen no target echo all recursive sed s recursive list third party src testdata examples msvc xcode for subdir in list do echo making target in subdir if test subdir then dot seen yes local target target am else local target target fi cd subdir make local target eval failcom done if test dot seen no then make target am exit fi test z fail make fatal error command failed for target all recursive current working directory export home idbill libkml error code make fatal error command failed for target all original issue reported on code google com by idbill p gmail com on mar at | 1 |
594,533 | 18,047,661,390 | IssuesEvent | 2021-09-19 07:01:46 | SmallMolecules/small-molecules | https://api.github.com/repos/SmallMolecules/small-molecules | opened | Basic framework | Priority: High Size: Medium | design a basic framework to build to simulation off. Ensure code structure is expandable and clear.
| 1.0 | Basic framework - design a basic framework to build to simulation off. Ensure code structure is expandable and clear.
| priority | basic framework design a basic framework to build to simulation off ensure code structure is expandable and clear | 1 |
311,208 | 9,530,229,328 | IssuesEvent | 2019-04-29 13:25:59 | luna/luna | https://api.github.com/repos/luna/luna | closed | Interpreter setting `LUNA_LIBNAME_DATA` env variable | Category: Libraries Category: Tooling Change: Breaking Difficulty: Core Contributor Priority: Medium Type: Enhancement | <!--
Please ensure that you check the latest version of Luna to see if your feature has been implemented.
-->
### General Summary
<!--
- Describe the feature you are requesting.
-->
Interpreter should set `LUNA_LIBNAME_DATA` environemnt variable to an absolute path to data/ directory in the given library
### Motivation
<!--
- A description of the motivation for adding this feature to Luna.
- Ideally this would include use-cases that support the feature.
-->
Given that:
a) sample resources are library-specific and generally should be updated along with the library
b) snippets are even closer tied to library
I'd say both should be part of Luna library package layout. Just like we have src and native_libs subfolders, interpreter should also support data directory. So, in final package, it'd end up under env/stdlib/Dataframes and env/stdlib/Std respectively.
Then following idea:
Interpreter iterates over libraries anyway (indexing for searcher, looking for their native_libs) — so when iterating, it should also check for data/ subdirectory. If it is present, it should set LUNA_LIBNAME_DATA environemnt variable to an absolute path to data/ directory in the given library. (where LIBNAME is a library name as deduced from path, e.g. STD or DATAFRAMES)
User code (and snippets as well) should use the environment variable to access the data (eg. pseudocode Table.read $ getenv "LUNA_LIBNAME_DATA" </> "sampleTable.csv").
That basically:
* keeps snippets portable (works on any installation with the same code)
* keeps updates localized
* extensible (new libraries / packages can come with their own sample data)
* various libraries don't collide when providing files with the same name
| 1.0 | Interpreter setting `LUNA_LIBNAME_DATA` env variable - <!--
Please ensure that you check the latest version of Luna to see if your feature has been implemented.
-->
### General Summary
<!--
- Describe the feature you are requesting.
-->
Interpreter should set `LUNA_LIBNAME_DATA` environemnt variable to an absolute path to data/ directory in the given library
### Motivation
<!--
- A description of the motivation for adding this feature to Luna.
- Ideally this would include use-cases that support the feature.
-->
Given that:
a) sample resources are library-specific and generally should be updated along with the library
b) snippets are even closer tied to library
I'd say both should be part of Luna library package layout. Just like we have src and native_libs subfolders, interpreter should also support data directory. So, in final package, it'd end up under env/stdlib/Dataframes and env/stdlib/Std respectively.
Then following idea:
Interpreter iterates over libraries anyway (indexing for searcher, looking for their native_libs) — so when iterating, it should also check for data/ subdirectory. If it is present, it should set LUNA_LIBNAME_DATA environemnt variable to an absolute path to data/ directory in the given library. (where LIBNAME is a library name as deduced from path, e.g. STD or DATAFRAMES)
User code (and snippets as well) should use the environment variable to access the data (eg. pseudocode Table.read $ getenv "LUNA_LIBNAME_DATA" </> "sampleTable.csv").
That basically:
* keeps snippets portable (works on any installation with the same code)
* keeps updates localized
* extensible (new libraries / packages can come with their own sample data)
* various libraries don't collide when providing files with the same name
| priority | interpreter setting luna libname data env variable please ensure that you check the latest version of luna to see if your feature has been implemented general summary describe the feature you are requesting interpreter should set luna libname data environemnt variable to an absolute path to data directory in the given library motivation a description of the motivation for adding this feature to luna ideally this would include use cases that support the feature given that a sample resources are library specific and generally should be updated along with the library b snippets are even closer tied to library i d say both should be part of luna library package layout just like we have src and native libs subfolders interpreter should also support data directory so in final package it d end up under env stdlib dataframes and env stdlib std respectively then following idea interpreter iterates over libraries anyway indexing for searcher looking for their native libs — so when iterating it should also check for data subdirectory if it is present it should set luna libname data environemnt variable to an absolute path to data directory in the given library where libname is a library name as deduced from path e g std or dataframes user code and snippets as well should use the environment variable to access the data eg pseudocode table read getenv luna libname data sampletable csv that basically keeps snippets portable works on any installation with the same code keeps updates localized extensible new libraries packages can come with their own sample data various libraries don t collide when providing files with the same name | 1 |
401,831 | 11,798,435,448 | IssuesEvent | 2020-03-18 14:23:47 | inexorgame/vulkan-renderer | https://api.github.com/repos/inexorgame/vulkan-renderer | closed | Make sure vulkan-renderer can be restarted. | difficulty: medium feature priority: high problem: crash refactoring research | Implement the program like this:
```
while(true)
{
VkResult result = renderer.init();
if(VK_SUCCESS == result)
{
renderer.run();
renderer.calculate_memory_budget();
renderer.cleanup();
spdlog::debug("Window closed.");
}
else
{
// Something did go wrong when initialising the engine!
vulkan_error_check(result);
return -1;
}
}
```
And see if the program can be re-initialised. | 1.0 | Make sure vulkan-renderer can be restarted. - Implement the program like this:
```
while(true)
{
VkResult result = renderer.init();
if(VK_SUCCESS == result)
{
renderer.run();
renderer.calculate_memory_budget();
renderer.cleanup();
spdlog::debug("Window closed.");
}
else
{
// Something did go wrong when initialising the engine!
vulkan_error_check(result);
return -1;
}
}
```
And see if the program can be re-initialised. | priority | make sure vulkan renderer can be restarted implement the program like this while true vkresult result renderer init if vk success result renderer run renderer calculate memory budget renderer cleanup spdlog debug window closed else something did go wrong when initialising the engine vulkan error check result return and see if the program can be re initialised | 1 |
19,597 | 2,622,155,070 | IssuesEvent | 2015-03-04 00:07:46 | byzhang/terrastore | https://api.github.com/repos/byzhang/terrastore | closed | Server-side updates should return the updated value | auto-migrated Milestone-0.5.0 Priority-Medium Project-Terrastore Type-Enhancement | ```
Server-side updates
(http://code.google.com/p/terrastore/wiki/HTTP_Client_API#Server-side_updates)
should return the updated value in order to make it possible to develop
set-and-get atomic functions.
```
Original issue reported on code.google.com by `sergio.b...@gmail.com` on 2 May 2010 at 2:16
* Blocking: #18 | 1.0 | Server-side updates should return the updated value - ```
Server-side updates
(http://code.google.com/p/terrastore/wiki/HTTP_Client_API#Server-side_updates)
should return the updated value in order to make it possible to develop
set-and-get atomic functions.
```
Original issue reported on code.google.com by `sergio.b...@gmail.com` on 2 May 2010 at 2:16
* Blocking: #18 | priority | server side updates should return the updated value server side updates should return the updated value in order to make it possible to develop set and get atomic functions original issue reported on code google com by sergio b gmail com on may at blocking | 1 |
685,258 | 23,449,968,022 | IssuesEvent | 2022-08-16 00:56:58 | azerothcore/azerothcore-wotlk | https://api.github.com/repos/azerothcore/azerothcore-wotlk | closed | Core/DB Death Knight Quest Line Unable to Progress | Quest Priority-Medium | <!-- IF YOU DO NOT FILL THIS TEMPLATE OUT, WE WILL CLOSE YOUR ISSUE! -->
<!-- This template is for problem reports, for feature suggestion etc... feel free to edit it.
If this is a crash report, upload the crashlog on https://gist.github.com/
For issues containing a fix, please create a Pull Request following this tutorial: http://www.azerothcore.org/wiki/Contribute#how-to-create-a-pull-request -->
<!-- WRITE A RELEVANT TITLE -->
##### CURRENT BEHAVIOUR:
<!-- Describe the bug in detail. Database to link spells, NPCs, quests etc https://wowgaming.altervista.org/aowow/ -->
The 8th mission in the Death knight quest line is you to talk to Highlord Darion Mograine too accept the quest "Report to Scourge Commander Thalanor". When you go to him, and turn in the quest he doesn't give you the quest "The Power of Blood, Frost And Unholy" so you can't continue the quest line to progress there.
##### EXPECTED BLIZZLIKE BEHAVIOUR:
<!-- Describe how it should be working without the bug. -->
On the 8th mission in the Death knight quest line is you to talk to Highlord Darion Mograine too accept the quest "Report to Scourge Commander Thalanor". When you go to him, and turn in the quest he gives you the quest "The Power of Blood, Frost And Unholy" so you can continue the quest line to progress there.
##### STEPS TO REPRODUCE THE PROBLEM:
<!-- Describe precisely how to reproduce the bug so we can fix it or confirm its existence:
- Which commands to use? Which NPC to teleport to?
- Do we need to have debug flags on Cmake?
- Do we need to look at the console while the bug happens?
- Other steps
-->
1. Create a deathknight
2. Do main quest line until 8th mission.
3. You will be unable to progress past that point.
##### EXTRA NOTES:
<!--
Any information that can help the developers to identify and fix the issue should be put here.
Examples:
- was this bug always present in AzerothCore? if it was introduced after a change, please mention it
- the code line(s) that cause the issue
- does this feature work in other server appplications (e.g. CMaNGOS, TrinityCore, etc...) ?
-->
##### AC HASH/COMMIT:
<!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! NEVER WRITE "LATEST", ALWAYS PUT THE ACTUAL VALUE INSTEAD.
Find the commit hash (unique identifier) by running "git log" on your own clone of AzerothCore or by looking at here https://github.com/azerothcore/azerothcore-wotlk/commits/master -->
a2a4416
##### OPERATING SYSTEM:
<!-- Windows 7/10, Debian 8/9/10, Ubuntu 16/18 etc... -->
Ubuntu 18.04
##### MODULES:
<!-- Are you using modules? If yes, list them (note them down in a .txt for opening future issues) -->
##### OTHER CUSTOMIZATIONS:
<!-- Are you using any extra script?
- Did you apply any core patch/diff?
- Did you modify your database?
- Or do you have other customizations? If yes please specify them here.
-->
<!-- ------------------------- THE END ------------------------------
Thank you for your contribution.
If you use AzerothCore regularly, we really NEED your help to:
- TEST our fixes ( http://www.azerothcore.org/wiki/Contribute#how-to-test-a-pull-request )
- Report issues
- Improve the documentation/wiki
With your help the project can evolve much quicker!
-->
<!-- NOTE: If you intend to contribute more than once, you should really join us on our discord channel! We set cosmetic ranks for our contributors and may give access to special resources/knowledge to them! The link is on our site http://azerothcore.org/
-->
<bountysource-plugin>
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/92074172-core-db-death-knight-quest-line-unable-to-progress?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github).
</bountysource-plugin> | 1.0 | Core/DB Death Knight Quest Line Unable to Progress - <!-- IF YOU DO NOT FILL THIS TEMPLATE OUT, WE WILL CLOSE YOUR ISSUE! -->
<!-- This template is for problem reports, for feature suggestion etc... feel free to edit it.
If this is a crash report, upload the crashlog on https://gist.github.com/
For issues containing a fix, please create a Pull Request following this tutorial: http://www.azerothcore.org/wiki/Contribute#how-to-create-a-pull-request -->
<!-- WRITE A RELEVANT TITLE -->
##### CURRENT BEHAVIOUR:
<!-- Describe the bug in detail. Database to link spells, NPCs, quests etc https://wowgaming.altervista.org/aowow/ -->
The 8th mission in the Death knight quest line is you to talk to Highlord Darion Mograine too accept the quest "Report to Scourge Commander Thalanor". When you go to him, and turn in the quest he doesn't give you the quest "The Power of Blood, Frost And Unholy" so you can't continue the quest line to progress there.
##### EXPECTED BLIZZLIKE BEHAVIOUR:
<!-- Describe how it should be working without the bug. -->
On the 8th mission in the Death knight quest line is you to talk to Highlord Darion Mograine too accept the quest "Report to Scourge Commander Thalanor". When you go to him, and turn in the quest he gives you the quest "The Power of Blood, Frost And Unholy" so you can continue the quest line to progress there.
##### STEPS TO REPRODUCE THE PROBLEM:
<!-- Describe precisely how to reproduce the bug so we can fix it or confirm its existence:
- Which commands to use? Which NPC to teleport to?
- Do we need to have debug flags on Cmake?
- Do we need to look at the console while the bug happens?
- Other steps
-->
1. Create a deathknight
2. Do main quest line until 8th mission.
3. You will be unable to progress past that point.
##### EXTRA NOTES:
<!--
Any information that can help the developers to identify and fix the issue should be put here.
Examples:
- was this bug always present in AzerothCore? if it was introduced after a change, please mention it
- the code line(s) that cause the issue
- does this feature work in other server appplications (e.g. CMaNGOS, TrinityCore, etc...) ?
-->
##### AC HASH/COMMIT:
<!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! NEVER WRITE "LATEST", ALWAYS PUT THE ACTUAL VALUE INSTEAD.
Find the commit hash (unique identifier) by running "git log" on your own clone of AzerothCore or by looking at here https://github.com/azerothcore/azerothcore-wotlk/commits/master -->
a2a4416
##### OPERATING SYSTEM:
<!-- Windows 7/10, Debian 8/9/10, Ubuntu 16/18 etc... -->
Ubuntu 18.04
##### MODULES:
<!-- Are you using modules? If yes, list them (note them down in a .txt for opening future issues) -->
##### OTHER CUSTOMIZATIONS:
<!-- Are you using any extra script?
- Did you apply any core patch/diff?
- Did you modify your database?
- Or do you have other customizations? If yes please specify them here.
-->
<!-- ------------------------- THE END ------------------------------
Thank you for your contribution.
If you use AzerothCore regularly, we really NEED your help to:
- TEST our fixes ( http://www.azerothcore.org/wiki/Contribute#how-to-test-a-pull-request )
- Report issues
- Improve the documentation/wiki
With your help the project can evolve much quicker!
-->
<!-- NOTE: If you intend to contribute more than once, you should really join us on our discord channel! We set cosmetic ranks for our contributors and may give access to special resources/knowledge to them! The link is on our site http://azerothcore.org/
-->
<bountysource-plugin>
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/92074172-core-db-death-knight-quest-line-unable-to-progress?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github).
</bountysource-plugin> | priority | core db death knight quest line unable to progress this template is for problem reports for feature suggestion etc feel free to edit it if this is a crash report upload the crashlog on for issues containing a fix please create a pull request following this tutorial current behaviour the mission in the death knight quest line is you to talk to highlord darion mograine too accept the quest report to scourge commander thalanor when you go to him and turn in the quest he doesn t give you the quest the power of blood frost and unholy so you can t continue the quest line to progress there expected blizzlike behaviour on the mission in the death knight quest line is you to talk to highlord darion mograine too accept the quest report to scourge commander thalanor when you go to him and turn in the quest he gives you the quest the power of blood frost and unholy so you can continue the quest line to progress there steps to reproduce the problem describe precisely how to reproduce the bug so we can fix it or confirm its existence which commands to use which npc to teleport to do we need to have debug flags on cmake do we need to look at the console while the bug happens other steps create a deathknight do main quest line until mission you will be unable to progress past that point extra notes any information that can help the developers to identify and fix the issue should be put here examples was this bug always present in azerothcore if it was introduced after a change please mention it the code line s that cause the issue does this feature work in other server appplications e g cmangos trinitycore etc ac hash commit if you do not fill this out we will close your issue never write latest always put the actual value instead find the commit hash unique identifier by running git log on your own clone of azerothcore or by looking at here operating system ubuntu modules other customizations are you using any extra script did you apply any core patch diff did you modify your database or do you have other customizations if yes please specify them here the end thank you for your contribution if you use azerothcore regularly we really need your help to test our fixes report issues improve the documentation wiki with your help the project can evolve much quicker note if you intend to contribute more than once you should really join us on our discord channel we set cosmetic ranks for our contributors and may give access to special resources knowledge to them the link is on our site want to back this issue we accept bounties via | 1 |
417,211 | 12,157,030,273 | IssuesEvent | 2020-04-25 19:58:05 | wri/gfw-mapbuilder | https://api.github.com/repos/wri/gfw-mapbuilder | closed | Layer Panel Style/Structure Configs | 4.x Upgrade medium priority | Implement layer groups as per config.
https://github.com/wri/gfw-mapbuilder/wiki/Layer-Groups
https://github.com/wri/gfw-mapbuilder/wiki/Layers
- [x] Radio Group
- [x] Nested Group
- [x] Layer Filtering
- [x] Layers Versions | 1.0 | Layer Panel Style/Structure Configs - Implement layer groups as per config.
https://github.com/wri/gfw-mapbuilder/wiki/Layer-Groups
https://github.com/wri/gfw-mapbuilder/wiki/Layers
- [x] Radio Group
- [x] Nested Group
- [x] Layer Filtering
- [x] Layers Versions | priority | layer panel style structure configs implement layer groups as per config radio group nested group layer filtering layers versions | 1 |
110,860 | 4,443,168,918 | IssuesEvent | 2016-08-19 15:48:12 | pombase/curation | https://api.github.com/repos/pombase/curation | closed | migrate jira issues to Pombase website github | medium priority |
Put all new tickets on here (unless sensitive)
Migrate old tickets to give the new person nice clear tickets.
Starting with most urgent.
We have a couple of months for this I envisage.... | 1.0 | migrate jira issues to Pombase website github -
Put all new tickets on here (unless sensitive)
Migrate old tickets to give the new person nice clear tickets.
Starting with most urgent.
We have a couple of months for this I envisage.... | priority | migrate jira issues to pombase website github put all new tickets on here unless sensitive migrate old tickets to give the new person nice clear tickets starting with most urgent we have a couple of months for this i envisage | 1 |
547,748 | 16,046,211,385 | IssuesEvent | 2021-04-22 13:55:20 | containrrr/watchtower | https://api.github.com/repos/containrrr/watchtower | closed | Watchtower HTTP API flag documentation is incorrect | Priority: Medium Status: Available Type: Bug | **Describe the bug**
When running the container with WATCHTOWER_HTTP_API or with the flag --http-api, the container do not start and the error in the logs says the --http-api flag is incorrect
**To Reproduce**
Start the container with --http-api flag
**Expected behavior**
Watchtower is launched in HTTP API mode
**Solution**
The container starts in the correct mode if provided with the flag --http-api-update or the environment variables WATCHTOWER_HTTP_API_UPDATE. The documentation should be updated accordingly
Best Regards
| 1.0 | Watchtower HTTP API flag documentation is incorrect - **Describe the bug**
When running the container with WATCHTOWER_HTTP_API or with the flag --http-api, the container do not start and the error in the logs says the --http-api flag is incorrect
**To Reproduce**
Start the container with --http-api flag
**Expected behavior**
Watchtower is launched in HTTP API mode
**Solution**
The container starts in the correct mode if provided with the flag --http-api-update or the environment variables WATCHTOWER_HTTP_API_UPDATE. The documentation should be updated accordingly
Best Regards
| priority | watchtower http api flag documentation is incorrect describe the bug when running the container with watchtower http api or with the flag http api the container do not start and the error in the logs says the http api flag is incorrect to reproduce start the container with http api flag expected behavior watchtower is launched in http api mode solution the container starts in the correct mode if provided with the flag http api update or the environment variables watchtower http api update the documentation should be updated accordingly best regards | 1 |
471,899 | 13,612,872,556 | IssuesEvent | 2020-09-23 10:58:55 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.0.0 beta staging-1706] Turtle hide animation is broken and they become fearless | Category: Gameplay Priority: Medium Status: Fixed | When you approach turtles they would normally hide in their shells. But the animation appears broken because their legs bend in weird directions and they don't retract their heads. They move from their normal position into a broken state when the player approaches. They will remove to their normal walking positions but then get stuck in a fearless mode where they ignore the player and are not scared of them. I tired standing in there way and jumping on them and they just ignored me. They remain in this state for a random amount of time. One turtle was fearless for about a minute before hiding again and I have another
turtle which is still walking around ignoring me. (Stopped randomly and hid a far way away from me while I was writing this)



**Fearless turtle:** (You can see it's front leg is in the middle of the walking animation)
 | 1.0 | [0.9.0.0 beta staging-1706] Turtle hide animation is broken and they become fearless - When you approach turtles they would normally hide in their shells. But the animation appears broken because their legs bend in weird directions and they don't retract their heads. They move from their normal position into a broken state when the player approaches. They will remove to their normal walking positions but then get stuck in a fearless mode where they ignore the player and are not scared of them. I tired standing in there way and jumping on them and they just ignored me. They remain in this state for a random amount of time. One turtle was fearless for about a minute before hiding again and I have another
turtle which is still walking around ignoring me. (Stopped randomly and hid a far way away from me while I was writing this)



**Fearless turtle:** (You can see it's front leg is in the middle of the walking animation)
 | priority | turtle hide animation is broken and they become fearless when you approach turtles they would normally hide in their shells but the animation appears broken because their legs bend in weird directions and they don t retract their heads they move from their normal position into a broken state when the player approaches they will remove to their normal walking positions but then get stuck in a fearless mode where they ignore the player and are not scared of them i tired standing in there way and jumping on them and they just ignored me they remain in this state for a random amount of time one turtle was fearless for about a minute before hiding again and i have another turtle which is still walking around ignoring me stopped randomly and hid a far way away from me while i was writing this fearless turtle you can see it s front leg is in the middle of the walking animation | 1 |
498,725 | 14,429,464,453 | IssuesEvent | 2020-12-06 14:21:43 | michaelrsweet/htmldoc | https://api.github.com/repos/michaelrsweet/htmldoc | closed | Patch for wrong links in created PDF file if file names/anchors are not unique. | bug priority-medium | Version: 1.9-current
Original reporter:
This patch fixes these problems with htmldoc 1.8.24:
- pspdf.cxx/toc.cxx:
Handle links to files with same name put inside of different directories correctly.
Handle links to anchors with same name in HTML file but inside of different directories correctly.
- Note: Source files responsible for creating HTML files have not been changed.
Contents of this patch:
- changes.diff ... a diff file showing the changes against htmldoc 1.8.24.
- htmldoc ... all source files of directory htmldoc.
- vcnet ... MS Visual Studio 7 solution and project files.
| 1.0 | Patch for wrong links in created PDF file if file names/anchors are not unique. - Version: 1.9-current
Original reporter:
This patch fixes these problems with htmldoc 1.8.24:
- pspdf.cxx/toc.cxx:
Handle links to files with same name put inside of different directories correctly.
Handle links to anchors with same name in HTML file but inside of different directories correctly.
- Note: Source files responsible for creating HTML files have not been changed.
Contents of this patch:
- changes.diff ... a diff file showing the changes against htmldoc 1.8.24.
- htmldoc ... all source files of directory htmldoc.
- vcnet ... MS Visual Studio 7 solution and project files.
| priority | patch for wrong links in created pdf file if file names anchors are not unique version current original reporter this patch fixes these problems with htmldoc pspdf cxx toc cxx handle links to files with same name put inside of different directories correctly handle links to anchors with same name in html file but inside of different directories correctly note source files responsible for creating html files have not been changed contents of this patch changes diff a diff file showing the changes against htmldoc htmldoc all source files of directory htmldoc vcnet ms visual studio solution and project files | 1 |
58,376 | 3,088,980,978 | IssuesEvent | 2015-08-25 19:16:58 | pavel-pimenov/flylinkdc-r5xx | https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx | opened | DHT статистика в флайсервере как на btdigg.org | bug imported Priority-Medium | _From [gavgav2....@tut.by](https://code.google.com/u/105870271324755270751/) on September 27, 2014 15:11:16_
Можно ли к флайсерверу помимо медиаинформации прикрутить сбор статистики количества юзеров сети DHT , как это реализовано сайтом btdigg.org или будет скоро добавлено в движок торрентпира ?
В результатах поискового запроса по хешу, дополнительно показывалась графа "юзеры в DHT". Тоесть, флайсервер отдавал собранную статистику клиенту так же как и другую медиа информацию которая отдаётся сейчас.
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1498_ | 1.0 | DHT статистика в флайсервере как на btdigg.org - _From [gavgav2....@tut.by](https://code.google.com/u/105870271324755270751/) on September 27, 2014 15:11:16_
Можно ли к флайсерверу помимо медиаинформации прикрутить сбор статистики количества юзеров сети DHT , как это реализовано сайтом btdigg.org или будет скоро добавлено в движок торрентпира ?
В результатах поискового запроса по хешу, дополнительно показывалась графа "юзеры в DHT". Тоесть, флайсервер отдавал собранную статистику клиенту так же как и другую медиа информацию которая отдаётся сейчас.
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1498_ | priority | dht статистика в флайсервере как на btdigg org from on september можно ли к флайсерверу помимо медиаинформации прикрутить сбор статистики количества юзеров сети dht как это реализовано сайтом btdigg org или будет скоро добавлено в движок торрентпира в результатах поискового запроса по хешу дополнительно показывалась графа юзеры в dht тоесть флайсервер отдавал собранную статистику клиенту так же как и другую медиа информацию которая отдаётся сейчас original issue | 1 |
54,663 | 3,070,942,878 | IssuesEvent | 2015-08-19 08:53:09 | pavel-pimenov/flylinkdc-r5xx | https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx | closed | Падение скорости при скачивании ~99% большого файлы | bug imported Priority-Medium | _From [rain.bipper@gmail.com](https://code.google.com/u/rain.bipper@gmail.com/) on April 02, 2009 11:45:34_
Для воспроизведения:
Ставим на скачку какой-нибудь большой файл, например фильм. Изначально
скорость должна быть большая (у меня порядка нескольких Мб/с) и
скачиваться должно с большого киличества источников (у меня ~30).
Когда скачка доходит до ~99% - скорость катастрофически падает, до пары
килобайт. Начинает качаеться только с одного пользователя, у остальных
ошибка "Нет свободного блока".
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=9_ | 1.0 | Падение скорости при скачивании ~99% большого файлы - _From [rain.bipper@gmail.com](https://code.google.com/u/rain.bipper@gmail.com/) on April 02, 2009 11:45:34_
Для воспроизведения:
Ставим на скачку какой-нибудь большой файл, например фильм. Изначально
скорость должна быть большая (у меня порядка нескольких Мб/с) и
скачиваться должно с большого киличества источников (у меня ~30).
Когда скачка доходит до ~99% - скорость катастрофически падает, до пары
килобайт. Начинает качаеться только с одного пользователя, у остальных
ошибка "Нет свободного блока".
_Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=9_ | priority | падение скорости при скачивании большого файлы from on april для воспроизведения ставим на скачку какой нибудь большой файл например фильм изначально скорость должна быть большая у меня порядка нескольких мб с и скачиваться должно с большого киличества источников у меня когда скачка доходит до скорость катастрофически падает до пары килобайт начинает качаеться только с одного пользователя у остальных ошибка нет свободного блока original issue | 1 |
483,649 | 13,927,775,462 | IssuesEvent | 2020-10-21 20:22:27 | strapi/strapi | https://api.github.com/repos/strapi/strapi | closed | The Admin UI takes 1.6 minutes to load, but REST is so fast | priority: medium source: core:framework status: confirmed type: bug | <!--
Hello 👋 Thank you for submitting an issue.
Before you start, please make sure your issue is understandable and reproducible.
To make your issue readable make sure you use valid Markdown syntax.
https://guides.github.com/features/mastering-markdown/
Please ensure you have also read and understand the contributing guide.
https://github.com/strapi/strapi/blob/master/CONTRIBUTING.md#reporting-an-issue
-->
## Bug report
### Describe the bug
First of all, thank you for making Strapi which makes my job easier.
I have a problem with the Strapi admin UI. It took 1.6 minutes to load, even though it's not the first time it loads. However, REST and GraphQL are fine.
I didn't install any plugins other than the internal ones. I've also done a production build. I've read some similar issues here, but there's no clear solution.
Is something missing? thanks.
### Expected behavior
The page loads in just a few seconds.
### Screenshots

### System
- Node.js version: v10.16.0
- NPM version:6.9.0
- Strapi version: 3.1.2
- Database: MySQL
- Operating system: Ubuntu 16.04
| 1.0 | The Admin UI takes 1.6 minutes to load, but REST is so fast - <!--
Hello 👋 Thank you for submitting an issue.
Before you start, please make sure your issue is understandable and reproducible.
To make your issue readable make sure you use valid Markdown syntax.
https://guides.github.com/features/mastering-markdown/
Please ensure you have also read and understand the contributing guide.
https://github.com/strapi/strapi/blob/master/CONTRIBUTING.md#reporting-an-issue
-->
## Bug report
### Describe the bug
First of all, thank you for making Strapi which makes my job easier.
I have a problem with the Strapi admin UI. It took 1.6 minutes to load, even though it's not the first time it loads. However, REST and GraphQL are fine.
I didn't install any plugins other than the internal ones. I've also done a production build. I've read some similar issues here, but there's no clear solution.
Is something missing? thanks.
### Expected behavior
The page loads in just a few seconds.
### Screenshots

### System
- Node.js version: v10.16.0
- NPM version:6.9.0
- Strapi version: 3.1.2
- Database: MySQL
- Operating system: Ubuntu 16.04
| priority | the admin ui takes minutes to load but rest is so fast hello 👋 thank you for submitting an issue before you start please make sure your issue is understandable and reproducible to make your issue readable make sure you use valid markdown syntax please ensure you have also read and understand the contributing guide bug report describe the bug first of all thank you for making strapi which makes my job easier i have a problem with the strapi admin ui it took minutes to load even though it s not the first time it loads however rest and graphql are fine i didn t install any plugins other than the internal ones i ve also done a production build i ve read some similar issues here but there s no clear solution is something missing thanks expected behavior the page loads in just a few seconds screenshots system node js version npm version strapi version database mysql operating system ubuntu | 1 |
542,462 | 15,860,796,711 | IssuesEvent | 2021-04-08 09:34:23 | azerothcore/azerothcore-wotlk | https://api.github.com/repos/azerothcore/azerothcore-wotlk | closed | Core/Creature: Guards do not attack a non-moving target [$10] | Bounty Confirmed Help wanted Needs Developer Priority - Medium | **Description**: Neutral guards don't protect players attacked by a player that is not moving.
**Current behaviour**: NEUTRAL guards in booty bay, light's chapel hope etc, won't do anything if you attack another player while not moving yourself. If the guards are near you and standing still, htey won't do anything. But if they move, they will notice it. If you move, they will also notice it.
It has something to do with the guard AI not updating when not moving, and when the player is not moving, something is missing in the AI. (If a guard is moving, he will notice the player though)
It means you can abuse this very easily with ranged attacks, with your pet, or by simply attacking someone in melee without moving.
**Expected behaviour**: The guards should immediately attack you, no matter if they are moving, or standing.
**Steps to reproduce the problem**:
1. Take two characters (alliance and horde)
2. .tele bootybay
3. Go in a place with standing guards, not patrolling.
4. Attack one character without moving.
5. Nothing happens until you move, or until a patrolling guard comes near.
Tested these with @talamortis on my server and on his server.
**Branch(es)**: master (1.0.x+)
[//]: # (This template is for problem reports, for other type of reports edit it accordingly)
[//]: # (If this is a crash report, include the crashlog with https://gist.github.com/)
[//]: # (For fixes containing c++ create a Pull Request)
<bountysource-plugin>
---
There is a **[$10 open bounty](https://www.bountysource.com/issues/47222064-core-creature-guards-do-not-attack-a-non-moving-target?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github)** on this issue. Add to the bounty at [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github).
</bountysource-plugin> | 1.0 | Core/Creature: Guards do not attack a non-moving target [$10] - **Description**: Neutral guards don't protect players attacked by a player that is not moving.
**Current behaviour**: NEUTRAL guards in booty bay, light's chapel hope etc, won't do anything if you attack another player while not moving yourself. If the guards are near you and standing still, htey won't do anything. But if they move, they will notice it. If you move, they will also notice it.
It has something to do with the guard AI not updating when not moving, and when the player is not moving, something is missing in the AI. (If a guard is moving, he will notice the player though)
It means you can abuse this very easily with ranged attacks, with your pet, or by simply attacking someone in melee without moving.
**Expected behaviour**: The guards should immediately attack you, no matter if they are moving, or standing.
**Steps to reproduce the problem**:
1. Take two characters (alliance and horde)
2. .tele bootybay
3. Go in a place with standing guards, not patrolling.
4. Attack one character without moving.
5. Nothing happens until you move, or until a patrolling guard comes near.
Tested these with @talamortis on my server and on his server.
**Branch(es)**: master (1.0.x+)
[//]: # (This template is for problem reports, for other type of reports edit it accordingly)
[//]: # (If this is a crash report, include the crashlog with https://gist.github.com/)
[//]: # (For fixes containing c++ create a Pull Request)
<bountysource-plugin>
---
There is a **[$10 open bounty](https://www.bountysource.com/issues/47222064-core-creature-guards-do-not-attack-a-non-moving-target?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github)** on this issue. Add to the bounty at [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github).
</bountysource-plugin> | priority | core creature guards do not attack a non moving target description neutral guards don t protect players attacked by a player that is not moving current behaviour neutral guards in booty bay light s chapel hope etc won t do anything if you attack another player while not moving yourself if the guards are near you and standing still htey won t do anything but if they move they will notice it if you move they will also notice it it has something to do with the guard ai not updating when not moving and when the player is not moving something is missing in the ai if a guard is moving he will notice the player though it means you can abuse this very easily with ranged attacks with your pet or by simply attacking someone in melee without moving expected behaviour the guards should immediately attack you no matter if they are moving or standing steps to reproduce the problem take two characters alliance and horde tele bootybay go in a place with standing guards not patrolling attack one character without moving nothing happens until you move or until a patrolling guard comes near tested these with talamortis on my server and on his server branch es master x this template is for problem reports for other type of reports edit it accordingly if this is a crash report include the crashlog with for fixes containing c create a pull request there is a on this issue add to the bounty at | 1 |
384,356 | 11,387,846,775 | IssuesEvent | 2020-01-29 15:41:50 | carbon-design-system/ibm-dotcom-library | https://api.github.com/repos/carbon-design-system/ibm-dotcom-library | closed | IBM.com Patterns Package | dev epic package: patterns priority: medium | _Jeff-Chew created the following on Jun 24:_
This is an epic that will capture the overall creation of the patterns package under IBM.com Library
_Original issue: https://github.ibm.com/webstandards/digital-design/issues/1110_ | 1.0 | IBM.com Patterns Package - _Jeff-Chew created the following on Jun 24:_
This is an epic that will capture the overall creation of the patterns package under IBM.com Library
_Original issue: https://github.ibm.com/webstandards/digital-design/issues/1110_ | priority | ibm com patterns package jeff chew created the following on jun this is an epic that will capture the overall creation of the patterns package under ibm com library original issue | 1 |
757,425 | 26,511,904,310 | IssuesEvent | 2023-01-18 17:45:09 | Bytecrowds/main | https://api.github.com/repos/Bytecrowds/main | opened | Implement error handling | priority:medium backend improvement frontend | We need to implement a system that properly tracks and handles errors, eventually storing them somewhere. There are some SAAS options, but some research needs to be done. We would also need to look for potential open-source sponsorship if needed at any point. | 1.0 | Implement error handling - We need to implement a system that properly tracks and handles errors, eventually storing them somewhere. There are some SAAS options, but some research needs to be done. We would also need to look for potential open-source sponsorship if needed at any point. | priority | implement error handling we need to implement a system that properly tracks and handles errors eventually storing them somewhere there are some saas options but some research needs to be done we would also need to look for potential open source sponsorship if needed at any point | 1 |
309,302 | 9,473,205,603 | IssuesEvent | 2019-04-19 00:36:15 | NREL/OpenStudio-BEopt | https://api.github.com/repos/NREL/OpenStudio-BEopt | closed | Simplify equipment measure args | priority medium | For HVAC and WH equipment measures, remove as many performance-related inputs as possible beyond the rated performance value(s). For example, remove EER, SHR, etc. from the AC measures and calculate them from SEER. | 1.0 | Simplify equipment measure args - For HVAC and WH equipment measures, remove as many performance-related inputs as possible beyond the rated performance value(s). For example, remove EER, SHR, etc. from the AC measures and calculate them from SEER. | priority | simplify equipment measure args for hvac and wh equipment measures remove as many performance related inputs as possible beyond the rated performance value s for example remove eer shr etc from the ac measures and calculate them from seer | 1 |
580,047 | 17,203,898,075 | IssuesEvent | 2021-07-17 20:56:03 | benny-n/gear | https://api.github.com/repos/benny-n/gear | opened | Implement a basic Math Engine | math medium priority | The math engine should contain 2 modules (for now):
**Vectors** and **Matrices**.
**Vector operations:**
- Vector addition & subtraction: Allows a character to move
- Dot Product: Determines how much a vector influences another
- Cross Product: Allows for the creation of a third vector
**Matrix operations:**
- Transformation
- Transpose
- Inverse
- Identity
The transformation operation allows a character to rotate.
Math engine related references can be found in the README file.
Naïve skeleton example:
```
struct Vector{
x: i64,
y: i64,
z: i64,
}
impl Vector{
fn add(&self, other : &Vector){
panic!("Not implemented!");
}
}
```
| 1.0 | Implement a basic Math Engine - The math engine should contain 2 modules (for now):
**Vectors** and **Matrices**.
**Vector operations:**
- Vector addition & subtraction: Allows a character to move
- Dot Product: Determines how much a vector influences another
- Cross Product: Allows for the creation of a third vector
**Matrix operations:**
- Transformation
- Transpose
- Inverse
- Identity
The transformation operation allows a character to rotate.
Math engine related references can be found in the README file.
Naïve skeleton example:
```
struct Vector{
x: i64,
y: i64,
z: i64,
}
impl Vector{
fn add(&self, other : &Vector){
panic!("Not implemented!");
}
}
```
| priority | implement a basic math engine the math engine should contain modules for now vectors and matrices vector operations vector addition subtraction allows a character to move dot product determines how much a vector influences another cross product allows for the creation of a third vector matrix operations transformation transpose inverse identity the transformation operation allows a character to rotate math engine related references can be found in the readme file naïve skeleton example struct vector x y z impl vector fn add self other vector panic not implemented | 1 |
386,284 | 11,434,829,678 | IssuesEvent | 2020-02-04 18:09:24 | dhenry-KCI/FredCo-Post-Go-Live- | https://api.github.com/repos/dhenry-KCI/FredCo-Post-Go-Live- | opened | Building Permits - Official Issuance Available Too Early | Medium Priority | Permit number 263288 is currently Awaiting Plan Review Payment and has not been issued, however the Building Permit - Official Issuance report is available on-demand for printing.
Please update when this is made available per the rules outlined previously.

| 1.0 | Building Permits - Official Issuance Available Too Early - Permit number 263288 is currently Awaiting Plan Review Payment and has not been issued, however the Building Permit - Official Issuance report is available on-demand for printing.
Please update when this is made available per the rules outlined previously.

| priority | building permits official issuance available too early permit number is currently awaiting plan review payment and has not been issued however the building permit official issuance report is available on demand for printing please update when this is made available per the rules outlined previously | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.