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
855
| labels
stringlengths 4
721
| body
stringlengths 1
261k
| index
stringclasses 13
values | text_combine
stringlengths 96
261k
| label
stringclasses 2
values | text
stringlengths 96
240k
| binary_label
int64 0
1
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
747,611
| 26,093,587,483
|
IssuesEvent
|
2022-12-26 15:18:30
|
bounswe/bounswe2022group4
|
https://api.github.com/repos/bounswe/bounswe2022group4
|
closed
|
Frontend: Listing the Remaining Requirements for Frontend Team
|
Priority - High Status: In Progress whom: individual Team - Frontend Management
|
**Description:**
We have completed most of the requirements specified in the previous term in Milestones I and II. However, there are some remained requirements that we have to meet until the Final Milestone. My responsibility is to list the remaining requirements so that the front-end team can work on them and warn the back-end team about the needed API functions. We will share the remained requirements among us after I have completed the listing of it.
**Steps:**
1) Examine the requirements section under the wiki page of our repository.
2) Test our current live website to understand completed requirements.
3) List the uncompleted requirements.
Reviewer: @umutdenizsenerr
Deadline: 23.12.2022 23.59 PM
|
1.0
|
Frontend: Listing the Remaining Requirements for Frontend Team - **Description:**
We have completed most of the requirements specified in the previous term in Milestones I and II. However, there are some remained requirements that we have to meet until the Final Milestone. My responsibility is to list the remaining requirements so that the front-end team can work on them and warn the back-end team about the needed API functions. We will share the remained requirements among us after I have completed the listing of it.
**Steps:**
1) Examine the requirements section under the wiki page of our repository.
2) Test our current live website to understand completed requirements.
3) List the uncompleted requirements.
Reviewer: @umutdenizsenerr
Deadline: 23.12.2022 23.59 PM
|
priority
|
frontend listing the remaining requirements for frontend team description we have completed most of the requirements specified in the previous term in milestones i and ii however there are some remained requirements that we have to meet until the final milestone my responsibility is to list the remaining requirements so that the front end team can work on them and warn the back end team about the needed api functions we will share the remained requirements among us after i have completed the listing of it steps examine the requirements section under the wiki page of our repository test our current live website to understand completed requirements list the uncompleted requirements reviewer umutdenizsenerr deadline pm
| 1
|
505,253
| 14,630,555,384
|
IssuesEvent
|
2020-12-23 17:57:22
|
aws/aws-sdk-js-v3
|
https://api.github.com/repos/aws/aws-sdk-js-v3
|
closed
|
Remove $metadata from API response
|
High Priority feature-request
|
**Is your feature request related to a problem? Please describe.**
The purpose of `$metadata` was to provide metadata related to Output. Since metadata is now available in logger.info, it can be removed from returned Output.
<details>
<summary>Code</summary>
```js
const { DynamoDB } = require("@aws-sdk/client-dynamodb");
(async () => {
const client = new DynamoDB({ logger: { ...console, debug: undefined } });
console.log(await client.listTables({ Limit: 5 }));
})();
```
</details>
<details>
<summary>Output</summary>
```console
{
'$metadata': {
httpStatusCode: 200,
httpHeaders: {
server: 'Server',
date: 'Tue, 01 Sep 2020 22:42:10 GMT',
'content-type': 'application/x-amz-json-1.0',
'content-length': '167',
connection: 'keep-alive',
'x-amzn-requestid': 'D2V4MTLGN3KMM428QFEVDCG9KNVV4KQNSO5AEMVJF66Q9ASUAAJG',
'x-amz-crc32': '251226023'
},
requestId: 'D2V4MTLGN3KMM428QFEVDCG9KNVV4KQNSO5AEMVJF66Q9ASUAAJG'
},
input: { Limit: 5 },
output: {
__type: 'ListTablesOutput',
LastEvaluatedTableName: 'notes',
TableNames: [
'CUSTOMER_LIST',
'MysfitsTable',
'aws-js-sdk-workshop-notesAF81B09D-DVHP09NETDNE',
'aws-sdk-js-integration-test',
'notes'
]
}
}
{
'$metadata': {
httpStatusCode: 200,
httpHeaders: {
server: 'Server',
date: 'Tue, 01 Sep 2020 22:42:10 GMT',
'content-type': 'application/x-amz-json-1.0',
'content-length': '167',
connection: 'keep-alive',
'x-amzn-requestid': 'D2V4MTLGN3KMM428QFEVDCG9KNVV4KQNSO5AEMVJF66Q9ASUAAJG',
'x-amz-crc32': '251226023'
},
requestId: 'D2V4MTLGN3KMM428QFEVDCG9KNVV4KQNSO5AEMVJF66Q9ASUAAJG',
attempts: 1,
totalRetryDelay: 0
},
__type: 'ListTablesOutput',
LastEvaluatedTableName: 'notes',
TableNames: [
'CUSTOMER_LIST',
'MysfitsTable',
'aws-js-sdk-workshop-notesAF81B09D-DVHP09NETDNE',
'aws-sdk-js-integration-test',
'notes'
]
}
```
</details>
**Describe the solution you'd like**
Remove $metadata from response, as it can be accessed from logger info output
**Describe alternatives you've considered**
* Ignoring $metadata in response
* Using Output.$metadata for debugging, instead of explicitly passing logger
|
1.0
|
Remove $metadata from API response - **Is your feature request related to a problem? Please describe.**
The purpose of `$metadata` was to provide metadata related to Output. Since metadata is now available in logger.info, it can be removed from returned Output.
<details>
<summary>Code</summary>
```js
const { DynamoDB } = require("@aws-sdk/client-dynamodb");
(async () => {
const client = new DynamoDB({ logger: { ...console, debug: undefined } });
console.log(await client.listTables({ Limit: 5 }));
})();
```
</details>
<details>
<summary>Output</summary>
```console
{
'$metadata': {
httpStatusCode: 200,
httpHeaders: {
server: 'Server',
date: 'Tue, 01 Sep 2020 22:42:10 GMT',
'content-type': 'application/x-amz-json-1.0',
'content-length': '167',
connection: 'keep-alive',
'x-amzn-requestid': 'D2V4MTLGN3KMM428QFEVDCG9KNVV4KQNSO5AEMVJF66Q9ASUAAJG',
'x-amz-crc32': '251226023'
},
requestId: 'D2V4MTLGN3KMM428QFEVDCG9KNVV4KQNSO5AEMVJF66Q9ASUAAJG'
},
input: { Limit: 5 },
output: {
__type: 'ListTablesOutput',
LastEvaluatedTableName: 'notes',
TableNames: [
'CUSTOMER_LIST',
'MysfitsTable',
'aws-js-sdk-workshop-notesAF81B09D-DVHP09NETDNE',
'aws-sdk-js-integration-test',
'notes'
]
}
}
{
'$metadata': {
httpStatusCode: 200,
httpHeaders: {
server: 'Server',
date: 'Tue, 01 Sep 2020 22:42:10 GMT',
'content-type': 'application/x-amz-json-1.0',
'content-length': '167',
connection: 'keep-alive',
'x-amzn-requestid': 'D2V4MTLGN3KMM428QFEVDCG9KNVV4KQNSO5AEMVJF66Q9ASUAAJG',
'x-amz-crc32': '251226023'
},
requestId: 'D2V4MTLGN3KMM428QFEVDCG9KNVV4KQNSO5AEMVJF66Q9ASUAAJG',
attempts: 1,
totalRetryDelay: 0
},
__type: 'ListTablesOutput',
LastEvaluatedTableName: 'notes',
TableNames: [
'CUSTOMER_LIST',
'MysfitsTable',
'aws-js-sdk-workshop-notesAF81B09D-DVHP09NETDNE',
'aws-sdk-js-integration-test',
'notes'
]
}
```
</details>
**Describe the solution you'd like**
Remove $metadata from response, as it can be accessed from logger info output
**Describe alternatives you've considered**
* Ignoring $metadata in response
* Using Output.$metadata for debugging, instead of explicitly passing logger
|
priority
|
remove metadata from api response is your feature request related to a problem please describe the purpose of metadata was to provide metadata related to output since metadata is now available in logger info it can be removed from returned output code js const dynamodb require aws sdk client dynamodb async const client new dynamodb logger console debug undefined console log await client listtables limit output console metadata httpstatuscode httpheaders server server date tue sep gmt content type application x amz json content length connection keep alive x amzn requestid x amz requestid input limit output type listtablesoutput lastevaluatedtablename notes tablenames customer list mysfitstable aws js sdk workshop aws sdk js integration test notes metadata httpstatuscode httpheaders server server date tue sep gmt content type application x amz json content length connection keep alive x amzn requestid x amz requestid attempts totalretrydelay type listtablesoutput lastevaluatedtablename notes tablenames customer list mysfitstable aws js sdk workshop aws sdk js integration test notes describe the solution you d like remove metadata from response as it can be accessed from logger info output describe alternatives you ve considered ignoring metadata in response using output metadata for debugging instead of explicitly passing logger
| 1
|
602,311
| 18,466,464,372
|
IssuesEvent
|
2021-10-17 00:45:51
|
quantum-bits/iChair
|
https://api.github.com/repos/quantum-bits/iChair
|
opened
|
Issue with iChair getting out of sync with Banner due to user skirting the system
|
high priority
|
An example would be:
- user requests a time change in the first round of schedule edits (using the pdf generated by iChair)
- users requests another time change for the same course offering, but does it via phone, email, the Word document, etc.
- on the 3rd round of schedule edits, Banner is now correct, iChair has an old time, the change request is back because the two times don't match. The user submits the pdf without looking closely, and now everyone is completely confused
What to do to avoid this, other than try to get users to be more familiar with using iChair throughout the process?
|
1.0
|
Issue with iChair getting out of sync with Banner due to user skirting the system - An example would be:
- user requests a time change in the first round of schedule edits (using the pdf generated by iChair)
- users requests another time change for the same course offering, but does it via phone, email, the Word document, etc.
- on the 3rd round of schedule edits, Banner is now correct, iChair has an old time, the change request is back because the two times don't match. The user submits the pdf without looking closely, and now everyone is completely confused
What to do to avoid this, other than try to get users to be more familiar with using iChair throughout the process?
|
priority
|
issue with ichair getting out of sync with banner due to user skirting the system an example would be user requests a time change in the first round of schedule edits using the pdf generated by ichair users requests another time change for the same course offering but does it via phone email the word document etc on the round of schedule edits banner is now correct ichair has an old time the change request is back because the two times don t match the user submits the pdf without looking closely and now everyone is completely confused what to do to avoid this other than try to get users to be more familiar with using ichair throughout the process
| 1
|
449,670
| 12,973,123,534
|
IssuesEvent
|
2020-07-21 13:35:57
|
bbc/simorgh
|
https://api.github.com/repos/bbc/simorgh
|
closed
|
Set service language override more inclusively
|
high-priority ukrainian-STYs ws-engage
|
### Is your feature request related to a problem? Please describe.
Some Services, e.g. Ukrainian, publish STYs in multiple languages. In order to support this, the page needs to have access to the relevant service information, like translations.
### Describe the solution you'd like
- Currently the Ukraine in Russian index makes the Russian configuration available by setting a language override (or variant) that matches a key in `src/app/lib/config/services/ukrainian.js` if the pathname equals `/ukrainian/ukraine_in_russian`. This will not work for STYs.
- We can make use of `pageData.metadata.language` to detect what language the current page is written in.
### Describe alternatives you've considered
n/a
### Testing notes
[Tester to complete]
Dev insight: Will Cypress tests be required or are unit tests sufficient? Will there be any potential regression? etc
- [ ] This feature is expected to need manual testing.
### Additional context
- [langHandler](https://github.com/bbc/simorgh/blob/722b42256ba0fb8585914a418176bc539562bccd/src/app/lib/utilities/langHandler/index.js)
|
1.0
|
Set service language override more inclusively - ### Is your feature request related to a problem? Please describe.
Some Services, e.g. Ukrainian, publish STYs in multiple languages. In order to support this, the page needs to have access to the relevant service information, like translations.
### Describe the solution you'd like
- Currently the Ukraine in Russian index makes the Russian configuration available by setting a language override (or variant) that matches a key in `src/app/lib/config/services/ukrainian.js` if the pathname equals `/ukrainian/ukraine_in_russian`. This will not work for STYs.
- We can make use of `pageData.metadata.language` to detect what language the current page is written in.
### Describe alternatives you've considered
n/a
### Testing notes
[Tester to complete]
Dev insight: Will Cypress tests be required or are unit tests sufficient? Will there be any potential regression? etc
- [ ] This feature is expected to need manual testing.
### Additional context
- [langHandler](https://github.com/bbc/simorgh/blob/722b42256ba0fb8585914a418176bc539562bccd/src/app/lib/utilities/langHandler/index.js)
|
priority
|
set service language override more inclusively is your feature request related to a problem please describe some services e g ukrainian publish stys in multiple languages in order to support this the page needs to have access to the relevant service information like translations describe the solution you d like currently the ukraine in russian index makes the russian configuration available by setting a language override or variant that matches a key in src app lib config services ukrainian js if the pathname equals ukrainian ukraine in russian this will not work for stys we can make use of pagedata metadata language to detect what language the current page is written in describe alternatives you ve considered n a testing notes dev insight will cypress tests be required or are unit tests sufficient will there be any potential regression etc this feature is expected to need manual testing additional context
| 1
|
228,244
| 7,548,415,120
|
IssuesEvent
|
2018-04-18 11:07:34
|
ballerina-platform/ballerina-message-broker
|
https://api.github.com/repos/ballerina-platform/ballerina-message-broker
|
opened
|
Create a broker-admin.bat file
|
Priority/Highest Severity/Critical Type/Task
|
**Description:**
<!-- Give a brief description of the issue -->
For windows platforms we need to create a broker-admin.bat file similar to what we have for Linux platform
|
1.0
|
Create a broker-admin.bat file - **Description:**
<!-- Give a brief description of the issue -->
For windows platforms we need to create a broker-admin.bat file similar to what we have for Linux platform
|
priority
|
create a broker admin bat file description for windows platforms we need to create a broker admin bat file similar to what we have for linux platform
| 1
|
213,153
| 7,246,350,662
|
IssuesEvent
|
2018-02-14 21:20:43
|
psouza4/mediacentermaster
|
https://api.github.com/repos/psouza4/mediacentermaster
|
closed
|
Right-click menu very slow with many selections
|
Affects-Performance Component-Functionality Fixed / Resolved Priority-High Type-Bug
|
The right-click context menu takes a very long time to open with hundreds of selections.
|
1.0
|
Right-click menu very slow with many selections - The right-click context menu takes a very long time to open with hundreds of selections.
|
priority
|
right click menu very slow with many selections the right click context menu takes a very long time to open with hundreds of selections
| 1
|
772,439
| 27,122,020,206
|
IssuesEvent
|
2023-02-16 00:04:20
|
ArctosDB/arctos
|
https://api.github.com/repos/ArctosDB/arctos
|
closed
|
Create an Accession?
|
Priority-High (Needed for work) Function-Transactions Help wanted
|
@dustymc it appears we have no way to manually create an accession? At least I can't figure out how to get there (probably just me being nuts...) Help!
|
1.0
|
Create an Accession? - @dustymc it appears we have no way to manually create an accession? At least I can't figure out how to get there (probably just me being nuts...) Help!
|
priority
|
create an accession dustymc it appears we have no way to manually create an accession at least i can t figure out how to get there probably just me being nuts help
| 1
|
478,532
| 13,781,127,434
|
IssuesEvent
|
2020-10-08 15:46:16
|
AY2021S1-CS2103-F10-1/tp
|
https://api.github.com/repos/AY2021S1-CS2103-F10-1/tp
|
closed
|
Add student Id to Student and Find by Id
|
priority.High
|
Attribute in the Student class. End goal is to be a self-assigned unique identifier.
|
1.0
|
Add student Id to Student and Find by Id - Attribute in the Student class. End goal is to be a self-assigned unique identifier.
|
priority
|
add student id to student and find by id attribute in the student class end goal is to be a self assigned unique identifier
| 1
|
107,110
| 4,289,122,575
|
IssuesEvent
|
2016-07-17 22:14:10
|
rdunlop/unicycling-registration
|
https://api.github.com/repos/rdunlop/unicycling-registration
|
closed
|
Balance the Automatic Lane Assignment system
|
enhancement High Priority
|
We should balance the number of lanes in the Heatlaneassignment, so that there are an equal number of riders in the heats if possible
|
1.0
|
Balance the Automatic Lane Assignment system - We should balance the number of lanes in the Heatlaneassignment, so that there are an equal number of riders in the heats if possible
|
priority
|
balance the automatic lane assignment system we should balance the number of lanes in the heatlaneassignment so that there are an equal number of riders in the heats if possible
| 1
|
211,878
| 7,208,834,922
|
IssuesEvent
|
2018-02-07 05:41:04
|
ballerina-lang/language-server
|
https://api.github.com/repos/ballerina-lang/language-server
|
closed
|
Libraries that are not in the standard ballerina distribution is not seen by language server launchers
|
Priority/Highest Severity/Major Type/Bug
|
**Description:**
Some libraries like connectors needs to be copied into the `<ballerina sdk>/bre/lib` to be used. As launchers only see classes in the created uber jar, code that use these libraries will not be compiled.
As a fix, a jar that only includes language-server-core dependencies needs to be created in the build step. And language clients that are configured with the sdk path should use classes from this jar and classes from jars in `<ballerina sdk>/bre/lib` when compiling source code.
|
1.0
|
Libraries that are not in the standard ballerina distribution is not seen by language server launchers - **Description:**
Some libraries like connectors needs to be copied into the `<ballerina sdk>/bre/lib` to be used. As launchers only see classes in the created uber jar, code that use these libraries will not be compiled.
As a fix, a jar that only includes language-server-core dependencies needs to be created in the build step. And language clients that are configured with the sdk path should use classes from this jar and classes from jars in `<ballerina sdk>/bre/lib` when compiling source code.
|
priority
|
libraries that are not in the standard ballerina distribution is not seen by language server launchers description some libraries like connectors needs to be copied into the bre lib to be used as launchers only see classes in the created uber jar code that use these libraries will not be compiled as a fix a jar that only includes language server core dependencies needs to be created in the build step and language clients that are configured with the sdk path should use classes from this jar and classes from jars in bre lib when compiling source code
| 1
|
816,012
| 30,583,468,783
|
IssuesEvent
|
2023-07-21 11:33:57
|
Neural-Systems-at-UIO/RB-workbench
|
https://api.github.com/repos/Neural-Systems-at-UIO/RB-workbench
|
opened
|
WebWarp EBRAINS login doesn't work.
|
High Priority
|
Login to EBRAINS required on selecting WebWarp. In Firefox, the login does not work.

|
1.0
|
WebWarp EBRAINS login doesn't work. - Login to EBRAINS required on selecting WebWarp. In Firefox, the login does not work.

|
priority
|
webwarp ebrains login doesn t work login to ebrains required on selecting webwarp in firefox the login does not work
| 1
|
188,676
| 6,779,812,305
|
IssuesEvent
|
2017-10-29 05:23:35
|
ballerinalang/composer
|
https://api.github.com/repos/ballerinalang/composer
|
opened
|
Cannot import a valid lengthy json in structs
|
0.94.1 Priority/High Severity/Critical Type/Bug
|
1. Try to import the following json
```
{
"id": "0001",
"type": "donut",
"name": "Cake",
"image": "qq",
"url": "images/0001.jpg",
"width": "200",
"height": "200",
"thumbnail": "w",
"url34444": "images/thumbnails/0001.jpg",
"width9": "200",
"height9": "200",
"id2": "0001",
"type2": "donut",
"name2": "Cake",
"image2": "qq",
"url2": "images/0001.jpg",
"width2": "200",
"height2": "200",
"thumbnail2": "w",
"url255": "images/thumbnails/0001.jpg",
"width255": "200",
"height255": "200",
"id3": "0001",
"type3": "donut",
"name3": "Cake",
"image3": "qq",
"url3": "images/0001.jpg",
"width3": "200",
"height3": "200",
"thumbnail3": "w",
"url355": "images/thumbnails/0001.jpg",
"width355": "200",
"height355": "200",
"id4": "0001",
"type34": "donut",
"name34": "Cake",
"image34": "qq",
"url34": "images/0001.jpg",
"width34": "200",
"height34": "200",
"thumbnail34": "w",
"url3455": "images/thumbnails/0001.jpg",
"width3455": "200",
"height3455": "200",
"id45": "0001",
"type345": "donut",
"name345": "Cake",
"image345": "qq",
"url345": "images/0001.jpg",
"width345": "200",
"height345": "200",
"thumbnail345": "w",
"url354": "images/thumbnails/0001.jpg",
"width34566": "200",
"height34665": "200",
"id46": "0001",
"type346": "donut",
"name346": "Cake",
"image346": "qq",
"url346": "images/0001.jpg",
"width346": "200",
"height346": "200",
"thumbnail346": "w",
"url34666": "images/thumbnails/0001.jpg",
"width34666": "200",
"height34666": "200",
"id47": "0001",
"type347": "donut",
"name347": "Cake",
"image347": "qq",
"url347": "images/0001.jpg",
"width347": "200",
"height347": "200",
"thumbnail347": "w",
"url34667": "images/thumbnails/0001.jpg",
"width34766": "200",
"height34766": "200"
}
```
**Issue**
1. No error message from the composer
2. The following error in the console
```
Oct 29, 2017 10:51:22 AM org.ballerinalang.composer.service.workspace.rest.datamodel.BLangFragmentParser parseFragment
SEVERE: Error while parsing BLang fragment.
java.lang.Exception: Incorrect format of the generated JSON
at org.ballerinalang.composer.service.workspace.rest.datamodel.BLangFragmentParser.parseFragment(BLangFragmentParser.java:55)
at org.ballerinalang.composer.service.workspace.rest.datamodel.BLangFileRestService.getBallerinaJsonDataModelGivenFragment(BLangFileRestService.java:104)
at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.wso2.msf4j.internal.router.HttpMethodInfo.invoke(HttpMethodInfo.java:132)
at org.wso2.msf4j.internal.MSF4JMessageProcessor.dispatchMethod(MSF4JMessageProcessor.java:130)
at org.wso2.msf4j.internal.MSF4JMessageProcessor.receive(MSF4JMessageProcessor.java:72)
at org.wso2.carbon.transport.http.netty.listener.WorkerPoolDispatchingSourceHandler.lambda$publishToWorkerPool$12(WorkerPoolDispatchingSourceHandler.java:125)
at org.wso2.carbon.transport.http.netty.listener.WorkerPoolDispatchingSourceHandler$$Lambda$30/2053651520.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
```
|
1.0
|
Cannot import a valid lengthy json in structs - 1. Try to import the following json
```
{
"id": "0001",
"type": "donut",
"name": "Cake",
"image": "qq",
"url": "images/0001.jpg",
"width": "200",
"height": "200",
"thumbnail": "w",
"url34444": "images/thumbnails/0001.jpg",
"width9": "200",
"height9": "200",
"id2": "0001",
"type2": "donut",
"name2": "Cake",
"image2": "qq",
"url2": "images/0001.jpg",
"width2": "200",
"height2": "200",
"thumbnail2": "w",
"url255": "images/thumbnails/0001.jpg",
"width255": "200",
"height255": "200",
"id3": "0001",
"type3": "donut",
"name3": "Cake",
"image3": "qq",
"url3": "images/0001.jpg",
"width3": "200",
"height3": "200",
"thumbnail3": "w",
"url355": "images/thumbnails/0001.jpg",
"width355": "200",
"height355": "200",
"id4": "0001",
"type34": "donut",
"name34": "Cake",
"image34": "qq",
"url34": "images/0001.jpg",
"width34": "200",
"height34": "200",
"thumbnail34": "w",
"url3455": "images/thumbnails/0001.jpg",
"width3455": "200",
"height3455": "200",
"id45": "0001",
"type345": "donut",
"name345": "Cake",
"image345": "qq",
"url345": "images/0001.jpg",
"width345": "200",
"height345": "200",
"thumbnail345": "w",
"url354": "images/thumbnails/0001.jpg",
"width34566": "200",
"height34665": "200",
"id46": "0001",
"type346": "donut",
"name346": "Cake",
"image346": "qq",
"url346": "images/0001.jpg",
"width346": "200",
"height346": "200",
"thumbnail346": "w",
"url34666": "images/thumbnails/0001.jpg",
"width34666": "200",
"height34666": "200",
"id47": "0001",
"type347": "donut",
"name347": "Cake",
"image347": "qq",
"url347": "images/0001.jpg",
"width347": "200",
"height347": "200",
"thumbnail347": "w",
"url34667": "images/thumbnails/0001.jpg",
"width34766": "200",
"height34766": "200"
}
```
**Issue**
1. No error message from the composer
2. The following error in the console
```
Oct 29, 2017 10:51:22 AM org.ballerinalang.composer.service.workspace.rest.datamodel.BLangFragmentParser parseFragment
SEVERE: Error while parsing BLang fragment.
java.lang.Exception: Incorrect format of the generated JSON
at org.ballerinalang.composer.service.workspace.rest.datamodel.BLangFragmentParser.parseFragment(BLangFragmentParser.java:55)
at org.ballerinalang.composer.service.workspace.rest.datamodel.BLangFileRestService.getBallerinaJsonDataModelGivenFragment(BLangFileRestService.java:104)
at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.wso2.msf4j.internal.router.HttpMethodInfo.invoke(HttpMethodInfo.java:132)
at org.wso2.msf4j.internal.MSF4JMessageProcessor.dispatchMethod(MSF4JMessageProcessor.java:130)
at org.wso2.msf4j.internal.MSF4JMessageProcessor.receive(MSF4JMessageProcessor.java:72)
at org.wso2.carbon.transport.http.netty.listener.WorkerPoolDispatchingSourceHandler.lambda$publishToWorkerPool$12(WorkerPoolDispatchingSourceHandler.java:125)
at org.wso2.carbon.transport.http.netty.listener.WorkerPoolDispatchingSourceHandler$$Lambda$30/2053651520.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
```
|
priority
|
cannot import a valid lengthy json in structs try to import the following json id type donut name cake image qq url images jpg width height thumbnail w images thumbnails jpg donut cake qq images jpg w images thumbnails jpg donut cake qq images jpg w images thumbnails jpg donut cake qq images jpg w images thumbnails jpg donut cake qq images jpg w images thumbnails jpg donut cake qq images jpg w images thumbnails jpg donut cake qq images jpg w images thumbnails jpg issue no error message from the composer the following error in the console oct am org ballerinalang composer service workspace rest datamodel blangfragmentparser parsefragment severe error while parsing blang fragment java lang exception incorrect format of the generated json at org ballerinalang composer service workspace rest datamodel blangfragmentparser parsefragment blangfragmentparser java at org ballerinalang composer service workspace rest datamodel blangfilerestservice getballerinajsondatamodelgivenfragment blangfilerestservice java at sun reflect invoke unknown source at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org internal router httpmethodinfo invoke httpmethodinfo java at org internal dispatchmethod java at org internal receive java at org carbon transport http netty listener workerpooldispatchingsourcehandler lambda publishtoworkerpool workerpooldispatchingsourcehandler java at org carbon transport http netty listener workerpooldispatchingsourcehandler lambda run unknown source at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java
| 1
|
129,220
| 5,090,245,831
|
IssuesEvent
|
2017-01-02 05:10:24
|
dhowe/Website
|
https://api.github.com/repos/dhowe/Website
|
closed
|
AdverPos: zooming problem
|
priority: high
|
this happens on click: top half is zoomable, bottom appears to be the older, low-res image... (otherwise zooming looks quite nice)

|
1.0
|
AdverPos: zooming problem - this happens on click: top half is zoomable, bottom appears to be the older, low-res image... (otherwise zooming looks quite nice)

|
priority
|
adverpos zooming problem this happens on click top half is zoomable bottom appears to be the older low res image otherwise zooming looks quite nice
| 1
|
321,593
| 9,806,239,411
|
IssuesEvent
|
2019-06-12 10:52:58
|
fossasia/open-event-orga-app
|
https://api.github.com/repos/fossasia/open-event-orga-app
|
opened
|
Repatcha: Implement Captcha for sensitive activities
|
enhancement high-priority
|
Please implement a Recaptcha for the following activities:
* Password Reset
* First login failed (the second and following requests should have a recaptcha)
Add the Recaptcha Credentials settings into the System Tab in the Admin section below the social credentials.

|
1.0
|
Repatcha: Implement Captcha for sensitive activities - Please implement a Recaptcha for the following activities:
* Password Reset
* First login failed (the second and following requests should have a recaptcha)
Add the Recaptcha Credentials settings into the System Tab in the Admin section below the social credentials.

|
priority
|
repatcha implement captcha for sensitive activities please implement a recaptcha for the following activities password reset first login failed the second and following requests should have a recaptcha add the recaptcha credentials settings into the system tab in the admin section below the social credentials
| 1
|
365,202
| 10,779,260,845
|
IssuesEvent
|
2019-11-04 10:12:26
|
code4romania/monitorizare-vot-ios
|
https://api.github.com/repos/code4romania/monitorizare-vot-ios
|
closed
|
Add screen for choosing app language
|
enhancement help wanted high priority ios
|
Add language picker screen as part of onboarding process.
Available app languages are English and Romanian for now. Romanian is set as default.
Make the language picked as dynamic as possible. Ideally it would show the list of languages for which strings files were added to the app.

Figma available here: https://www.figma.com/file/lww9lcabUpamTZg8zCExI8/MV-2.0-Prototype?node-id=26%3A161
|
1.0
|
Add screen for choosing app language - Add language picker screen as part of onboarding process.
Available app languages are English and Romanian for now. Romanian is set as default.
Make the language picked as dynamic as possible. Ideally it would show the list of languages for which strings files were added to the app.

Figma available here: https://www.figma.com/file/lww9lcabUpamTZg8zCExI8/MV-2.0-Prototype?node-id=26%3A161
|
priority
|
add screen for choosing app language add language picker screen as part of onboarding process available app languages are english and romanian for now romanian is set as default make the language picked as dynamic as possible ideally it would show the list of languages for which strings files were added to the app figma available here
| 1
|
43,105
| 2,882,631,468
|
IssuesEvent
|
2015-06-11 06:55:28
|
afollestad/cabinet-issue-tracker
|
https://api.github.com/repos/afollestad/cabinet-issue-tracker
|
closed
|
New FileInfo stuff causes the wrong file length to be displayed when a local file is pasted
|
bug high priority
|
The File that's inserted into the adapter is the file returned by `File#copyFile`
|
1.0
|
New FileInfo stuff causes the wrong file length to be displayed when a local file is pasted - The File that's inserted into the adapter is the file returned by `File#copyFile`
|
priority
|
new fileinfo stuff causes the wrong file length to be displayed when a local file is pasted the file that s inserted into the adapter is the file returned by file copyfile
| 1
|
192,852
| 6,877,189,466
|
IssuesEvent
|
2017-11-20 06:33:56
|
ballerinalang/composer
|
https://api.github.com/repos/ballerinalang/composer
|
closed
|
Error when opening an already written bal file with workers and fork join
|
Priority/High Severity/Major Type/Bug
|
Pack - 21/07
7834abf
The design will not be loaded and cannot switch to the source view
```
Error in parsing value for ‘max-height’. Declaration dropped. localhost:9091
Error in parsing value for ‘max-width’. Declaration dropped. localhost:9091
Error in parsing value for ‘height’. Declaration dropped. localhost:9091
Error in parsing value for ‘transform’. Declaration dropped. localhost:9091
Expected ‘none’, URL, or filter function but found ‘alpha(’. Error in parsing value for ‘filter’. Declaration dropped. localhost:9091
Error in parsing value for ‘font-size’. Declaration dropped. localhost:9091
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help http://xhr.spec.whatwg.org/ bundle.js:29:73825
Automatically scrolling cursor into view after selection change this will be disabled in the next version set editor.$blockScrolling = Infinity to disable this message
TypeError: r.components.body is undefined[Learn More] bundle.js:65:1424265
The connection to ws://localhost:8291/blangserver was interrupted while the page was loading. bundle.js:65:1684391
Error in parsing value for ‘width’. Declaration dropped.
```
File:
[TicketingFork.txt](https://github.com/ballerinalang/composer/files/1165071/TicketingFork.txt)
|
1.0
|
Error when opening an already written bal file with workers and fork join - Pack - 21/07
7834abf
The design will not be loaded and cannot switch to the source view
```
Error in parsing value for ‘max-height’. Declaration dropped. localhost:9091
Error in parsing value for ‘max-width’. Declaration dropped. localhost:9091
Error in parsing value for ‘height’. Declaration dropped. localhost:9091
Error in parsing value for ‘transform’. Declaration dropped. localhost:9091
Expected ‘none’, URL, or filter function but found ‘alpha(’. Error in parsing value for ‘filter’. Declaration dropped. localhost:9091
Error in parsing value for ‘font-size’. Declaration dropped. localhost:9091
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help http://xhr.spec.whatwg.org/ bundle.js:29:73825
Automatically scrolling cursor into view after selection change this will be disabled in the next version set editor.$blockScrolling = Infinity to disable this message
TypeError: r.components.body is undefined[Learn More] bundle.js:65:1424265
The connection to ws://localhost:8291/blangserver was interrupted while the page was loading. bundle.js:65:1684391
Error in parsing value for ‘width’. Declaration dropped.
```
File:
[TicketingFork.txt](https://github.com/ballerinalang/composer/files/1165071/TicketingFork.txt)
|
priority
|
error when opening an already written bal file with workers and fork join pack the design will not be loaded and cannot switch to the source view error in parsing value for ‘max height’ declaration dropped localhost error in parsing value for ‘max width’ declaration dropped localhost error in parsing value for ‘height’ declaration dropped localhost error in parsing value for ‘transform’ declaration dropped localhost expected ‘none’ url or filter function but found ‘alpha ’ error in parsing value for ‘filter’ declaration dropped localhost error in parsing value for ‘font size’ declaration dropped localhost synchronous xmlhttprequest on the main thread is deprecated because of its detrimental effects to the end user’s experience for more help bundle js automatically scrolling cursor into view after selection change this will be disabled in the next version set editor blockscrolling infinity to disable this message typeerror r components body is undefined bundle js the connection to ws localhost blangserver was interrupted while the page was loading bundle js error in parsing value for ‘width’ declaration dropped file
| 1
|
103,231
| 4,165,563,649
|
IssuesEvent
|
2016-06-19 15:44:01
|
semperfiwebdesign/all-in-one-seo-pack
|
https://api.github.com/repos/semperfiwebdesign/all-in-one-seo-pack
|
opened
|
aioseop_yst_detected_notice_dismissed() seems to be loading on every page
|
PRIORITY - High
|
accounting to query monitor, aioseop_yst_detected_notice_dismissed happens even on the front-end, which results in a mysql query... not only should this not happen on every pageload, it should never happen on the front-end
|
1.0
|
aioseop_yst_detected_notice_dismissed() seems to be loading on every page - accounting to query monitor, aioseop_yst_detected_notice_dismissed happens even on the front-end, which results in a mysql query... not only should this not happen on every pageload, it should never happen on the front-end
|
priority
|
aioseop yst detected notice dismissed seems to be loading on every page accounting to query monitor aioseop yst detected notice dismissed happens even on the front end which results in a mysql query not only should this not happen on every pageload it should never happen on the front end
| 1
|
33,764
| 2,772,274,714
|
IssuesEvent
|
2015-05-02 14:21:35
|
FiskFille/TransformersMod
|
https://api.github.com/repos/FiskFille/TransformersMod
|
closed
|
Rewrite vehicle motion code
|
high-priority in progress rewrite
|
This would also close #84, and some other things. I'll hopefully be able to do it sometime this week, it all depends on when my new internet arrives.
|
1.0
|
Rewrite vehicle motion code - This would also close #84, and some other things. I'll hopefully be able to do it sometime this week, it all depends on when my new internet arrives.
|
priority
|
rewrite vehicle motion code this would also close and some other things i ll hopefully be able to do it sometime this week it all depends on when my new internet arrives
| 1
|
286,112
| 8,784,033,573
|
IssuesEvent
|
2018-12-20 08:35:48
|
projectacrn/acrn-hypervisor
|
https://api.github.com/repos/projectacrn/acrn-hypervisor
|
closed
|
GPU Mediator shall provide for guest control of display plane rotation
|
area: hypervisor priority: high status: closed type: feature
|
GPU Mediator shall provide for guest control of display plane rotation Where a guest domain has been assigned control over a display plane on a given pipe the GPU Mediator shall permit that guest control over the rotation state of that plane on a frame'-by'-frame basis. This control may be direct through MMIO emulation and mediation or it may be through para'-virtualization and a specific request of the GPU mediator in the service domain.
|
1.0
|
GPU Mediator shall provide for guest control of display plane rotation - GPU Mediator shall provide for guest control of display plane rotation Where a guest domain has been assigned control over a display plane on a given pipe the GPU Mediator shall permit that guest control over the rotation state of that plane on a frame'-by'-frame basis. This control may be direct through MMIO emulation and mediation or it may be through para'-virtualization and a specific request of the GPU mediator in the service domain.
|
priority
|
gpu mediator shall provide for guest control of display plane rotation gpu mediator shall provide for guest control of display plane rotation where a guest domain has been assigned control over a display plane on a given pipe the gpu mediator shall permit that guest control over the rotation state of that plane on a frame by frame basis this control may be direct through mmio emulation and mediation or it may be through para virtualization and a specific request of the gpu mediator in the service domain
| 1
|
155,068
| 5,948,376,798
|
IssuesEvent
|
2017-05-26 11:10:28
|
pingzing/digi-transit-10
|
https://api.github.com/repos/pingzing/digi-transit-10
|
opened
|
[Polish] TripPlanForm: Make pressing enter while inside a SearchBox do things
|
polish priority: high
|
Pressing enter while inside any of the search boxes on the TripPlan page should do the following:
* If the Plan button is enabled, trigger a plan for the current input.
* If not, move to the next empty box.
|
1.0
|
[Polish] TripPlanForm: Make pressing enter while inside a SearchBox do things - Pressing enter while inside any of the search boxes on the TripPlan page should do the following:
* If the Plan button is enabled, trigger a plan for the current input.
* If not, move to the next empty box.
|
priority
|
tripplanform make pressing enter while inside a searchbox do things pressing enter while inside any of the search boxes on the tripplan page should do the following if the plan button is enabled trigger a plan for the current input if not move to the next empty box
| 1
|
75,440
| 3,462,464,779
|
IssuesEvent
|
2015-12-20 23:23:34
|
bounswe/bounswe2015group8
|
https://api.github.com/repos/bounswe/bounswe2015group8
|
opened
|
Following Tags Back-end Logic
|
Priority-High Type-Task
|
Users should be able to follow tags based on their interested areas.
Implement the back-end functionality of following a tag for a user. Write the dao, service and controller class functions. It would be better if users can follow multiple tags at once. (similar to adding tags to heritage objects/posts.)
|
1.0
|
Following Tags Back-end Logic - Users should be able to follow tags based on their interested areas.
Implement the back-end functionality of following a tag for a user. Write the dao, service and controller class functions. It would be better if users can follow multiple tags at once. (similar to adding tags to heritage objects/posts.)
|
priority
|
following tags back end logic users should be able to follow tags based on their interested areas implement the back end functionality of following a tag for a user write the dao service and controller class functions it would be better if users can follow multiple tags at once similar to adding tags to heritage objects posts
| 1
|
67,812
| 3,281,983,763
|
IssuesEvent
|
2015-10-28 01:58:25
|
ManickYoj/DataVisualization-Project3
|
https://api.github.com/repos/ManickYoj/DataVisualization-Project3
|
opened
|
Single country data representation
|
High Priority
|
We want to represent the data for any given country in a chart. This chart should have the data split up by some demographic categories that are to-be-determined
|
1.0
|
Single country data representation - We want to represent the data for any given country in a chart. This chart should have the data split up by some demographic categories that are to-be-determined
|
priority
|
single country data representation we want to represent the data for any given country in a chart this chart should have the data split up by some demographic categories that are to be determined
| 1
|
173,230
| 6,522,122,223
|
IssuesEvent
|
2017-08-29 00:11:08
|
minio/minio-go
|
https://api.github.com/repos/minio/minio-go
|
closed
|
handle '/' prefixed object name properly
|
priority: high triage
|
When below is tried, minio-go reties 5 times unnecessarily.
```bash
$ mc cp README.md local/rawphoto//1503389301.18356.dng
README.md: 32.31 KB / 6.46 KB ┃▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓┃ 500.00% 3.14 KB/s -8s
mc: <ERROR> Failed to copy `README.md`. Object name contains unsupported characters.
mc: <ERROR> Session safely terminated. To resume session `mc session resume UjRdjJzO`
```
At server side, below is the log
```
Drive Capacity: 77 GiB Free, 234 GiB Total
ERRO[1450] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
ERRO[1451] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
ERRO[1453] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
ERRO[1456] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
ERRO[1460] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
```
Refer https://github.com/minio/minio-go/issues/764
|
1.0
|
handle '/' prefixed object name properly - When below is tried, minio-go reties 5 times unnecessarily.
```bash
$ mc cp README.md local/rawphoto//1503389301.18356.dng
README.md: 32.31 KB / 6.46 KB ┃▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓┃ 500.00% 3.14 KB/s -8s
mc: <ERROR> Failed to copy `README.md`. Object name contains unsupported characters.
mc: <ERROR> Session safely terminated. To resume session `mc session resume UjRdjJzO`
```
At server side, below is the log
```
Drive Capacity: 77 GiB Free, 234 GiB Total
ERRO[1450] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
ERRO[1451] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
ERRO[1453] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
ERRO[1456] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
ERRO[1460] Unable to create an object. /rawphoto//1503389301.18356.dng cause=Object name invalid: rawphoto#/1503389301.18356.dng source=[object-handlers.go:566:objectAPIHandlers.PutObjectHandler()] stack=object-api-input-checks.go:146:checkPutObjectArgs fs-v1.go:533:fsObjects.PutObject <autogenerated>:421:(*fsObjects).PutObject object-handlers.go:544:objectAPIHandlers.PutObjectHandler api-router.go:60:(objectAPIHandlers).PutObjectHandler-fm
```
Refer https://github.com/minio/minio-go/issues/764
|
priority
|
handle prefixed object name properly when below is tried minio go reties times unnecessarily bash mc cp readme md local rawphoto dng readme md kb kb ┃▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓┃ kb s mc failed to copy readme md object name contains unsupported characters mc session safely terminated to resume session mc session resume ujrdjjzo at server side below is the log drive capacity gib free gib total erro unable to create an object rawphoto dng cause object name invalid rawphoto dng source stack object api input checks go checkputobjectargs fs go fsobjects putobject fsobjects putobject object handlers go objectapihandlers putobjecthandler api router go objectapihandlers putobjecthandler fm erro unable to create an object rawphoto dng cause object name invalid rawphoto dng source stack object api input checks go checkputobjectargs fs go fsobjects putobject fsobjects putobject object handlers go objectapihandlers putobjecthandler api router go objectapihandlers putobjecthandler fm erro unable to create an object rawphoto dng cause object name invalid rawphoto dng source stack object api input checks go checkputobjectargs fs go fsobjects putobject fsobjects putobject object handlers go objectapihandlers putobjecthandler api router go objectapihandlers putobjecthandler fm erro unable to create an object rawphoto dng cause object name invalid rawphoto dng source stack object api input checks go checkputobjectargs fs go fsobjects putobject fsobjects putobject object handlers go objectapihandlers putobjecthandler api router go objectapihandlers putobjecthandler fm erro unable to create an object rawphoto dng cause object name invalid rawphoto dng source stack object api input checks go checkputobjectargs fs go fsobjects putobject fsobjects putobject object handlers go objectapihandlers putobjecthandler api router go objectapihandlers putobjecthandler fm refer
| 1
|
352,631
| 10,544,329,209
|
IssuesEvent
|
2019-10-02 16:41:30
|
fac-17/My-Body-Back
|
https://api.github.com/repos/fac-17/My-Body-Back
|
closed
|
Research React Router
|
Feature High Priority Research Required
|
Since our app will have many pages perhaps we need a server and router.
- [x] Do we need one?
|
1.0
|
Research React Router - Since our app will have many pages perhaps we need a server and router.
- [x] Do we need one?
|
priority
|
research react router since our app will have many pages perhaps we need a server and router do we need one
| 1
|
328,493
| 9,995,519,369
|
IssuesEvent
|
2019-07-11 20:29:21
|
E3SM-Project/ParallelIO
|
https://api.github.com/repos/E3SM-Project/ParallelIO
|
opened
|
Some async C unit tests failed with GCC 8.2 and LeakSanitizer
|
High Priority Next Release bug
|
This issue occurs after we upgrade GCC 6.2 to 8.2 for PIO nightly CDash builds.
Affected tests:
```
138 - test_intercomm2
139 - test_async_simple
140 - test_async_3proc
141 - test_async_4proc
148 - test_pioc
150 - test_pioc_putget
160 - test_darray_async_simple
162 - test_darray_async_many
```
Not reproducible with GCC 6.2
Not reproducible with GCC 8.2 and AddressSanitizer
The test result is random. These tests might pass in some runs.
A typical error output:
```
==47421==WARNING: LeakSanitizer failed to allocate 16397888512 bytes
==47421==LeakSanitizer's allocator is terminating the process instead of returning 0
==47421==If you don't like this behavior set allocator_may_return_null=1
==47421==Sanitizer CHECK failed: ../../../../libsanitizer/sanitizer_common/sanitizer_allocator.cc:216 ((0)) != (0) (0, 0)
```
If we set allocator_may_return_null=1 for LeakSanitizer, these tests can pass. This is not a true fix, though (it only indicates that PIO code does not handle returned NULL values from some malloc/calloc calls).
When async is in use, it turns out that some uninitialized variables will be used on IO tasks.
In the code block below, ndims is defined but not initialized. On non-IO tasks, ndims will be updated by calling PIOc_inq_varndims. However, on IO tasks ndims will never be updated, which might cause stride_sz to get a random large value (when uninitialized ndims is positive).
```
int PIOc_get_vars_tc(...)
{
...
int ndims; /* The number of dimensions in the variable. */
...
/* Run these on all tasks if async is not in use, but only on
* non-IO tasks if async is in use. */
if (!ios->async || !ios->ioproc)
{
...
/* Get the number of dims for this var. */
ierr = PIOc_inq_varndims(ncid, varid, &ndims);
...
}
/* If async is in use, and this is not an IO task, bcast the parameters. */
if (ios->async)
{
...
int stride_sz = (ndims > 0) ? ndims : 1;
...
if(!stride_present)
{
amsg_stridep = calloc(stride_sz, sizeof(PIO_Offset));
}
...
}
...
}
```
A quick fix for these failed tests is to initialize some related variables for all tasks.
PS, we might need refactoring on existing async model code later:
* IO tasks might not need to allocate/free dummy buffers as compute tasks.
* Returned values from some malloc/calloc calls should be checked and handled, which will be helpful when we set allocator_may_return_null=1 for AddressSanitizer/LeakSanitizer.
|
1.0
|
Some async C unit tests failed with GCC 8.2 and LeakSanitizer - This issue occurs after we upgrade GCC 6.2 to 8.2 for PIO nightly CDash builds.
Affected tests:
```
138 - test_intercomm2
139 - test_async_simple
140 - test_async_3proc
141 - test_async_4proc
148 - test_pioc
150 - test_pioc_putget
160 - test_darray_async_simple
162 - test_darray_async_many
```
Not reproducible with GCC 6.2
Not reproducible with GCC 8.2 and AddressSanitizer
The test result is random. These tests might pass in some runs.
A typical error output:
```
==47421==WARNING: LeakSanitizer failed to allocate 16397888512 bytes
==47421==LeakSanitizer's allocator is terminating the process instead of returning 0
==47421==If you don't like this behavior set allocator_may_return_null=1
==47421==Sanitizer CHECK failed: ../../../../libsanitizer/sanitizer_common/sanitizer_allocator.cc:216 ((0)) != (0) (0, 0)
```
If we set allocator_may_return_null=1 for LeakSanitizer, these tests can pass. This is not a true fix, though (it only indicates that PIO code does not handle returned NULL values from some malloc/calloc calls).
When async is in use, it turns out that some uninitialized variables will be used on IO tasks.
In the code block below, ndims is defined but not initialized. On non-IO tasks, ndims will be updated by calling PIOc_inq_varndims. However, on IO tasks ndims will never be updated, which might cause stride_sz to get a random large value (when uninitialized ndims is positive).
```
int PIOc_get_vars_tc(...)
{
...
int ndims; /* The number of dimensions in the variable. */
...
/* Run these on all tasks if async is not in use, but only on
* non-IO tasks if async is in use. */
if (!ios->async || !ios->ioproc)
{
...
/* Get the number of dims for this var. */
ierr = PIOc_inq_varndims(ncid, varid, &ndims);
...
}
/* If async is in use, and this is not an IO task, bcast the parameters. */
if (ios->async)
{
...
int stride_sz = (ndims > 0) ? ndims : 1;
...
if(!stride_present)
{
amsg_stridep = calloc(stride_sz, sizeof(PIO_Offset));
}
...
}
...
}
```
A quick fix for these failed tests is to initialize some related variables for all tasks.
PS, we might need refactoring on existing async model code later:
* IO tasks might not need to allocate/free dummy buffers as compute tasks.
* Returned values from some malloc/calloc calls should be checked and handled, which will be helpful when we set allocator_may_return_null=1 for AddressSanitizer/LeakSanitizer.
|
priority
|
some async c unit tests failed with gcc and leaksanitizer this issue occurs after we upgrade gcc to for pio nightly cdash builds affected tests test test async simple test async test async test pioc test pioc putget test darray async simple test darray async many not reproducible with gcc not reproducible with gcc and addresssanitizer the test result is random these tests might pass in some runs a typical error output warning leaksanitizer failed to allocate bytes leaksanitizer s allocator is terminating the process instead of returning if you don t like this behavior set allocator may return null sanitizer check failed libsanitizer sanitizer common sanitizer allocator cc if we set allocator may return null for leaksanitizer these tests can pass this is not a true fix though it only indicates that pio code does not handle returned null values from some malloc calloc calls when async is in use it turns out that some uninitialized variables will be used on io tasks in the code block below ndims is defined but not initialized on non io tasks ndims will be updated by calling pioc inq varndims however on io tasks ndims will never be updated which might cause stride sz to get a random large value when uninitialized ndims is positive int pioc get vars tc int ndims the number of dimensions in the variable run these on all tasks if async is not in use but only on non io tasks if async is in use if ios async ios ioproc get the number of dims for this var ierr pioc inq varndims ncid varid ndims if async is in use and this is not an io task bcast the parameters if ios async int stride sz ndims ndims if stride present amsg stridep calloc stride sz sizeof pio offset a quick fix for these failed tests is to initialize some related variables for all tasks ps we might need refactoring on existing async model code later io tasks might not need to allocate free dummy buffers as compute tasks returned values from some malloc calloc calls should be checked and handled which will be helpful when we set allocator may return null for addresssanitizer leaksanitizer
| 1
|
624,119
| 19,687,186,737
|
IssuesEvent
|
2022-01-12 00:05:21
|
oresat/oresat-star-tracker-software
|
https://api.github.com/repos/oresat/oresat-star-tracker-software
|
opened
|
Rework to use oresat-app
|
high priority
|
Rework project to use [oresat-app](https://pypi.org/project/oresat-app/)
This involves:
- make an app using the OreSat Linux app framework
- remove all dbus and daemon things (file and source code)
- remove Debian package build files
EDS can be found at https://github.com/oresat/oresat-linux-manager/blob/master/src/boards/star_tracker/object_dictionary/star_tracker.eds
|
1.0
|
Rework to use oresat-app - Rework project to use [oresat-app](https://pypi.org/project/oresat-app/)
This involves:
- make an app using the OreSat Linux app framework
- remove all dbus and daemon things (file and source code)
- remove Debian package build files
EDS can be found at https://github.com/oresat/oresat-linux-manager/blob/master/src/boards/star_tracker/object_dictionary/star_tracker.eds
|
priority
|
rework to use oresat app rework project to use this involves make an app using the oresat linux app framework remove all dbus and daemon things file and source code remove debian package build files eds can be found at
| 1
|
216,470
| 7,308,578,096
|
IssuesEvent
|
2018-02-28 08:53:41
|
wso2/product-apim
|
https://api.github.com/repos/wso2/product-apim
|
closed
|
API Token Performance Round trip analysis
|
2.2.0 Priority/Highest Type/Improvement
|
**Description:**
Need a solution to calculate roundtrip time of API-M token response without interfering deployment/performance in a production deployment
|
1.0
|
API Token Performance Round trip analysis - **Description:**
Need a solution to calculate roundtrip time of API-M token response without interfering deployment/performance in a production deployment
|
priority
|
api token performance round trip analysis description need a solution to calculate roundtrip time of api m token response without interfering deployment performance in a production deployment
| 1
|
818,336
| 30,684,275,905
|
IssuesEvent
|
2023-07-26 11:15:12
|
flowforge/flowforge-nr-dashboard
|
https://api.github.com/repos/flowforge/flowforge-nr-dashboard
|
closed
|
Support multiple simultaneous Dashboard/UI connections
|
size:M - 3 priority:high needs-triage feature-request
|
### Description
Ensure that we can have multiple users/connections open to the NR instance at once. Socket connection should support > 1 person being connected at any given time, and also not fall over if there are no connections.
### Have you provided an initial effort estimate for this issue?
I have provided an initial effort estimate
|
1.0
|
Support multiple simultaneous Dashboard/UI connections - ### Description
Ensure that we can have multiple users/connections open to the NR instance at once. Socket connection should support > 1 person being connected at any given time, and also not fall over if there are no connections.
### Have you provided an initial effort estimate for this issue?
I have provided an initial effort estimate
|
priority
|
support multiple simultaneous dashboard ui connections description ensure that we can have multiple users connections open to the nr instance at once socket connection should support person being connected at any given time and also not fall over if there are no connections have you provided an initial effort estimate for this issue i have provided an initial effort estimate
| 1
|
626,533
| 19,826,627,405
|
IssuesEvent
|
2022-01-20 07:29:24
|
fkie-cad/dewolf
|
https://api.github.com/repos/fkie-cad/dewolf
|
opened
|
[Restructuring] Insert missing cases for switch
|
bug priority-high
|
### What happened?
When inserting missing cases to a switch node and two possible cases would belong to the same case, then we insert two cases with the same constant. This is not valid.
More detailed, when considering `test17` in the sample [test_condition.zip](https://github.com/fkie-cad/dewolf/files/7903051/test_condition.zip), we have the following AST during the restructuring:

Here, node 4 and node 20 are possible case candidates for the switch node. But, we can not insert both because they both would be a case corresponding to constant 1. However, we insert both. After inserting missing cases we have the following AST:

The expectation would be that we only add one of the two cases to the switch or none. In this case, node 20 would be the preferable one, because here we have no additional condition.
**Proposal**
To solve this problem one has to update `_add_new_case_nodes_to_switch_node` in `missing_case_finder.py`. First, one has to add the case constant that we add during this function to the set of existing functions. Second, if two possible cases belong to the same constant one has to find a way to choose the "better" one.
### How to reproduce?
[test_switch.zip](https://github.com/fkie-cad/dewolf/files/7903084/test_switch.zip) `test17`
### Affected Binary Ninja Version(s)
Version 2.4.2846 (Build ID df7c027e)
|
1.0
|
[Restructuring] Insert missing cases for switch - ### What happened?
When inserting missing cases to a switch node and two possible cases would belong to the same case, then we insert two cases with the same constant. This is not valid.
More detailed, when considering `test17` in the sample [test_condition.zip](https://github.com/fkie-cad/dewolf/files/7903051/test_condition.zip), we have the following AST during the restructuring:

Here, node 4 and node 20 are possible case candidates for the switch node. But, we can not insert both because they both would be a case corresponding to constant 1. However, we insert both. After inserting missing cases we have the following AST:

The expectation would be that we only add one of the two cases to the switch or none. In this case, node 20 would be the preferable one, because here we have no additional condition.
**Proposal**
To solve this problem one has to update `_add_new_case_nodes_to_switch_node` in `missing_case_finder.py`. First, one has to add the case constant that we add during this function to the set of existing functions. Second, if two possible cases belong to the same constant one has to find a way to choose the "better" one.
### How to reproduce?
[test_switch.zip](https://github.com/fkie-cad/dewolf/files/7903084/test_switch.zip) `test17`
### Affected Binary Ninja Version(s)
Version 2.4.2846 (Build ID df7c027e)
|
priority
|
insert missing cases for switch what happened when inserting missing cases to a switch node and two possible cases would belong to the same case then we insert two cases with the same constant this is not valid more detailed when considering in the sample we have the following ast during the restructuring here node and node are possible case candidates for the switch node but we can not insert both because they both would be a case corresponding to constant however we insert both after inserting missing cases we have the following ast the expectation would be that we only add one of the two cases to the switch or none in this case node would be the preferable one because here we have no additional condition proposal to solve this problem one has to update add new case nodes to switch node in missing case finder py first one has to add the case constant that we add during this function to the set of existing functions second if two possible cases belong to the same constant one has to find a way to choose the better one how to reproduce affected binary ninja version s version build id
| 1
|
714,549
| 24,566,024,919
|
IssuesEvent
|
2022-10-13 03:09:10
|
AY2223S1-CS2103T-T11-2/tp
|
https://api.github.com/repos/AY2223S1-CS2103T-T11-2/tp
|
closed
|
Marking internships
|
enhancement type.Story Priority.High
|
As a user applying for internships progressively, I can mark the progress of my applications so that I can clearly view my progress.
|
1.0
|
Marking internships - As a user applying for internships progressively, I can mark the progress of my applications so that I can clearly view my progress.
|
priority
|
marking internships as a user applying for internships progressively i can mark the progress of my applications so that i can clearly view my progress
| 1
|
589,840
| 17,761,803,786
|
IssuesEvent
|
2021-08-29 20:51:17
|
chrislo27/PolyrhythmMania
|
https://api.github.com/repos/chrislo27/PolyrhythmMania
|
closed
|
[Bug]: charset issues on Chinese Windows machines
|
Type: Bug good first issue Status: Fixed Priority: High
|
### Version
v1.0.0
### Operating System
Windows 10
### Problem Description

I'm on a Chinese Windows laptop, and my audio devices have names that have Chinese characters in them. The game doesn't display them correctly.
### Steps to Reproduce Problem
0. Make an audio device have a name that contain Chinese characters (maybe also dependent on system charset?)
1. Go to settings, as shown in the screenshot above
### Relevant log output
_No response_
### (Optional) Other useful information
_No response_
|
1.0
|
[Bug]: charset issues on Chinese Windows machines - ### Version
v1.0.0
### Operating System
Windows 10
### Problem Description

I'm on a Chinese Windows laptop, and my audio devices have names that have Chinese characters in them. The game doesn't display them correctly.
### Steps to Reproduce Problem
0. Make an audio device have a name that contain Chinese characters (maybe also dependent on system charset?)
1. Go to settings, as shown in the screenshot above
### Relevant log output
_No response_
### (Optional) Other useful information
_No response_
|
priority
|
charset issues on chinese windows machines version operating system windows problem description i m on a chinese windows laptop and my audio devices have names that have chinese characters in them the game doesn t display them correctly steps to reproduce problem make an audio device have a name that contain chinese characters maybe also dependent on system charset go to settings as shown in the screenshot above relevant log output no response optional other useful information no response
| 1
|
58,845
| 3,091,989,118
|
IssuesEvent
|
2015-08-26 15:40:26
|
RedstoneLamp/RedstoneLamp
|
https://api.github.com/repos/RedstoneLamp/RedstoneLamp
|
opened
|
[REWRITE]: Players can't see each other correctly
|
Bug Help Wanted High Priority Network v0.11.0
|
Here is a walk-through of what happens:
Player A joins, he walks around a bit. Player B joins and then they see each other, but not quite right. Here are some pictures:
Player A: https://pbs.twimg.com/media/CNWG__RWoAAI0iG.jpg:large
Player B: https://usercontent.irccloud-cdn.com/file/GksZZEzU/IMG_0735.PNG
|
1.0
|
[REWRITE]: Players can't see each other correctly - Here is a walk-through of what happens:
Player A joins, he walks around a bit. Player B joins and then they see each other, but not quite right. Here are some pictures:
Player A: https://pbs.twimg.com/media/CNWG__RWoAAI0iG.jpg:large
Player B: https://usercontent.irccloud-cdn.com/file/GksZZEzU/IMG_0735.PNG
|
priority
|
players can t see each other correctly here is a walk through of what happens player a joins he walks around a bit player b joins and then they see each other but not quite right here are some pictures player a player b
| 1
|
492,269
| 14,199,660,037
|
IssuesEvent
|
2020-11-16 03:03:04
|
abpframework/abp
|
https://api.github.com/repos/abpframework/abp
|
closed
|
An error occurred while updating user profile
|
priority:high problem
|
Steps:
1. Use the CLI To a project: `abp new QaBlazor-t app -u blazor --mobile none --database-provider ef -csf --preview`
2. Run`.DbMigrator` , `.HttpApi.Host` and `.Blazor` project
3. Navigate to the manage profile page and select the `personal info` tab.
4. Click the save button

|
1.0
|
An error occurred while updating user profile - Steps:
1. Use the CLI To a project: `abp new QaBlazor-t app -u blazor --mobile none --database-provider ef -csf --preview`
2. Run`.DbMigrator` , `.HttpApi.Host` and `.Blazor` project
3. Navigate to the manage profile page and select the `personal info` tab.
4. Click the save button

|
priority
|
an error occurred while updating user profile steps use the cli to a project abp new qablazor t app u blazor mobile none database provider ef csf preview run dbmigrator httpapi host and blazor project navigate to the manage profile page and select the personal info tab click the save button
| 1
|
721,012
| 24,814,962,596
|
IssuesEvent
|
2022-10-25 12:29:29
|
joomlahenk/fabrik
|
https://api.github.com/repos/joomlahenk/fabrik
|
closed
|
jdate element datepicker pop-up is not shown in a modal
|
High Priority
|
See also #314 item 4.
The jdate element datepicker pop-up is not shown in a modal on the frontend
|
1.0
|
jdate element datepicker pop-up is not shown in a modal - See also #314 item 4.
The jdate element datepicker pop-up is not shown in a modal on the frontend
|
priority
|
jdate element datepicker pop up is not shown in a modal see also item the jdate element datepicker pop up is not shown in a modal on the frontend
| 1
|
371,083
| 10,961,234,531
|
IssuesEvent
|
2019-11-27 15:02:17
|
getinsomnia/insomnia
|
https://api.github.com/repos/getinsomnia/insomnia
|
closed
|
Broken icon on Linux
|
Accepted 👌 High Priority Next Release 🚀 OS: Linux
|
<!--
Please help prevent duplicates by searching existing issues first 🙂
Here are a few helpful tips, depending on what type of issue you are creating:
[Bug] – Provide a detailed description, as well as steps for anyone to reproduce the issue
[Feature Request] – Provide concrete use cases to go along with these requests
[Question] – Ask whatever you want!
-->
- Insomnia Version: 7.0.1
- Operating System: Arch Linux 5.3.5
## Details
I think 7.0.1 broke the desktop icon again:

I'm using Gnome 3.34.1
|
1.0
|
Broken icon on Linux - <!--
Please help prevent duplicates by searching existing issues first 🙂
Here are a few helpful tips, depending on what type of issue you are creating:
[Bug] – Provide a detailed description, as well as steps for anyone to reproduce the issue
[Feature Request] – Provide concrete use cases to go along with these requests
[Question] – Ask whatever you want!
-->
- Insomnia Version: 7.0.1
- Operating System: Arch Linux 5.3.5
## Details
I think 7.0.1 broke the desktop icon again:

I'm using Gnome 3.34.1
|
priority
|
broken icon on linux please help prevent duplicates by searching existing issues first 🙂 here are a few helpful tips depending on what type of issue you are creating – provide a detailed description as well as steps for anyone to reproduce the issue – provide concrete use cases to go along with these requests – ask whatever you want insomnia version operating system arch linux details i think broke the desktop icon again i m using gnome
| 1
|
545,778
| 15,963,476,488
|
IssuesEvent
|
2021-04-16 04:01:16
|
ArctosDB/arctos
|
https://api.github.com/repos/ArctosDB/arctos
|
closed
|
Part Attributes Date - allow month only and year only dates
|
Function-DataEntry/Bulkloading Priority-High Tool - Bulkload Parts
|
The part attributes date field will except only dates that have year month and day. Is there a reason for restricting this field? I'm trying to upload a bunch of part and part attribute data right now and a lot of those dates I only know to year. I'd rather indicate 2019 unambiguously rather than enter something ambiguous like 2019-01-01 or use a roundabout method like leaving date blank and putting 2019 in remarks.
|
1.0
|
Part Attributes Date - allow month only and year only dates - The part attributes date field will except only dates that have year month and day. Is there a reason for restricting this field? I'm trying to upload a bunch of part and part attribute data right now and a lot of those dates I only know to year. I'd rather indicate 2019 unambiguously rather than enter something ambiguous like 2019-01-01 or use a roundabout method like leaving date blank and putting 2019 in remarks.
|
priority
|
part attributes date allow month only and year only dates the part attributes date field will except only dates that have year month and day is there a reason for restricting this field i m trying to upload a bunch of part and part attribute data right now and a lot of those dates i only know to year i d rather indicate unambiguously rather than enter something ambiguous like or use a roundabout method like leaving date blank and putting in remarks
| 1
|
300,508
| 9,211,297,173
|
IssuesEvent
|
2019-03-09 14:11:32
|
qgisissuebot/QGIS
|
https://api.github.com/repos/qgisissuebot/QGIS
|
closed
|
Create SQL-Layer from DB-Manager
|
Bug Priority: high Regression
|
---
Author Name: **Michael Otto** (Michael Otto)
Original Redmine Issue: 21434, https://issues.qgis.org/issues/21434
---
I will create a new Layer of a Oracle-Spatial DB by using a SQL-Command in DB-Manager.
The query works. Results are shown in the table.
But when i check "add as new layer" with id and geometry rows defined nothing will happens.
No layer is created and the following error appears on the python-log.
2019-03-01T08:52:39 WARNING Traceback (most recent call last):
File "C:/PROGRA~1/QGIS3~1.6/apps/qgis/./python/plugins\db_manager\dlg_sql_window.py", line 434, in loadSqlLayer
layer = self._getSqlLayer(self.filter)
File "C:/PROGRA~1/QGIS3~1.6/apps/qgis/./python/plugins\db_manager\dlg_sql_window.py", line 396, in _getSqlLayer
query = self._getSqlExecutableQuery()
AttributeError: 'DlgSqlWindow' object has no attribute '_getSqlExecutableQuery'
2019-03-01T08:52:56 WARNING Traceback (most recent call last):
File "C:/PROGRA~1/QGIS3~1.6/apps/qgis/./python/plugins\db_manager\dlg_sql_window.py", line 628, in setFilter
layer = self._getSqlLayer("")
File "C:/PROGRA~1/QGIS3~1.6/apps/qgis/./python/plugins\db_manager\dlg_sql_window.py", line 396, in _getSqlLayer
query = self._getSqlExecutableQuery()
AttributeError: 'DlgSqlWindow' object has no attribute '_getSqlExecutableQuery'
|
1.0
|
Create SQL-Layer from DB-Manager - ---
Author Name: **Michael Otto** (Michael Otto)
Original Redmine Issue: 21434, https://issues.qgis.org/issues/21434
---
I will create a new Layer of a Oracle-Spatial DB by using a SQL-Command in DB-Manager.
The query works. Results are shown in the table.
But when i check "add as new layer" with id and geometry rows defined nothing will happens.
No layer is created and the following error appears on the python-log.
2019-03-01T08:52:39 WARNING Traceback (most recent call last):
File "C:/PROGRA~1/QGIS3~1.6/apps/qgis/./python/plugins\db_manager\dlg_sql_window.py", line 434, in loadSqlLayer
layer = self._getSqlLayer(self.filter)
File "C:/PROGRA~1/QGIS3~1.6/apps/qgis/./python/plugins\db_manager\dlg_sql_window.py", line 396, in _getSqlLayer
query = self._getSqlExecutableQuery()
AttributeError: 'DlgSqlWindow' object has no attribute '_getSqlExecutableQuery'
2019-03-01T08:52:56 WARNING Traceback (most recent call last):
File "C:/PROGRA~1/QGIS3~1.6/apps/qgis/./python/plugins\db_manager\dlg_sql_window.py", line 628, in setFilter
layer = self._getSqlLayer("")
File "C:/PROGRA~1/QGIS3~1.6/apps/qgis/./python/plugins\db_manager\dlg_sql_window.py", line 396, in _getSqlLayer
query = self._getSqlExecutableQuery()
AttributeError: 'DlgSqlWindow' object has no attribute '_getSqlExecutableQuery'
|
priority
|
create sql layer from db manager author name michael otto michael otto original redmine issue i will create a new layer of a oracle spatial db by using a sql command in db manager the query works results are shown in the table but when i check add as new layer with id and geometry rows defined nothing will happens no layer is created and the following error appears on the python log warning traceback most recent call last file c progra apps qgis python plugins db manager dlg sql window py line in loadsqllayer layer self getsqllayer self filter file c progra apps qgis python plugins db manager dlg sql window py line in getsqllayer query self getsqlexecutablequery attributeerror dlgsqlwindow object has no attribute getsqlexecutablequery warning traceback most recent call last file c progra apps qgis python plugins db manager dlg sql window py line in setfilter layer self getsqllayer file c progra apps qgis python plugins db manager dlg sql window py line in getsqllayer query self getsqlexecutablequery attributeerror dlgsqlwindow object has no attribute getsqlexecutablequery
| 1
|
431,152
| 12,475,774,018
|
IssuesEvent
|
2020-05-29 12:16:54
|
OpenNebula/one
|
https://api.github.com/repos/OpenNebula/one
|
closed
|
Change vcenter monitoring
|
Category: vCenter Priority: High Status: Accepted
|
**Description**
Improve and adapt vcenter moniroting to the new monitoriing system
**Use case**
How are you going to use this new feature? Why do you need it?
**Interface Changes**
Describe any changed you'd like to see to current interfaces including Sunstone, CLI or/and API
**Additional Context**
Add any other context or screenshots about the feature request here. Or any other alternative you have considered to addressed this new feature.
<!--////////////////////////////////////////////-->
<!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM -->
<!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS -->
<!-- PROGRESS WILL BE REFLECTED HERE -->
<!--////////////////////////////////////////////-->
## Progress Status
- [ ] Branch created
- [ ] Code committed to development branch
- [ ] Testing - QA
- [ ] Documentation
- [ ] Release notes - resolved issues, compatibility, known issues
- [ ] Code committed to upstream release/hotfix branches
- [ ] Documentation committed to upstream release/hotfix branches
|
1.0
|
Change vcenter monitoring - **Description**
Improve and adapt vcenter moniroting to the new monitoriing system
**Use case**
How are you going to use this new feature? Why do you need it?
**Interface Changes**
Describe any changed you'd like to see to current interfaces including Sunstone, CLI or/and API
**Additional Context**
Add any other context or screenshots about the feature request here. Or any other alternative you have considered to addressed this new feature.
<!--////////////////////////////////////////////-->
<!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM -->
<!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS -->
<!-- PROGRESS WILL BE REFLECTED HERE -->
<!--////////////////////////////////////////////-->
## Progress Status
- [ ] Branch created
- [ ] Code committed to development branch
- [ ] Testing - QA
- [ ] Documentation
- [ ] Release notes - resolved issues, compatibility, known issues
- [ ] Code committed to upstream release/hotfix branches
- [ ] Documentation committed to upstream release/hotfix branches
|
priority
|
change vcenter monitoring description improve and adapt vcenter moniroting to the new monitoriing system use case how are you going to use this new feature why do you need it interface changes describe any changed you d like to see to current interfaces including sunstone cli or and api additional context add any other context or screenshots about the feature request here or any other alternative you have considered to addressed this new feature progress status branch created code committed to development branch testing qa documentation release notes resolved issues compatibility known issues code committed to upstream release hotfix branches documentation committed to upstream release hotfix branches
| 1
|
659,684
| 21,937,455,691
|
IssuesEvent
|
2022-05-23 14:53:52
|
obophenotype/uberon
|
https://api.github.com/repos/obophenotype/uberon
|
closed
|
Uberon is obsoleting external terms.. Should it?
|
tech high-priority
|
In Uberon `http://purl.obolibrary.org/obo/uberon/releases/2022-04-18/ext.owl` it appears that EMAPA [future neurohypophysis](http://purl.obolibrary.org/obo/EMAPA_16647) is merged (obsoleted) into Uberon [future neurohypophysis](http://purl.obolibrary.org/obo/UBERON_0034876).
Uberon should not be obsoleting other ontologies' terms. This is causing automatic migrations of GO annotations from EMAPA to Uberon. It looks like it came up in https://github.com/obophenotype/uberon/issues/2192, but not sure how the obsoletion happened.
|
1.0
|
Uberon is obsoleting external terms.. Should it? - In Uberon `http://purl.obolibrary.org/obo/uberon/releases/2022-04-18/ext.owl` it appears that EMAPA [future neurohypophysis](http://purl.obolibrary.org/obo/EMAPA_16647) is merged (obsoleted) into Uberon [future neurohypophysis](http://purl.obolibrary.org/obo/UBERON_0034876).
Uberon should not be obsoleting other ontologies' terms. This is causing automatic migrations of GO annotations from EMAPA to Uberon. It looks like it came up in https://github.com/obophenotype/uberon/issues/2192, but not sure how the obsoletion happened.
|
priority
|
uberon is obsoleting external terms should it in uberon it appears that emapa is merged obsoleted into uberon uberon should not be obsoleting other ontologies terms this is causing automatic migrations of go annotations from emapa to uberon it looks like it came up in but not sure how the obsoletion happened
| 1
|
432,179
| 12,490,211,043
|
IssuesEvent
|
2020-05-31 22:47:13
|
BeeStation/NSV13
|
https://api.github.com/repos/BeeStation/NSV13
|
closed
|
A torpedo can get stuck in a Trolley
|
Priority: High bug
|
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable -->
## Round ID:375
<!--- **INCLUDE THE ROUND ID**
If you discovered this issue from playing tgstation hosted servers:
[Round ID]: # (It can be found in the Status panel! The round id let's us look up valuable information and logs for the round the bug happened.)-->
<!-- If you're certain the issue is to be caused by a test merge [OOC tab -> Show Server Revision], report it in the pull request's comment section rather than on the tracker(If you're unsure you can refer to the issue number by prefixing said number with #. The issue number can be found beside the title after submitting it to the tracker).If no testmerges are active, feel free to remove this section. -->
## Reproduction: Make a torpedo wile the trolley is holding it, after you weld it the torpedo it will drop on the floor but the trolley will act as if the premade torpedo is still on the trolley's inventory and you are unable to remove it
<!-- Explain your issue in detail, including the steps to reproduce it. Issues without proper reproduction steps or explanation are open to being ignored/closed by maintainers.-->
<!-- **For Admins:** Oddities induced by var-edits and other admin tools are not necessarily bugs. Verify that your issues occur under regular circumstances before reporting them. -->
|
1.0
|
A torpedo can get stuck in a Trolley - <!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable -->
## Round ID:375
<!--- **INCLUDE THE ROUND ID**
If you discovered this issue from playing tgstation hosted servers:
[Round ID]: # (It can be found in the Status panel! The round id let's us look up valuable information and logs for the round the bug happened.)-->
<!-- If you're certain the issue is to be caused by a test merge [OOC tab -> Show Server Revision], report it in the pull request's comment section rather than on the tracker(If you're unsure you can refer to the issue number by prefixing said number with #. The issue number can be found beside the title after submitting it to the tracker).If no testmerges are active, feel free to remove this section. -->
## Reproduction: Make a torpedo wile the trolley is holding it, after you weld it the torpedo it will drop on the floor but the trolley will act as if the premade torpedo is still on the trolley's inventory and you are unable to remove it
<!-- Explain your issue in detail, including the steps to reproduce it. Issues without proper reproduction steps or explanation are open to being ignored/closed by maintainers.-->
<!-- **For Admins:** Oddities induced by var-edits and other admin tools are not necessarily bugs. Verify that your issues occur under regular circumstances before reporting them. -->
|
priority
|
a torpedo can get stuck in a trolley round id include the round id if you discovered this issue from playing tgstation hosted servers it can be found in the status panel the round id let s us look up valuable information and logs for the round the bug happened reproduction make a torpedo wile the trolley is holding it after you weld it the torpedo it will drop on the floor but the trolley will act as if the premade torpedo is still on the trolley s inventory and you are unable to remove it
| 1
|
635,344
| 20,385,333,518
|
IssuesEvent
|
2022-02-22 05:58:31
|
CoEDL/nyingarn-workspace
|
https://api.github.com/repos/CoEDL/nyingarn-workspace
|
closed
|
Add loading indicator for resources on view item content / add pagination
|
enhancement priority-high
|
See Bates35. Heaps of resources - no indication it's loading.
Add pagination
|
1.0
|
Add loading indicator for resources on view item content / add pagination - See Bates35. Heaps of resources - no indication it's loading.
Add pagination
|
priority
|
add loading indicator for resources on view item content add pagination see heaps of resources no indication it s loading add pagination
| 1
|
110,528
| 4,428,184,497
|
IssuesEvent
|
2016-08-17 00:44:22
|
RobotLocomotion/drake
|
https://api.github.com/repos/RobotLocomotion/drake
|
opened
|
Running more than one instance of Jenkins
|
priority: high team: kitware type: continuous integration
|
https://drake-jenkins.csail.mit.edu/ sayeth
```
Jenkins detected that you appear to be running more than one instance of Jenkins
that share the same home directory '/var/lib/jenkins'. This greatly confuses Jenkins
and you will likely experience strange behaviors, so please correct the situation.
This Jenkins: 327276788 contextPath="" at 6306@ip-172-31-29-90.ec2.internal
Other Jenkins: 1017653788 contextPath="" at 98119@ip-172-31-29-90.ec2.internal
```
|
1.0
|
Running more than one instance of Jenkins - https://drake-jenkins.csail.mit.edu/ sayeth
```
Jenkins detected that you appear to be running more than one instance of Jenkins
that share the same home directory '/var/lib/jenkins'. This greatly confuses Jenkins
and you will likely experience strange behaviors, so please correct the situation.
This Jenkins: 327276788 contextPath="" at 6306@ip-172-31-29-90.ec2.internal
Other Jenkins: 1017653788 contextPath="" at 98119@ip-172-31-29-90.ec2.internal
```
|
priority
|
running more than one instance of jenkins sayeth jenkins detected that you appear to be running more than one instance of jenkins that share the same home directory var lib jenkins this greatly confuses jenkins and you will likely experience strange behaviors so please correct the situation this jenkins contextpath at ip internal other jenkins contextpath at ip internal
| 1
|
790,025
| 27,813,528,205
|
IssuesEvent
|
2023-03-18 12:14:05
|
bounswe/bounswe2023group7
|
https://api.github.com/repos/bounswe/bounswe2023group7
|
opened
|
Research about Mock-Up
|
type : research priority : high status : in_progress effort : low
|
### Issue Description
I'm going to research what is Mock-Up, why is it useful, what should we have it. Then I'm going to document it
### Tasks
_No response_
### Extra Comments
_No response_
### Final Step
_No response_
### Deadline of the Issue
19.03.2023 - 23.59
### Reviewer
_No response_
### Deadline for the Review
20.03.2023 - 23.59
|
1.0
|
Research about Mock-Up - ### Issue Description
I'm going to research what is Mock-Up, why is it useful, what should we have it. Then I'm going to document it
### Tasks
_No response_
### Extra Comments
_No response_
### Final Step
_No response_
### Deadline of the Issue
19.03.2023 - 23.59
### Reviewer
_No response_
### Deadline for the Review
20.03.2023 - 23.59
|
priority
|
research about mock up issue description i m going to research what is mock up why is it useful what should we have it then i m going to document it tasks no response extra comments no response final step no response deadline of the issue reviewer no response deadline for the review
| 1
|
489,581
| 14,108,424,578
|
IssuesEvent
|
2020-11-06 17:47:42
|
geosolutions-it/iso19139.rndt
|
https://api.github.com/repos/geosolutions-it/iso19139.rndt
|
closed
|
Fix validazione schematron e xsd
|
C024-2020-PROV_FI-GN_RNDT Priority: High RNDT
|
- [x] La validazione xsd fallisce a causa dell'elemento gmx:Anchor nonostante il substitution group sia corretto negli xsd.
- [x] La validazione schematron deve essere aggiornata con riferimento ai sistemi di riferimento spaziale e temporale
- [x] fix citation.xsd e dataQuality.xsd (cardinalità)
- [x] fix extent template servizi da srv:extent a gmd:extent
|
1.0
|
Fix validazione schematron e xsd - - [x] La validazione xsd fallisce a causa dell'elemento gmx:Anchor nonostante il substitution group sia corretto negli xsd.
- [x] La validazione schematron deve essere aggiornata con riferimento ai sistemi di riferimento spaziale e temporale
- [x] fix citation.xsd e dataQuality.xsd (cardinalità)
- [x] fix extent template servizi da srv:extent a gmd:extent
|
priority
|
fix validazione schematron e xsd la validazione xsd fallisce a causa dell elemento gmx anchor nonostante il substitution group sia corretto negli xsd la validazione schematron deve essere aggiornata con riferimento ai sistemi di riferimento spaziale e temporale fix citation xsd e dataquality xsd cardinalità fix extent template servizi da srv extent a gmd extent
| 1
|
203,461
| 7,064,658,075
|
IssuesEvent
|
2018-01-06 09:57:29
|
wso2-incubator/testgrid
|
https://api.github.com/repos/wso2-incubator/testgrid
|
opened
|
Evaluate messaging frameworks that fits with Testgrid usecases
|
Priority/Highest Severity/Blocker Type/Task
|
**Description:**
TestGrid works in collaboration with PMT, WUM, and bunch of other systems.
We need to decide how the communication between these sub-systems will happen.
We have requirements to receice notifications from these sub-systems. One such usecase is receive new product, version, and channel additions. So, we need to evaluate what makes most sense here.
List of frameworks to evaluate:
1. Kafka
2. Amazon SNS/SQS
3. JMS/AMQP/MQTT
4. Periodic polling
We need to take this decision in collaboration with all parties in the system.
We need to do the initial research ASAP.
**Related Issues:**
Todo
Update channel info in TestGrid
Trigger testruns for new WUM updates.
|
1.0
|
Evaluate messaging frameworks that fits with Testgrid usecases - **Description:**
TestGrid works in collaboration with PMT, WUM, and bunch of other systems.
We need to decide how the communication between these sub-systems will happen.
We have requirements to receice notifications from these sub-systems. One such usecase is receive new product, version, and channel additions. So, we need to evaluate what makes most sense here.
List of frameworks to evaluate:
1. Kafka
2. Amazon SNS/SQS
3. JMS/AMQP/MQTT
4. Periodic polling
We need to take this decision in collaboration with all parties in the system.
We need to do the initial research ASAP.
**Related Issues:**
Todo
Update channel info in TestGrid
Trigger testruns for new WUM updates.
|
priority
|
evaluate messaging frameworks that fits with testgrid usecases description testgrid works in collaboration with pmt wum and bunch of other systems we need to decide how the communication between these sub systems will happen we have requirements to receice notifications from these sub systems one such usecase is receive new product version and channel additions so we need to evaluate what makes most sense here list of frameworks to evaluate kafka amazon sns sqs jms amqp mqtt periodic polling we need to take this decision in collaboration with all parties in the system we need to do the initial research asap related issues todo update channel info in testgrid trigger testruns for new wum updates
| 1
|
257,644
| 8,139,976,965
|
IssuesEvent
|
2018-08-20 19:30:58
|
Sage-Bionetworks/Agora
|
https://api.github.com/repos/Sage-Bionetworks/Agora
|
closed
|
create test data for missing gene handling
|
data high priority
|
Data should include one gene that is missing all RNA-seq data but has at least some of the "Summary of Evidence" fields.
|
1.0
|
create test data for missing gene handling - Data should include one gene that is missing all RNA-seq data but has at least some of the "Summary of Evidence" fields.
|
priority
|
create test data for missing gene handling data should include one gene that is missing all rna seq data but has at least some of the summary of evidence fields
| 1
|
112,351
| 4,525,090,838
|
IssuesEvent
|
2016-09-07 02:38:02
|
dhowe/RiTa
|
https://api.github.com/repos/dhowe/RiTa
|
closed
|
Convert RiTa/examples/RandomRhymes to dom and p5js in RiTaJS/examples
|
enhancement PRIORITY: High RiTaJS
|
(POSMarkov not needed for now)
also add a link to examples.php
|
1.0
|
Convert RiTa/examples/RandomRhymes to dom and p5js in RiTaJS/examples - (POSMarkov not needed for now)
also add a link to examples.php
|
priority
|
convert rita examples randomrhymes to dom and in ritajs examples posmarkov not needed for now also add a link to examples php
| 1
|
718,311
| 24,711,734,685
|
IssuesEvent
|
2022-10-20 01:43:41
|
AY2223S1-CS2113T-W11-1/tp
|
https://api.github.com/repos/AY2223S1-CS2113T-W11-1/tp
|
closed
|
Create feature to view expense targets
|
type.Story priority.High
|
As a user, I can view expense targets so I can keep track of my financial goals and not overspend.
|
1.0
|
Create feature to view expense targets - As a user, I can view expense targets so I can keep track of my financial goals and not overspend.
|
priority
|
create feature to view expense targets as a user i can view expense targets so i can keep track of my financial goals and not overspend
| 1
|
391,355
| 11,572,333,169
|
IssuesEvent
|
2020-02-20 23:45:42
|
hotosm/tasking-manager
|
https://api.github.com/repos/hotosm/tasking-manager
|
closed
|
Add more layers in the project creation
|
Component: Frontend Priority: High Status: Needs implementation Type: Enhancement
|
When defining the area and tasks of a project, make more TMS layers available to TM4 users. Similar to how it was on TM3. Especially add a satellite layer.
|
1.0
|
Add more layers in the project creation - When defining the area and tasks of a project, make more TMS layers available to TM4 users. Similar to how it was on TM3. Especially add a satellite layer.
|
priority
|
add more layers in the project creation when defining the area and tasks of a project make more tms layers available to users similar to how it was on especially add a satellite layer
| 1
|
446,243
| 12,853,876,108
|
IssuesEvent
|
2020-07-09 00:05:21
|
NVIDIA/TRTorch
|
https://api.github.com/repos/NVIDIA/TRTorch
|
reopened
|
Use PyTorch Functionalization Pass
|
component: lowering enhancement priority: high
|
Having converters for inplace operators (add_) is potentially unsafe. We should use the functionalization pass in the lowering phase to switch these ops to their functional versions.
|
1.0
|
Use PyTorch Functionalization Pass - Having converters for inplace operators (add_) is potentially unsafe. We should use the functionalization pass in the lowering phase to switch these ops to their functional versions.
|
priority
|
use pytorch functionalization pass having converters for inplace operators add is potentially unsafe we should use the functionalization pass in the lowering phase to switch these ops to their functional versions
| 1
|
671,980
| 22,782,517,049
|
IssuesEvent
|
2022-07-08 21:51:34
|
az-digital/az_quickstart
|
https://api.github.com/repos/az-digital/az_quickstart
|
closed
|
2.4.0-beta1 release plan
|
high priority 2.4.x only
|
## 2.4.0-beta2
- #1709
- #1702
- #1708
- #1683
- #1721
- #1687
- #1592
- #1594
- #1729
- #1726
- #1727
- #1680
- #1649
- #1718
- #1713
- #1717
- #1733
- #1732
- #1735
|
1.0
|
2.4.0-beta1 release plan - ## 2.4.0-beta2
- #1709
- #1702
- #1708
- #1683
- #1721
- #1687
- #1592
- #1594
- #1729
- #1726
- #1727
- #1680
- #1649
- #1718
- #1713
- #1717
- #1733
- #1732
- #1735
|
priority
|
release plan
| 1
|
658,437
| 21,892,767,575
|
IssuesEvent
|
2022-05-20 04:49:13
|
wso2/docs-apim
|
https://api.github.com/repos/wso2/docs-apim
|
closed
|
Update Exposing a Kafka Stream as a Managed WebSocket API further
|
help wanted Type/Improvement Priority/Highest Docs/Waiting on SME API-M-4.0.0 component/streaming-integrator
|
**Description:**
- Test the flow from end-to-end to verify the steps.
- Add any missing steps (e.g., Deploying the API)
- Update the screenshots (e.g., Publisher and Dev Portal screenshots)
- Remove the 1st prerequisite and explain how the user can use the Kafka extension installer.
**Related Issues:**
https://github.com/wso2/docs-apim/issues/3571
|
1.0
|
Update Exposing a Kafka Stream as a Managed WebSocket API further - **Description:**
- Test the flow from end-to-end to verify the steps.
- Add any missing steps (e.g., Deploying the API)
- Update the screenshots (e.g., Publisher and Dev Portal screenshots)
- Remove the 1st prerequisite and explain how the user can use the Kafka extension installer.
**Related Issues:**
https://github.com/wso2/docs-apim/issues/3571
|
priority
|
update exposing a kafka stream as a managed websocket api further description test the flow from end to end to verify the steps add any missing steps e g deploying the api update the screenshots e g publisher and dev portal screenshots remove the prerequisite and explain how the user can use the kafka extension installer related issues
| 1
|
320,208
| 9,777,837,705
|
IssuesEvent
|
2019-06-07 10:12:00
|
SainsburyWellcomeCentre/BakingTray
|
https://api.github.com/repos/SainsburyWellcomeCentre/BakingTray
|
closed
|
Log attempts to regain modelock and try a bit harder.
|
high priority
|
BakingTray could be a lot more robust to failure of the laser. It should pause the acquisition and try harder to regain modelocking.
|
1.0
|
Log attempts to regain modelock and try a bit harder. - BakingTray could be a lot more robust to failure of the laser. It should pause the acquisition and try harder to regain modelocking.
|
priority
|
log attempts to regain modelock and try a bit harder bakingtray could be a lot more robust to failure of the laser it should pause the acquisition and try harder to regain modelocking
| 1
|
172,275
| 6,501,152,462
|
IssuesEvent
|
2017-08-23 08:30:42
|
aaronshappell/picabot
|
https://api.github.com/repos/aaronshappell/picabot
|
closed
|
Error and crash after !clear
|
Priority: high Type: bug Type: half crash
|
```
TypeError: Cannot read property 'url' of undefined
2017-08-20T18:23:23.805175+00:00 app[worker.1]: at playSong (/app/picabot.js:478:31)
2017-08-20T18:23:23.805176+00:00 app[worker.1]: at /app/picabot.js:463:5
2017-08-20T18:23:23.805177+00:00 app[worker.1]: at process._tickCallback (internal/process/next_tick.js:109:7)
```
Does not say now playing "song" after this occurs and trying to use !yt
|
1.0
|
Error and crash after !clear - ```
TypeError: Cannot read property 'url' of undefined
2017-08-20T18:23:23.805175+00:00 app[worker.1]: at playSong (/app/picabot.js:478:31)
2017-08-20T18:23:23.805176+00:00 app[worker.1]: at /app/picabot.js:463:5
2017-08-20T18:23:23.805177+00:00 app[worker.1]: at process._tickCallback (internal/process/next_tick.js:109:7)
```
Does not say now playing "song" after this occurs and trying to use !yt
|
priority
|
error and crash after clear typeerror cannot read property url of undefined app at playsong app picabot js app at app picabot js app at process tickcallback internal process next tick js does not say now playing song after this occurs and trying to use yt
| 1
|
367,393
| 10,853,241,127
|
IssuesEvent
|
2019-11-13 14:22:36
|
ahmedkaludi/accelerated-mobile-pages
|
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
|
closed
|
Database Query Performance.
|
[Priority: HIGH] bug
|
Some queries are running unnecessarily and one query is running multiple times and some queries are running with "select *".
|
1.0
|
Database Query Performance. - Some queries are running unnecessarily and one query is running multiple times and some queries are running with "select *".
|
priority
|
database query performance some queries are running unnecessarily and one query is running multiple times and some queries are running with select
| 1
|
243,173
| 7,853,938,801
|
IssuesEvent
|
2018-06-20 19:03:19
|
ampproject/amphtml
|
https://api.github.com/repos/ampproject/amphtml
|
closed
|
Support a publisher provided external link in amp-story-consent
|
Category: AMP Story P1: High Priority Type: Feature Request
|
Support a publisher provided external link in amp-story-consent.
|
1.0
|
Support a publisher provided external link in amp-story-consent - Support a publisher provided external link in amp-story-consent.
|
priority
|
support a publisher provided external link in amp story consent support a publisher provided external link in amp story consent
| 1
|
385,006
| 11,410,762,049
|
IssuesEvent
|
2020-02-01 00:47:43
|
nextstrain/auspice
|
https://api.github.com/repos/nextstrain/auspice
|
closed
|
Clicking "Leave the narrative & explore the data yourself" leads to an incomplete page
|
bug high priority narratives
|
Repro:
- Go to the latest situation report on 2019-ncov, currently at https://nextstrain.org/narratives/ncov/sit-rep/2020-01-30
- Scroll to the very last page
- Click "Leave the narrative & explore the data yourself"
- You will be redirected to the latest https://nextstrain.org/ncov results, however, the page does not show either phylogeny tree or map and the sidebar seems rather empty
- Refresh the page. The page is now complete, as expected.
I think this is a bug and the complete page with phylogeny tree and map should be shown from the beginning.
|
1.0
|
Clicking "Leave the narrative & explore the data yourself" leads to an incomplete page - Repro:
- Go to the latest situation report on 2019-ncov, currently at https://nextstrain.org/narratives/ncov/sit-rep/2020-01-30
- Scroll to the very last page
- Click "Leave the narrative & explore the data yourself"
- You will be redirected to the latest https://nextstrain.org/ncov results, however, the page does not show either phylogeny tree or map and the sidebar seems rather empty
- Refresh the page. The page is now complete, as expected.
I think this is a bug and the complete page with phylogeny tree and map should be shown from the beginning.
|
priority
|
clicking leave the narrative explore the data yourself leads to an incomplete page repro go to the latest situation report on ncov currently at scroll to the very last page click leave the narrative explore the data yourself you will be redirected to the latest results however the page does not show either phylogeny tree or map and the sidebar seems rather empty refresh the page the page is now complete as expected i think this is a bug and the complete page with phylogeny tree and map should be shown from the beginning
| 1
|
597,497
| 18,165,345,812
|
IssuesEvent
|
2021-09-27 14:06:47
|
geneontology/go-annotation
|
https://api.github.com/repos/geneontology/go-annotation
|
reopened
|
PTN000941828 (PTHR11941)
|
FlyBase PAINT annotation high priority
|
Please review the PAINT (PANTHER:PTN000941828) inference for Dmel HIPP1 (FBgn0037027):
GO:0004300 enoyl-CoA hydratase activity" annotation was assigned to D.mel HIPP1 (UniProt:Q9VPB0, M9PG20, M9PID3, M9PG82) based on human "Enoyl-CoA hydratase, mitochondrial" and "Methylglutaconyl-CoA hydratase, mitochondrial", which have no obvious orthology relationship to Dmel HIPP1.
@hattrill
|
1.0
|
PTN000941828 (PTHR11941) - Please review the PAINT (PANTHER:PTN000941828) inference for Dmel HIPP1 (FBgn0037027):
GO:0004300 enoyl-CoA hydratase activity" annotation was assigned to D.mel HIPP1 (UniProt:Q9VPB0, M9PG20, M9PID3, M9PG82) based on human "Enoyl-CoA hydratase, mitochondrial" and "Methylglutaconyl-CoA hydratase, mitochondrial", which have no obvious orthology relationship to Dmel HIPP1.
@hattrill
|
priority
|
please review the paint panther inference for dmel go enoyl coa hydratase activity annotation was assigned to d mel uniprot based on human enoyl coa hydratase mitochondrial and methylglutaconyl coa hydratase mitochondrial which have no obvious orthology relationship to dmel hattrill
| 1
|
171,182
| 6,480,678,786
|
IssuesEvent
|
2017-08-18 13:58:50
|
sussol/mobile
|
https://api.github.com/repos/sussol/mobile
|
closed
|
Requisition lines disappear after Supplier Invoice is synced back to mobile store
|
Bug Priority: High
|
Build Number: current master (last commit 17/08/17 34a449a27baaab071b4817085c9bedb0282e3a1b) and mobile inter-store-requisition-cleanup branch.
Description: When a customer invoice is synced out from Store B and a Supplier Invoice is created in Store A following a request from Store A, the requisition lines on the original Supplier Requisition (in Store A) and the Customer Requisition (on Store B) disappears on mobile.
Reproducible: Always (as long as SI is being created on mobile)
Reproduction Steps: With two mobiles running, create Supplier Requisition on Store A. Sync both stores to create Customer Requisition and Customer Invoice on Store B. Sync both stores again. If a supplier invoice is created in Store A, the requisition lines on the Supplier Requisition and Customer Requisition disappears, but the requisitions themselves remain (as in screenshots below.)

<img width="937" alt="screen shot 2017-08-18 at 2 57 05 pm" src="https://user-images.githubusercontent.com/29744386/29442464-bf79b77c-8425-11e7-89de-73ab36c556f9.png">
Comments:
The Requisition and the Requisition lines are still there on the mSupply server, even after they have disappeared on mobile.
|
1.0
|
Requisition lines disappear after Supplier Invoice is synced back to mobile store - Build Number: current master (last commit 17/08/17 34a449a27baaab071b4817085c9bedb0282e3a1b) and mobile inter-store-requisition-cleanup branch.
Description: When a customer invoice is synced out from Store B and a Supplier Invoice is created in Store A following a request from Store A, the requisition lines on the original Supplier Requisition (in Store A) and the Customer Requisition (on Store B) disappears on mobile.
Reproducible: Always (as long as SI is being created on mobile)
Reproduction Steps: With two mobiles running, create Supplier Requisition on Store A. Sync both stores to create Customer Requisition and Customer Invoice on Store B. Sync both stores again. If a supplier invoice is created in Store A, the requisition lines on the Supplier Requisition and Customer Requisition disappears, but the requisitions themselves remain (as in screenshots below.)

<img width="937" alt="screen shot 2017-08-18 at 2 57 05 pm" src="https://user-images.githubusercontent.com/29744386/29442464-bf79b77c-8425-11e7-89de-73ab36c556f9.png">
Comments:
The Requisition and the Requisition lines are still there on the mSupply server, even after they have disappeared on mobile.
|
priority
|
requisition lines disappear after supplier invoice is synced back to mobile store build number current master last commit and mobile inter store requisition cleanup branch description when a customer invoice is synced out from store b and a supplier invoice is created in store a following a request from store a the requisition lines on the original supplier requisition in store a and the customer requisition on store b disappears on mobile reproducible always as long as si is being created on mobile reproduction steps with two mobiles running create supplier requisition on store a sync both stores to create customer requisition and customer invoice on store b sync both stores again if a supplier invoice is created in store a the requisition lines on the supplier requisition and customer requisition disappears but the requisitions themselves remain as in screenshots below img width alt screen shot at pm src comments the requisition and the requisition lines are still there on the msupply server even after they have disappeared on mobile
| 1
|
611,016
| 18,942,776,156
|
IssuesEvent
|
2021-11-18 06:18:31
|
DukeMobileDevCenter/Jigsaw
|
https://api.github.com/repos/DukeMobileDevCenter/Jigsaw
|
closed
|
[Logistic] Update Firebase bundle ID
|
C-Server C-logistics Priority-high
|
```log
[Firebase/Core][I-COR000008] The project's Bundle ID is inconsistent with either the Bundle ID in
'GoogleService-Info.plist', or the Bundle ID in the options if you are using a customized options.
To ensure that everything can be configured correctly, you may need to make the Bundle IDs consistent.
To continue with this plist file, you may change your app's bundle identifier to 'edu.duke.mobilecenter.Jigsaw.beta'.
Or you can download a new configuration file that matches your bundle identifier
from https://console.firebase.google.com/ and replace the current one.
```
|
1.0
|
[Logistic] Update Firebase bundle ID - ```log
[Firebase/Core][I-COR000008] The project's Bundle ID is inconsistent with either the Bundle ID in
'GoogleService-Info.plist', or the Bundle ID in the options if you are using a customized options.
To ensure that everything can be configured correctly, you may need to make the Bundle IDs consistent.
To continue with this plist file, you may change your app's bundle identifier to 'edu.duke.mobilecenter.Jigsaw.beta'.
Or you can download a new configuration file that matches your bundle identifier
from https://console.firebase.google.com/ and replace the current one.
```
|
priority
|
update firebase bundle id log the project s bundle id is inconsistent with either the bundle id in googleservice info plist or the bundle id in the options if you are using a customized options to ensure that everything can be configured correctly you may need to make the bundle ids consistent to continue with this plist file you may change your app s bundle identifier to edu duke mobilecenter jigsaw beta or you can download a new configuration file that matches your bundle identifier from and replace the current one
| 1
|
268,914
| 8,415,752,388
|
IssuesEvent
|
2018-10-13 17:51:44
|
strapi/strapi
|
https://api.github.com/repos/strapi/strapi
|
closed
|
Plugins version matching with Strapi version
|
priority: high status: confirmed type: bug 🐛
|
<!-- ⚠️ If you do not respect this template your issue will be closed. -->
<!-- ⚠️ Before writing your issue make sure you are using:-->
<!-- Node 9.x.x -->
<!-- npm 5.x.x -->
<!-- The latest version of Strapi. -->
**Informations**
- **Node.js version**: 9.11.1
- **npm version**: 5.6.0
- **Strapi version**: Any older version
- **Database**: not relevant
- **Operating system**: not relevant
**What is the current behavior?**
If you have strapi installed with an older version and try to init a new project. The root Project and the admin Panel would have the same version as the globally installed strapi but all the plugins are installed with the newest available version. This makes the system not working properly and leads to crashes.
**Steps to reproduce the problem**
- Install an older version of Strapi
- Init a new Project with it
- You will see that the plugins using newest version and in the admin panel you will notice that you cannot add for example a new type properly and so on.
**What is the expected behavior?**
Strapi should use the version of root project for all strapi related dependencies to avoid this problems.
**Suggested solutions**
Strapi should use the version of root project for all strapi related dependencies
<!-- ⚠️ Make sure to browse the opened and closed issues before submitting your issue. -->
|
1.0
|
Plugins version matching with Strapi version - <!-- ⚠️ If you do not respect this template your issue will be closed. -->
<!-- ⚠️ Before writing your issue make sure you are using:-->
<!-- Node 9.x.x -->
<!-- npm 5.x.x -->
<!-- The latest version of Strapi. -->
**Informations**
- **Node.js version**: 9.11.1
- **npm version**: 5.6.0
- **Strapi version**: Any older version
- **Database**: not relevant
- **Operating system**: not relevant
**What is the current behavior?**
If you have strapi installed with an older version and try to init a new project. The root Project and the admin Panel would have the same version as the globally installed strapi but all the plugins are installed with the newest available version. This makes the system not working properly and leads to crashes.
**Steps to reproduce the problem**
- Install an older version of Strapi
- Init a new Project with it
- You will see that the plugins using newest version and in the admin panel you will notice that you cannot add for example a new type properly and so on.
**What is the expected behavior?**
Strapi should use the version of root project for all strapi related dependencies to avoid this problems.
**Suggested solutions**
Strapi should use the version of root project for all strapi related dependencies
<!-- ⚠️ Make sure to browse the opened and closed issues before submitting your issue. -->
|
priority
|
plugins version matching with strapi version informations node js version npm version strapi version any older version database not relevant operating system not relevant what is the current behavior if you have strapi installed with an older version and try to init a new project the root project and the admin panel would have the same version as the globally installed strapi but all the plugins are installed with the newest available version this makes the system not working properly and leads to crashes steps to reproduce the problem install an older version of strapi init a new project with it you will see that the plugins using newest version and in the admin panel you will notice that you cannot add for example a new type properly and so on what is the expected behavior strapi should use the version of root project for all strapi related dependencies to avoid this problems suggested solutions strapi should use the version of root project for all strapi related dependencies
| 1
|
355,137
| 10,576,777,449
|
IssuesEvent
|
2019-10-07 18:37:31
|
StrangeLoopGames/EcoIssues
|
https://api.github.com/repos/StrangeLoopGames/EcoIssues
|
closed
|
[master-preview] The choice of Mint item is broken
|
High Priority
|
Step to reproduce:
- place mint
- try to choise Mint Item

|
1.0
|
[master-preview] The choice of Mint item is broken - Step to reproduce:
- place mint
- try to choise Mint Item

|
priority
|
the choice of mint item is broken step to reproduce place mint try to choise mint item
| 1
|
686,323
| 23,486,753,786
|
IssuesEvent
|
2022-08-17 14:58:41
|
AgnostiqHQ/covalent
|
https://api.github.com/repos/AgnostiqHQ/covalent
|
closed
|
`Lattice.draw()` no longer works
|
bug priority / high Team Psi
|
In the [Astronomy tutorial](https://covalent.readthedocs.io/en/latest/tutorials/astronomy/star_tracker.html), `Lattice.draw()` (Cell 6) produces no results in the UI:

|
1.0
|
`Lattice.draw()` no longer works - In the [Astronomy tutorial](https://covalent.readthedocs.io/en/latest/tutorials/astronomy/star_tracker.html), `Lattice.draw()` (Cell 6) produces no results in the UI:

|
priority
|
lattice draw no longer works in the lattice draw cell produces no results in the ui
| 1
|
240,162
| 7,800,507,710
|
IssuesEvent
|
2018-06-09 10:16:56
|
tine20/Tine-2.0-Open-Source-Groupware-and-CRM
|
https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM
|
closed
|
0009794:
new students are not in the students group
|
Bug Courses Mantis high priority
|
**Reported by sstamer on 20 Mar 2014 12:42**
**Version:** Collin (2013.10.5)
new students are not in the students group
if added with "add students"
|
1.0
|
0009794:
new students are not in the students group - **Reported by sstamer on 20 Mar 2014 12:42**
**Version:** Collin (2013.10.5)
new students are not in the students group
if added with "add students"
|
priority
|
new students are not in the students group reported by sstamer on mar version collin new students are not in the students group if added with quot add students quot
| 1
|
109,493
| 4,388,546,477
|
IssuesEvent
|
2016-08-08 19:14:01
|
RMUCapstone-MIS590/Team-A
|
https://api.github.com/repos/RMUCapstone-MIS590/Team-A
|
opened
|
Website Layout and Color Scheme
|
## Client/Server Development point: 8 priority: highest type:chore type:performance _Application Development
|
# Website Layout& Color Scheme
### Helpful Hints
[Intro to Color Theory For Web Designers](http://webdesign.tutsplus.com/articles/an-introduction-to-color-theory-for-web-designers--webdesign-1437)
[https://www.smashingmagazine.com/web-design-essentials-examples-and-best-practices/](https://www.smashingmagazine.com/web-design-essentials-examples-and-best-practices/)
[http://1stwebdesigner.com/web-design-best-practices/](http://1stwebdesigner.com/web-design-best-practices/)
[10 Rules of Best Practice for Responsive Design](http://thenextweb.com/dd/2015/10/19/10-rules-of-best-practice-for-responsive-design/#gref)
|
1.0
|
Website Layout and Color Scheme - # Website Layout& Color Scheme
### Helpful Hints
[Intro to Color Theory For Web Designers](http://webdesign.tutsplus.com/articles/an-introduction-to-color-theory-for-web-designers--webdesign-1437)
[https://www.smashingmagazine.com/web-design-essentials-examples-and-best-practices/](https://www.smashingmagazine.com/web-design-essentials-examples-and-best-practices/)
[http://1stwebdesigner.com/web-design-best-practices/](http://1stwebdesigner.com/web-design-best-practices/)
[10 Rules of Best Practice for Responsive Design](http://thenextweb.com/dd/2015/10/19/10-rules-of-best-practice-for-responsive-design/#gref)
|
priority
|
website layout and color scheme website layout color scheme helpful hints
| 1
|
511,366
| 14,859,002,173
|
IssuesEvent
|
2021-01-18 17:41:50
|
Materials-Consortia/optimade-python-tools
|
https://api.github.com/repos/Materials-Consortia/optimade-python-tools
|
closed
|
Validator should not rely on `meta->data_available`
|
bug priority/high validator
|
A closely related issue is that even if the implementation returns `meta->data_returned`, one of the tests checks if an empty filter returns the same number for `meta->data_returned` and `meta->data_available`. This test appears to fail with a red checkmark if `meta->data_available` is not present. That field is on MAY level, so it is a quite major bug to fail implementations on missing that field.
_Originally posted by @rartino in https://github.com/Materials-Consortia/optimade-python-tools/issues/675#issuecomment-762037745_
|
1.0
|
Validator should not rely on `meta->data_available` - A closely related issue is that even if the implementation returns `meta->data_returned`, one of the tests checks if an empty filter returns the same number for `meta->data_returned` and `meta->data_available`. This test appears to fail with a red checkmark if `meta->data_available` is not present. That field is on MAY level, so it is a quite major bug to fail implementations on missing that field.
_Originally posted by @rartino in https://github.com/Materials-Consortia/optimade-python-tools/issues/675#issuecomment-762037745_
|
priority
|
validator should not rely on meta data available a closely related issue is that even if the implementation returns meta data returned one of the tests checks if an empty filter returns the same number for meta data returned and meta data available this test appears to fail with a red checkmark if meta data available is not present that field is on may level so it is a quite major bug to fail implementations on missing that field originally posted by rartino in
| 1
|
548,977
| 16,082,789,612
|
IssuesEvent
|
2021-04-26 07:38:14
|
google/flax
|
https://api.github.com/repos/google/flax
|
opened
|
Revert masking logic from seq2seq example
|
Priority: P1 - high
|
The seq2seq example is currently the only place where JAX masking is being used. However, JAX masking it highly experimental and very likely to change completely, so we should encourage users to use masking. Therefore, let's remove it from our example.
It seems we can start by trying to rollback https://github.com/google/flax/pull/454, since not much has changed in the example since then.
|
1.0
|
Revert masking logic from seq2seq example - The seq2seq example is currently the only place where JAX masking is being used. However, JAX masking it highly experimental and very likely to change completely, so we should encourage users to use masking. Therefore, let's remove it from our example.
It seems we can start by trying to rollback https://github.com/google/flax/pull/454, since not much has changed in the example since then.
|
priority
|
revert masking logic from example the example is currently the only place where jax masking is being used however jax masking it highly experimental and very likely to change completely so we should encourage users to use masking therefore let s remove it from our example it seems we can start by trying to rollback since not much has changed in the example since then
| 1
|
562,785
| 16,669,809,550
|
IssuesEvent
|
2021-06-07 09:26:20
|
NevilleAntony98/Prototype
|
https://api.github.com/repos/NevilleAntony98/Prototype
|
closed
|
Support multiple notifications
|
High Priority
|
We need to add support for notification per download. Should be enough to have a map (channel_id -> fileDownload) to update correct notification.
|
1.0
|
Support multiple notifications - We need to add support for notification per download. Should be enough to have a map (channel_id -> fileDownload) to update correct notification.
|
priority
|
support multiple notifications we need to add support for notification per download should be enough to have a map channel id filedownload to update correct notification
| 1
|
275,812
| 8,580,795,079
|
IssuesEvent
|
2018-11-13 13:03:48
|
gitcoinco/web
|
https://api.github.com/repos/gitcoinco/web
|
opened
|
Worker should not be able to submit work without clicking start work
|
bug high-priority
|
<!--
Hello Gitcoiner!
Please use the template below for bugs found within Gitcoin.
If it is general support you need, reach out to us at
gitcoin.co/slack
Provide a general summary of the issue in the title above and use relevant fields below to define the problem.
-->
See this issue.
https://gitcoin.co/issue/spacemeshos/app/4/1388
## Definition of Done
- [ ] If worker submits work without clicking start work, display an error that asks them to click start work.
<img width="541" alt="screen shot 2018-11-13 at 7 54 23 am" src="https://user-images.githubusercontent.com/238235/48415176-a3519980-e71a-11e8-9c2f-97622bb09b1d.png">
|
1.0
|
Worker should not be able to submit work without clicking start work - <!--
Hello Gitcoiner!
Please use the template below for bugs found within Gitcoin.
If it is general support you need, reach out to us at
gitcoin.co/slack
Provide a general summary of the issue in the title above and use relevant fields below to define the problem.
-->
See this issue.
https://gitcoin.co/issue/spacemeshos/app/4/1388
## Definition of Done
- [ ] If worker submits work without clicking start work, display an error that asks them to click start work.
<img width="541" alt="screen shot 2018-11-13 at 7 54 23 am" src="https://user-images.githubusercontent.com/238235/48415176-a3519980-e71a-11e8-9c2f-97622bb09b1d.png">
|
priority
|
worker should not be able to submit work without clicking start work hello gitcoiner please use the template below for bugs found within gitcoin if it is general support you need reach out to us at gitcoin co slack provide a general summary of the issue in the title above and use relevant fields below to define the problem see this issue definition of done if worker submits work without clicking start work display an error that asks them to click start work img width alt screen shot at am src
| 1
|
207,227
| 7,126,140,314
|
IssuesEvent
|
2018-01-20 06:14:12
|
Navarra/game
|
https://api.github.com/repos/Navarra/game
|
closed
|
Multi-dimensional layers of the game map
|
backend canvas discussion enhancement hard high priority
|
As it stands, the game map of Navarra is currently 1 layer and this has _got_ to change.
It can be so much better. The tileset itself will need to be re-worked and changed to better fit the needs of the game. A lot of it can be extracted into its own layer which would be transparent. The trees, signs, dirt roads and more can be put into a different tileset. Then those tiles can go anywhere in the background which is static and does not change.
This is just a no-brainer and will definitely allow more improvisation as Navarra's game map fleshes itself out. An extra layer can also add the ease of item-to-tile or user-to-tile interaction. Since they're transparent, meaning they go into multiple places and can have dynamic actions and we can locate them.
This will add another layer or two during background image processing but will be well worth the flexibility as Navarra's lore grows to accommodate its narrative.
Luckily, I have (somewhat) experience in Gimp and this will be nothing short of just a time-consuming task. Over 600 or so tiles to go through. With the tileset, the posibilites then will became _a lot_ more than 600.
---
I'm using Tiled to edit the game-map. Once I get it all sorted out, I'll re-upload it with the `.tmx` file along with the _new_ tileset images.
|
1.0
|
Multi-dimensional layers of the game map - As it stands, the game map of Navarra is currently 1 layer and this has _got_ to change.
It can be so much better. The tileset itself will need to be re-worked and changed to better fit the needs of the game. A lot of it can be extracted into its own layer which would be transparent. The trees, signs, dirt roads and more can be put into a different tileset. Then those tiles can go anywhere in the background which is static and does not change.
This is just a no-brainer and will definitely allow more improvisation as Navarra's game map fleshes itself out. An extra layer can also add the ease of item-to-tile or user-to-tile interaction. Since they're transparent, meaning they go into multiple places and can have dynamic actions and we can locate them.
This will add another layer or two during background image processing but will be well worth the flexibility as Navarra's lore grows to accommodate its narrative.
Luckily, I have (somewhat) experience in Gimp and this will be nothing short of just a time-consuming task. Over 600 or so tiles to go through. With the tileset, the posibilites then will became _a lot_ more than 600.
---
I'm using Tiled to edit the game-map. Once I get it all sorted out, I'll re-upload it with the `.tmx` file along with the _new_ tileset images.
|
priority
|
multi dimensional layers of the game map as it stands the game map of navarra is currently layer and this has got to change it can be so much better the tileset itself will need to be re worked and changed to better fit the needs of the game a lot of it can be extracted into its own layer which would be transparent the trees signs dirt roads and more can be put into a different tileset then those tiles can go anywhere in the background which is static and does not change this is just a no brainer and will definitely allow more improvisation as navarra s game map fleshes itself out an extra layer can also add the ease of item to tile or user to tile interaction since they re transparent meaning they go into multiple places and can have dynamic actions and we can locate them this will add another layer or two during background image processing but will be well worth the flexibility as navarra s lore grows to accommodate its narrative luckily i have somewhat experience in gimp and this will be nothing short of just a time consuming task over or so tiles to go through with the tileset the posibilites then will became a lot more than i m using tiled to edit the game map once i get it all sorted out i ll re upload it with the tmx file along with the new tileset images
| 1
|
508,322
| 14,698,491,845
|
IssuesEvent
|
2021-01-04 06:34:39
|
teamforus/general
|
https://api.github.com/repos/teamforus/general
|
closed
|
Update voucher card: make opening modal links more prominent (buttons need to be visible, not hidden)
|
Approval: Granted Impact: Extensive Priority: Must have Scope: Medium Status: Not Planned Urgency: High - Next release
|
Learn more about change requests here: https://bit.ly/39CWeEE
### Requested by:
Jamal
### Change description
- [ ] buttons need to be visible on first sight and not hidden in pop up.
- [ ] Buttons need to have colour
- [ ] buttons need a hover
- [ ] Buttons need to be as large as possible (and still look nice)
It is currently unclear (user testing) what is expected of the user. User do not see/undestand the current button to be clickable.
MVP is updating the styling to clarify the call to action, we can think about bigger iterations after that.
Figma: This one is outdated (needs update like design Max): https://www.figma.com/file/mWmn4EgY0eh1FDye0dIJWE/?node-id=0%3A1
## Current state:

## Desired state:

Note: font sizes don't need to be updated, that's just a difference between figma and code
|
1.0
|
Update voucher card: make opening modal links more prominent (buttons need to be visible, not hidden) - Learn more about change requests here: https://bit.ly/39CWeEE
### Requested by:
Jamal
### Change description
- [ ] buttons need to be visible on first sight and not hidden in pop up.
- [ ] Buttons need to have colour
- [ ] buttons need a hover
- [ ] Buttons need to be as large as possible (and still look nice)
It is currently unclear (user testing) what is expected of the user. User do not see/undestand the current button to be clickable.
MVP is updating the styling to clarify the call to action, we can think about bigger iterations after that.
Figma: This one is outdated (needs update like design Max): https://www.figma.com/file/mWmn4EgY0eh1FDye0dIJWE/?node-id=0%3A1
## Current state:

## Desired state:

Note: font sizes don't need to be updated, that's just a difference between figma and code
|
priority
|
update voucher card make opening modal links more prominent buttons need to be visible not hidden learn more about change requests here requested by jamal change description buttons need to be visible on first sight and not hidden in pop up buttons need to have colour buttons need a hover buttons need to be as large as possible and still look nice it is currently unclear user testing what is expected of the user user do not see undestand the current button to be clickable mvp is updating the styling to clarify the call to action we can think about bigger iterations after that figma this one is outdated needs update like design max current state desired state note font sizes don t need to be updated that s just a difference between figma and code
| 1
|
749,220
| 26,154,172,100
|
IssuesEvent
|
2022-12-30 18:34:06
|
dberkerdem/SWE573_Term_Project
|
https://api.github.com/repos/dberkerdem/SWE573_Term_Project
|
reopened
|
Create Spaces
|
Effort: High Priority: Low Frontend Backend
|
Learn more about the logic behind spaces and create a page for spaces.
- [x] Space model
- [x] Create Space Functionality
- [ ] Delete Space Functionality
- [x] Space page
- [ ] Space welcome page with latest created spaces
|
1.0
|
Create Spaces - Learn more about the logic behind spaces and create a page for spaces.
- [x] Space model
- [x] Create Space Functionality
- [ ] Delete Space Functionality
- [x] Space page
- [ ] Space welcome page with latest created spaces
|
priority
|
create spaces learn more about the logic behind spaces and create a page for spaces space model create space functionality delete space functionality space page space welcome page with latest created spaces
| 1
|
531,882
| 15,526,712,593
|
IssuesEvent
|
2021-03-13 02:22:27
|
CreeperMagnet/the-creepers-code
|
https://api.github.com/repos/CreeperMagnet/the-creepers-code
|
closed
|
Emerald rings simply don't work
|
priority: high
|
This can be fixed by moving one line of code in `emerald_damage.mcfunction.`
(Imported from old repository)
|
1.0
|
Emerald rings simply don't work - This can be fixed by moving one line of code in `emerald_damage.mcfunction.`
(Imported from old repository)
|
priority
|
emerald rings simply don t work this can be fixed by moving one line of code in emerald damage mcfunction imported from old repository
| 1
|
725,282
| 24,957,163,102
|
IssuesEvent
|
2022-11-01 12:49:40
|
AY2223S1-CS2103T-T08-4/tp
|
https://api.github.com/repos/AY2223S1-CS2103T-T08-4/tp
|
closed
|
[PE-D][Tester A] Response message is not being parsed.
|
priority.High
|

I was able to trigger a run time error and based on the response it seems like addresponse's response wasn't properly parsed as no Exception was raised when a non-integer value is being entered.
<!--session: 1666944446773-a561e2ed-c762-4bbe-8f0a-11cd74178c83-->
<!--Version: Web v3.4.4-->
-------------
Labels: `severity.Medium` `type.FunctionalityBug`
original: Eclipse-Dominator/ped#5
|
1.0
|
[PE-D][Tester A] Response message is not being parsed. - 
I was able to trigger a run time error and based on the response it seems like addresponse's response wasn't properly parsed as no Exception was raised when a non-integer value is being entered.
<!--session: 1666944446773-a561e2ed-c762-4bbe-8f0a-11cd74178c83-->
<!--Version: Web v3.4.4-->
-------------
Labels: `severity.Medium` `type.FunctionalityBug`
original: Eclipse-Dominator/ped#5
|
priority
|
response message is not being parsed i was able to trigger a run time error and based on the response it seems like addresponse s response wasn t properly parsed as no exception was raised when a non integer value is being entered labels severity medium type functionalitybug original eclipse dominator ped
| 1
|
260,786
| 8,214,745,263
|
IssuesEvent
|
2018-09-05 01:13:25
|
GCE-NEIIST/GCE-NEIIST-webapp
|
https://api.github.com/repos/GCE-NEIIST/GCE-NEIIST-webapp
|
opened
|
Use a linter and Codacy to assess the quality of the code
|
Category: Quality Assurance Priority: High
|
The pull-requests will be run against a battery of tests and the code will be analyzed. We can use a tool like Coday to automate the process, whereas locally, a linter could suffice.
|
1.0
|
Use a linter and Codacy to assess the quality of the code - The pull-requests will be run against a battery of tests and the code will be analyzed. We can use a tool like Coday to automate the process, whereas locally, a linter could suffice.
|
priority
|
use a linter and codacy to assess the quality of the code the pull requests will be run against a battery of tests and the code will be analyzed we can use a tool like coday to automate the process whereas locally a linter could suffice
| 1
|
649,773
| 21,320,546,186
|
IssuesEvent
|
2022-04-17 02:09:25
|
bossbuwi/reality
|
https://api.github.com/repos/bossbuwi/reality
|
opened
|
Create systems ui
|
enhancement ui high priority
|
Create a UI for the systems. No logic is required. It must contain the items below.
- A table showing a list of the systems currently registered on the app.
- A popup showing a system's details if an item on the list is clicked.
- (Optional) A button that will open a form to add a system. Note that this is tagged as optional but it would surely be added later.
No logic is needed for the above items. Logic would be added under a different task/issue.
|
1.0
|
Create systems ui - Create a UI for the systems. No logic is required. It must contain the items below.
- A table showing a list of the systems currently registered on the app.
- A popup showing a system's details if an item on the list is clicked.
- (Optional) A button that will open a form to add a system. Note that this is tagged as optional but it would surely be added later.
No logic is needed for the above items. Logic would be added under a different task/issue.
|
priority
|
create systems ui create a ui for the systems no logic is required it must contain the items below a table showing a list of the systems currently registered on the app a popup showing a system s details if an item on the list is clicked optional a button that will open a form to add a system note that this is tagged as optional but it would surely be added later no logic is needed for the above items logic would be added under a different task issue
| 1
|
399,177
| 11,744,221,439
|
IssuesEvent
|
2020-03-12 07:08:39
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
www.google.com - design is broken
|
browser-firefox-tablet engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical
|
<!-- @browser: Firefox Mobile (Tablet) 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 4.4.2; Tablet; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/50026 -->
**URL**: https://www.google.com/maps/dir/P.O.+Box+1408+Haines,+AK+99827//@0,0,22z/data=!4m5!4m4!1m0!1m1!4e2!3e0?hl=en
**Browser / Version**: Firefox Mobile (Tablet) 68.0
**Operating System**: Android 4.4.2
**Tested Another Browser**: Unknown
**Problem type**: Design is broken
**Description**: trying to change my address, why am I getting questions from Vietnam? i live in Alaska
**Steps to Reproduce**:
<details><summary>View the screenshot</summary><img alt='Screenshot' src='https://webcompat.com/uploads/2020/3/39ca723f-8f96-4121-8318-2c91928803da.jpeg'></details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200305175243</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/3/a253e809-4960-453c-acd4-38e1f35a90cc)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
www.google.com - design is broken - <!-- @browser: Firefox Mobile (Tablet) 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 4.4.2; Tablet; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/50026 -->
**URL**: https://www.google.com/maps/dir/P.O.+Box+1408+Haines,+AK+99827//@0,0,22z/data=!4m5!4m4!1m0!1m1!4e2!3e0?hl=en
**Browser / Version**: Firefox Mobile (Tablet) 68.0
**Operating System**: Android 4.4.2
**Tested Another Browser**: Unknown
**Problem type**: Design is broken
**Description**: trying to change my address, why am I getting questions from Vietnam? i live in Alaska
**Steps to Reproduce**:
<details><summary>View the screenshot</summary><img alt='Screenshot' src='https://webcompat.com/uploads/2020/3/39ca723f-8f96-4121-8318-2c91928803da.jpeg'></details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20200305175243</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/3/a253e809-4960-453c-acd4-38e1f35a90cc)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
priority
|
design is broken url browser version firefox mobile tablet operating system android tested another browser unknown problem type design is broken description trying to change my address why am i getting questions from vietnam i live in alaska steps to reproduce view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
| 1
|
370,358
| 10,928,427,142
|
IssuesEvent
|
2019-11-22 19:00:34
|
yugabyte/yugabyte-db
|
https://api.github.com/repos/yugabyte/yugabyte-db
|
opened
|
[Platform] Task status api call shouldn't be queue if the earlier one hasn't completed
|
area/ui priority/high
|
Our UI keeps hitting the task status api frequently, and if the previous call didn't complete, we shouldn't queue another one.
|
1.0
|
[Platform] Task status api call shouldn't be queue if the earlier one hasn't completed - Our UI keeps hitting the task status api frequently, and if the previous call didn't complete, we shouldn't queue another one.
|
priority
|
task status api call shouldn t be queue if the earlier one hasn t completed our ui keeps hitting the task status api frequently and if the previous call didn t complete we shouldn t queue another one
| 1
|
365,475
| 10,787,780,596
|
IssuesEvent
|
2019-11-05 08:23:55
|
AugurProject/augur
|
https://api.github.com/repos/AugurProject/augur
|
closed
|
markets that were in dispute when a fork happened don't show dispute info correctly
|
Bug Priority: High Product Critical
|
<img width="974" alt="screen shot 2018-10-23 at 9 14 59 am" src="https://user-images.githubusercontent.com/11491365/49775505-49a6a580-fcad-11e8-8704-f032f19b332a.png">
...
@johndanz When a fork occurs, all non-forked markets have their tentative outcome reset to the outcome submitted in the initial report. Phoebe mentioned this might be happening due to the console errors we were seeing when a fork occurs (ch17599). Can you please work on fixing that issue and then see if this is still happening?
-adrake33
...
or just related, i saw that disputeInfo doesn't have bondSizeCurrent set and maybe missing some other values.
-phoebemirman
...
@serena @mattbullock When a fork occurs, all disputed non-forked markets have their tentative outcome reset to the outcome submitted in the initial report.
Currently, these disputed non-forked markets are not showing a dispute round, nor are they showing any outcomes. Should we still be displaying this information, even though the dispute round will never advance and the tentative outcome will never change in the current universe?
-adrake33
|
1.0
|
markets that were in dispute when a fork happened don't show dispute info correctly - <img width="974" alt="screen shot 2018-10-23 at 9 14 59 am" src="https://user-images.githubusercontent.com/11491365/49775505-49a6a580-fcad-11e8-8704-f032f19b332a.png">
...
@johndanz When a fork occurs, all non-forked markets have their tentative outcome reset to the outcome submitted in the initial report. Phoebe mentioned this might be happening due to the console errors we were seeing when a fork occurs (ch17599). Can you please work on fixing that issue and then see if this is still happening?
-adrake33
...
or just related, i saw that disputeInfo doesn't have bondSizeCurrent set and maybe missing some other values.
-phoebemirman
...
@serena @mattbullock When a fork occurs, all disputed non-forked markets have their tentative outcome reset to the outcome submitted in the initial report.
Currently, these disputed non-forked markets are not showing a dispute round, nor are they showing any outcomes. Should we still be displaying this information, even though the dispute round will never advance and the tentative outcome will never change in the current universe?
-adrake33
|
priority
|
markets that were in dispute when a fork happened don t show dispute info correctly img width alt screen shot at am src johndanz when a fork occurs all non forked markets have their tentative outcome reset to the outcome submitted in the initial report phoebe mentioned this might be happening due to the console errors we were seeing when a fork occurs can you please work on fixing that issue and then see if this is still happening or just related i saw that disputeinfo doesn t have bondsizecurrent set and maybe missing some other values phoebemirman serena mattbullock when a fork occurs all disputed non forked markets have their tentative outcome reset to the outcome submitted in the initial report currently these disputed non forked markets are not showing a dispute round nor are they showing any outcomes should we still be displaying this information even though the dispute round will never advance and the tentative outcome will never change in the current universe
| 1
|
694,677
| 23,824,714,157
|
IssuesEvent
|
2022-09-05 14:00:53
|
aseprite/aseprite
|
https://api.github.com/repos/aseprite/aseprite
|
opened
|
Random tooltip behavior
|
bug high priority
|
Tooltips in beta (w/multiple windows UI) hide/show randomly, and they flickers when we're using a stylus on main/beta.
|
1.0
|
Random tooltip behavior - Tooltips in beta (w/multiple windows UI) hide/show randomly, and they flickers when we're using a stylus on main/beta.
|
priority
|
random tooltip behavior tooltips in beta w multiple windows ui hide show randomly and they flickers when we re using a stylus on main beta
| 1
|
828,834
| 31,844,612,913
|
IssuesEvent
|
2023-09-14 18:54:04
|
CDCgov/prime-reportstream
|
https://api.github.com/repos/CDCgov/prime-reportstream
|
closed
|
[BUG] Remove Breadcrumbs from Pages
|
High Priority experience engineering
|
## Current Behavior
The pages for [Manual data download guide
](https://reportstream.cdc.gov/resources/data-download-guide) and [Guide to receiving data](https://reportstream.cdc.gov/resources/getting-started-public-health-departments) both contain Breadcrumb Navigation at the top
[Manual data download guide Breadcrumb](https://api.zenhub.com/attachedFiles/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBc3lJIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--174c48fd5cee57fa4fae748e412bc1218d75fed8/image.png)
[Guide to receiving data Breadcrumb](https://api.zenhub.com/attachedFiles/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBdFNJIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--e37a08f4665b626c0699cefa1aebdeb675b2127f/image.png)
## Expected Behavior
These pages should **not** contain the Breadcrumb navigation since it links to the archived Resources page.
## Steps to reproduce:
1. Log into RS
2. Click on "Your Connection" in the nav bar
3. Click on "How to download your data"
|
1.0
|
[BUG] Remove Breadcrumbs from Pages - ## Current Behavior
The pages for [Manual data download guide
](https://reportstream.cdc.gov/resources/data-download-guide) and [Guide to receiving data](https://reportstream.cdc.gov/resources/getting-started-public-health-departments) both contain Breadcrumb Navigation at the top
[Manual data download guide Breadcrumb](https://api.zenhub.com/attachedFiles/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBc3lJIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--174c48fd5cee57fa4fae748e412bc1218d75fed8/image.png)
[Guide to receiving data Breadcrumb](https://api.zenhub.com/attachedFiles/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBdFNJIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--e37a08f4665b626c0699cefa1aebdeb675b2127f/image.png)
## Expected Behavior
These pages should **not** contain the Breadcrumb navigation since it links to the archived Resources page.
## Steps to reproduce:
1. Log into RS
2. Click on "Your Connection" in the nav bar
3. Click on "How to download your data"
|
priority
|
remove breadcrumbs from pages current behavior the pages for manual data download guide and both contain breadcrumb navigation at the top expected behavior these pages should not contain the breadcrumb navigation since it links to the archived resources page steps to reproduce log into rs click on your connection in the nav bar click on how to download your data
| 1
|
303,992
| 9,312,851,772
|
IssuesEvent
|
2019-03-26 03:06:36
|
NotJackieTruong/USTH-SE-2019
|
https://api.github.com/repos/NotJackieTruong/USTH-SE-2019
|
opened
|
As an user, I want to display all books in a home site page so users can see all books available on the website
|
Priority: high
|
Task to do for developers:
- [ ] Search information about books and images
- [ ] Add book's name, image and review button into one class
- [ ] Link each book's review buttons to the review page
- [ ] Customize and rearrange the position of each classes
- [ ] Enter the code path for each images
- [ ] Optimize the page: instead of using the "see review" buttons to go to the review page, users now only have to click on the image or the name of the books.
|
1.0
|
As an user, I want to display all books in a home site page so users can see all books available on the website - Task to do for developers:
- [ ] Search information about books and images
- [ ] Add book's name, image and review button into one class
- [ ] Link each book's review buttons to the review page
- [ ] Customize and rearrange the position of each classes
- [ ] Enter the code path for each images
- [ ] Optimize the page: instead of using the "see review" buttons to go to the review page, users now only have to click on the image or the name of the books.
|
priority
|
as an user i want to display all books in a home site page so users can see all books available on the website task to do for developers search information about books and images add book s name image and review button into one class link each book s review buttons to the review page customize and rearrange the position of each classes enter the code path for each images optimize the page instead of using the see review buttons to go to the review page users now only have to click on the image or the name of the books
| 1
|
783,225
| 27,523,490,462
|
IssuesEvent
|
2023-03-06 16:27:23
|
woocommerce/woocommerce-gateway-stripe
|
https://api.github.com/repos/woocommerce/woocommerce-gateway-stripe
|
opened
|
Prevent Apple Pay domain registration for Indian merchants
|
priority: high type: task component: payment request buttons
|
Context: p1677094614234679-slack-C9976E5MJ
## Description
As Apple Pay is not supported in India, we should stop invoking domain registration requests for Indian merchants. This should be relatively straightforward and should reduce domain registration errors.
As @reykjalin suggests [here](p1677873913689259-slack-CGGCLBN58), we can probably check the store address, currency, or perhaps the Stripe account country to prevent these requests.
## Acceptance criteria
Stop invoking Apple Pay domain registration requests for merchants based in India.
|
1.0
|
Prevent Apple Pay domain registration for Indian merchants - Context: p1677094614234679-slack-C9976E5MJ
## Description
As Apple Pay is not supported in India, we should stop invoking domain registration requests for Indian merchants. This should be relatively straightforward and should reduce domain registration errors.
As @reykjalin suggests [here](p1677873913689259-slack-CGGCLBN58), we can probably check the store address, currency, or perhaps the Stripe account country to prevent these requests.
## Acceptance criteria
Stop invoking Apple Pay domain registration requests for merchants based in India.
|
priority
|
prevent apple pay domain registration for indian merchants context slack description as apple pay is not supported in india we should stop invoking domain registration requests for indian merchants this should be relatively straightforward and should reduce domain registration errors as reykjalin suggests slack we can probably check the store address currency or perhaps the stripe account country to prevent these requests acceptance criteria stop invoking apple pay domain registration requests for merchants based in india
| 1
|
488,409
| 14,077,109,163
|
IssuesEvent
|
2020-11-04 11:29:45
|
geosolutions-it/MapStore2
|
https://api.github.com/repos/geosolutions-it/MapStore2
|
closed
|
New configuration property for Locate tool
|
Accepted Priority: High Project: C155 enhancement
|
## Description
<!-- A few sentences describing new feature -->
<!-- screenshot, video, or link to mockup/prototype are welcome -->
Implement support for configuration of max zoom level in localConfig.json (Locate plugin). No UI needed for this.
The possibility to configure the zoom level **is not available** and it needs to be implemented.
- [ ] This improvement needs to be implemented for openlayers and leaflet
- [ ] The new configuration option must be properly documented in the plugin config documentation [here](https://mapstore.geo-solutions.it/mapstore/docs/api/plugins#plugins.Locate)
### Proposal:
We could pass the custom options via localConfig to the Locate Support component and add an implementation to override the default options.
Expected configuration of plugin in localConfig.json:
```js
// localConfig.json
[
{
"name": "Map",
"cfg": {
"tools": ["locate"],
"toolsOptions": {
"locate": {
"maxZoom": 5
}
}
}
},
{ "name": "Locate" }
]
```
**What kind of improvement you want to add?** (check one with "x", remove the others)
- [X] Minor changes to existing features
- [ ] Code style update (formatting, local variables)
- [ ] Refactoring (no functional changes, no api changes)
- [ ] Build related changes
- [ ] CI related changes
- [ ] Other... Please describe:
## Other useful information
This could be an occasion to refactor this plugin based on the the new implementation of item Tool in the Map plugin (cc @offtherailz)
|
1.0
|
New configuration property for Locate tool - ## Description
<!-- A few sentences describing new feature -->
<!-- screenshot, video, or link to mockup/prototype are welcome -->
Implement support for configuration of max zoom level in localConfig.json (Locate plugin). No UI needed for this.
The possibility to configure the zoom level **is not available** and it needs to be implemented.
- [ ] This improvement needs to be implemented for openlayers and leaflet
- [ ] The new configuration option must be properly documented in the plugin config documentation [here](https://mapstore.geo-solutions.it/mapstore/docs/api/plugins#plugins.Locate)
### Proposal:
We could pass the custom options via localConfig to the Locate Support component and add an implementation to override the default options.
Expected configuration of plugin in localConfig.json:
```js
// localConfig.json
[
{
"name": "Map",
"cfg": {
"tools": ["locate"],
"toolsOptions": {
"locate": {
"maxZoom": 5
}
}
}
},
{ "name": "Locate" }
]
```
**What kind of improvement you want to add?** (check one with "x", remove the others)
- [X] Minor changes to existing features
- [ ] Code style update (formatting, local variables)
- [ ] Refactoring (no functional changes, no api changes)
- [ ] Build related changes
- [ ] CI related changes
- [ ] Other... Please describe:
## Other useful information
This could be an occasion to refactor this plugin based on the the new implementation of item Tool in the Map plugin (cc @offtherailz)
|
priority
|
new configuration property for locate tool description implement support for configuration of max zoom level in localconfig json locate plugin no ui needed for this the possibility to configure the zoom level is not available and it needs to be implemented this improvement needs to be implemented for openlayers and leaflet the new configuration option must be properly documented in the plugin config documentation proposal we could pass the custom options via localconfig to the locate support component and add an implementation to override the default options expected configuration of plugin in localconfig json js localconfig json name map cfg tools toolsoptions locate maxzoom name locate what kind of improvement you want to add check one with x remove the others minor changes to existing features code style update formatting local variables refactoring no functional changes no api changes build related changes ci related changes other please describe other useful information this could be an occasion to refactor this plugin based on the the new implementation of item tool in the map plugin cc offtherailz
| 1
|
214,802
| 7,276,928,931
|
IssuesEvent
|
2018-02-21 17:48:24
|
aces/cbrain
|
https://api.github.com/repos/aces/cbrain
|
closed
|
SshDataProviders: provider_collection_index() don't properly get list of subpaths
|
Bug Priority: High Refactoring
|
If the method provider_collection_index() is given a path to a subdirectory that happens to contain an entry with the exact same file name as the userfile itself, the entry returned will not be correct, it will be missing part of its path. E.g. for a userfile `abc`, containing the tree:
```
abc/
abc/file1
abc/subdir/abc/file2
```
invoking `provider_collection_index("subdir", [:directory])` will return `[ "abc/file2"]` instead of `[ "abc/subdir/abc/file2" ]`
The reason is because of the awful logic in that method.
|
1.0
|
SshDataProviders: provider_collection_index() don't properly get list of subpaths - If the method provider_collection_index() is given a path to a subdirectory that happens to contain an entry with the exact same file name as the userfile itself, the entry returned will not be correct, it will be missing part of its path. E.g. for a userfile `abc`, containing the tree:
```
abc/
abc/file1
abc/subdir/abc/file2
```
invoking `provider_collection_index("subdir", [:directory])` will return `[ "abc/file2"]` instead of `[ "abc/subdir/abc/file2" ]`
The reason is because of the awful logic in that method.
|
priority
|
sshdataproviders provider collection index don t properly get list of subpaths if the method provider collection index is given a path to a subdirectory that happens to contain an entry with the exact same file name as the userfile itself the entry returned will not be correct it will be missing part of its path e g for a userfile abc containing the tree abc abc abc subdir abc invoking provider collection index subdir will return instead of the reason is because of the awful logic in that method
| 1
|
149,530
| 5,720,392,668
|
IssuesEvent
|
2017-04-20 01:34:37
|
tootsuite/mastodon
|
https://api.github.com/repos/tootsuite/mastodon
|
closed
|
follow and followers broken on web UI
|
bug priority - high work in progress
|
Selecting "Follow" or "Followers" from a profile on the web UI results in a "Oops. An unexpected error occurred." to appear.
* * * *
- [x ] I searched or browsed the repo’s other issues to ensure this is not a duplicate.
|
1.0
|
follow and followers broken on web UI - Selecting "Follow" or "Followers" from a profile on the web UI results in a "Oops. An unexpected error occurred." to appear.
* * * *
- [x ] I searched or browsed the repo’s other issues to ensure this is not a duplicate.
|
priority
|
follow and followers broken on web ui selecting follow or followers from a profile on the web ui results in a oops an unexpected error occurred to appear i searched or browsed the repo’s other issues to ensure this is not a duplicate
| 1
|
616,769
| 19,320,538,632
|
IssuesEvent
|
2021-12-14 04:41:09
|
naturalcrit/homebrewery
|
https://api.github.com/repos/naturalcrit/homebrewery
|
closed
|
Cmd-P/Ctrl-P hotkey of google saved brew loads hb print url
|
bug ready to add P1 - high priority
|
1. From here:
https://www.reddit.com/r/homebrewery/comments/qgh7br/homebrewery_export_issue/hk077vf/
2. I clicked thru to here:
https://homebrewery.naturalcrit.com/share/1Bi_Y3ZIDi2Wsf96kE6edbqm6vAY-XE4bBYkH_7v0-Mau
3. I hit cmd-P to print, landed here:
https://homebrewery.naturalcrit.com/print/BYkH_7v0-Mau?dialog=true
4. Which says
`Can not find brew`
5. Back to the brew, clicked the Get PDF button:
https://homebrewery.naturalcrit.com/print/1Bi_Y3ZIDi2Wsf96kE6edbqm6vAY-XE4bBYkH_7v0-Mau?dialog=true
|
1.0
|
Cmd-P/Ctrl-P hotkey of google saved brew loads hb print url - 1. From here:
https://www.reddit.com/r/homebrewery/comments/qgh7br/homebrewery_export_issue/hk077vf/
2. I clicked thru to here:
https://homebrewery.naturalcrit.com/share/1Bi_Y3ZIDi2Wsf96kE6edbqm6vAY-XE4bBYkH_7v0-Mau
3. I hit cmd-P to print, landed here:
https://homebrewery.naturalcrit.com/print/BYkH_7v0-Mau?dialog=true
4. Which says
`Can not find brew`
5. Back to the brew, clicked the Get PDF button:
https://homebrewery.naturalcrit.com/print/1Bi_Y3ZIDi2Wsf96kE6edbqm6vAY-XE4bBYkH_7v0-Mau?dialog=true
|
priority
|
cmd p ctrl p hotkey of google saved brew loads hb print url from here i clicked thru to here i hit cmd p to print landed here which says can not find brew back to the brew clicked the get pdf button
| 1
|
1,477
| 2,514,726,272
|
IssuesEvent
|
2015-01-15 14:01:23
|
52North/OpenSensorSearch
|
https://api.github.com/repos/52North/OpenSensorSearch
|
opened
|
Reconsider architecture
|
enhancement priority high
|
The current standalone architecture is not well connected to existing "products" of 52°North. Reconsiders this and evaluate a closer integration with
* the Timeseries API (the most reasonable layer, add discovery interfaces and indexed document database)
* the SOS (extend the SOS with discovery endpoints and a high speed search database)
* Esri Geoportal Server (as a catalogue that can also be made handle Sensor Web data)
|
1.0
|
Reconsider architecture - The current standalone architecture is not well connected to existing "products" of 52°North. Reconsiders this and evaluate a closer integration with
* the Timeseries API (the most reasonable layer, add discovery interfaces and indexed document database)
* the SOS (extend the SOS with discovery endpoints and a high speed search database)
* Esri Geoportal Server (as a catalogue that can also be made handle Sensor Web data)
|
priority
|
reconsider architecture the current standalone architecture is not well connected to existing products of °north reconsiders this and evaluate a closer integration with the timeseries api the most reasonable layer add discovery interfaces and indexed document database the sos extend the sos with discovery endpoints and a high speed search database esri geoportal server as a catalogue that can also be made handle sensor web data
| 1
|
144,730
| 5,544,822,846
|
IssuesEvent
|
2017-03-22 20:05:55
|
vmware/vic
|
https://api.github.com/repos/vmware/vic
|
closed
|
Add trigger for tether reload
|
component/portlayer component/tether priority/high
|
**Story**
As a VIC developer I want to be able to cause tether to reload its configuration
**Detail**
Add a toolbox message to cause a reload of the configuration and add a portlayer method for sending toolbox reload message.
This is very similar to the Signal path.
This may require completion of the tether reorg work to provide a tether reference to toolbox for calling reload.
|
1.0
|
Add trigger for tether reload - **Story**
As a VIC developer I want to be able to cause tether to reload its configuration
**Detail**
Add a toolbox message to cause a reload of the configuration and add a portlayer method for sending toolbox reload message.
This is very similar to the Signal path.
This may require completion of the tether reorg work to provide a tether reference to toolbox for calling reload.
|
priority
|
add trigger for tether reload story as a vic developer i want to be able to cause tether to reload its configuration detail add a toolbox message to cause a reload of the configuration and add a portlayer method for sending toolbox reload message this is very similar to the signal path this may require completion of the tether reorg work to provide a tether reference to toolbox for calling reload
| 1
|
370,028
| 10,924,435,090
|
IssuesEvent
|
2019-11-22 10:07:48
|
georchestra/mapstore2-georchestra
|
https://api.github.com/repos/georchestra/mapstore2-georchestra
|
closed
|
Tutorial is not centered
|
Accepted Priority: High bug
|
The tutorial session from burger menu is not centered with the map elements

|
1.0
|
Tutorial is not centered - The tutorial session from burger menu is not centered with the map elements

|
priority
|
tutorial is not centered the tutorial session from burger menu is not centered with the map elements
| 1
|
70,118
| 3,317,760,910
|
IssuesEvent
|
2015-11-06 23:33:10
|
michael-mckenna/Aviato-ios
|
https://api.github.com/repos/michael-mckenna/Aviato-ios
|
closed
|
Cancel
|
enhancement high priority
|
1) Create a ListView with each item in the list being the posted event
2) Include Up and Down Buttons for voting
3) Organize ListView by descending order according to the count of votes
4) For the time being, you do not need to have actual events in the view. Go ahead and populate it with random items.
|
1.0
|
Cancel - 1) Create a ListView with each item in the list being the posted event
2) Include Up and Down Buttons for voting
3) Organize ListView by descending order according to the count of votes
4) For the time being, you do not need to have actual events in the view. Go ahead and populate it with random items.
|
priority
|
cancel create a listview with each item in the list being the posted event include up and down buttons for voting organize listview by descending order according to the count of votes for the time being you do not need to have actual events in the view go ahead and populate it with random items
| 1
|
372,367
| 11,013,260,600
|
IssuesEvent
|
2019-12-04 20:04:56
|
alect47/Playlist
|
https://api.github.com/repos/alect47/Playlist
|
closed
|
GET /api/v1/favorites
|
High Priority
|
As a user, I can get songs and their details from my favorites list.
```
GET /api/v1/favorites
```
- [x] Returns all favorited songs currently in the database
- [x] Sad path message if no favorites exists
- [x] create router in favorites file to handle route
expected response:
```
[
{
"id": 1,
"title": "We Will Rock You",
"artistName": "Queen"
"genre": "Rock",
"rating": 88
},
{
"id": 2,
"title": "Careless Whisper",
"artistName": "George Michael"
"genre": "Pop",
"rating": 93
},
]
```
|
1.0
|
GET /api/v1/favorites - As a user, I can get songs and their details from my favorites list.
```
GET /api/v1/favorites
```
- [x] Returns all favorited songs currently in the database
- [x] Sad path message if no favorites exists
- [x] create router in favorites file to handle route
expected response:
```
[
{
"id": 1,
"title": "We Will Rock You",
"artistName": "Queen"
"genre": "Rock",
"rating": 88
},
{
"id": 2,
"title": "Careless Whisper",
"artistName": "George Michael"
"genre": "Pop",
"rating": 93
},
]
```
|
priority
|
get api favorites as a user i can get songs and their details from my favorites list get api favorites returns all favorited songs currently in the database sad path message if no favorites exists create router in favorites file to handle route expected response id title we will rock you artistname queen genre rock rating id title careless whisper artistname george michael genre pop rating
| 1
|
809,216
| 30,180,174,190
|
IssuesEvent
|
2023-07-04 08:22:01
|
fossasia/open-event-frontend
|
https://api.github.com/repos/fossasia/open-event-frontend
|
opened
|
Access Code can be used additionally
|
bug Priority: High
|
If an organizer creates an access code the code can currently be used more times than the limit of the organizer.
An organizer has the option of limiting the number of tickets a user can use an access code. For example an organizer can limit this use to one time only.

Expected:
1. If the user orders more than one ticket of the specific ticket type the user should receive an error message.
2. If the user orders the limited number of the ticket specified by the organiser and then tries to order another ticket by opening the access code link again the user should not see the ticket.
Note: Access Codes are codes that enable a user to see a hidden ticket.

|
1.0
|
Access Code can be used additionally - If an organizer creates an access code the code can currently be used more times than the limit of the organizer.
An organizer has the option of limiting the number of tickets a user can use an access code. For example an organizer can limit this use to one time only.

Expected:
1. If the user orders more than one ticket of the specific ticket type the user should receive an error message.
2. If the user orders the limited number of the ticket specified by the organiser and then tries to order another ticket by opening the access code link again the user should not see the ticket.
Note: Access Codes are codes that enable a user to see a hidden ticket.

|
priority
|
access code can be used additionally if an organizer creates an access code the code can currently be used more times than the limit of the organizer an organizer has the option of limiting the number of tickets a user can use an access code for example an organizer can limit this use to one time only expected if the user orders more than one ticket of the specific ticket type the user should receive an error message if the user orders the limited number of the ticket specified by the organiser and then tries to order another ticket by opening the access code link again the user should not see the ticket note access codes are codes that enable a user to see a hidden ticket
| 1
|
524,127
| 15,207,460,344
|
IssuesEvent
|
2021-02-17 00:15:03
|
woocommerce/woocommerce-admin
|
https://api.github.com/repos/woocommerce/woocommerce-admin
|
opened
|
OBW: Header styles broken with Navigation
|
feature: navigation priority: high
|
With Navigation turned off, the OBW's header progress bar is styled incorrectly
<img width="1069" alt="Screen Shot 2021-02-17 at 11 42 17 AM" src="https://user-images.githubusercontent.com/1922453/108138013-f4367080-7121-11eb-90da-5f06325b0727.png">
### To Reproduce
1. Turn on Navigation
2. Visit the OBW
3. See style issues in the header progress bar
|
1.0
|
OBW: Header styles broken with Navigation - With Navigation turned off, the OBW's header progress bar is styled incorrectly
<img width="1069" alt="Screen Shot 2021-02-17 at 11 42 17 AM" src="https://user-images.githubusercontent.com/1922453/108138013-f4367080-7121-11eb-90da-5f06325b0727.png">
### To Reproduce
1. Turn on Navigation
2. Visit the OBW
3. See style issues in the header progress bar
|
priority
|
obw header styles broken with navigation with navigation turned off the obw s header progress bar is styled incorrectly img width alt screen shot at am src to reproduce turn on navigation visit the obw see style issues in the header progress bar
| 1
|
668,978
| 22,606,280,141
|
IssuesEvent
|
2022-06-29 13:31:24
|
cds-snc/resources-ressources
|
https://api.github.com/repos/cds-snc/resources-ressources
|
closed
|
Update Alpha banner copy
|
High Priority | Haute priorité Front-end | Interface utilisateur Content | Contenu
|
<img width="1037" alt="Screen Shot 2022-06-26 at 11 35 51 PM" src="https://user-images.githubusercontent.com/38330843/175855524-757fea78-c5e5-4f9d-ba83-9637d599f829.png">
<img width="888" alt="Screen Shot 2022-06-26 at 11 35 30 PM" src="https://user-images.githubusercontent.com/38330843/175855540-4bc69730-19df-411e-b102-7e81bc18fdda.png">
|
1.0
|
Update Alpha banner copy - <img width="1037" alt="Screen Shot 2022-06-26 at 11 35 51 PM" src="https://user-images.githubusercontent.com/38330843/175855524-757fea78-c5e5-4f9d-ba83-9637d599f829.png">
<img width="888" alt="Screen Shot 2022-06-26 at 11 35 30 PM" src="https://user-images.githubusercontent.com/38330843/175855540-4bc69730-19df-411e-b102-7e81bc18fdda.png">
|
priority
|
update alpha banner copy img width alt screen shot at pm src img width alt screen shot at pm src
| 1
|
119,056
| 4,760,252,611
|
IssuesEvent
|
2016-10-25 02:12:35
|
CS2103AUG2016-W11-C1/main
|
https://api.github.com/repos/CS2103AUG2016-W11-C1/main
|
closed
|
Implement features of list command
|
priority.high type.enhancement
|
1. Search by st/et
2. Search by category
3. Search by reminder
|
1.0
|
Implement features of list command - 1. Search by st/et
2. Search by category
3. Search by reminder
|
priority
|
implement features of list command search by st et search by category search by reminder
| 1
|
234,354
| 7,720,073,556
|
IssuesEvent
|
2018-05-23 21:34:28
|
City-Bureau/city-scrapers
|
https://api.github.com/repos/City-Bureau/city-scrapers
|
opened
|
New Spider: Chicago Board of Ethics
|
architecture: spiders good first issue help wanted priority: high (must have)
|
It appears the BOE only has a PDF for meetings but we may also be able to, eventually, talk to them about a better system for displaying their meetings. For now, we could definitely use a spider or some other method of pulling out all the meetings on this PDF and adding them to our system: https://www.cityofchicago.org/content/dam/city/depts/ethics/general/BoardMeetings/2018/MtgDates2018.pdf
|
1.0
|
New Spider: Chicago Board of Ethics - It appears the BOE only has a PDF for meetings but we may also be able to, eventually, talk to them about a better system for displaying their meetings. For now, we could definitely use a spider or some other method of pulling out all the meetings on this PDF and adding them to our system: https://www.cityofchicago.org/content/dam/city/depts/ethics/general/BoardMeetings/2018/MtgDates2018.pdf
|
priority
|
new spider chicago board of ethics it appears the boe only has a pdf for meetings but we may also be able to eventually talk to them about a better system for displaying their meetings for now we could definitely use a spider or some other method of pulling out all the meetings on this pdf and adding them to our system
| 1
|
242,300
| 7,840,686,983
|
IssuesEvent
|
2018-06-18 17:08:48
|
RumiaGIT/RumiaBot
|
https://api.github.com/repos/RumiaGIT/RumiaBot
|
closed
|
Create whitelist for chainban permissions
|
Priority: High Type: Enchancement
|
Create a Postgres table with user ids to for whitelisting purposes.
|
1.0
|
Create whitelist for chainban permissions - Create a Postgres table with user ids to for whitelisting purposes.
|
priority
|
create whitelist for chainban permissions create a postgres table with user ids to for whitelisting purposes
| 1
|
577,201
| 17,105,166,941
|
IssuesEvent
|
2021-07-09 16:33:19
|
episphere/connectApp
|
https://api.github.com/repos/episphere/connectApp
|
closed
|
Add trademark attribution statement to footer of PWA throughout (should appear on each page)
|
High Priority MVP
|
Please add this language:
Connect for Cancer Prevention Study, the Connect for Cancer Prevention Study logo, and “Connect today. Prevent cancer tomorrow.” are trademarks of the U.S. Department of Health and Human Services (HHS).
|
1.0
|
Add trademark attribution statement to footer of PWA throughout (should appear on each page) - Please add this language:
Connect for Cancer Prevention Study, the Connect for Cancer Prevention Study logo, and “Connect today. Prevent cancer tomorrow.” are trademarks of the U.S. Department of Health and Human Services (HHS).
|
priority
|
add trademark attribution statement to footer of pwa throughout should appear on each page please add this language connect for cancer prevention study the connect for cancer prevention study logo and “connect today prevent cancer tomorrow ” are trademarks of the u s department of health and human services hhs
| 1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.