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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
151,608
| 5,824,747,908
|
IssuesEvent
|
2017-05-07 15:40:02
|
sen-moose/sen-v6
|
https://api.github.com/repos/sen-moose/sen-v6
|
closed
|
Configure LAMP Stack
|
priority: high
|
Set up the LAMP Stack on the new server. Build from source or install from repository. Configure as necessary.
|
1.0
|
Configure LAMP Stack - Set up the LAMP Stack on the new server. Build from source or install from repository. Configure as necessary.
|
priority
|
configure lamp stack set up the lamp stack on the new server build from source or install from repository configure as necessary
| 1
|
795,157
| 28,064,070,651
|
IssuesEvent
|
2023-03-29 14:20:45
|
zowe/vscode-extension-for-zowe
|
https://api.github.com/repos/zowe/vscode-extension-for-zowe
|
closed
|
Can't connect to mainframe in Theia
|
bug docs Theia On-Hold priority-medium severity-high
|
<!--
Before opening a new issue, please search our existing issues: https://github.com/zowe/vscode-extension-for-zowe/issues
-->
**Describe the bug**
In Theia 1.33.0, attempts to connect to mainframe with ZE result in this error: "Failed to establish a socket connection to proxies"
**To Reproduce**
1. Start Theia in a Docker container: `docker run -it --init --name theia -p 3000:3000 t1m0thyj/theia-alpine`
2. Copy ZE VSIX into the container: `docker cp dist/vscode-extension-for-zowe-2.6.0-SNAPSHOT.vsix theia:/home/theia/plugins`
3. Go to Theia (http://localhost:3000) and install ZE from VSIX
4. Open Zowe Explorer panel and add a new profile
5. Try to search for data sets and see the error in the screenshot below
**Expected behavior**
Should be able to search for data sets as long as the profile contains valid connection info.
**Screenshots**

**Desktop (please complete the following information):**
- OS: Theia 1.33.0
- Zowe Explorer Version: 2.6.0-SNAPSHOT
**Additional context**
This is likely caused by a bug in Theia: https://github.com/eclipse-theia/theia/issues/11911
Perhaps we can comment on that issue to provide additional info.
Also, a workaround may be to downgrade to an older version of Theia.
Interestingly, Zowe CLI successfully connects to the mainframe in the Theia terminal with these commands:
```
mkdir test && cd test && npm init -y && npm install @zowe/cli
npx zowe files ls ds SYS1.PARMLIB
```
|
1.0
|
Can't connect to mainframe in Theia - <!--
Before opening a new issue, please search our existing issues: https://github.com/zowe/vscode-extension-for-zowe/issues
-->
**Describe the bug**
In Theia 1.33.0, attempts to connect to mainframe with ZE result in this error: "Failed to establish a socket connection to proxies"
**To Reproduce**
1. Start Theia in a Docker container: `docker run -it --init --name theia -p 3000:3000 t1m0thyj/theia-alpine`
2. Copy ZE VSIX into the container: `docker cp dist/vscode-extension-for-zowe-2.6.0-SNAPSHOT.vsix theia:/home/theia/plugins`
3. Go to Theia (http://localhost:3000) and install ZE from VSIX
4. Open Zowe Explorer panel and add a new profile
5. Try to search for data sets and see the error in the screenshot below
**Expected behavior**
Should be able to search for data sets as long as the profile contains valid connection info.
**Screenshots**

**Desktop (please complete the following information):**
- OS: Theia 1.33.0
- Zowe Explorer Version: 2.6.0-SNAPSHOT
**Additional context**
This is likely caused by a bug in Theia: https://github.com/eclipse-theia/theia/issues/11911
Perhaps we can comment on that issue to provide additional info.
Also, a workaround may be to downgrade to an older version of Theia.
Interestingly, Zowe CLI successfully connects to the mainframe in the Theia terminal with these commands:
```
mkdir test && cd test && npm init -y && npm install @zowe/cli
npx zowe files ls ds SYS1.PARMLIB
```
|
priority
|
can t connect to mainframe in theia before opening a new issue please search our existing issues describe the bug in theia attempts to connect to mainframe with ze result in this error failed to establish a socket connection to proxies to reproduce start theia in a docker container docker run it init name theia p theia alpine copy ze vsix into the container docker cp dist vscode extension for zowe snapshot vsix theia home theia plugins go to theia and install ze from vsix open zowe explorer panel and add a new profile try to search for data sets and see the error in the screenshot below expected behavior should be able to search for data sets as long as the profile contains valid connection info screenshots desktop please complete the following information os theia zowe explorer version snapshot additional context this is likely caused by a bug in theia perhaps we can comment on that issue to provide additional info also a workaround may be to downgrade to an older version of theia interestingly zowe cli successfully connects to the mainframe in the theia terminal with these commands mkdir test cd test npm init y npm install zowe cli npx zowe files ls ds parmlib
| 1
|
820,349
| 30,769,770,922
|
IssuesEvent
|
2023-07-30 19:06:51
|
MCPositron/MCPositron
|
https://api.github.com/repos/MCPositron/MCPositron
|
closed
|
Make Vector propetries private
|
enhancement high priority
|
For classes `Vector3`, `Vector3f`, `Vector2`, `Vector2f`, `Position`, `Location` make all properties private.
----
Example:
Original:
```java
public class Vector {
public double x, y, x;
//...
}
```
Result:
```java
public class Vector {
private double x, y, x;
public double x() {
return x;
}
public double y() {
return y;
}
public double z() {
return z;
}
//...
}
```
|
1.0
|
Make Vector propetries private - For classes `Vector3`, `Vector3f`, `Vector2`, `Vector2f`, `Position`, `Location` make all properties private.
----
Example:
Original:
```java
public class Vector {
public double x, y, x;
//...
}
```
Result:
```java
public class Vector {
private double x, y, x;
public double x() {
return x;
}
public double y() {
return y;
}
public double z() {
return z;
}
//...
}
```
|
priority
|
make vector propetries private for classes position location make all properties private example original java public class vector public double x y x result java public class vector private double x y x public double x return x public double y return y public double z return z
| 1
|
592,450
| 17,892,694,006
|
IssuesEvent
|
2021-09-08 03:00:44
|
roq-trading/roq-issues
|
https://api.github.com/repos/roq-trading/roq-issues
|
opened
|
[roq-ftx] Validate MarketByPrice
|
bug high priority support
|
The online documentation is subtle, it says (about a checksum)
> [...] you have likely lost or mishandled a packet and should re-subscribe to receive the initial snapshot
Live testing shows that this could actually mean that the CDN has lost packets. And the reason for saying this is that the updates are disseminated over WebSocket which is using lossless TCP/IP.
The real problem here is that the checksum is very expensive, it is the CRC32 of a string concatenation of the top 100 bid/ask prices/sizes.
One can either cache all string representations or compute those on the fly. Two evils -- either bad for the caches or bad for CPU cycles. Either way, this is a computation that ideally should be done on every update.
Detecting lost updates should be followed by resubscription: #31
|
1.0
|
[roq-ftx] Validate MarketByPrice - The online documentation is subtle, it says (about a checksum)
> [...] you have likely lost or mishandled a packet and should re-subscribe to receive the initial snapshot
Live testing shows that this could actually mean that the CDN has lost packets. And the reason for saying this is that the updates are disseminated over WebSocket which is using lossless TCP/IP.
The real problem here is that the checksum is very expensive, it is the CRC32 of a string concatenation of the top 100 bid/ask prices/sizes.
One can either cache all string representations or compute those on the fly. Two evils -- either bad for the caches or bad for CPU cycles. Either way, this is a computation that ideally should be done on every update.
Detecting lost updates should be followed by resubscription: #31
|
priority
|
validate marketbyprice the online documentation is subtle it says about a checksum you have likely lost or mishandled a packet and should re subscribe to receive the initial snapshot live testing shows that this could actually mean that the cdn has lost packets and the reason for saying this is that the updates are disseminated over websocket which is using lossless tcp ip the real problem here is that the checksum is very expensive it is the of a string concatenation of the top bid ask prices sizes one can either cache all string representations or compute those on the fly two evils either bad for the caches or bad for cpu cycles either way this is a computation that ideally should be done on every update detecting lost updates should be followed by resubscription
| 1
|
379,751
| 11,234,922,962
|
IssuesEvent
|
2020-01-09 06:53:19
|
inverse-inc/packetfence
|
https://api.github.com/repos/inverse-inc/packetfence
|
closed
|
httpd.* services and pfqueue are not able to start
|
Priority: High Type: Bug
|
Due to change introduced by https://github.com/inverse-inc/packetfence/commit/27e7810305f6d82f67a7d29535431b406e0bfb44, `httpd.aaa`, `httpd.admin`, `httpd.webservices` and `pfqueue` are not able to start.
In logs:
```
Jan 9 06:02:08 pfcen7night httpd: Global symbol "$calling_station_id" requires explicit package name at /usr/local/pf/lib/pf/api.pm line 1377.\nGlobal symbol "$calling_station_id" requires explicit package name at /usr/local/pf/lib/pf/api.pm line 1379.\nGlobal symbol "$calling_station_id" requires explicit package name at /usr/local/pf/lib/pf/api.pm line 1382.\nBEGIN not safe after errors--compilation aborted at /usr/local/pf/lib/pf/api.pm line 1392.\nCompilation failed in require at /usr/local/pf/lib/pf/WebAPI.pm line 18.\nBEGIN failed--compilation aborted at /usr/local/pf/lib/pf/WebAPI.pm line 18.\nCompilation failed in require at (eval 2378) line 2.\n
```
|
1.0
|
httpd.* services and pfqueue are not able to start - Due to change introduced by https://github.com/inverse-inc/packetfence/commit/27e7810305f6d82f67a7d29535431b406e0bfb44, `httpd.aaa`, `httpd.admin`, `httpd.webservices` and `pfqueue` are not able to start.
In logs:
```
Jan 9 06:02:08 pfcen7night httpd: Global symbol "$calling_station_id" requires explicit package name at /usr/local/pf/lib/pf/api.pm line 1377.\nGlobal symbol "$calling_station_id" requires explicit package name at /usr/local/pf/lib/pf/api.pm line 1379.\nGlobal symbol "$calling_station_id" requires explicit package name at /usr/local/pf/lib/pf/api.pm line 1382.\nBEGIN not safe after errors--compilation aborted at /usr/local/pf/lib/pf/api.pm line 1392.\nCompilation failed in require at /usr/local/pf/lib/pf/WebAPI.pm line 18.\nBEGIN failed--compilation aborted at /usr/local/pf/lib/pf/WebAPI.pm line 18.\nCompilation failed in require at (eval 2378) line 2.\n
```
|
priority
|
httpd services and pfqueue are not able to start due to change introduced by httpd aaa httpd admin httpd webservices and pfqueue are not able to start in logs jan httpd global symbol calling station id requires explicit package name at usr local pf lib pf api pm line nglobal symbol calling station id requires explicit package name at usr local pf lib pf api pm line nglobal symbol calling station id requires explicit package name at usr local pf lib pf api pm line nbegin not safe after errors compilation aborted at usr local pf lib pf api pm line ncompilation failed in require at usr local pf lib pf webapi pm line nbegin failed compilation aborted at usr local pf lib pf webapi pm line ncompilation failed in require at eval line n
| 1
|
318,934
| 9,725,403,400
|
IssuesEvent
|
2019-05-30 08:36:33
|
qgis/QGIS
|
https://api.github.com/repos/qgis/QGIS
|
closed
|
Map Composer crashes QGIS when copying mixture of elements in page layout
|
Bug Crash/Data Corruption High Priority Print Layouts
|
Author Name: **Brett Carlock** (@Saijin-Naib)
Original Redmine Issue: [21932](https://issues.qgis.org/issues/21932)
Affected QGIS version: 3.6.2
Redmine category:map_composer/printing
---
Problem description:
I am attempting to copy the right-hand panel of my layout to paste it to another layout to update the second layout.
The items being copied are a mixture of layout elements, comprised of:
Text
ScaleBar
Picture
Shape
Some of the text elements are static, some reference variables.
Some of the picture elements reference QGIS symbols, others reference external images (logo/letterhead).
Some minor formatting/rotating has been applied.
STR: Highlight the right spine elements, Ctrl+C to copy.
Result: Instant Crash.
Expected Result: Elements are copied for usage.
---
- [ANSI_D_Cleaned.qpt](https://issues.qgis.org/attachments/download/14847/ANSI_D_Cleaned.qpt) (Brett Carlock)
|
1.0
|
Map Composer crashes QGIS when copying mixture of elements in page layout - Author Name: **Brett Carlock** (@Saijin-Naib)
Original Redmine Issue: [21932](https://issues.qgis.org/issues/21932)
Affected QGIS version: 3.6.2
Redmine category:map_composer/printing
---
Problem description:
I am attempting to copy the right-hand panel of my layout to paste it to another layout to update the second layout.
The items being copied are a mixture of layout elements, comprised of:
Text
ScaleBar
Picture
Shape
Some of the text elements are static, some reference variables.
Some of the picture elements reference QGIS symbols, others reference external images (logo/letterhead).
Some minor formatting/rotating has been applied.
STR: Highlight the right spine elements, Ctrl+C to copy.
Result: Instant Crash.
Expected Result: Elements are copied for usage.
---
- [ANSI_D_Cleaned.qpt](https://issues.qgis.org/attachments/download/14847/ANSI_D_Cleaned.qpt) (Brett Carlock)
|
priority
|
map composer crashes qgis when copying mixture of elements in page layout author name brett carlock saijin naib original redmine issue affected qgis version redmine category map composer printing problem description i am attempting to copy the right hand panel of my layout to paste it to another layout to update the second layout the items being copied are a mixture of layout elements comprised of text scalebar picture shape some of the text elements are static some reference variables some of the picture elements reference qgis symbols others reference external images logo letterhead some minor formatting rotating has been applied str highlight the right spine elements ctrl c to copy result instant crash expected result elements are copied for usage brett carlock
| 1
|
257,220
| 8,134,559,580
|
IssuesEvent
|
2018-08-19 17:11:57
|
shobrook/BitVision
|
https://api.github.com/repos/shobrook/BitVision
|
closed
|
Test an LSTM network
|
high priority model
|
Price prediction is fundamentally a sequence learning task, which LSTMs are designed for. LSTMs have what's called memory cells, which can store information that lies dozens of time-steps in the past. This is important because, in the market, cause and effect can be quite far apart.
I don't think Scikit-Learn supports LSTMs, so we'll have to use Keras. I'm reading [Understanding LSTMs](http://colah.github.io/posts/2015-08-Understanding-LSTMs/) and [Keras Guide to Sequential Learning](https://stackoverflow.com/questions/38714959/understanding-keras-lstms?rq=1) to learn about how LSTMs work and how to implement them.
|
1.0
|
Test an LSTM network - Price prediction is fundamentally a sequence learning task, which LSTMs are designed for. LSTMs have what's called memory cells, which can store information that lies dozens of time-steps in the past. This is important because, in the market, cause and effect can be quite far apart.
I don't think Scikit-Learn supports LSTMs, so we'll have to use Keras. I'm reading [Understanding LSTMs](http://colah.github.io/posts/2015-08-Understanding-LSTMs/) and [Keras Guide to Sequential Learning](https://stackoverflow.com/questions/38714959/understanding-keras-lstms?rq=1) to learn about how LSTMs work and how to implement them.
|
priority
|
test an lstm network price prediction is fundamentally a sequence learning task which lstms are designed for lstms have what s called memory cells which can store information that lies dozens of time steps in the past this is important because in the market cause and effect can be quite far apart i don t think scikit learn supports lstms so we ll have to use keras i m reading and to learn about how lstms work and how to implement them
| 1
|
663,229
| 22,164,933,179
|
IssuesEvent
|
2022-06-05 03:54:48
|
roq-trading/roq-issues
|
https://api.github.com/repos/roq-trading/roq-issues
|
closed
|
[roq-fix-bridge] Use MbP decimals
|
enhancement high priority support
|
Third-party system having issues with precision.
This is an experiment to see if using the correct number of decimals can fix it.
|
1.0
|
[roq-fix-bridge] Use MbP decimals - Third-party system having issues with precision.
This is an experiment to see if using the correct number of decimals can fix it.
|
priority
|
use mbp decimals third party system having issues with precision this is an experiment to see if using the correct number of decimals can fix it
| 1
|
556,319
| 16,481,784,927
|
IssuesEvent
|
2021-05-24 12:43:52
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
onedrive.live.com - desktop site instead of mobile site
|
browser-firefox-ios bugbug-probability-high os-ios priority-critical
|
<!-- @browser: Firefox iOS 33.1 -->
<!-- @ua_header: Mozilla/5.0 (iPhone; CPU OS 14_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/33.1 Mobile/15E148 Safari/605.1.15 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/74779 -->
**URL**: https://onedrive.live.com/view.aspx?resid=C8EC4CF0F2C38938!8665
**Browser / Version**: Firefox iOS 33.1
**Operating System**: iOS 14.5.1
**Tested Another Browser**: Yes Edge
**Problem type**: Desktop site instead of mobile site
**Description**: Desktop site instead of mobile site
**Steps to Reproduce**:
Is not logging in I tried to check my messages account and I can login
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/5/457009fe-d815-4be3-ac0f-ab1d945621ae.jpg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
onedrive.live.com - desktop site instead of mobile site - <!-- @browser: Firefox iOS 33.1 -->
<!-- @ua_header: Mozilla/5.0 (iPhone; CPU OS 14_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/33.1 Mobile/15E148 Safari/605.1.15 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/74779 -->
**URL**: https://onedrive.live.com/view.aspx?resid=C8EC4CF0F2C38938!8665
**Browser / Version**: Firefox iOS 33.1
**Operating System**: iOS 14.5.1
**Tested Another Browser**: Yes Edge
**Problem type**: Desktop site instead of mobile site
**Description**: Desktop site instead of mobile site
**Steps to Reproduce**:
Is not logging in I tried to check my messages account and I can login
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/5/457009fe-d815-4be3-ac0f-ab1d945621ae.jpg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
priority
|
onedrive live com desktop site instead of mobile site url browser version firefox ios operating system ios tested another browser yes edge problem type desktop site instead of mobile site description desktop site instead of mobile site steps to reproduce is not logging in i tried to check my messages account and i can login view the screenshot img alt screenshot src browser configuration none from with ❤️
| 1
|
744,219
| 25,933,634,144
|
IssuesEvent
|
2022-12-16 12:13:52
|
opencrvs/opencrvs-core
|
https://api.github.com/repos/opencrvs/opencrvs-core
|
closed
|
Update form config to include Conditionally fields shown
|
Priority: high 🧬 Improvement 🐝 Community
|
### Description
In Nigeria, we have added a field "State of origin" for both Mother's and Father's details. This information should only be collected when the person's nationality (the field above) is set to be Nigeria. Otherwise the field should be hidden.
<img width="314" alt="image" src="https://user-images.githubusercontent.com/1206987/186830611-13cdf828-3e3f-4c2c-8643-7ce26bea087c.png">
**Scope**
For this, I suggest we add a new configuration option for fields added through form config.
...
### Acceptance criteria
a) In the health facility question if "Other" is selected THEN show a dropdown select with more options for places of birth (like a car, plane, church etc)
b) Given when you select Nigeria as nationality, THEN you can select a dropdown field showing the state of origin questions
### Design
https://www.figma.com/file/O6PevbBv0lApmXWYotR8sf/OpenCRVS-Design-Specifications-v2?node-id=7293%3A7380
### Design Notes
- adds toggle to show Conditional fields
- adds headers with icon to each section. Use the new <Text> component if possible to make this easy
### Dev tasks
**Backend:**
- [x] Include a conditional array in the config database that contains an object containing the target fieldId, and regexp. - 1
- [x] Ensure that the conditional field "question" handlers in the config microservice and gateway mutations can submit and retrieve the question with the conditional. - 1
**Frontend:**
- [x] Ensure that the conditional array is returned correctly in the client in the [questionsTransformer](https://github.com/opencrvs/opencrvs-core/blob/b9fe6fdf048ada0800f770dd04fb44e859e99f34/packages/client/src/forms/questionConfig/transformers.ts#L130) function - 1
- [x] Ensure that the conditional array can be parsed by the client and applied to the custom field in the [createCustomField](https://github.com/opencrvs/opencrvs-core/blob/b9fe6fdf048ada0800f770dd04fb44e859e99f34/packages/client/src/forms/configuration/customUtils.ts#L33) function. - 1
A conditional looks like this:
```
conditionals: [
{
action: 'hide',
expression:
'draftData?.deathEvent?.causeOfDeathEstablished !== "true"'
}
],
```
We need to create a reusable function probably somewhere [here](https://github.com/opencrvs/opencrvs-core/blob/b9fe6fdf048ada0800f770dd04fb44e859e99f34/packages/client/src/forms/utils.ts#L521) for all custom field conditionals which creates the expressions string using the event, the final portion of the fieldId and parses the regexp appropriately.
- [x] Ensure that in the [Canvas > FormConfigElementCard](https://github.com/opencrvs/opencrvs-core/blob/b9fe6fdf048ada0800f770dd04fb44e859e99f34/packages/client/src/components/formConfig/Canvas.tsx#L133), if a conditional exists on the custom question, then add the icon and the fieldId to the card as we see in the Figma design - 1

- [x] In CustomFieldTools.tsx, add the toggle to display the conditional parameters form. When selected generate the select and the regexp required input. - 1
- [x] In order to populate the conditionals fieldId select, we need to loop through all groups and sections in the event form and getFieldId using the sections and groups identifiers. Populate the select with options where the value and label is equal to the fieldId (only default fields) - 1
- [x] Ensure that the initial state, conditional form validation and submission saves the correct question configuration into the draft from CustomFieldTools - 1
|
1.0
|
Update form config to include Conditionally fields shown - ### Description
In Nigeria, we have added a field "State of origin" for both Mother's and Father's details. This information should only be collected when the person's nationality (the field above) is set to be Nigeria. Otherwise the field should be hidden.
<img width="314" alt="image" src="https://user-images.githubusercontent.com/1206987/186830611-13cdf828-3e3f-4c2c-8643-7ce26bea087c.png">
**Scope**
For this, I suggest we add a new configuration option for fields added through form config.
...
### Acceptance criteria
a) In the health facility question if "Other" is selected THEN show a dropdown select with more options for places of birth (like a car, plane, church etc)
b) Given when you select Nigeria as nationality, THEN you can select a dropdown field showing the state of origin questions
### Design
https://www.figma.com/file/O6PevbBv0lApmXWYotR8sf/OpenCRVS-Design-Specifications-v2?node-id=7293%3A7380
### Design Notes
- adds toggle to show Conditional fields
- adds headers with icon to each section. Use the new <Text> component if possible to make this easy
### Dev tasks
**Backend:**
- [x] Include a conditional array in the config database that contains an object containing the target fieldId, and regexp. - 1
- [x] Ensure that the conditional field "question" handlers in the config microservice and gateway mutations can submit and retrieve the question with the conditional. - 1
**Frontend:**
- [x] Ensure that the conditional array is returned correctly in the client in the [questionsTransformer](https://github.com/opencrvs/opencrvs-core/blob/b9fe6fdf048ada0800f770dd04fb44e859e99f34/packages/client/src/forms/questionConfig/transformers.ts#L130) function - 1
- [x] Ensure that the conditional array can be parsed by the client and applied to the custom field in the [createCustomField](https://github.com/opencrvs/opencrvs-core/blob/b9fe6fdf048ada0800f770dd04fb44e859e99f34/packages/client/src/forms/configuration/customUtils.ts#L33) function. - 1
A conditional looks like this:
```
conditionals: [
{
action: 'hide',
expression:
'draftData?.deathEvent?.causeOfDeathEstablished !== "true"'
}
],
```
We need to create a reusable function probably somewhere [here](https://github.com/opencrvs/opencrvs-core/blob/b9fe6fdf048ada0800f770dd04fb44e859e99f34/packages/client/src/forms/utils.ts#L521) for all custom field conditionals which creates the expressions string using the event, the final portion of the fieldId and parses the regexp appropriately.
- [x] Ensure that in the [Canvas > FormConfigElementCard](https://github.com/opencrvs/opencrvs-core/blob/b9fe6fdf048ada0800f770dd04fb44e859e99f34/packages/client/src/components/formConfig/Canvas.tsx#L133), if a conditional exists on the custom question, then add the icon and the fieldId to the card as we see in the Figma design - 1

- [x] In CustomFieldTools.tsx, add the toggle to display the conditional parameters form. When selected generate the select and the regexp required input. - 1
- [x] In order to populate the conditionals fieldId select, we need to loop through all groups and sections in the event form and getFieldId using the sections and groups identifiers. Populate the select with options where the value and label is equal to the fieldId (only default fields) - 1
- [x] Ensure that the initial state, conditional form validation and submission saves the correct question configuration into the draft from CustomFieldTools - 1
|
priority
|
update form config to include conditionally fields shown description in nigeria we have added a field state of origin for both mother s and father s details this information should only be collected when the person s nationality the field above is set to be nigeria otherwise the field should be hidden img width alt image src scope for this i suggest we add a new configuration option for fields added through form config acceptance criteria a in the health facility question if other is selected then show a dropdown select with more options for places of birth like a car plane church etc b given when you select nigeria as nationality then you can select a dropdown field showing the state of origin questions design design notes adds toggle to show conditional fields adds headers with icon to each section use the new component if possible to make this easy dev tasks backend include a conditional array in the config database that contains an object containing the target fieldid and regexp ensure that the conditional field question handlers in the config microservice and gateway mutations can submit and retrieve the question with the conditional frontend ensure that the conditional array is returned correctly in the client in the function ensure that the conditional array can be parsed by the client and applied to the custom field in the function a conditional looks like this conditionals action hide expression draftdata deathevent causeofdeathestablished true we need to create a reusable function probably somewhere for all custom field conditionals which creates the expressions string using the event the final portion of the fieldid and parses the regexp appropriately ensure that in the if a conditional exists on the custom question then add the icon and the fieldid to the card as we see in the figma design in customfieldtools tsx add the toggle to display the conditional parameters form when selected generate the select and the regexp required input in order to populate the conditionals fieldid select we need to loop through all groups and sections in the event form and getfieldid using the sections and groups identifiers populate the select with options where the value and label is equal to the fieldid only default fields ensure that the initial state conditional form validation and submission saves the correct question configuration into the draft from customfieldtools
| 1
|
694,574
| 23,819,085,821
|
IssuesEvent
|
2022-09-05 09:32:45
|
rolling-scopes/rsschool-app
|
https://api.github.com/repos/rolling-scopes/rsschool-app
|
closed
|
Re-check access
|
priority:high
|
@valerydluski please check student access to internal pages, generally accessible only to mentors
Links here:
https://github.com/rolling-scopes-school/mentoring/blob/master/JS-FE-2021Q3/first-interview.md
|
1.0
|
Re-check access - @valerydluski please check student access to internal pages, generally accessible only to mentors
Links here:
https://github.com/rolling-scopes-school/mentoring/blob/master/JS-FE-2021Q3/first-interview.md
|
priority
|
re check access valerydluski please check student access to internal pages generally accessible only to mentors links here
| 1
|
87,886
| 3,768,556,468
|
IssuesEvent
|
2016-03-16 05:50:12
|
Heteroskedastic/Dr-referral-tracker
|
https://api.github.com/repos/Heteroskedastic/Dr-referral-tracker
|
closed
|
Entering an invalid visit, returns a screen without any data in the reports.
|
bug High Priority
|
<img width="1518" alt="screenshot_100" src="https://cloud.githubusercontent.com/assets/232564/13731981/6bed4310-e93c-11e5-8eb3-b30db57c1779.png">
|
1.0
|
Entering an invalid visit, returns a screen without any data in the reports. - <img width="1518" alt="screenshot_100" src="https://cloud.githubusercontent.com/assets/232564/13731981/6bed4310-e93c-11e5-8eb3-b30db57c1779.png">
|
priority
|
entering an invalid visit returns a screen without any data in the reports img width alt screenshot src
| 1
|
240,827
| 7,806,349,565
|
IssuesEvent
|
2018-06-11 13:50:34
|
poanetwork/mana
|
https://api.github.com/repos/poanetwork/mana
|
opened
|
wrong callgas in call operation
|
evm priority: high
|
currently, we use the first stack value as a callgas but the real callgas is calculated as:

it is used as available gas in call execution environment
|
1.0
|
wrong callgas in call operation - currently, we use the first stack value as a callgas but the real callgas is calculated as:

it is used as available gas in call execution environment
|
priority
|
wrong callgas in call operation currently we use the first stack value as a callgas but the real callgas is calculated as it is used as available gas in call execution environment
| 1
|
521,376
| 15,108,690,656
|
IssuesEvent
|
2021-02-08 16:55:48
|
ChainSafe/gossamer
|
https://api.github.com/repos/ChainSafe/gossamer
|
opened
|
syncing: create queue of block responses to handle
|
Priority: 2 - High Status: Needs Triage network
|
## Task summary
<!-- A clear and concise description of what the task is. -->
- sub-tasks of #1134
- currently, block requests are sent after the previous block response is handled, this creates a delay in between handling one block response to the next
- instead, since the node already knows from the start what block it needs to sync to, it should send out many block requests at the start, and queue the block responses for handling so that there is no delay between block responses
<!-- Thank you 💪 -->
|
1.0
|
syncing: create queue of block responses to handle - ## Task summary
<!-- A clear and concise description of what the task is. -->
- sub-tasks of #1134
- currently, block requests are sent after the previous block response is handled, this creates a delay in between handling one block response to the next
- instead, since the node already knows from the start what block it needs to sync to, it should send out many block requests at the start, and queue the block responses for handling so that there is no delay between block responses
<!-- Thank you 💪 -->
|
priority
|
syncing create queue of block responses to handle task summary sub tasks of currently block requests are sent after the previous block response is handled this creates a delay in between handling one block response to the next instead since the node already knows from the start what block it needs to sync to it should send out many block requests at the start and queue the block responses for handling so that there is no delay between block responses
| 1
|
536,427
| 15,708,835,032
|
IssuesEvent
|
2021-03-26 21:15:02
|
datajoint/datajoint-labbook
|
https://api.github.com/repos/datajoint/datajoint-labbook
|
closed
|
Cross pollination when switching from a filter view to another table
|
bug high-priority
|
When restricting the view with filter cards and switching to another table that does not contain the filter it incorrectly attempts to restrict. Here is a screenshot with an example.

|
1.0
|
Cross pollination when switching from a filter view to another table - When restricting the view with filter cards and switching to another table that does not contain the filter it incorrectly attempts to restrict. Here is a screenshot with an example.

|
priority
|
cross pollination when switching from a filter view to another table when restricting the view with filter cards and switching to another table that does not contain the filter it incorrectly attempts to restrict here is a screenshot with an example
| 1
|
372,349
| 11,013,012,301
|
IssuesEvent
|
2019-12-04 19:32:05
|
Energy-Innovation/eps-us
|
https://api.github.com/repos/Energy-Innovation/eps-us
|
closed
|
Use new EPA source for BAU process emissions, abatement potential, and costs
|
high priority
|
Update to [this new EPA source](https://www.epa.gov/global-mitigation-non-co2-greenhouse-gases/global-non-co2-greenhouse-gas-emission-projections) for cost curves for non-CO2 GHGs (process emissions). Consider increasing the number of industry sector policy levers, based on reasonable groupings of available technology options in the EPA source. Decide on the best structural approach to get the data into the model (new cost tiers, XY pairs with cost and abatement potential, etc.). Use the new EPA source data for both indst/BPEiC and indst/PERAC, produced by the same Excel sheet. Ensure that both BPEiC and PERAC can be toggled to different countries by adjusting a single drop-down menu in Excel.
Include a methane leakage adjustment factor to correct EPA data that undercounts methane leakage (assuming the undercount affects this new EPA report), and determine if EPA undercounting is U.S.-specific or affects all countries in the new report. (See Megan's email received 10/1/2019 and Jeff's reply for more on this.)
|
1.0
|
Use new EPA source for BAU process emissions, abatement potential, and costs - Update to [this new EPA source](https://www.epa.gov/global-mitigation-non-co2-greenhouse-gases/global-non-co2-greenhouse-gas-emission-projections) for cost curves for non-CO2 GHGs (process emissions). Consider increasing the number of industry sector policy levers, based on reasonable groupings of available technology options in the EPA source. Decide on the best structural approach to get the data into the model (new cost tiers, XY pairs with cost and abatement potential, etc.). Use the new EPA source data for both indst/BPEiC and indst/PERAC, produced by the same Excel sheet. Ensure that both BPEiC and PERAC can be toggled to different countries by adjusting a single drop-down menu in Excel.
Include a methane leakage adjustment factor to correct EPA data that undercounts methane leakage (assuming the undercount affects this new EPA report), and determine if EPA undercounting is U.S.-specific or affects all countries in the new report. (See Megan's email received 10/1/2019 and Jeff's reply for more on this.)
|
priority
|
use new epa source for bau process emissions abatement potential and costs update to for cost curves for non ghgs process emissions consider increasing the number of industry sector policy levers based on reasonable groupings of available technology options in the epa source decide on the best structural approach to get the data into the model new cost tiers xy pairs with cost and abatement potential etc use the new epa source data for both indst bpeic and indst perac produced by the same excel sheet ensure that both bpeic and perac can be toggled to different countries by adjusting a single drop down menu in excel include a methane leakage adjustment factor to correct epa data that undercounts methane leakage assuming the undercount affects this new epa report and determine if epa undercounting is u s specific or affects all countries in the new report see megan s email received and jeff s reply for more on this
| 1
|
239,815
| 7,800,067,373
|
IssuesEvent
|
2018-06-09 04:17:35
|
tine20/Tine-2.0-Open-Source-Groupware-and-CRM
|
https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM
|
closed
|
0006914:
timeaccounts should be sorted by number/title in selection combo
|
Bug Mantis Timetracker high priority
|
**Reported by pschuele on 9 Aug 2012 15:07**
**Version:** Milan (2012.03.5)
timeaccounts should be sorted by number/title in selection combo
- in timesheet edit dialog
|
1.0
|
0006914:
timeaccounts should be sorted by number/title in selection combo - **Reported by pschuele on 9 Aug 2012 15:07**
**Version:** Milan (2012.03.5)
timeaccounts should be sorted by number/title in selection combo
- in timesheet edit dialog
|
priority
|
timeaccounts should be sorted by number title in selection combo reported by pschuele on aug version milan timeaccounts should be sorted by number title in selection combo in timesheet edit dialog
| 1
|
159,039
| 6,039,638,175
|
IssuesEvent
|
2017-06-10 05:34:39
|
fossasia/open-event-webapp
|
https://api.github.com/repos/fossasia/open-event-webapp
|
closed
|
Show complete schedule without filters (for all days) on start page of schedule/tracks/rooms page
|
bug Priority: High Priority: Urgent
|
Opening the app now shows only the schedule for the first days. There is a filter set, that results in the display of the first day only. Only show days for one day once a filter has been set - meaning when the user clicked on a specific day.
Ensure the same implementation on the pages
* Schedule
* Rooms
* Tracks
Compare: https://fossasia.github.io/open-event-webapp/schedule.html
|
2.0
|
Show complete schedule without filters (for all days) on start page of schedule/tracks/rooms page - Opening the app now shows only the schedule for the first days. There is a filter set, that results in the display of the first day only. Only show days for one day once a filter has been set - meaning when the user clicked on a specific day.
Ensure the same implementation on the pages
* Schedule
* Rooms
* Tracks
Compare: https://fossasia.github.io/open-event-webapp/schedule.html
|
priority
|
show complete schedule without filters for all days on start page of schedule tracks rooms page opening the app now shows only the schedule for the first days there is a filter set that results in the display of the first day only only show days for one day once a filter has been set meaning when the user clicked on a specific day ensure the same implementation on the pages schedule rooms tracks compare
| 1
|
196,111
| 6,924,739,260
|
IssuesEvent
|
2017-11-30 13:52:01
|
deptofdefense/move.mil
|
https://api.github.com/repos/deptofdefense/move.mil
|
closed
|
On homepage, change the "Sign in to DPS Banner" from Blue to #4AA564 (Green)
|
for launch! high priority in-progress
|
On homepage, change the "Sign in to DPS Banner" from Blue to #4AA564 (Green). This change should be made for all responsive views as well.
This was responding to feedback in user testing where people couldn't find the link.
The subpages can stay the same.
|
1.0
|
On homepage, change the "Sign in to DPS Banner" from Blue to #4AA564 (Green) - On homepage, change the "Sign in to DPS Banner" from Blue to #4AA564 (Green). This change should be made for all responsive views as well.
This was responding to feedback in user testing where people couldn't find the link.
The subpages can stay the same.
|
priority
|
on homepage change the sign in to dps banner from blue to green on homepage change the sign in to dps banner from blue to green this change should be made for all responsive views as well this was responding to feedback in user testing where people couldn t find the link the subpages can stay the same
| 1
|
210,323
| 7,188,276,233
|
IssuesEvent
|
2018-02-02 09:33:08
|
wso2/testgrid
|
https://api.github.com/repos/wso2/testgrid
|
closed
|
GenerateReportCommand does not set the LogFilePathLookup#setLogFilePath
|
Priority/High Severity/Major Type/Bug
|
**Description:**
LogFilePathLookup#setLogFilePath has only been done in GenerateTestPlan and RunTestPlan commands. We should do it for all commands.
Best place for doing this is the Main class. In there, we can set the default path. If required, each command may change the default value.
**Affected Product Version:**
0.9.0-m9
**OS, DB, other environment details and versions:**
N/A
**Steps to reproduce:**
N/A
**Related Issues:**
N/A
|
1.0
|
GenerateReportCommand does not set the LogFilePathLookup#setLogFilePath - **Description:**
LogFilePathLookup#setLogFilePath has only been done in GenerateTestPlan and RunTestPlan commands. We should do it for all commands.
Best place for doing this is the Main class. In there, we can set the default path. If required, each command may change the default value.
**Affected Product Version:**
0.9.0-m9
**OS, DB, other environment details and versions:**
N/A
**Steps to reproduce:**
N/A
**Related Issues:**
N/A
|
priority
|
generatereportcommand does not set the logfilepathlookup setlogfilepath description logfilepathlookup setlogfilepath has only been done in generatetestplan and runtestplan commands we should do it for all commands best place for doing this is the main class in there we can set the default path if required each command may change the default value affected product version os db other environment details and versions n a steps to reproduce n a related issues n a
| 1
|
192,631
| 6,875,267,027
|
IssuesEvent
|
2017-11-19 11:55:36
|
hpi-swt2/sport-portal
|
https://api.github.com/repos/hpi-swt2/sport-portal
|
opened
|
Join Event as single player
|
priority high team issue number 5 user story
|
**AS AN** logged in user
**I WANT TO** be able to join non-team events
**SO THAT** I can participate in events
## ACCEPTANCE CRITERIA
- [ ] On the _all events_ page, if an event is not a team sport there should be a button "join"
- [ ] On the detailed page of an event there should be a "join" button if the event is not a team sport
- After the join buttons has been clicked
- [ ] The button should change to "leave event"
- [ ] The user should have joined the event
- [ ] The event should be labeled with "Participating"
- [ ] Every time the user opens the _all events_ page all events he has joined should be labeled with "Participating"
|
1.0
|
Join Event as single player - **AS AN** logged in user
**I WANT TO** be able to join non-team events
**SO THAT** I can participate in events
## ACCEPTANCE CRITERIA
- [ ] On the _all events_ page, if an event is not a team sport there should be a button "join"
- [ ] On the detailed page of an event there should be a "join" button if the event is not a team sport
- After the join buttons has been clicked
- [ ] The button should change to "leave event"
- [ ] The user should have joined the event
- [ ] The event should be labeled with "Participating"
- [ ] Every time the user opens the _all events_ page all events he has joined should be labeled with "Participating"
|
priority
|
join event as single player as an logged in user i want to be able to join non team events so that i can participate in events acceptance criteria on the all events page if an event is not a team sport there should be a button join on the detailed page of an event there should be a join button if the event is not a team sport after the join buttons has been clicked the button should change to leave event the user should have joined the event the event should be labeled with participating every time the user opens the all events page all events he has joined should be labeled with participating
| 1
|
756,745
| 26,484,041,160
|
IssuesEvent
|
2023-01-17 16:37:21
|
keyko-io/filecoin-verifier-frontend
|
https://api.github.com/repos/keyko-io/filecoin-verifier-frontend
|
closed
|
issues in front-end should be loaded dynamically
|
priority:high refactoring
|
# Description
One of the reason of this bug #622 is that we are calling too many times the lotus node
One solution can be:
1. load all issues from github at the page load (this is not taking too much) and save in a variable
2. when the user is loading new pages in the dashboard, call the lotus node to retrieve information about each client (transaction id and so on)
all the info about those issues should be then saved in a variable so they don't get loaded more than once
|
1.0
|
issues in front-end should be loaded dynamically - # Description
One of the reason of this bug #622 is that we are calling too many times the lotus node
One solution can be:
1. load all issues from github at the page load (this is not taking too much) and save in a variable
2. when the user is loading new pages in the dashboard, call the lotus node to retrieve information about each client (transaction id and so on)
all the info about those issues should be then saved in a variable so they don't get loaded more than once
|
priority
|
issues in front end should be loaded dynamically description one of the reason of this bug is that we are calling too many times the lotus node one solution can be load all issues from github at the page load this is not taking too much and save in a variable when the user is loading new pages in the dashboard call the lotus node to retrieve information about each client transaction id and so on all the info about those issues should be then saved in a variable so they don t get loaded more than once
| 1
|
337,961
| 10,222,019,388
|
IssuesEvent
|
2019-08-16 04:40:33
|
magda-io/magda
|
https://api.github.com/repos/magda-io/magda
|
opened
|
Bounding box generated by add dataset flow can't be indexed
|
bug priority: high
|
**Describe the bug**
If you create a new dataset with a bounding box roughly around Australia (e.g. use an ASIC Business Names CSV), it will generate a bounding box that can't be indexed by the indexer because it isn't using the right coordinates:
```
[ERROR] [08/16/2019 04:32:51.447] [indexer-akka.actor.default-dispatcher-32] [akka.actor.ActorSystemImpl(indexer)] Failed to convert bounding box to spatial data for dataset magda-ds-1f9ca335-c976-4fa0-84e8-a84e0d4b6a79: Invalid latitude (y) range: 114.594962. Should be within -90 to +90
```
**To Reproduce**
1. Go to `/dataset/add`
2. Create a new dataset, selecting "Australia" as the spatial extent
3. `kubectl logs -f` the indexer and wait
4. You'll see that the dataset can't be indexed.
**Expected behavior**
- The add dataset flow should generate valid coordinates
- Better yet, the indexer should be able to understand these coordinates, given that we see them a lot in other datasets.
|
1.0
|
Bounding box generated by add dataset flow can't be indexed - **Describe the bug**
If you create a new dataset with a bounding box roughly around Australia (e.g. use an ASIC Business Names CSV), it will generate a bounding box that can't be indexed by the indexer because it isn't using the right coordinates:
```
[ERROR] [08/16/2019 04:32:51.447] [indexer-akka.actor.default-dispatcher-32] [akka.actor.ActorSystemImpl(indexer)] Failed to convert bounding box to spatial data for dataset magda-ds-1f9ca335-c976-4fa0-84e8-a84e0d4b6a79: Invalid latitude (y) range: 114.594962. Should be within -90 to +90
```
**To Reproduce**
1. Go to `/dataset/add`
2. Create a new dataset, selecting "Australia" as the spatial extent
3. `kubectl logs -f` the indexer and wait
4. You'll see that the dataset can't be indexed.
**Expected behavior**
- The add dataset flow should generate valid coordinates
- Better yet, the indexer should be able to understand these coordinates, given that we see them a lot in other datasets.
|
priority
|
bounding box generated by add dataset flow can t be indexed describe the bug if you create a new dataset with a bounding box roughly around australia e g use an asic business names csv it will generate a bounding box that can t be indexed by the indexer because it isn t using the right coordinates failed to convert bounding box to spatial data for dataset magda ds invalid latitude y range should be within to to reproduce go to dataset add create a new dataset selecting australia as the spatial extent kubectl logs f the indexer and wait you ll see that the dataset can t be indexed expected behavior the add dataset flow should generate valid coordinates better yet the indexer should be able to understand these coordinates given that we see them a lot in other datasets
| 1
|
107,387
| 4,307,533,715
|
IssuesEvent
|
2016-07-21 09:22:05
|
modxcms/revolution
|
https://api.github.com/repos/modxcms/revolution
|
closed
|
Missing smarty template in update to 2.5.0
|
area-core bug priority-2-high
|
The template manager/templates/default/element/tv/renders/input/textareamini.tpl is missing from 2.5.0 causing any site using a TV "Tiny Text" type to throw a 500 error in the manager.
I got around it by copying the textareamini.tplp from a backup into the appropriate location.
I did a search on the server looking for other site with this file ~ about 30 sites all recently updated to 2.5.0 none had the file.
|
1.0
|
Missing smarty template in update to 2.5.0 - The template manager/templates/default/element/tv/renders/input/textareamini.tpl is missing from 2.5.0 causing any site using a TV "Tiny Text" type to throw a 500 error in the manager.
I got around it by copying the textareamini.tplp from a backup into the appropriate location.
I did a search on the server looking for other site with this file ~ about 30 sites all recently updated to 2.5.0 none had the file.
|
priority
|
missing smarty template in update to the template manager templates default element tv renders input textareamini tpl is missing from causing any site using a tv tiny text type to throw a error in the manager i got around it by copying the textareamini tplp from a backup into the appropriate location i did a search on the server looking for other site with this file about sites all recently updated to none had the file
| 1
|
292,947
| 8,971,102,338
|
IssuesEvent
|
2019-01-29 15:12:01
|
xlayers/xlayers
|
https://api.github.com/repos/xlayers/xlayers
|
closed
|
add documentation to editor/viewer/lib
|
Priority: High effort2: medium (days) type: docs
|
The core viewer library and the parsers need developer documentation.
- [x] Let's add create a wiki and make sure the API is well documented.
- [x] add a detailed architecture diagram of the core parsing process
|
1.0
|
add documentation to editor/viewer/lib - The core viewer library and the parsers need developer documentation.
- [x] Let's add create a wiki and make sure the API is well documented.
- [x] add a detailed architecture diagram of the core parsing process
|
priority
|
add documentation to editor viewer lib the core viewer library and the parsers need developer documentation let s add create a wiki and make sure the api is well documented add a detailed architecture diagram of the core parsing process
| 1
|
804,411
| 29,486,446,278
|
IssuesEvent
|
2023-06-02 10:05:24
|
Luxembourg-Open-Source-Club/BICS-BOT
|
https://api.github.com/repos/Luxembourg-Open-Source-Club/BICS-BOT
|
closed
|
All commands are only working on the main Discord Server (BICS)
|
bug High Priority
|
**Describe the bug**
If the bot is used in any Discord server other than the Official BICS discord server, the commands are not visible.
**To Reproduce**
Steps to reproduce the behavior:
1. Invite a test bot to a BICS Discord template server
2. Try using any command of the bot
3. No commands from the bot is available
**Expected behavior**
A list of the available commands should appear and also work.
**Additional context**
The problem lies in each command parameters. Each command is restricted to the specific BICS Discord server ID, the reason why we cannot see the commands on any other server. The solution is to remove this restriction
|
1.0
|
All commands are only working on the main Discord Server (BICS) - **Describe the bug**
If the bot is used in any Discord server other than the Official BICS discord server, the commands are not visible.
**To Reproduce**
Steps to reproduce the behavior:
1. Invite a test bot to a BICS Discord template server
2. Try using any command of the bot
3. No commands from the bot is available
**Expected behavior**
A list of the available commands should appear and also work.
**Additional context**
The problem lies in each command parameters. Each command is restricted to the specific BICS Discord server ID, the reason why we cannot see the commands on any other server. The solution is to remove this restriction
|
priority
|
all commands are only working on the main discord server bics describe the bug if the bot is used in any discord server other than the official bics discord server the commands are not visible to reproduce steps to reproduce the behavior invite a test bot to a bics discord template server try using any command of the bot no commands from the bot is available expected behavior a list of the available commands should appear and also work additional context the problem lies in each command parameters each command is restricted to the specific bics discord server id the reason why we cannot see the commands on any other server the solution is to remove this restriction
| 1
|
580,459
| 17,258,682,226
|
IssuesEvent
|
2021-07-22 02:21:15
|
shift-org/infra
|
https://api.github.com/repos/shift-org/infra
|
closed
|
create real "netlifriends" or "open source" type netlify account for shift-docs
|
high-priority
|
...this will allow the site to run unmolested on Netlify in case fool quits working there.
|
1.0
|
create real "netlifriends" or "open source" type netlify account for shift-docs - ...this will allow the site to run unmolested on Netlify in case fool quits working there.
|
priority
|
create real netlifriends or open source type netlify account for shift docs this will allow the site to run unmolested on netlify in case fool quits working there
| 1
|
436,897
| 12,554,583,897
|
IssuesEvent
|
2020-06-07 02:38:57
|
ctm/mb2-doc
|
https://api.github.com/repos/ctm/mb2-doc
|
closed
|
undo is supposed to take an optional arg
|
bug high priority
|
I should be able to say `undo discard` and get rid of any advanced discard I've placed. That gives me the error `Unknown command: excess args: ["discard"] for Undo`.
This should be a super low priority bug since nobody has reported it, but I'm actually using the command box to see how my cards react when I discard and I want to be able to clear that, so ... even though the command box will be going away "soon", I'd like to get this working ASAP.
|
1.0
|
undo is supposed to take an optional arg - I should be able to say `undo discard` and get rid of any advanced discard I've placed. That gives me the error `Unknown command: excess args: ["discard"] for Undo`.
This should be a super low priority bug since nobody has reported it, but I'm actually using the command box to see how my cards react when I discard and I want to be able to clear that, so ... even though the command box will be going away "soon", I'd like to get this working ASAP.
|
priority
|
undo is supposed to take an optional arg i should be able to say undo discard and get rid of any advanced discard i ve placed that gives me the error unknown command excess args for undo this should be a super low priority bug since nobody has reported it but i m actually using the command box to see how my cards react when i discard and i want to be able to clear that so even though the command box will be going away soon i d like to get this working asap
| 1
|
450,583
| 13,016,742,350
|
IssuesEvent
|
2020-07-26 08:28:03
|
rica441/takutaku
|
https://api.github.com/repos/rica441/takutaku
|
opened
|
ゲストアカウントのユーザー情報が保存されるようにする
|
bug high priority improvement
|
## なにをやるのか
- かんたんログインでゲストアカウントでログインするとログイン情報が保存されていない状態になので
ユーザー情報を保存するように修正する
|
1.0
|
ゲストアカウントのユーザー情報が保存されるようにする - ## なにをやるのか
- かんたんログインでゲストアカウントでログインするとログイン情報が保存されていない状態になので
ユーザー情報を保存するように修正する
|
priority
|
ゲストアカウントのユーザー情報が保存されるようにする なにをやるのか かんたんログインでゲストアカウントでログインするとログイン情報が保存されていない状態になので ユーザー情報を保存するように修正する
| 1
|
386,731
| 11,449,638,599
|
IssuesEvent
|
2020-02-06 07:45:22
|
onaio/reveal-frontend
|
https://api.github.com/repos/onaio/reveal-frontend
|
opened
|
Increase test coverage for PlanForm fixtures
|
Priority: High
|
Increase test coverage to be >= 85% for:
`src/containers/forms/PlanForm/tests/fixtures.ts ==> 52%`
Part of #658
|
1.0
|
Increase test coverage for PlanForm fixtures - Increase test coverage to be >= 85% for:
`src/containers/forms/PlanForm/tests/fixtures.ts ==> 52%`
Part of #658
|
priority
|
increase test coverage for planform fixtures increase test coverage to be for src containers forms planform tests fixtures ts part of
| 1
|
58,918
| 3,097,276,822
|
IssuesEvent
|
2015-08-28 00:15:06
|
AutomationSolutionz/Framework_0.1
|
https://api.github.com/repos/AutomationSolutionz/Framework_0.1
|
closed
|
Test case search for add/remove in test set needs new dropdown search
|
bug Priority 1 (Highest)
|
As the test case search function is changed for select2 drodown search, now test case search in add/remove test cases for test set needs to be updated as well.
|
1.0
|
Test case search for add/remove in test set needs new dropdown search - As the test case search function is changed for select2 drodown search, now test case search in add/remove test cases for test set needs to be updated as well.
|
priority
|
test case search for add remove in test set needs new dropdown search as the test case search function is changed for drodown search now test case search in add remove test cases for test set needs to be updated as well
| 1
|
169,675
| 6,414,302,537
|
IssuesEvent
|
2017-08-08 09:49:19
|
fossasia/open-event-orga-server
|
https://api.github.com/repos/fossasia/open-event-orga-server
|
closed
|
Implement Export Job API with proper permissions and relationships
|
blocker has-PR nextgen Priority: High rest-api
|
Proposed endpoints:
/events/<event_id>/export - Will start an export job, make an entry in the database, return a task url which can be then used for polling.
|
1.0
|
Implement Export Job API with proper permissions and relationships - Proposed endpoints:
/events/<event_id>/export - Will start an export job, make an entry in the database, return a task url which can be then used for polling.
|
priority
|
implement export job api with proper permissions and relationships proposed endpoints events export will start an export job make an entry in the database return a task url which can be then used for polling
| 1
|
372,131
| 11,009,632,456
|
IssuesEvent
|
2019-12-04 13:05:11
|
ahmedkaludi/accelerated-mobile-pages
|
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
|
closed
|
Issue related to image height and width
|
NEXT UPDATE [Priority: HIGH] bug
|
If the image is not taking height and width from the source code then it should take height and width from the attached file.
Ref: https://secure.helpscout.net/conversation/1009870614/98565?folderId=3257665
|
1.0
|
Issue related to image height and width - If the image is not taking height and width from the source code then it should take height and width from the attached file.
Ref: https://secure.helpscout.net/conversation/1009870614/98565?folderId=3257665
|
priority
|
issue related to image height and width if the image is not taking height and width from the source code then it should take height and width from the attached file ref
| 1
|
227,723
| 7,541,759,304
|
IssuesEvent
|
2018-04-17 10:47:33
|
EyeSeeTea/dhis2-android-datacapture
|
https://api.github.com/repos/EyeSeeTea/dhis2-android-datacapture
|
reopened
|
UI consistency with Event & Tracker Capture
|
complexity - med (1-5hr) priority - high type - maintenance
|
Data Capture: in data capture does not seem to be differentiation between local storage and online sync. There is a blue floppy disc to save (like the one in tracker), but it saves and sync. I would suggest:
a) If it is only one step, then do not use the blue floppy disc but the sync arrows, or both, an icon with the floppy disc and two sync arrows inside.
|
1.0
|
UI consistency with Event & Tracker Capture - Data Capture: in data capture does not seem to be differentiation between local storage and online sync. There is a blue floppy disc to save (like the one in tracker), but it saves and sync. I would suggest:
a) If it is only one step, then do not use the blue floppy disc but the sync arrows, or both, an icon with the floppy disc and two sync arrows inside.
|
priority
|
ui consistency with event tracker capture data capture in data capture does not seem to be differentiation between local storage and online sync there is a blue floppy disc to save like the one in tracker but it saves and sync i would suggest a if it is only one step then do not use the blue floppy disc but the sync arrows or both an icon with the floppy disc and two sync arrows inside
| 1
|
768,055
| 26,951,341,145
|
IssuesEvent
|
2023-02-08 11:56:31
|
Cotalker/documentation
|
https://api.github.com/repos/Cotalker/documentation
|
closed
|
Bug report: No se pueden ver los archivos cargados en la task (directo sin form)
|
Bug report Bug high priority
|
### Affected system
Cotalker Web Application
### Affected system (other)
_No response_
### Affected environment
Production, Staging
### Affected environment (other)
_No response_
### App version
18.2.1
### Details
No se visualizan correctamente los archivos, imágenes , videos cargados directamente en el chat de la task (no a través de formulario) en la pestaña de "DETAILS"
<img width="726" alt="image" src="https://user-images.githubusercontent.com/50208672/208761526-dee89768-1308-442f-8789-4db5e7c5e177.png">

Al presionar view more no se visualiza nada. En canales solos sin task esto funciona.
Además para los usuarios es confuso que la task tenga una pestaña que se llame "FILES" y que solo se vean las notas (no es consistente).
<img width="726" alt="image" src="https://user-images.githubusercontent.com/50208672/208762422-b915ccee-a3d4-4944-a2d6-6989f5e0baed.png">
También los archivos cargados mediante un formulario deberían verse en la misma parte de forma centralizada , ya sea en "FILES"o en la vista de "DETAILS"
### Steps to reproduce
1. cargar foto a una task (vía chat)
2. ver vista detalles sección imágenes, videos, archivos.
### Expected result
Que se vean los archivos cargados de forma centralizada
### Additional data
_No response_
|
1.0
|
Bug report: No se pueden ver los archivos cargados en la task (directo sin form) - ### Affected system
Cotalker Web Application
### Affected system (other)
_No response_
### Affected environment
Production, Staging
### Affected environment (other)
_No response_
### App version
18.2.1
### Details
No se visualizan correctamente los archivos, imágenes , videos cargados directamente en el chat de la task (no a través de formulario) en la pestaña de "DETAILS"
<img width="726" alt="image" src="https://user-images.githubusercontent.com/50208672/208761526-dee89768-1308-442f-8789-4db5e7c5e177.png">

Al presionar view more no se visualiza nada. En canales solos sin task esto funciona.
Además para los usuarios es confuso que la task tenga una pestaña que se llame "FILES" y que solo se vean las notas (no es consistente).
<img width="726" alt="image" src="https://user-images.githubusercontent.com/50208672/208762422-b915ccee-a3d4-4944-a2d6-6989f5e0baed.png">
También los archivos cargados mediante un formulario deberían verse en la misma parte de forma centralizada , ya sea en "FILES"o en la vista de "DETAILS"
### Steps to reproduce
1. cargar foto a una task (vía chat)
2. ver vista detalles sección imágenes, videos, archivos.
### Expected result
Que se vean los archivos cargados de forma centralizada
### Additional data
_No response_
|
priority
|
bug report no se pueden ver los archivos cargados en la task directo sin form affected system cotalker web application affected system other no response affected environment production staging affected environment other no response app version details no se visualizan correctamente los archivos imágenes videos cargados directamente en el chat de la task no a través de formulario en la pestaña de details img width alt image src al presionar view more no se visualiza nada en canales solos sin task esto funciona además para los usuarios es confuso que la task tenga una pestaña que se llame files y que solo se vean las notas no es consistente img width alt image src también los archivos cargados mediante un formulario deberían verse en la misma parte de forma centralizada ya sea en files o en la vista de details steps to reproduce cargar foto a una task vía chat ver vista detalles sección imágenes videos archivos expected result que se vean los archivos cargados de forma centralizada additional data no response
| 1
|
392,648
| 11,594,227,107
|
IssuesEvent
|
2020-02-24 14:59:34
|
inexorgame/vulkan-renderer
|
https://api.github.com/repos/inexorgame/vulkan-renderer
|
opened
|
Implement camera system.
|
difficulty: easy priority: high refactoring
|
**Is your feature request related to a problem? Please describe.**
The current camera system is static. The camera can't move.
**Describe the solution you'd like**
Move the camera with keys and mouse input.
|
1.0
|
Implement camera system. - **Is your feature request related to a problem? Please describe.**
The current camera system is static. The camera can't move.
**Describe the solution you'd like**
Move the camera with keys and mouse input.
|
priority
|
implement camera system is your feature request related to a problem please describe the current camera system is static the camera can t move describe the solution you d like move the camera with keys and mouse input
| 1
|
234,181
| 7,717,801,648
|
IssuesEvent
|
2018-05-23 14:38:13
|
RTXteam/RTX
|
https://api.github.com/repos/RTXteam/RTX
|
closed
|
MONDO node and special KG for for drug-induced liver injury
|
enhancement high priority
|
add code to connect a MONDO node to:
protein -> MONDO (associated with condition)
MONDO -> phenotype (has_phenotype)
for MONDO ID: drug-induced liver injury
MONDO:0005359
|
1.0
|
MONDO node and special KG for for drug-induced liver injury - add code to connect a MONDO node to:
protein -> MONDO (associated with condition)
MONDO -> phenotype (has_phenotype)
for MONDO ID: drug-induced liver injury
MONDO:0005359
|
priority
|
mondo node and special kg for for drug induced liver injury add code to connect a mondo node to protein mondo associated with condition mondo phenotype has phenotype for mondo id drug induced liver injury mondo
| 1
|
141,675
| 5,439,712,714
|
IssuesEvent
|
2017-03-06 14:10:37
|
python/mypy
|
https://api.github.com/repos/python/mypy
|
closed
|
Crash in super() outside a method
|
crash priority-0-high
|
The simplest repro:
```python
class C:
a = super().whatever
```
Crash also happens for working Python code with single argument ``super()`` outside methods:
```
Traceback (most recent call last):
File "/usr/local/bin/mypy", line 6, in <module>
main(__file__)
File "/usr/local/lib/python3.4/dist-packages/mypy/main.py", line 42, in main
res = type_check_only(sources, bin_dir, options)
File "/usr/local/lib/python3.4/dist-packages/mypy/main.py", line 86, in type_check_only
options=options)
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 183, in build
dispatch(sources, manager)
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 1531, in dispatch
process_graph(graph, manager)
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 1768, in process_graph
process_stale_scc(graph, scc)
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 1847, in process_stale_scc
graph[id].type_check_first_pass()
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 1453, in type_check_first_pass
self.type_checker.check_first_pass()
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 167, in check_first_pass
self.accept(d)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 233, in accept
stmt.accept(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/nodes.py", line 717, in accept
return visitor.visit_class_def(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 964, in visit_class_def
self.accept(defn.defs)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 233, in accept
stmt.accept(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/nodes.py", line 778, in accept
return visitor.visit_block(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 1057, in visit_block
self.accept(s)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 233, in accept
stmt.accept(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/nodes.py", line 819, in accept
return visitor.visit_assignment_stmt(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 1064, in visit_assignment_stmt
self.check_assignment(s.lvalues[-1], s.rvalue, s.type is None, s.new_syntax)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 1140, in check_assignment
self.infer_variable_type(inferred, lvalue, self.expr_checker.accept(rvalue),
File "/usr/local/lib/python3.4/dist-packages/mypy/checkexpr.py", line 2015, in accept
typ = node.accept(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/nodes.py", line 1492, in accept
return visitor.visit_super_expr(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/checkexpr.py", line 1835, in visit_super_expr
t = self.analyze_super(e, False)
File "/usr/local/lib/python3.4/dist-packages/mypy/checkexpr.py", line 1854, in analyze_super
args = self.chk.scope.top_function().arguments
AttributeError: 'NoneType' object has no attribute 'arguments'
```
|
1.0
|
Crash in super() outside a method - The simplest repro:
```python
class C:
a = super().whatever
```
Crash also happens for working Python code with single argument ``super()`` outside methods:
```
Traceback (most recent call last):
File "/usr/local/bin/mypy", line 6, in <module>
main(__file__)
File "/usr/local/lib/python3.4/dist-packages/mypy/main.py", line 42, in main
res = type_check_only(sources, bin_dir, options)
File "/usr/local/lib/python3.4/dist-packages/mypy/main.py", line 86, in type_check_only
options=options)
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 183, in build
dispatch(sources, manager)
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 1531, in dispatch
process_graph(graph, manager)
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 1768, in process_graph
process_stale_scc(graph, scc)
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 1847, in process_stale_scc
graph[id].type_check_first_pass()
File "/usr/local/lib/python3.4/dist-packages/mypy/build.py", line 1453, in type_check_first_pass
self.type_checker.check_first_pass()
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 167, in check_first_pass
self.accept(d)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 233, in accept
stmt.accept(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/nodes.py", line 717, in accept
return visitor.visit_class_def(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 964, in visit_class_def
self.accept(defn.defs)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 233, in accept
stmt.accept(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/nodes.py", line 778, in accept
return visitor.visit_block(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 1057, in visit_block
self.accept(s)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 233, in accept
stmt.accept(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/nodes.py", line 819, in accept
return visitor.visit_assignment_stmt(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 1064, in visit_assignment_stmt
self.check_assignment(s.lvalues[-1], s.rvalue, s.type is None, s.new_syntax)
File "/usr/local/lib/python3.4/dist-packages/mypy/checker.py", line 1140, in check_assignment
self.infer_variable_type(inferred, lvalue, self.expr_checker.accept(rvalue),
File "/usr/local/lib/python3.4/dist-packages/mypy/checkexpr.py", line 2015, in accept
typ = node.accept(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/nodes.py", line 1492, in accept
return visitor.visit_super_expr(self)
File "/usr/local/lib/python3.4/dist-packages/mypy/checkexpr.py", line 1835, in visit_super_expr
t = self.analyze_super(e, False)
File "/usr/local/lib/python3.4/dist-packages/mypy/checkexpr.py", line 1854, in analyze_super
args = self.chk.scope.top_function().arguments
AttributeError: 'NoneType' object has no attribute 'arguments'
```
|
priority
|
crash in super outside a method the simplest repro python class c a super whatever crash also happens for working python code with single argument super outside methods traceback most recent call last file usr local bin mypy line in main file file usr local lib dist packages mypy main py line in main res type check only sources bin dir options file usr local lib dist packages mypy main py line in type check only options options file usr local lib dist packages mypy build py line in build dispatch sources manager file usr local lib dist packages mypy build py line in dispatch process graph graph manager file usr local lib dist packages mypy build py line in process graph process stale scc graph scc file usr local lib dist packages mypy build py line in process stale scc graph type check first pass file usr local lib dist packages mypy build py line in type check first pass self type checker check first pass file usr local lib dist packages mypy checker py line in check first pass self accept d file usr local lib dist packages mypy checker py line in accept stmt accept self file usr local lib dist packages mypy nodes py line in accept return visitor visit class def self file usr local lib dist packages mypy checker py line in visit class def self accept defn defs file usr local lib dist packages mypy checker py line in accept stmt accept self file usr local lib dist packages mypy nodes py line in accept return visitor visit block self file usr local lib dist packages mypy checker py line in visit block self accept s file usr local lib dist packages mypy checker py line in accept stmt accept self file usr local lib dist packages mypy nodes py line in accept return visitor visit assignment stmt self file usr local lib dist packages mypy checker py line in visit assignment stmt self check assignment s lvalues s rvalue s type is none s new syntax file usr local lib dist packages mypy checker py line in check assignment self infer variable type inferred lvalue self expr checker accept rvalue file usr local lib dist packages mypy checkexpr py line in accept typ node accept self file usr local lib dist packages mypy nodes py line in accept return visitor visit super expr self file usr local lib dist packages mypy checkexpr py line in visit super expr t self analyze super e false file usr local lib dist packages mypy checkexpr py line in analyze super args self chk scope top function arguments attributeerror nonetype object has no attribute arguments
| 1
|
279,631
| 8,671,309,214
|
IssuesEvent
|
2018-11-29 18:48:37
|
bounswe/bounswe2018group6
|
https://api.github.com/repos/bounswe/bounswe2018group6
|
closed
|
Location of deployment of frontend
|
Front-End Priority: High Web
|
I guess we can use Heroku also for the deployment of frontend. Which steps should be taken? Or do you have another suggestion?
|
1.0
|
Location of deployment of frontend - I guess we can use Heroku also for the deployment of frontend. Which steps should be taken? Or do you have another suggestion?
|
priority
|
location of deployment of frontend i guess we can use heroku also for the deployment of frontend which steps should be taken or do you have another suggestion
| 1
|
688,208
| 23,575,659,992
|
IssuesEvent
|
2022-08-23 00:20:55
|
gmlesher/ped_conn
|
https://api.github.com/repos/gmlesher/ped_conn
|
opened
|
Update form fields for "Gender" to "Sex"
|
type:feature priority:high status:open
|
The client requested that the form fields labeled "Gender" be changed to "Sex" and the dropdown options be "Male" and "Female".
This needs to be updated on the following forms:
- [ ] Pediatric History Form
- [ ] Adult History Form
- [ ] Speech Language History Form
|
1.0
|
Update form fields for "Gender" to "Sex" - The client requested that the form fields labeled "Gender" be changed to "Sex" and the dropdown options be "Male" and "Female".
This needs to be updated on the following forms:
- [ ] Pediatric History Form
- [ ] Adult History Form
- [ ] Speech Language History Form
|
priority
|
update form fields for gender to sex the client requested that the form fields labeled gender be changed to sex and the dropdown options be male and female this needs to be updated on the following forms pediatric history form adult history form speech language history form
| 1
|
508,366
| 14,698,872,841
|
IssuesEvent
|
2021-01-04 07:27:20
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
www.airbnb.com - see bug description
|
browser-firefox-mobile engine-gecko ml-needsdiagnosis-false ml-probability-high priority-important
|
<!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/64835 -->
**URL**: https://www.airbnb.com/
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android
**Tested Another Browser**: Yes Other
**Problem type**: Something else
**Description**: Won't open
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/1/01f8cee4-9242-4d77-a284-7bb6cb5df13b.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: 20200104123338</li><li>channel: default</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/2021/1/535a39ed-b403-4ecb-a87e-777dc28ec981)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
www.airbnb.com - see bug description - <!-- @browser: Firefox Mobile 68.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 10; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 -->
<!-- @reported_with: mobile-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/64835 -->
**URL**: https://www.airbnb.com/
**Browser / Version**: Firefox Mobile 68.0
**Operating System**: Android
**Tested Another Browser**: Yes Other
**Problem type**: Something else
**Description**: Won't open
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/1/01f8cee4-9242-4d77-a284-7bb6cb5df13b.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: 20200104123338</li><li>channel: default</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/2021/1/535a39ed-b403-4ecb-a87e-777dc28ec981)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
priority
|
see bug description url browser version firefox mobile operating system android tested another browser yes other problem type something else description won t open 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 default hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
| 1
|
225,612
| 7,493,752,449
|
IssuesEvent
|
2018-04-07 00:29:26
|
CS2103JAN2018-W13-B4/main
|
https://api.github.com/repos/CS2103JAN2018-W13-B4/main
|
closed
|
22. As a user I want to view all completed tasks
|
priority.high type.story
|
... so that I can see all tasks that have been completed, for past reference.
|
1.0
|
22. As a user I want to view all completed tasks - ... so that I can see all tasks that have been completed, for past reference.
|
priority
|
as a user i want to view all completed tasks so that i can see all tasks that have been completed for past reference
| 1
|
98,726
| 4,030,667,461
|
IssuesEvent
|
2016-05-18 14:54:34
|
xcat2/xcat-core
|
https://api.github.com/repos/xcat2/xcat-core
|
closed
|
[FVT]Failed to update xCAT2.12 from 2016.5.10 build to latest on ppc64le RH7.2 and x86 RH7.0
|
component:xcatd priority:high
|
Using xcat-core build created today after 2:00 PM, and the latest dep build, update from xCAT2.12 build on 2016.05.10 on ppc64le RH7.2 and x86 RH7.9, neither passed.Please see below from ppc64le, x86 is the same logs.
```
[root@c910f02c ppc64le]# ls /new212/
20160518.0245-core-rpms-snap.tar.bz2 xcat-core xcat-dep xcat-dep-201605171330.tar.bz2
[root@c91 ppc64le]# lsxcatd -a
Version 2.12 (git commit 43305d3fffac120338aa5d501f0e74d38c9eff4e, built Tue May 10 09:30:51 EDT 2016)
This is a Management Node
dbengine=SQLite
[root@c910f02c01p15 ppc64le]# cat /etc/*release
NAME="Red Hat Enterprise Linux Server"
VERSION="7.0 (Maipo)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="7.0"
PRETTY_NAME="Red Hat Enterprise Linux Server 7.0 (Maipo)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:7.0:GA:server"
HOME_URL="https://www.redhat.com/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7"
REDHAT_BUGZILLA_PRODUCT_VERSION=7.0
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION=7.0
Red Hat Enterprise Linux Server release 7.0 (Maipo)
Red Hat Enterprise Linux Server release 7.0 (Maipo)
```
For details, please see blow:
```
[root@c910f05 ppc64le]# yum clean all
Loaded plugins: product-id, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Cleaning repos: local-rhels7-ppc64-ppc64 rhel-ftp3 rhel-ftp3-optional rhel-ftp3-supp rhel-ftp3-updates xcat-2-core xcat-dep
Cleaning up everything
[root@c95 ppc64le]# yum update '*xCAT*'
Loaded plugins: product-id, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
local-rhels7-ppc64-ppc64 | 4.1 kB 00:00:00
rhel-ftp3 | 4.1 kB 00:00:00
rhel-ftp3-optional | 3.1 kB 00:00:00
rhel-ftp3-supp | 4.1 kB 00:00:00
rhel-ftp3-updates | 3.1 kB 00:00:00
xcat-2-core | 2.5 kB 00:00:00
xcat-dep | 2.5 kB 00:00:00
(1/12): local-rhels7-ppc64-ppc64/group_gz | 122 kB 00:00:00
(2/12): local-rhels7-ppc64-ppc64/primary_db | 3.2 MB 00:00:00
(3/12): rhel-ftp3/group_gz | 118 kB 00:00:02
(4/12): rhel-ftp3-optional/group_gz | 347 B 00:00:02
(5/12): rhel-ftp3-supp/group_gz | 6.8 kB 00:00:01
(6/12): rhel-ftp3/primary_db | 3.0 MB 00:00:02
(7/12): rhel-ftp3-optional/primary_db | 3.4 MB 00:00:02
(8/12): xcat-2-core/primary_db | 26 kB 00:00:00
(9/12): xcat-dep/primary_db | 31 kB 00:00:00
(10/12): rhel-ftp3-supp/primary_db | 16 kB 00:00:01
(11/12): rhel-ftp3-updates/group_gz | 121 kB 00:00:01
(12/12): rhel-ftp3-updates/primary_db | 17 MB 00:00:02
Resolving Dependencies
--> Running transaction check
---> Package perl-xCAT.noarch 4:2.12-snap201605100930 will be updated
---> Package perl-xCAT.noarch 4:2.12-snap201605180245 will be an update
---> Package xCAT.ppc64 0:2.12-snap201605100931 will be updated
---> Package xCAT.ppc64 0:2.12-snap201605180246 will be an update
--> Processing Dependency: ipmitool-xcat >= 1.8.15 for package: xCAT-2.12-snap201605180246.ppc64
---> Package xCAT-buildkit.noarch 4:2.12-snap201605100931 will be updated
---> Package xCAT-buildkit.noarch 4:2.12-snap201605180245 will be an update
---> Package xCAT-client.noarch 4:2.12-snap201605100930 will be updated
---> Package xCAT-client.noarch 4:2.12-snap201605180245 will be an update
---> Package xCAT-genesis-scripts-ppc64.noarch 1:2.12-snap201605100931 will be updated
---> Package xCAT-genesis-scripts-ppc64.noarch 1:2.12-snap201605180246 will be an update
---> Package xCAT-server.noarch 4:2.12-snap201605100931 will be updated
---> Package xCAT-server.noarch 4:2.12-snap201605180245 will be an update
--> Finished Dependency Resolution
Error: Package: xCAT-2.12-snap201605180246.ppc64 (xcat-2-core)
Requires: ipmitool-xcat >= 1.8.15
Installed: ipmitool-xcat-1.8.11-3.ppc64 (@xcat-dep)
ipmitool-xcat = 1.8.11-3
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
```
BTW update successfully on ppc64 from 2016.05.10 xCAT2.12 to the same build.
```
[root@c910f022 /]# lsxcatd -a
Version 2.12 (git commit 11cdf72972cfa0d6037b7bdcce10bc7689afab46, built Wed May 18 02:45:35 EDT 2016)
This is a Management Node
dbengine=SQLite
[root@c910f012 /]# cat /etc/*release
NAME="Red Hat Enterprise Linux Server"
VERSION="7.0 (Maipo)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="7.0"
PRETTY_NAME="Red Hat Enterprise Linux Server 7.0 (Maipo)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:7.0:GA:server"
HOME_URL="https://www.redhat.com/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7"
REDHAT_BUGZILLA_PRODUCT_VERSION=7.0
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION=7.0
Red Hat Enterprise Linux Server release 7.0 (Maipo)
Red Hat Enterprise Linux Server release 7.0 (Maipo)
```
|
1.0
|
[FVT]Failed to update xCAT2.12 from 2016.5.10 build to latest on ppc64le RH7.2 and x86 RH7.0 - Using xcat-core build created today after 2:00 PM, and the latest dep build, update from xCAT2.12 build on 2016.05.10 on ppc64le RH7.2 and x86 RH7.9, neither passed.Please see below from ppc64le, x86 is the same logs.
```
[root@c910f02c ppc64le]# ls /new212/
20160518.0245-core-rpms-snap.tar.bz2 xcat-core xcat-dep xcat-dep-201605171330.tar.bz2
[root@c91 ppc64le]# lsxcatd -a
Version 2.12 (git commit 43305d3fffac120338aa5d501f0e74d38c9eff4e, built Tue May 10 09:30:51 EDT 2016)
This is a Management Node
dbengine=SQLite
[root@c910f02c01p15 ppc64le]# cat /etc/*release
NAME="Red Hat Enterprise Linux Server"
VERSION="7.0 (Maipo)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="7.0"
PRETTY_NAME="Red Hat Enterprise Linux Server 7.0 (Maipo)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:7.0:GA:server"
HOME_URL="https://www.redhat.com/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7"
REDHAT_BUGZILLA_PRODUCT_VERSION=7.0
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION=7.0
Red Hat Enterprise Linux Server release 7.0 (Maipo)
Red Hat Enterprise Linux Server release 7.0 (Maipo)
```
For details, please see blow:
```
[root@c910f05 ppc64le]# yum clean all
Loaded plugins: product-id, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Cleaning repos: local-rhels7-ppc64-ppc64 rhel-ftp3 rhel-ftp3-optional rhel-ftp3-supp rhel-ftp3-updates xcat-2-core xcat-dep
Cleaning up everything
[root@c95 ppc64le]# yum update '*xCAT*'
Loaded plugins: product-id, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
local-rhels7-ppc64-ppc64 | 4.1 kB 00:00:00
rhel-ftp3 | 4.1 kB 00:00:00
rhel-ftp3-optional | 3.1 kB 00:00:00
rhel-ftp3-supp | 4.1 kB 00:00:00
rhel-ftp3-updates | 3.1 kB 00:00:00
xcat-2-core | 2.5 kB 00:00:00
xcat-dep | 2.5 kB 00:00:00
(1/12): local-rhels7-ppc64-ppc64/group_gz | 122 kB 00:00:00
(2/12): local-rhels7-ppc64-ppc64/primary_db | 3.2 MB 00:00:00
(3/12): rhel-ftp3/group_gz | 118 kB 00:00:02
(4/12): rhel-ftp3-optional/group_gz | 347 B 00:00:02
(5/12): rhel-ftp3-supp/group_gz | 6.8 kB 00:00:01
(6/12): rhel-ftp3/primary_db | 3.0 MB 00:00:02
(7/12): rhel-ftp3-optional/primary_db | 3.4 MB 00:00:02
(8/12): xcat-2-core/primary_db | 26 kB 00:00:00
(9/12): xcat-dep/primary_db | 31 kB 00:00:00
(10/12): rhel-ftp3-supp/primary_db | 16 kB 00:00:01
(11/12): rhel-ftp3-updates/group_gz | 121 kB 00:00:01
(12/12): rhel-ftp3-updates/primary_db | 17 MB 00:00:02
Resolving Dependencies
--> Running transaction check
---> Package perl-xCAT.noarch 4:2.12-snap201605100930 will be updated
---> Package perl-xCAT.noarch 4:2.12-snap201605180245 will be an update
---> Package xCAT.ppc64 0:2.12-snap201605100931 will be updated
---> Package xCAT.ppc64 0:2.12-snap201605180246 will be an update
--> Processing Dependency: ipmitool-xcat >= 1.8.15 for package: xCAT-2.12-snap201605180246.ppc64
---> Package xCAT-buildkit.noarch 4:2.12-snap201605100931 will be updated
---> Package xCAT-buildkit.noarch 4:2.12-snap201605180245 will be an update
---> Package xCAT-client.noarch 4:2.12-snap201605100930 will be updated
---> Package xCAT-client.noarch 4:2.12-snap201605180245 will be an update
---> Package xCAT-genesis-scripts-ppc64.noarch 1:2.12-snap201605100931 will be updated
---> Package xCAT-genesis-scripts-ppc64.noarch 1:2.12-snap201605180246 will be an update
---> Package xCAT-server.noarch 4:2.12-snap201605100931 will be updated
---> Package xCAT-server.noarch 4:2.12-snap201605180245 will be an update
--> Finished Dependency Resolution
Error: Package: xCAT-2.12-snap201605180246.ppc64 (xcat-2-core)
Requires: ipmitool-xcat >= 1.8.15
Installed: ipmitool-xcat-1.8.11-3.ppc64 (@xcat-dep)
ipmitool-xcat = 1.8.11-3
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
```
BTW update successfully on ppc64 from 2016.05.10 xCAT2.12 to the same build.
```
[root@c910f022 /]# lsxcatd -a
Version 2.12 (git commit 11cdf72972cfa0d6037b7bdcce10bc7689afab46, built Wed May 18 02:45:35 EDT 2016)
This is a Management Node
dbengine=SQLite
[root@c910f012 /]# cat /etc/*release
NAME="Red Hat Enterprise Linux Server"
VERSION="7.0 (Maipo)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="7.0"
PRETTY_NAME="Red Hat Enterprise Linux Server 7.0 (Maipo)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:7.0:GA:server"
HOME_URL="https://www.redhat.com/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7"
REDHAT_BUGZILLA_PRODUCT_VERSION=7.0
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION=7.0
Red Hat Enterprise Linux Server release 7.0 (Maipo)
Red Hat Enterprise Linux Server release 7.0 (Maipo)
```
|
priority
|
failed to update from build to latest on and using xcat core build created today after pm and the latest dep build update from build on on and neither passed please see below from is the same logs ls core rpms snap tar xcat core xcat dep xcat dep tar lsxcatd a version git commit built tue may edt this is a management node dbengine sqlite cat etc release name red hat enterprise linux server version maipo id rhel id like fedora version id pretty name red hat enterprise linux server maipo ansi color cpe name cpe o redhat enterprise linux ga server home url bug report url redhat bugzilla product red hat enterprise linux redhat bugzilla product version redhat support product red hat enterprise linux redhat support product version red hat enterprise linux server release maipo red hat enterprise linux server release maipo for details please see blow yum clean all loaded plugins product id subscription manager this system is not registered to red hat subscription management you can use subscription manager to register cleaning repos local rhel rhel optional rhel supp rhel updates xcat core xcat dep cleaning up everything yum update xcat loaded plugins product id subscription manager this system is not registered to red hat subscription management you can use subscription manager to register local kb rhel kb rhel optional kb rhel supp kb rhel updates kb xcat core kb xcat dep kb local group gz kb local primary db mb rhel group gz kb rhel optional group gz b rhel supp group gz kb rhel primary db mb rhel optional primary db mb xcat core primary db kb xcat dep primary db kb rhel supp primary db kb rhel updates group gz kb rhel updates primary db mb resolving dependencies running transaction check package perl xcat noarch will be updated package perl xcat noarch will be an update package xcat will be updated package xcat will be an update processing dependency ipmitool xcat for package xcat package xcat buildkit noarch will be updated package xcat buildkit noarch will be an update package xcat client noarch will be updated package xcat client noarch will be an update package xcat genesis scripts noarch will be updated package xcat genesis scripts noarch will be an update package xcat server noarch will be updated package xcat server noarch will be an update finished dependency resolution error package xcat xcat core requires ipmitool xcat installed ipmitool xcat xcat dep ipmitool xcat you could try using skip broken to work around the problem you could try running rpm va nofiles nodigest btw update successfully on from to the same build lsxcatd a version git commit built wed may edt this is a management node dbengine sqlite cat etc release name red hat enterprise linux server version maipo id rhel id like fedora version id pretty name red hat enterprise linux server maipo ansi color cpe name cpe o redhat enterprise linux ga server home url bug report url redhat bugzilla product red hat enterprise linux redhat bugzilla product version redhat support product red hat enterprise linux redhat support product version red hat enterprise linux server release maipo red hat enterprise linux server release maipo
| 1
|
745,762
| 25,999,790,216
|
IssuesEvent
|
2022-12-20 14:29:19
|
BIDMCDigitalPsychiatry/LAMP-platform
|
https://api.github.com/repos/BIDMCDigitalPsychiatry/LAMP-platform
|
closed
|
Dashboard taking forever to load or never loading
|
bug 2day frontend backend priority HIGH
|
**Describe the bug**
An investigator/research account with the id 'yhe0wtfn6n6sbvsan0js' is not loading at all from the admin user. I have tried on different browsers (on a macbook pro) and my coworkers have tried as well with no luck. I have tried on both the regular and staging dashboard. It is stuck on the loading wheel and I cannot click on anything.
We have also observed that sometimes, other investigator/researcher accounts will take a very long time to load. But after waiting a few hours or a day, it will work fine. However, this study has not been accessible at all since early yesterday.
Past similar/related issues?:
https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/issues/491
https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/issues/515
https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/issues/625
**To Reproduce**
1. Go to [dashboard](https://dashboard.lamp.digital/#/)
2. Login
3. Click into the study
4. Page will be slightly greyed out with the loading spinner going on forever
**Expected behavior**
After clicking into the study, it should load within a few minutes.
**Screenshots**
<img width="1167" alt="Screenshot 2022-12-08 at 15 09 51" src="https://user-images.githubusercontent.com/105741216/206571354-fb01808c-5796-44e1-9f6c-3352ca670996.png">
**Desktop (please complete the following information):**
- OS: macOS Monterey Version 12.6
- Browser Both Chrome and Safari
- Version 12.6?
**Additional context**
Just a video showing the issue. Won't load even if I left it open for 30 minutes.
https://user-images.githubusercontent.com/105741216/206572589-45521fe9-9c6a-42e1-a663-25d9d9357024.mov
|
1.0
|
Dashboard taking forever to load or never loading - **Describe the bug**
An investigator/research account with the id 'yhe0wtfn6n6sbvsan0js' is not loading at all from the admin user. I have tried on different browsers (on a macbook pro) and my coworkers have tried as well with no luck. I have tried on both the regular and staging dashboard. It is stuck on the loading wheel and I cannot click on anything.
We have also observed that sometimes, other investigator/researcher accounts will take a very long time to load. But after waiting a few hours or a day, it will work fine. However, this study has not been accessible at all since early yesterday.
Past similar/related issues?:
https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/issues/491
https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/issues/515
https://github.com/BIDMCDigitalPsychiatry/LAMP-platform/issues/625
**To Reproduce**
1. Go to [dashboard](https://dashboard.lamp.digital/#/)
2. Login
3. Click into the study
4. Page will be slightly greyed out with the loading spinner going on forever
**Expected behavior**
After clicking into the study, it should load within a few minutes.
**Screenshots**
<img width="1167" alt="Screenshot 2022-12-08 at 15 09 51" src="https://user-images.githubusercontent.com/105741216/206571354-fb01808c-5796-44e1-9f6c-3352ca670996.png">
**Desktop (please complete the following information):**
- OS: macOS Monterey Version 12.6
- Browser Both Chrome and Safari
- Version 12.6?
**Additional context**
Just a video showing the issue. Won't load even if I left it open for 30 minutes.
https://user-images.githubusercontent.com/105741216/206572589-45521fe9-9c6a-42e1-a663-25d9d9357024.mov
|
priority
|
dashboard taking forever to load or never loading describe the bug an investigator research account with the id is not loading at all from the admin user i have tried on different browsers on a macbook pro and my coworkers have tried as well with no luck i have tried on both the regular and staging dashboard it is stuck on the loading wheel and i cannot click on anything we have also observed that sometimes other investigator researcher accounts will take a very long time to load but after waiting a few hours or a day it will work fine however this study has not been accessible at all since early yesterday past similar related issues to reproduce go to login click into the study page will be slightly greyed out with the loading spinner going on forever expected behavior after clicking into the study it should load within a few minutes screenshots img width alt screenshot at src desktop please complete the following information os macos monterey version browser both chrome and safari version additional context just a video showing the issue won t load even if i left it open for minutes
| 1
|
356,306
| 10,591,320,087
|
IssuesEvent
|
2019-10-09 10:36:28
|
fac-17/My-Body-Back
|
https://api.github.com/repos/fac-17/My-Body-Back
|
closed
|
Swipe functionality for Helping Ourselves && Feeling Overwhelmed Pages
|
Feature High Priority
|
Relates #81 , #60 , #58
- [x] Feeling Overwhelmed should link to NOL and HAS
- [x] Helping Ourselves should link to Emotions and Feeling Better
|
1.0
|
Swipe functionality for Helping Ourselves && Feeling Overwhelmed Pages - Relates #81 , #60 , #58
- [x] Feeling Overwhelmed should link to NOL and HAS
- [x] Helping Ourselves should link to Emotions and Feeling Better
|
priority
|
swipe functionality for helping ourselves feeling overwhelmed pages relates feeling overwhelmed should link to nol and has helping ourselves should link to emotions and feeling better
| 1
|
405,752
| 11,882,249,445
|
IssuesEvent
|
2020-03-27 14:06:28
|
statechannels/monorepo
|
https://api.github.com/repos/statechannels/monorepo
|
closed
|
[web3t] Add UI for ledger connection to hub
|
High Priority package: web3torrent
|
This should probably look a little like the `ChannelsList` component, but
- pulls the requisite data from a new channel client api call `getBudget` or similar
- has "Withdraw" instead of "Close" button
- shows money not locked in payment channels
reference:
https://www.notion.so/Web3Torrent-Requirements-ce435f483e044d8291a8a01f570391d4
|
1.0
|
[web3t] Add UI for ledger connection to hub - This should probably look a little like the `ChannelsList` component, but
- pulls the requisite data from a new channel client api call `getBudget` or similar
- has "Withdraw" instead of "Close" button
- shows money not locked in payment channels
reference:
https://www.notion.so/Web3Torrent-Requirements-ce435f483e044d8291a8a01f570391d4
|
priority
|
add ui for ledger connection to hub this should probably look a little like the channelslist component but pulls the requisite data from a new channel client api call getbudget or similar has withdraw instead of close button shows money not locked in payment channels reference
| 1
|
482,952
| 13,916,425,965
|
IssuesEvent
|
2020-10-21 03:18:39
|
wso2/devstudio-tooling-ei
|
https://api.github.com/repos/wso2/devstudio-tooling-ei
|
opened
|
Values are not set to combo boxes in Connection Config
|
Priority/Highest Severity/Critical Type/Bug
|
**Description:**
Default values or even selected values are not set to connection config window when we have combo boxes there.
<img width="546" alt="Screenshot 2020-10-21 at 08 41 21" src="https://user-images.githubusercontent.com/4967046/96669029-0671ef00-137a-11eb-98ff-c100ca99cb60.png">
Json schema related:
```
{
"connectorName": "file",
"connectionName": "FTPS",
"title": "Secured FTP Connection Config",
"help": "<h1>File Connector</h1> <b>The file connector supports Local, FTP, FTPS and SFTP protocols for handling files</b>",
"elements": [
{
"type": "attribute",
"value": {
"name": "connectionName",
"displayName": "Connection Name",
"inputType": "string",
"defaultValue": "FILE_CONNECTION_1",
"required": "true",
"helpTip": "The name for the file connection",
"validation": "nameWithoutSpecialCharactors"
}
},
{
"type": "attributeGroup",
"value": {
"groupName": "General",
"elements": [
{
"type": "attributeGroup",
"value": {
"groupName": "Basic",
"elements": [
{
"type": "attribute",
"value": {
"name": "host",
"displayName": "Host",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "Host name of the FTP server"
}
},
{
"type": "attribute",
"value": {
"name": "port",
"displayName": "Port",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "The port number of the FTP server"
}
},
{
"type": "attribute",
"value": {
"name": "username",
"displayName": "Username",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "Username used to connect with the FTP server"
}
},
{
"type": "attribute",
"value": {
"name": "password",
"displayName": "Password",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "Password to connect with the FTP server"
}
},
{
"type": "attribute",
"value": {
"name": "userDirIsRoot",
"displayName": "User Directory Is Root",
"inputType": "booleanOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "True if user directory is considered as root directory"
}
},
{
"type": "attribute",
"value": {
"name": "workingDir",
"displayName": "Working Directory",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "Working directory. File paths in operations should be given w.r.t this folder"
}
},
{
"type": "attribute",
"value": {
"name": "maxFailureRetryCount",
"displayName": "Max Failure Retry Count",
"inputType": "string",
"defaultValue": "0",
"required": "false",
"helpTip": "Max retry count upon file operation failure"
}
}
]
}
},
{
"type": "attributeGroup",
"value": {
"groupName": "Security",
"elements": [
{
"type": "attribute",
"value": {
"name": "keyStorePath",
"displayName": "KeyStore Path",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "Path to keyStore"
}
},
{
"type": "attribute",
"value": {
"name": "keyStorePassword",
"displayName": "KeyStore Password",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "KeyStore password"
}
},
{
"type": "attribute",
"value": {
"name": "trustStorePath",
"displayName": "TrustStore Path",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "Path to trustStore"
}
},
{
"type": "attribute",
"value": {
"name": "trustStorePassword",
"displayName": "TrustStore Password",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "TrustStore Password"
}
}
]
}
}
]
}
},
{
"type": "attributeGroup",
"value": {
"groupName": "Advanced",
"elements": [
{
"type": "attribute",
"value": {
"name": "isPassive",
"displayName": "Is Passive",
"inputType": "booleanOrExpression",
"defaultValue": "true",
"required": "false",
"helpTip":"True if to enter into passive mode"
}
},
{
"type": "attribute",
"value": {
"name": "ftpConnectionTimeout",
"displayName": "FTP Connection Timeout",
"inputType": "stringOrExpression",
"defaultValue": "100000",
"required": "no",
"helpTip":"Timeout in milisec for initial control connection"
}
},
{
"type": "attribute",
"value": {
"name": "ftpSocketTimeout",
"displayName": "FTP Socket Timeout",
"inputType": "stringOrExpression",
"defaultValue": "150000",
"required": "false",
"helpTip":"Socket timeout for FTP client"
}
},
{
"type": "attribute",
"value": {
"name": "implicitModeEnabled",
"displayName": "Implicit Mode Enabled",
"inputType": "booleanOrExpression",
"defaultValue": "false",
"required": "false",
"helpTip":"True if implicit mode is enabled (https://en.wikipedia.org/wiki/FTPS#Implicit)"
}
},
{
"type": "attribute",
"value": {
"name": "channelProtectionLevel",
"displayName": "Channel Protection Level",
"inputType": "string",
"defaultValue": "P",
"required": "false",
"helpTip":"FTP Data Channel protection level. Possible values C,S,E,P"
}
}
]
}
}
]
}
```
|
1.0
|
Values are not set to combo boxes in Connection Config - **Description:**
Default values or even selected values are not set to connection config window when we have combo boxes there.
<img width="546" alt="Screenshot 2020-10-21 at 08 41 21" src="https://user-images.githubusercontent.com/4967046/96669029-0671ef00-137a-11eb-98ff-c100ca99cb60.png">
Json schema related:
```
{
"connectorName": "file",
"connectionName": "FTPS",
"title": "Secured FTP Connection Config",
"help": "<h1>File Connector</h1> <b>The file connector supports Local, FTP, FTPS and SFTP protocols for handling files</b>",
"elements": [
{
"type": "attribute",
"value": {
"name": "connectionName",
"displayName": "Connection Name",
"inputType": "string",
"defaultValue": "FILE_CONNECTION_1",
"required": "true",
"helpTip": "The name for the file connection",
"validation": "nameWithoutSpecialCharactors"
}
},
{
"type": "attributeGroup",
"value": {
"groupName": "General",
"elements": [
{
"type": "attributeGroup",
"value": {
"groupName": "Basic",
"elements": [
{
"type": "attribute",
"value": {
"name": "host",
"displayName": "Host",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "Host name of the FTP server"
}
},
{
"type": "attribute",
"value": {
"name": "port",
"displayName": "Port",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "The port number of the FTP server"
}
},
{
"type": "attribute",
"value": {
"name": "username",
"displayName": "Username",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "Username used to connect with the FTP server"
}
},
{
"type": "attribute",
"value": {
"name": "password",
"displayName": "Password",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "Password to connect with the FTP server"
}
},
{
"type": "attribute",
"value": {
"name": "userDirIsRoot",
"displayName": "User Directory Is Root",
"inputType": "booleanOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "True if user directory is considered as root directory"
}
},
{
"type": "attribute",
"value": {
"name": "workingDir",
"displayName": "Working Directory",
"inputType": "string",
"defaultValue": "",
"required": "true",
"helpTip": "Working directory. File paths in operations should be given w.r.t this folder"
}
},
{
"type": "attribute",
"value": {
"name": "maxFailureRetryCount",
"displayName": "Max Failure Retry Count",
"inputType": "string",
"defaultValue": "0",
"required": "false",
"helpTip": "Max retry count upon file operation failure"
}
}
]
}
},
{
"type": "attributeGroup",
"value": {
"groupName": "Security",
"elements": [
{
"type": "attribute",
"value": {
"name": "keyStorePath",
"displayName": "KeyStore Path",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "Path to keyStore"
}
},
{
"type": "attribute",
"value": {
"name": "keyStorePassword",
"displayName": "KeyStore Password",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "KeyStore password"
}
},
{
"type": "attribute",
"value": {
"name": "trustStorePath",
"displayName": "TrustStore Path",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "Path to trustStore"
}
},
{
"type": "attribute",
"value": {
"name": "trustStorePassword",
"displayName": "TrustStore Password",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "true",
"helpTip": "TrustStore Password"
}
}
]
}
}
]
}
},
{
"type": "attributeGroup",
"value": {
"groupName": "Advanced",
"elements": [
{
"type": "attribute",
"value": {
"name": "isPassive",
"displayName": "Is Passive",
"inputType": "booleanOrExpression",
"defaultValue": "true",
"required": "false",
"helpTip":"True if to enter into passive mode"
}
},
{
"type": "attribute",
"value": {
"name": "ftpConnectionTimeout",
"displayName": "FTP Connection Timeout",
"inputType": "stringOrExpression",
"defaultValue": "100000",
"required": "no",
"helpTip":"Timeout in milisec for initial control connection"
}
},
{
"type": "attribute",
"value": {
"name": "ftpSocketTimeout",
"displayName": "FTP Socket Timeout",
"inputType": "stringOrExpression",
"defaultValue": "150000",
"required": "false",
"helpTip":"Socket timeout for FTP client"
}
},
{
"type": "attribute",
"value": {
"name": "implicitModeEnabled",
"displayName": "Implicit Mode Enabled",
"inputType": "booleanOrExpression",
"defaultValue": "false",
"required": "false",
"helpTip":"True if implicit mode is enabled (https://en.wikipedia.org/wiki/FTPS#Implicit)"
}
},
{
"type": "attribute",
"value": {
"name": "channelProtectionLevel",
"displayName": "Channel Protection Level",
"inputType": "string",
"defaultValue": "P",
"required": "false",
"helpTip":"FTP Data Channel protection level. Possible values C,S,E,P"
}
}
]
}
}
]
}
```
|
priority
|
values are not set to combo boxes in connection config description default values or even selected values are not set to connection config window when we have combo boxes there img width alt screenshot at src json schema related connectorname file connectionname ftps title secured ftp connection config help file connector the file connector supports local ftp ftps and sftp protocols for handling files elements type attribute value name connectionname displayname connection name inputtype string defaultvalue file connection required true helptip the name for the file connection validation namewithoutspecialcharactors type attributegroup value groupname general elements type attributegroup value groupname basic elements type attribute value name host displayname host inputtype string defaultvalue required true helptip host name of the ftp server type attribute value name port displayname port inputtype string defaultvalue required true helptip the port number of the ftp server type attribute value name username displayname username inputtype string defaultvalue required true helptip username used to connect with the ftp server type attribute value name password displayname password inputtype string defaultvalue required true helptip password to connect with the ftp server type attribute value name userdirisroot displayname user directory is root inputtype booleanorexpression defaultvalue required true helptip true if user directory is considered as root directory type attribute value name workingdir displayname working directory inputtype string defaultvalue required true helptip working directory file paths in operations should be given w r t this folder type attribute value name maxfailureretrycount displayname max failure retry count inputtype string defaultvalue required false helptip max retry count upon file operation failure type attributegroup value groupname security elements type attribute value name keystorepath displayname keystore path inputtype stringorexpression defaultvalue required true helptip path to keystore type attribute value name keystorepassword displayname keystore password inputtype stringorexpression defaultvalue required true helptip keystore password type attribute value name truststorepath displayname truststore path inputtype stringorexpression defaultvalue required true helptip path to truststore type attribute value name truststorepassword displayname truststore password inputtype stringorexpression defaultvalue required true helptip truststore password type attributegroup value groupname advanced elements type attribute value name ispassive displayname is passive inputtype booleanorexpression defaultvalue true required false helptip true if to enter into passive mode type attribute value name ftpconnectiontimeout displayname ftp connection timeout inputtype stringorexpression defaultvalue required no helptip timeout in milisec for initial control connection type attribute value name ftpsockettimeout displayname ftp socket timeout inputtype stringorexpression defaultvalue required false helptip socket timeout for ftp client type attribute value name implicitmodeenabled displayname implicit mode enabled inputtype booleanorexpression defaultvalue false required false helptip true if implicit mode is enabled type attribute value name channelprotectionlevel displayname channel protection level inputtype string defaultvalue p required false helptip ftp data channel protection level possible values c s e p
| 1
|
614,301
| 19,179,231,985
|
IssuesEvent
|
2021-12-04 04:36:30
|
WordPress/gutenberg
|
https://api.github.com/repos/WordPress/gutenberg
|
closed
|
Full Site Editing: Cannot persist changes to certain block settings
|
[Type] Bug [Priority] High [Status] In Progress [Feature] Full Site Editing [Feature] Block settings menu
|
### Description
Updating certain block settings (typography, text color, link color, etc.) will allow us to save the first set of edits.
Subsequent changes to the same block settings _**will not**_ refresh the save / update button, and **_will not_** let us persist modifications.
### Step-by-step reproduction instructions
1. Enable the full site editor
2. Navigate to full site editor
3. Select a block and try to adjust padding width without making other changes
4. Save the changes
5. Return to the same block. Select it and try to adjust padding width without making other changes.
6. Verify that option to update doesn't reset
### Screenshots, screen recording, code snippet

### Environment info
_No response_
|
1.0
|
Full Site Editing: Cannot persist changes to certain block settings - ### Description
Updating certain block settings (typography, text color, link color, etc.) will allow us to save the first set of edits.
Subsequent changes to the same block settings _**will not**_ refresh the save / update button, and **_will not_** let us persist modifications.
### Step-by-step reproduction instructions
1. Enable the full site editor
2. Navigate to full site editor
3. Select a block and try to adjust padding width without making other changes
4. Save the changes
5. Return to the same block. Select it and try to adjust padding width without making other changes.
6. Verify that option to update doesn't reset
### Screenshots, screen recording, code snippet

### Environment info
_No response_
|
priority
|
full site editing cannot persist changes to certain block settings description updating certain block settings typography text color link color etc will allow us to save the first set of edits subsequent changes to the same block settings will not refresh the save update button and will not let us persist modifications step by step reproduction instructions enable the full site editor navigate to full site editor select a block and try to adjust padding width without making other changes save the changes return to the same block select it and try to adjust padding width without making other changes verify that option to update doesn t reset screenshots screen recording code snippet environment info no response
| 1
|
146,026
| 5,592,273,447
|
IssuesEvent
|
2017-03-30 03:36:07
|
CS2103JAN2017-F12-B1/main
|
https://api.github.com/repos/CS2103JAN2017-F12-B1/main
|
closed
|
V0.3 feedback
|
priority.high
|
**Regarding User Guide:**
Good job adding a Keyboard Shortcut table for easy reference.
Perhaps add more partial screenshots that captures the usage of command(s)?
The 'Command summary' section will be used heavily by our testers. Try to make it easy to use as possible. e.g. give examples for each command.
**Regarding Developer Guide:**
Good job adding a comprehensive product survey, perhaps it can be represented in a table?
Do make sure the the diagrams are updated to represent your task manager and not the addressbook.
_For the user stories:_
Perhaps task could be split into the three categories? Floating, deadline and event(start time and end time)?
_For the use cases:_
Under adding of task, shouldn't the list of task be shown too?
`System adds the task to a list of tasks `, perhaps it could be extended further to show a list of task?
Same goes for some of the other use cases.
_For the glossary:_
Good job making appropriate changes to this =).
It may be more practical to give a few examples of interesting test cases and explain the thinking behind how you arrived at those test cases, rather than try to give a comprehensive list of all test cases.
Perhaps explain how your design support undo/redo. There are multiple ways this can be done, so it will be useful to explain how you do it and why you chose to do it that way.
**Overall:**
Good job including extra features like shortcut and auto complete =).
Recall from tutorial about dog-fooding your product, perhaps think of ways to improve the command format?
Also do remember to read up on the deliverable for each milestone.
Try to do a peer review on each other's PR.
Please close this issue after reading it.
|
1.0
|
V0.3 feedback - **Regarding User Guide:**
Good job adding a Keyboard Shortcut table for easy reference.
Perhaps add more partial screenshots that captures the usage of command(s)?
The 'Command summary' section will be used heavily by our testers. Try to make it easy to use as possible. e.g. give examples for each command.
**Regarding Developer Guide:**
Good job adding a comprehensive product survey, perhaps it can be represented in a table?
Do make sure the the diagrams are updated to represent your task manager and not the addressbook.
_For the user stories:_
Perhaps task could be split into the three categories? Floating, deadline and event(start time and end time)?
_For the use cases:_
Under adding of task, shouldn't the list of task be shown too?
`System adds the task to a list of tasks `, perhaps it could be extended further to show a list of task?
Same goes for some of the other use cases.
_For the glossary:_
Good job making appropriate changes to this =).
It may be more practical to give a few examples of interesting test cases and explain the thinking behind how you arrived at those test cases, rather than try to give a comprehensive list of all test cases.
Perhaps explain how your design support undo/redo. There are multiple ways this can be done, so it will be useful to explain how you do it and why you chose to do it that way.
**Overall:**
Good job including extra features like shortcut and auto complete =).
Recall from tutorial about dog-fooding your product, perhaps think of ways to improve the command format?
Also do remember to read up on the deliverable for each milestone.
Try to do a peer review on each other's PR.
Please close this issue after reading it.
|
priority
|
feedback regarding user guide good job adding a keyboard shortcut table for easy reference perhaps add more partial screenshots that captures the usage of command s the command summary section will be used heavily by our testers try to make it easy to use as possible e g give examples for each command regarding developer guide good job adding a comprehensive product survey perhaps it can be represented in a table do make sure the the diagrams are updated to represent your task manager and not the addressbook for the user stories perhaps task could be split into the three categories floating deadline and event start time and end time for the use cases under adding of task shouldn t the list of task be shown too system adds the task to a list of tasks perhaps it could be extended further to show a list of task same goes for some of the other use cases for the glossary good job making appropriate changes to this it may be more practical to give a few examples of interesting test cases and explain the thinking behind how you arrived at those test cases rather than try to give a comprehensive list of all test cases perhaps explain how your design support undo redo there are multiple ways this can be done so it will be useful to explain how you do it and why you chose to do it that way overall good job including extra features like shortcut and auto complete recall from tutorial about dog fooding your product perhaps think of ways to improve the command format also do remember to read up on the deliverable for each milestone try to do a peer review on each other s pr please close this issue after reading it
| 1
|
738,428
| 25,558,708,650
|
IssuesEvent
|
2022-11-30 09:08:09
|
transport-nantes/tn_web
|
https://api.github.com/repos/transport-nantes/tn_web
|
closed
|
_extract_data_from_ses_signal error
|
1-priority high
|
From beta. Maybe old:
```
[27/Jun/2022 13:40:57,634] ERROR[views.py:1168 (_extract_data_from_ses_signal)] Error extracting data from comments header : App 'topicblog' doesn't have a 'SendRecordTransactionalEmail' model.
[23/Nov/2022 08:53:28,778] ERROR[views.py:1321 (send_received_handler)] Error while updating send_record : SendRecordTransactionalEmail matching query does not exist
```
|
1.0
|
_extract_data_from_ses_signal error - From beta. Maybe old:
```
[27/Jun/2022 13:40:57,634] ERROR[views.py:1168 (_extract_data_from_ses_signal)] Error extracting data from comments header : App 'topicblog' doesn't have a 'SendRecordTransactionalEmail' model.
[23/Nov/2022 08:53:28,778] ERROR[views.py:1321 (send_received_handler)] Error while updating send_record : SendRecordTransactionalEmail matching query does not exist
```
|
priority
|
extract data from ses signal error from beta maybe old error error extracting data from comments header app topicblog doesn t have a sendrecordtransactionalemail model error error while updating send record sendrecordtransactionalemail matching query does not exist
| 1
|
112,401
| 4,531,804,609
|
IssuesEvent
|
2016-09-08 04:51:20
|
odecee/generator-confit
|
https://api.github.com/repos/odecee/generator-confit
|
closed
|
Update to Webpack 2
|
enhancement high priority P1
|
- [x] Update to Webpack 2 (beta x)
- [x] Update a browser project first, and ensure that that fixes the document-generation issue too.
- [ ] Make sure everything works
- [x] Do this in conjunction with #59
|
1.0
|
Update to Webpack 2 - - [x] Update to Webpack 2 (beta x)
- [x] Update a browser project first, and ensure that that fixes the document-generation issue too.
- [ ] Make sure everything works
- [x] Do this in conjunction with #59
|
priority
|
update to webpack update to webpack beta x update a browser project first and ensure that that fixes the document generation issue too make sure everything works do this in conjunction with
| 1
|
793,132
| 27,984,085,328
|
IssuesEvent
|
2023-03-26 13:52:30
|
OpenApoc/OpenApoc
|
https://api.github.com/repos/OpenApoc/OpenApoc
|
closed
|
CTD throwing a grenade - Incorrect Tile Coordinates
|
!BUG! HIGH PRIORITY Verified / Replicated Battlescape Agent Equipment
|
https://i.imgur.com/5ayQ12u.png
RT combat. Soldier was halfway through moving into a square, paused, and I issued a command to throw a grenade on the same tile he was about to reach. It was plain ground, no elevator shenanigan. CTD upon unpausing.
Unfortunately, the save isn't any good (pre-combat). Hopefully the log will help.
[GrenadeThrow.zip](https://github.com/OpenApoc/OpenApoc/files/5019587/GrenadeThrow.zip)
|
1.0
|
CTD throwing a grenade - Incorrect Tile Coordinates - https://i.imgur.com/5ayQ12u.png
RT combat. Soldier was halfway through moving into a square, paused, and I issued a command to throw a grenade on the same tile he was about to reach. It was plain ground, no elevator shenanigan. CTD upon unpausing.
Unfortunately, the save isn't any good (pre-combat). Hopefully the log will help.
[GrenadeThrow.zip](https://github.com/OpenApoc/OpenApoc/files/5019587/GrenadeThrow.zip)
|
priority
|
ctd throwing a grenade incorrect tile coordinates rt combat soldier was halfway through moving into a square paused and i issued a command to throw a grenade on the same tile he was about to reach it was plain ground no elevator shenanigan ctd upon unpausing unfortunately the save isn t any good pre combat hopefully the log will help
| 1
|
439,262
| 12,680,275,702
|
IssuesEvent
|
2020-06-19 13:25:30
|
umple/umple
|
https://api.github.com/repos/umple/umple
|
closed
|
Use of a filter with a trait that has an attribute causes compiler crash
|
Diffic-Med Priority-High bug
|
The following code gives a crash, without even a stack trace.
```
filter {include X;}
trait Device {
serialNumber; // attribute; String by default
}
class SmartLightConsole {
isA Device;
}
```
|
1.0
|
Use of a filter with a trait that has an attribute causes compiler crash - The following code gives a crash, without even a stack trace.
```
filter {include X;}
trait Device {
serialNumber; // attribute; String by default
}
class SmartLightConsole {
isA Device;
}
```
|
priority
|
use of a filter with a trait that has an attribute causes compiler crash the following code gives a crash without even a stack trace filter include x trait device serialnumber attribute string by default class smartlightconsole isa device
| 1
|
829,290
| 31,862,687,423
|
IssuesEvent
|
2023-09-15 12:08:23
|
SaraGM95/HeartsOfInk
|
https://api.github.com/repos/SaraGM95/HeartsOfInk
|
opened
|
SEPT-23-008 Crear método de SignalR - ReceiveTroopOrder
|
new development high priority
|
** Lógica de Unity**
Crea un método en la parte de unity que reciba por SignalR una orden de movimiento de tropas por parte de otro jugador de la partida.
Al recibir una orden de movimiento hay que aplicarla a la tropa correspondiente.
Implementar el método TroopController.SetTroopOrder al que hay que pasarle el troopOrderModel, y con esos datos setear el target.
Nota: No se puede reutilizar la lógica de movimiento actual porque está bastante acoplada al frontal, por eso un método nuevo.
**TroopOrderModel**
string troopName
string targetName - Nombre de la tropa objetivo, no viene informado si el objetivo es una posición.
vector2 targetPosition - Posición a la que se quiere mover la tropa, no viene informado si el objetivo es una tropa.
**Comprobación de errores**
Comprobar que el usuario es el host de la partida, un usuario que no sea el host de la partida no debería recibir ninguna llamada a este método. Si no es el host no se hace la lógica del método, en su lugar se envia una excepción al analytics server.
**Lógica en el servidor**
En el servidor el método ReceiveTroopOrder recibe el modelo y lo reenvia solo al host de la sala.
|
1.0
|
SEPT-23-008 Crear método de SignalR - ReceiveTroopOrder - ** Lógica de Unity**
Crea un método en la parte de unity que reciba por SignalR una orden de movimiento de tropas por parte de otro jugador de la partida.
Al recibir una orden de movimiento hay que aplicarla a la tropa correspondiente.
Implementar el método TroopController.SetTroopOrder al que hay que pasarle el troopOrderModel, y con esos datos setear el target.
Nota: No se puede reutilizar la lógica de movimiento actual porque está bastante acoplada al frontal, por eso un método nuevo.
**TroopOrderModel**
string troopName
string targetName - Nombre de la tropa objetivo, no viene informado si el objetivo es una posición.
vector2 targetPosition - Posición a la que se quiere mover la tropa, no viene informado si el objetivo es una tropa.
**Comprobación de errores**
Comprobar que el usuario es el host de la partida, un usuario que no sea el host de la partida no debería recibir ninguna llamada a este método. Si no es el host no se hace la lógica del método, en su lugar se envia una excepción al analytics server.
**Lógica en el servidor**
En el servidor el método ReceiveTroopOrder recibe el modelo y lo reenvia solo al host de la sala.
|
priority
|
sept crear método de signalr receivetrooporder lógica de unity crea un método en la parte de unity que reciba por signalr una orden de movimiento de tropas por parte de otro jugador de la partida al recibir una orden de movimiento hay que aplicarla a la tropa correspondiente implementar el método troopcontroller settrooporder al que hay que pasarle el troopordermodel y con esos datos setear el target nota no se puede reutilizar la lógica de movimiento actual porque está bastante acoplada al frontal por eso un método nuevo troopordermodel string troopname string targetname nombre de la tropa objetivo no viene informado si el objetivo es una posición targetposition posición a la que se quiere mover la tropa no viene informado si el objetivo es una tropa comprobación de errores comprobar que el usuario es el host de la partida un usuario que no sea el host de la partida no debería recibir ninguna llamada a este método si no es el host no se hace la lógica del método en su lugar se envia una excepción al analytics server lógica en el servidor en el servidor el método receivetrooporder recibe el modelo y lo reenvia solo al host de la sala
| 1
|
674,439
| 23,050,906,045
|
IssuesEvent
|
2022-07-24 16:04:50
|
itachi1706/GI-Weekly-Material-Tracker
|
https://api.github.com/repos/itachi1706/GI-Weekly-Material-Tracker
|
closed
|
Migrate to GitHub
|
status::in progress priority::high
|
We move to GitHub as GitLab no longer supports pull mirroring. We will do it as soon as #219 is done
|
1.0
|
Migrate to GitHub - We move to GitHub as GitLab no longer supports pull mirroring. We will do it as soon as #219 is done
|
priority
|
migrate to github we move to github as gitlab no longer supports pull mirroring we will do it as soon as is done
| 1
|
730,950
| 25,195,822,590
|
IssuesEvent
|
2022-11-12 13:53:15
|
semaphore-protocol/zk-groups
|
https://api.github.com/repos/semaphore-protocol/zk-groups
|
opened
|
Restrict access only to specified group in Invite code
|
high priority refactoring :recycle:
|
When the user knows the invite code (or when the invite code is stolen),
they can enter any group by directly calling the `addMember` api.
|
1.0
|
Restrict access only to specified group in Invite code - When the user knows the invite code (or when the invite code is stolen),
they can enter any group by directly calling the `addMember` api.
|
priority
|
restrict access only to specified group in invite code when the user knows the invite code or when the invite code is stolen they can enter any group by directly calling the addmember api
| 1
|
701,703
| 24,104,753,263
|
IssuesEvent
|
2022-09-20 06:21:18
|
Hiryuto/technologia-tool
|
https://api.github.com/repos/Hiryuto/technologia-tool
|
closed
|
Make a great RPG for a change of pace. 気分転換になるRPGを作る
|
enhancement/新機能リクエスト [0] priority:high/優先度:高
|
The text is long and has not been translated.
Please use [DeepL translation](https://www.deepl.com/translator), etc.
---
具体的な内容
- [x] #17
- [x] #18
- [x] #19
- [x] #20
- [x] #21
- [x] #22
- [ ] #23
- [x] #24
- [x] #25
- [x] #26
- [x] #27
- [x] #28
- [x] #29
|
1.0
|
Make a great RPG for a change of pace. 気分転換になるRPGを作る - The text is long and has not been translated.
Please use [DeepL translation](https://www.deepl.com/translator), etc.
---
具体的な内容
- [x] #17
- [x] #18
- [x] #19
- [x] #20
- [x] #21
- [x] #22
- [ ] #23
- [x] #24
- [x] #25
- [x] #26
- [x] #27
- [x] #28
- [x] #29
|
priority
|
make a great rpg for a change of pace 気分転換になるrpgを作る the text is long and has not been translated please use etc 具体的な内容
| 1
|
245,932
| 7,892,911,878
|
IssuesEvent
|
2018-06-28 16:18:50
|
ansible/mazer
|
https://api.github.com/repos/ansible/mazer
|
closed
|
`install` command options
|
priority/high type/bug
|
Noticed that `mazer install --help` includes the following things...
This one is confusing. What does it do, and should it be removed?
```
-g, --keep-scm-meta
Use tar instead of the scm archive option when packaging the role
```
The following conflicts with `--content-path`, and should be removed:
```
-p ROLES_PATH, --roles-path=ROLES_PATH
The path to the directory containing your roles. The default is the roles_path configured in your
ansible.cfgfile (/etc/ansible/roles if not configured)
```
We decided to NOT allow installing individual content types from a package, so this one should go away too:
```
-t CONTENT_TYPE, --type=CONTENT_TYPE
A type of Galaxy Content to install: role, module, etc
```
|
1.0
|
`install` command options - Noticed that `mazer install --help` includes the following things...
This one is confusing. What does it do, and should it be removed?
```
-g, --keep-scm-meta
Use tar instead of the scm archive option when packaging the role
```
The following conflicts with `--content-path`, and should be removed:
```
-p ROLES_PATH, --roles-path=ROLES_PATH
The path to the directory containing your roles. The default is the roles_path configured in your
ansible.cfgfile (/etc/ansible/roles if not configured)
```
We decided to NOT allow installing individual content types from a package, so this one should go away too:
```
-t CONTENT_TYPE, --type=CONTENT_TYPE
A type of Galaxy Content to install: role, module, etc
```
|
priority
|
install command options noticed that mazer install help includes the following things this one is confusing what does it do and should it be removed g keep scm meta use tar instead of the scm archive option when packaging the role the following conflicts with content path and should be removed p roles path roles path roles path the path to the directory containing your roles the default is the roles path configured in your ansible cfgfile etc ansible roles if not configured we decided to not allow installing individual content types from a package so this one should go away too t content type type content type a type of galaxy content to install role module etc
| 1
|
511,581
| 14,876,960,912
|
IssuesEvent
|
2021-01-20 02:02:41
|
StrangeLoopGames/EcoIssues
|
https://api.github.com/repos/StrangeLoopGames/EcoIssues
|
closed
|
fix eco tree comments labels in discord
|
Category: Accounts Category: Web Priority: High
|
re-create probably all eco tree threads (delete from admin)? It'll generate new, correct titles for those.
Cuzz as I wrote before, threads which were already created (by posting the comments) will preserve to have wrong titles/slugs. So we need to fresh that up.
|
1.0
|
fix eco tree comments labels in discord - re-create probably all eco tree threads (delete from admin)? It'll generate new, correct titles for those.
Cuzz as I wrote before, threads which were already created (by posting the comments) will preserve to have wrong titles/slugs. So we need to fresh that up.
|
priority
|
fix eco tree comments labels in discord re create probably all eco tree threads delete from admin it ll generate new correct titles for those cuzz as i wrote before threads which were already created by posting the comments will preserve to have wrong titles slugs so we need to fresh that up
| 1
|
458,000
| 13,166,492,979
|
IssuesEvent
|
2020-08-11 08:39:04
|
StrangeLoopGames/EcoIssues
|
https://api.github.com/repos/StrangeLoopGames/EcoIssues
|
closed
|
[0.9.0 staging-1711] Crash with TextLinks - spontaneous
|
Category: Tech Priority: High
|
Just happens sometimes when you should receive some message in chat (with links?).
Last time it was /test makeusers 40 command
```
Disconnected with error: Server encountered an exception:
<size=60.00%>Exception: NullReferenceException
Message:Object reference not set to an instance of an object.
Source:Eco.Gameplay
System.NullReferenceException: Object reference not set to an instance of an object.
at Eco.Gameplay.Systems.TextLinks.UserLinkIdTranslatorHelper.GetLinkId(User linkTarget)
at Eco.Gameplay.Systems.TextLinks.ReputationLinkIdTranslator.GetTypedLinkId(Reputation linkTarget)
at Eco.Gameplay.Systems.TextLinks.ObjectLinkIdTranslator`1.GetLinkId(ILinkable linkTarget)
at Eco.Gameplay.Systems.TextLinks.UILinkExtensions.UILink(ILinkable linkable, LocString content)
at Eco.Gameplay.Systems.TextLinks.UILinkExtensions.UILink(ILinkable linkable)
at Eco.Gameplay.Players.User.get_MarkedUpReputationAndName()
at Eco.Core.Utils.CoreReflectionUtils.<>c__DisplayClass19_0`2.<FuncMethodHelper>b__0(TTarget target)
at Eco.Core.Controller.SyncPropertyInfo`1.<>c__DisplayClass16_0.<.ctor>b__1(Object obj)
at Eco.Core.Controller.SyncPropertyInfo`1.GetValue(Object obj)
at Eco.Core.Controller.ControllerManager.PackageProperty(IMvcNetClient boundClient, IController controller, ISyncPropertyInfo propertyInfo)
at Eco.Core.Controller.ControllerManager.PackageMember(IMvcNetClient boundClient, IController controller, Int32 nameID)
at Eco.Core.Controller.ControllerManager.PackageView(IController controller, IMvcNetClient client, PackageFlags flags)
at Eco.Core.Controller.ControllerManager.PackageController(IController controller, IMvcNetClient mvcClient, PackageFlags flags)
at Eco.Core.Controller.ControllerManager.ToBson(Object obj, INetClient client)
at Eco.Shared.Serialization.BsonManipulator.ToBson(Object val, INetClient client, Boolean useReflection)
at Eco.Shared.Utils.EnumerableExtensions.ToBson(IEnumerable enumeration, INetClient client, Boolean doAllParams)
at Eco.Shared.Serialization.BsonManipulator.ToBson(Object val, INetClient client, Boolean useReflection)
at Eco.Shared.Serialization.BsonManipulator.ToBson(IDictionary dictionary, INetClient client, Boolean useReflection)
at Eco.Shared.Serialization.BsonManipulator.ToBson(Object val, INetClient client, Boolean useReflection)
at Eco.Core.Controller.ControllerManager.PackageValue(IMvcNetClient boundClient, Object value, Int32 nameID)
at Eco.Core.Controller.ControllerManager.PackageProperty(IMvcNetClient boundClient, IController controller, ISyncPropertyInfo propertyInfo)
at Eco.Core.Controller.ControllerManager.PackageMember(IMvcNetClient boundClient, IController controller, Int32 nameID)
at Eco.Core.Controller.ControllerManager.GetChanges(IMvcNetClient client)
at Eco.Plugins.Networking.Client.Update()
at Eco.Plugins.Networking.Client.<.ctor>b__70_1()</size>
UnityEngine.Logger:Log(LogType, Object)
UnityEngine.Debug:LogWarning(Object)
NetworkManager:OnClientDisconnected(String)
System.Action`1:Invoke(T)
Eco.Shared.Networking.NetworkClient:HandleDisconnect(String)
Eco.Shared.Networking.NetworkClient:HandleDisconnected(Object, Boolean)
UnityEngine.XR.WSA.OnTrackingChangedDelegate:Invoke(WorldAnchor, Boolean)
Eco.Networking.ENet.ENetUdpClient:OnDisconnected(ENetConnection, Boolean)
Eco.Networking.ENet.ENetUdpPeer:HandleEvent()
Eco.Networking.ENet.ENetUdpPeer:Service(Int32)
<>c__DisplayClass60_0:<Initialize>b__0()
RootMotion.FinalIK.GrounderDelegate:Invoke()
OnJoinInfo:Invoke(String)
System.Threading.ExecutionContext:RunInternal(ExecutionContext, ContextCallback, Object, Boolean)
System.Threading.ExecutionContext:Run(ExecutionContext, ContextCallback, Object)
RootMotion.FinalIK.GrounderDelegate:Invoke()
(Filename: C:\buildslave\unity\build\Runtime/Export/Debug/Debug.bindings.h Line: 35)
```
|
1.0
|
[0.9.0 staging-1711] Crash with TextLinks - spontaneous - Just happens sometimes when you should receive some message in chat (with links?).
Last time it was /test makeusers 40 command
```
Disconnected with error: Server encountered an exception:
<size=60.00%>Exception: NullReferenceException
Message:Object reference not set to an instance of an object.
Source:Eco.Gameplay
System.NullReferenceException: Object reference not set to an instance of an object.
at Eco.Gameplay.Systems.TextLinks.UserLinkIdTranslatorHelper.GetLinkId(User linkTarget)
at Eco.Gameplay.Systems.TextLinks.ReputationLinkIdTranslator.GetTypedLinkId(Reputation linkTarget)
at Eco.Gameplay.Systems.TextLinks.ObjectLinkIdTranslator`1.GetLinkId(ILinkable linkTarget)
at Eco.Gameplay.Systems.TextLinks.UILinkExtensions.UILink(ILinkable linkable, LocString content)
at Eco.Gameplay.Systems.TextLinks.UILinkExtensions.UILink(ILinkable linkable)
at Eco.Gameplay.Players.User.get_MarkedUpReputationAndName()
at Eco.Core.Utils.CoreReflectionUtils.<>c__DisplayClass19_0`2.<FuncMethodHelper>b__0(TTarget target)
at Eco.Core.Controller.SyncPropertyInfo`1.<>c__DisplayClass16_0.<.ctor>b__1(Object obj)
at Eco.Core.Controller.SyncPropertyInfo`1.GetValue(Object obj)
at Eco.Core.Controller.ControllerManager.PackageProperty(IMvcNetClient boundClient, IController controller, ISyncPropertyInfo propertyInfo)
at Eco.Core.Controller.ControllerManager.PackageMember(IMvcNetClient boundClient, IController controller, Int32 nameID)
at Eco.Core.Controller.ControllerManager.PackageView(IController controller, IMvcNetClient client, PackageFlags flags)
at Eco.Core.Controller.ControllerManager.PackageController(IController controller, IMvcNetClient mvcClient, PackageFlags flags)
at Eco.Core.Controller.ControllerManager.ToBson(Object obj, INetClient client)
at Eco.Shared.Serialization.BsonManipulator.ToBson(Object val, INetClient client, Boolean useReflection)
at Eco.Shared.Utils.EnumerableExtensions.ToBson(IEnumerable enumeration, INetClient client, Boolean doAllParams)
at Eco.Shared.Serialization.BsonManipulator.ToBson(Object val, INetClient client, Boolean useReflection)
at Eco.Shared.Serialization.BsonManipulator.ToBson(IDictionary dictionary, INetClient client, Boolean useReflection)
at Eco.Shared.Serialization.BsonManipulator.ToBson(Object val, INetClient client, Boolean useReflection)
at Eco.Core.Controller.ControllerManager.PackageValue(IMvcNetClient boundClient, Object value, Int32 nameID)
at Eco.Core.Controller.ControllerManager.PackageProperty(IMvcNetClient boundClient, IController controller, ISyncPropertyInfo propertyInfo)
at Eco.Core.Controller.ControllerManager.PackageMember(IMvcNetClient boundClient, IController controller, Int32 nameID)
at Eco.Core.Controller.ControllerManager.GetChanges(IMvcNetClient client)
at Eco.Plugins.Networking.Client.Update()
at Eco.Plugins.Networking.Client.<.ctor>b__70_1()</size>
UnityEngine.Logger:Log(LogType, Object)
UnityEngine.Debug:LogWarning(Object)
NetworkManager:OnClientDisconnected(String)
System.Action`1:Invoke(T)
Eco.Shared.Networking.NetworkClient:HandleDisconnect(String)
Eco.Shared.Networking.NetworkClient:HandleDisconnected(Object, Boolean)
UnityEngine.XR.WSA.OnTrackingChangedDelegate:Invoke(WorldAnchor, Boolean)
Eco.Networking.ENet.ENetUdpClient:OnDisconnected(ENetConnection, Boolean)
Eco.Networking.ENet.ENetUdpPeer:HandleEvent()
Eco.Networking.ENet.ENetUdpPeer:Service(Int32)
<>c__DisplayClass60_0:<Initialize>b__0()
RootMotion.FinalIK.GrounderDelegate:Invoke()
OnJoinInfo:Invoke(String)
System.Threading.ExecutionContext:RunInternal(ExecutionContext, ContextCallback, Object, Boolean)
System.Threading.ExecutionContext:Run(ExecutionContext, ContextCallback, Object)
RootMotion.FinalIK.GrounderDelegate:Invoke()
(Filename: C:\buildslave\unity\build\Runtime/Export/Debug/Debug.bindings.h Line: 35)
```
|
priority
|
crash with textlinks spontaneous just happens sometimes when you should receive some message in chat with links last time it was test makeusers command disconnected with error server encountered an exception exception nullreferenceexception message object reference not set to an instance of an object source eco gameplay system nullreferenceexception object reference not set to an instance of an object at eco gameplay systems textlinks userlinkidtranslatorhelper getlinkid user linktarget at eco gameplay systems textlinks reputationlinkidtranslator gettypedlinkid reputation linktarget at eco gameplay systems textlinks objectlinkidtranslator getlinkid ilinkable linktarget at eco gameplay systems textlinks uilinkextensions uilink ilinkable linkable locstring content at eco gameplay systems textlinks uilinkextensions uilink ilinkable linkable at eco gameplay players user get markedupreputationandname at eco core utils corereflectionutils c b ttarget target at eco core controller syncpropertyinfo c b object obj at eco core controller syncpropertyinfo getvalue object obj at eco core controller controllermanager packageproperty imvcnetclient boundclient icontroller controller isyncpropertyinfo propertyinfo at eco core controller controllermanager packagemember imvcnetclient boundclient icontroller controller nameid at eco core controller controllermanager packageview icontroller controller imvcnetclient client packageflags flags at eco core controller controllermanager packagecontroller icontroller controller imvcnetclient mvcclient packageflags flags at eco core controller controllermanager tobson object obj inetclient client at eco shared serialization bsonmanipulator tobson object val inetclient client boolean usereflection at eco shared utils enumerableextensions tobson ienumerable enumeration inetclient client boolean doallparams at eco shared serialization bsonmanipulator tobson object val inetclient client boolean usereflection at eco shared serialization bsonmanipulator tobson idictionary dictionary inetclient client boolean usereflection at eco shared serialization bsonmanipulator tobson object val inetclient client boolean usereflection at eco core controller controllermanager packagevalue imvcnetclient boundclient object value nameid at eco core controller controllermanager packageproperty imvcnetclient boundclient icontroller controller isyncpropertyinfo propertyinfo at eco core controller controllermanager packagemember imvcnetclient boundclient icontroller controller nameid at eco core controller controllermanager getchanges imvcnetclient client at eco plugins networking client update at eco plugins networking client b unityengine logger log logtype object unityengine debug logwarning object networkmanager onclientdisconnected string system action invoke t eco shared networking networkclient handledisconnect string eco shared networking networkclient handledisconnected object boolean unityengine xr wsa ontrackingchangeddelegate invoke worldanchor boolean eco networking enet enetudpclient ondisconnected enetconnection boolean eco networking enet enetudppeer handleevent eco networking enet enetudppeer service c b rootmotion finalik grounderdelegate invoke onjoininfo invoke string system threading executioncontext runinternal executioncontext contextcallback object boolean system threading executioncontext run executioncontext contextcallback object rootmotion finalik grounderdelegate invoke filename c buildslave unity build runtime export debug debug bindings h line
| 1
|
140,548
| 5,411,965,548
|
IssuesEvent
|
2017-03-01 13:20:00
|
DevopediaOrg/webapp
|
https://api.github.com/repos/DevopediaOrg/webapp
|
closed
|
Article substates
|
enhancement high priority
|
Substates will tell us the following:
- Review status of an article
- Published or Unpublished
- Missing sections
- Too few references/citations
- Ambiguous with another article
- Too similar to another article and consider merging
|
1.0
|
Article substates - Substates will tell us the following:
- Review status of an article
- Published or Unpublished
- Missing sections
- Too few references/citations
- Ambiguous with another article
- Too similar to another article and consider merging
|
priority
|
article substates substates will tell us the following review status of an article published or unpublished missing sections too few references citations ambiguous with another article too similar to another article and consider merging
| 1
|
187,007
| 6,744,277,855
|
IssuesEvent
|
2017-10-20 15:08:21
|
vincentrk/quadrodoodle
|
https://api.github.com/repos/vincentrk/quadrodoodle
|
closed
|
Begin implementing Yaw control
|
high priority
|
- [ ] Look into p controller, cascading controller
- [ ] Figure out and implement new message type for updating p values
- [ ] Quad
- [ ] PC terminal
- [ ] Look at sensor data
- [ ] Figure out drift
- [ ] Figure out calculations/formulas needed
- [ ] Implement
- [ ] Quad
- [ ] PC terminal
|
1.0
|
Begin implementing Yaw control - - [ ] Look into p controller, cascading controller
- [ ] Figure out and implement new message type for updating p values
- [ ] Quad
- [ ] PC terminal
- [ ] Look at sensor data
- [ ] Figure out drift
- [ ] Figure out calculations/formulas needed
- [ ] Implement
- [ ] Quad
- [ ] PC terminal
|
priority
|
begin implementing yaw control look into p controller cascading controller figure out and implement new message type for updating p values quad pc terminal look at sensor data figure out drift figure out calculations formulas needed implement quad pc terminal
| 1
|
89,990
| 3,807,853,310
|
IssuesEvent
|
2016-03-25 11:22:06
|
pmem/issues
|
https://api.github.com/repos/pmem/issues
|
closed
|
libpmemobj: assertion failure when reallocating memory to valid size atomically
|
Exposure: High Priority: 2 high Type: Bug
|
Test flow:
1. Create pool with 2GB size.
2. Allocate 30 kB of memory calling pmemobj_alloc().
3. While there is available memory in the pool space do:
- resize allocated object calling pmemobj_realloc() with size = size * 2
Result:
In i-th iteration, when size = 480kB, following assertion failure occurs:
`<libpmemobj>: <3> [obj.c:1413 pmemobj_realloc] pop 0x7f35c0000000 oid.off 0x00000000003a3580 size 491520 type_num 0`
`<libpmemobj>: <3> [tx.c:1059 pmemobj_tx_stage]`
`<libpmemobj>: <3> [obj.c:1539 pmemobj_alloc_usable_size] oid.off 0x00000000003a3580`
`<libpmemobj>: <3> [obj.c:1051 pmemobj_pool_by_oid] oid.off 0x00000000003a3580`
`<libpmemobj>: <3> [list.c:1452 list_realloc]`
`<libpmemobj>: <3> [sync.c:149 pmemobj_mutex_lock] pop 0x7f35c0000000 mutex 0x7f35c0302090`
`<libpmemobj>: <1> [heap.c:1181 heap_run_get_block] assertion failure: rb->type (0x1) == BUCKET_RUN (0x2)`
`Aborted (core dumped)`
|
1.0
|
libpmemobj: assertion failure when reallocating memory to valid size atomically - Test flow:
1. Create pool with 2GB size.
2. Allocate 30 kB of memory calling pmemobj_alloc().
3. While there is available memory in the pool space do:
- resize allocated object calling pmemobj_realloc() with size = size * 2
Result:
In i-th iteration, when size = 480kB, following assertion failure occurs:
`<libpmemobj>: <3> [obj.c:1413 pmemobj_realloc] pop 0x7f35c0000000 oid.off 0x00000000003a3580 size 491520 type_num 0`
`<libpmemobj>: <3> [tx.c:1059 pmemobj_tx_stage]`
`<libpmemobj>: <3> [obj.c:1539 pmemobj_alloc_usable_size] oid.off 0x00000000003a3580`
`<libpmemobj>: <3> [obj.c:1051 pmemobj_pool_by_oid] oid.off 0x00000000003a3580`
`<libpmemobj>: <3> [list.c:1452 list_realloc]`
`<libpmemobj>: <3> [sync.c:149 pmemobj_mutex_lock] pop 0x7f35c0000000 mutex 0x7f35c0302090`
`<libpmemobj>: <1> [heap.c:1181 heap_run_get_block] assertion failure: rb->type (0x1) == BUCKET_RUN (0x2)`
`Aborted (core dumped)`
|
priority
|
libpmemobj assertion failure when reallocating memory to valid size atomically test flow create pool with size allocate kb of memory calling pmemobj alloc while there is available memory in the pool space do resize allocated object calling pmemobj realloc with size size result in i th iteration when size following assertion failure occurs pop oid off size type num oid off oid off pop mutex assertion failure rb type bucket run aborted core dumped
| 1
|
492,039
| 14,175,633,795
|
IssuesEvent
|
2020-11-12 21:56:48
|
pulibrary/marc_liberation
|
https://api.github.com/repos/pulibrary/marc_liberation
|
closed
|
Delete suppressed record from the online catalog
|
high-priority
|
Remove https://catalog.princeton.edu/catalog/12106945 from the production index.
This is removed after running the full re-index on 2020-11-09 but we can also remove it using https://github.com/pulibrary/marc_liberation/blob/ab2a0e4e9f348bee4343335d6ec59a2fdf1882a1/lib/tasks/orangeindex.rake#L81
|
1.0
|
Delete suppressed record from the online catalog - Remove https://catalog.princeton.edu/catalog/12106945 from the production index.
This is removed after running the full re-index on 2020-11-09 but we can also remove it using https://github.com/pulibrary/marc_liberation/blob/ab2a0e4e9f348bee4343335d6ec59a2fdf1882a1/lib/tasks/orangeindex.rake#L81
|
priority
|
delete suppressed record from the online catalog remove from the production index this is removed after running the full re index on but we can also remove it using
| 1
|
746,709
| 26,042,639,450
|
IssuesEvent
|
2022-12-22 11:47:24
|
Cinevoraces/cinevoraces
|
https://api.github.com/repos/Cinevoraces/cinevoraces
|
opened
|
APP - Small fixes
|
bug priority: high
|
- [ ] Films page : Select Menu is z - positionned under the filter counter
- [ ] Films Page : Max realease date seems to be broken
- [ ] Films Page : Display only published movies
- [ ] Layout : connection success / failure has to be updated according to recent API modification (res property message)
- [ ] Film Page : While editing one's comment, content from other cards vanishes
- [ ] Film Page : If no comment are published for a movie, center the alternative message
|
1.0
|
APP - Small fixes - - [ ] Films page : Select Menu is z - positionned under the filter counter
- [ ] Films Page : Max realease date seems to be broken
- [ ] Films Page : Display only published movies
- [ ] Layout : connection success / failure has to be updated according to recent API modification (res property message)
- [ ] Film Page : While editing one's comment, content from other cards vanishes
- [ ] Film Page : If no comment are published for a movie, center the alternative message
|
priority
|
app small fixes films page select menu is z positionned under the filter counter films page max realease date seems to be broken films page display only published movies layout connection success failure has to be updated according to recent api modification res property message film page while editing one s comment content from other cards vanishes film page if no comment are published for a movie center the alternative message
| 1
|
515,347
| 14,960,635,202
|
IssuesEvent
|
2021-01-27 06:13:38
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
accounts.firefox.com - desktop site instead of mobile site
|
browser-fenix engine-gecko ml-needsdiagnosis-false ml-probability-high priority-normal
|
<!-- @browser: Firefox Mobile 85.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:85.0) Gecko/85.0 Firefox/85.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/66315 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://accounts.firefox.com/oauth/force_auth?action=email&response_type=code&entrypoint=android-components&email=boosbeeluckygangno1nogod%40gmail.com&client_id=a2270f727f45f648&scope=https%3A%2F%2Fidentity.mozilla.com%2Ftokens%2Fsession+https%3A%2F%2Fidentity.mozilla.com%2Fapps%2Foldsync+profile&state=Jbq2yil9pjWPz1lk0pxdXw&code_challenge_method=S256&code_challenge=QBmRMabiBfDaM3t1fhukCIIAtTRz9O6Mfy7uyp4X9u4&access_type=offline&keys_jwk=eyJrdHkiOiJFQyIsImNydiI6IlAtMjU2IiwieCI6InlheTc2QWk1b1JOQk9DNlEwYUhlM2VoZ3NqX2dtbFM5Y0EtUjkwN0VUWEUiLCJ5IjoiTmg3NXZPa0ZyRFF6YjB5eGtWVXpZaDdibjhzcVpkMmxFcTdHc2xCemdRbyJ9&context=oauth_webchannel_v1
**Browser / Version**: Firefox Mobile 85.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: Yes Other
**Problem type**: Desktop site instead of mobile site
**Description**: Desktop site instead of mobile site
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/1/76de38e4-3f9f-427d-a35b-db9b4ed5ffc5.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: 20210115192513</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/2021/1/ef2cf204-c805-4553-b98c-a66a263b73f4)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
accounts.firefox.com - desktop site instead of mobile site - <!-- @browser: Firefox Mobile 85.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:85.0) Gecko/85.0 Firefox/85.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/66315 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://accounts.firefox.com/oauth/force_auth?action=email&response_type=code&entrypoint=android-components&email=boosbeeluckygangno1nogod%40gmail.com&client_id=a2270f727f45f648&scope=https%3A%2F%2Fidentity.mozilla.com%2Ftokens%2Fsession+https%3A%2F%2Fidentity.mozilla.com%2Fapps%2Foldsync+profile&state=Jbq2yil9pjWPz1lk0pxdXw&code_challenge_method=S256&code_challenge=QBmRMabiBfDaM3t1fhukCIIAtTRz9O6Mfy7uyp4X9u4&access_type=offline&keys_jwk=eyJrdHkiOiJFQyIsImNydiI6IlAtMjU2IiwieCI6InlheTc2QWk1b1JOQk9DNlEwYUhlM2VoZ3NqX2dtbFM5Y0EtUjkwN0VUWEUiLCJ5IjoiTmg3NXZPa0ZyRFF6YjB5eGtWVXpZaDdibjhzcVpkMmxFcTdHc2xCemdRbyJ9&context=oauth_webchannel_v1
**Browser / Version**: Firefox Mobile 85.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: Yes Other
**Problem type**: Desktop site instead of mobile site
**Description**: Desktop site instead of mobile site
**Steps to Reproduce**:
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/1/76de38e4-3f9f-427d-a35b-db9b4ed5ffc5.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: 20210115192513</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/2021/1/ef2cf204-c805-4553-b98c-a66a263b73f4)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
priority
|
accounts firefox com desktop site instead of mobile site url browser version firefox mobile operating system android tested another browser yes other problem type desktop site instead of mobile site description desktop site instead of mobile site 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,492
| 10,932,935,711
|
IssuesEvent
|
2019-11-23 21:24:51
|
pytorch/pytorch
|
https://api.github.com/repos/pytorch/pytorch
|
closed
|
reshape with non-contiguous input has wrong gradient on CUDA (breaking einsum)
|
high priority module: autograd module: operators triage review triaged
|
## 🐛 Bug
`einsum`, which takes **incontiguous** tensor as input, can not back-propagate correct gradient
## To Reproduce
```python
from argparse import ArgumentParser
import torch
from torch import Tensor
def check_jacobian(x: Tensor, weight: Tensor):
print(f'{"contiguous" if x.is_contiguous() else "incontiguous"} input tensor')
y1 = x @ weight
y2 = torch.einsum('...x,xy->...y', [x, weight])
assert torch.allclose(y1, y2)
x.grad = None
y1.backward(torch.eye(2, device=x.device))
print(f'matmul.jacobian => {x.grad.view(-1)}')
x.grad = None
y2.backward(torch.eye(2, device=x.device))
print(f'einsum.jacobian => {x.grad.view(-1)}')
if __name__ == '__main__':
argument_parser = ArgumentParser()
argument_parser.add_argument('--device', type=int, default=-1)
args = argument_parser.parse_args()
torch.cuda.set_device(args.device)
torch.manual_seed(42)
device = torch.device(f'cuda:{args.device}')
_x = torch.rand(1, 2, device=device)
x1 = _x.expand(2, -1).requires_grad_()
x2 = _x.expand(2, -1).contiguous().requires_grad_()
w = torch.rand(2, 2, device=device)
check_jacobian(x1, w)
check_jacobian(x2, w)
```
this code will output as below, but as you notice `einsum.jacobian` of `incontiguous input tensor` is different from all the others.
```
incontiguous input tensor
matmul.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
einsum.jacobian => tensor([0.5583, 0.5421, 0.5583, 0.5421], device='cuda:0')
contiguous input tensor
matmul.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
einsum.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
```
## Expected behavior
```
incontiguous input tensor
matmul.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
einsum.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
contiguous input tensor
matmul.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
einsum.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
```
## Environment
PyTorch version: 1.3.1
Is debug build: No
CUDA used to build PyTorch: 10.1.243
OS: Ubuntu 16.04.6 LTS
GCC version: (Homebrew gcc 5.5.0_4) 5.5.0
CMake version: version 3.15.2
Python version: 3.7
Is CUDA available: Yes
CUDA runtime version: Could not collect
GPU models and configuration:
GPU 0: GeForce GTX 1080 Ti
GPU 1: GeForce GTX 1080 Ti
GPU 2: GeForce GTX 1080 Ti
GPU 3: GeForce GTX 1080 Ti
Nvidia driver version: 418.87.01
cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.5.0
Versions of relevant libraries:
[pip] numpy==1.15.4
[pip] numpydoc==0.8.0
[conda] pytorch-crf 0.7.0 pypi_0 pypi
[conda] pytorch-pretrained-bert 0.6.2 pypi_0 pypi
[conda] pytorch-transformers 1.0.0 pypi_0 pypi
[conda] torch 1.3.1 pypi_0 pypi
[conda] torch-scatter 1.4.0 pypi_0 pypi
[conda] torch-struct 0.3 pypi_0 pypi
[conda] torchcrf 1.0.4 pypi_0 pypi
[conda] torchsnooper 0.3 pypi_0 pypi
[conda] torchtext 0.4.0 pypi_0 pypi
cc @ezyang @gchanan @zou3519 @jerryzh168 @SsnL @albanD @gqchen
|
1.0
|
reshape with non-contiguous input has wrong gradient on CUDA (breaking einsum) - ## 🐛 Bug
`einsum`, which takes **incontiguous** tensor as input, can not back-propagate correct gradient
## To Reproduce
```python
from argparse import ArgumentParser
import torch
from torch import Tensor
def check_jacobian(x: Tensor, weight: Tensor):
print(f'{"contiguous" if x.is_contiguous() else "incontiguous"} input tensor')
y1 = x @ weight
y2 = torch.einsum('...x,xy->...y', [x, weight])
assert torch.allclose(y1, y2)
x.grad = None
y1.backward(torch.eye(2, device=x.device))
print(f'matmul.jacobian => {x.grad.view(-1)}')
x.grad = None
y2.backward(torch.eye(2, device=x.device))
print(f'einsum.jacobian => {x.grad.view(-1)}')
if __name__ == '__main__':
argument_parser = ArgumentParser()
argument_parser.add_argument('--device', type=int, default=-1)
args = argument_parser.parse_args()
torch.cuda.set_device(args.device)
torch.manual_seed(42)
device = torch.device(f'cuda:{args.device}')
_x = torch.rand(1, 2, device=device)
x1 = _x.expand(2, -1).requires_grad_()
x2 = _x.expand(2, -1).contiguous().requires_grad_()
w = torch.rand(2, 2, device=device)
check_jacobian(x1, w)
check_jacobian(x2, w)
```
this code will output as below, but as you notice `einsum.jacobian` of `incontiguous input tensor` is different from all the others.
```
incontiguous input tensor
matmul.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
einsum.jacobian => tensor([0.5583, 0.5421, 0.5583, 0.5421], device='cuda:0')
contiguous input tensor
matmul.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
einsum.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
```
## Expected behavior
```
incontiguous input tensor
matmul.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
einsum.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
contiguous input tensor
matmul.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
einsum.jacobian => tensor([0.9877, 0.5621, 0.1289, 0.5221], device='cuda:0')
```
## Environment
PyTorch version: 1.3.1
Is debug build: No
CUDA used to build PyTorch: 10.1.243
OS: Ubuntu 16.04.6 LTS
GCC version: (Homebrew gcc 5.5.0_4) 5.5.0
CMake version: version 3.15.2
Python version: 3.7
Is CUDA available: Yes
CUDA runtime version: Could not collect
GPU models and configuration:
GPU 0: GeForce GTX 1080 Ti
GPU 1: GeForce GTX 1080 Ti
GPU 2: GeForce GTX 1080 Ti
GPU 3: GeForce GTX 1080 Ti
Nvidia driver version: 418.87.01
cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.5.0
Versions of relevant libraries:
[pip] numpy==1.15.4
[pip] numpydoc==0.8.0
[conda] pytorch-crf 0.7.0 pypi_0 pypi
[conda] pytorch-pretrained-bert 0.6.2 pypi_0 pypi
[conda] pytorch-transformers 1.0.0 pypi_0 pypi
[conda] torch 1.3.1 pypi_0 pypi
[conda] torch-scatter 1.4.0 pypi_0 pypi
[conda] torch-struct 0.3 pypi_0 pypi
[conda] torchcrf 1.0.4 pypi_0 pypi
[conda] torchsnooper 0.3 pypi_0 pypi
[conda] torchtext 0.4.0 pypi_0 pypi
cc @ezyang @gchanan @zou3519 @jerryzh168 @SsnL @albanD @gqchen
|
priority
|
reshape with non contiguous input has wrong gradient on cuda breaking einsum 🐛 bug einsum which takes incontiguous tensor as input can not back propagate correct gradient to reproduce python from argparse import argumentparser import torch from torch import tensor def check jacobian x tensor weight tensor print f contiguous if x is contiguous else incontiguous input tensor x weight torch einsum x xy y assert torch allclose x grad none backward torch eye device x device print f matmul jacobian x grad view x grad none backward torch eye device x device print f einsum jacobian x grad view if name main argument parser argumentparser argument parser add argument device type int default args argument parser parse args torch cuda set device args device torch manual seed device torch device f cuda args device x torch rand device device x expand requires grad x expand contiguous requires grad w torch rand device device check jacobian w check jacobian w this code will output as below but as you notice einsum jacobian of incontiguous input tensor is different from all the others incontiguous input tensor matmul jacobian tensor device cuda einsum jacobian tensor device cuda contiguous input tensor matmul jacobian tensor device cuda einsum jacobian tensor device cuda expected behavior incontiguous input tensor matmul jacobian tensor device cuda einsum jacobian tensor device cuda contiguous input tensor matmul jacobian tensor device cuda einsum jacobian tensor device cuda environment pytorch version is debug build no cuda used to build pytorch os ubuntu lts gcc version homebrew gcc cmake version version python version is cuda available yes cuda runtime version could not collect gpu models and configuration gpu geforce gtx ti gpu geforce gtx ti gpu geforce gtx ti gpu geforce gtx ti nvidia driver version cudnn version usr lib linux gnu libcudnn so versions of relevant libraries numpy numpydoc pytorch crf pypi pypi pytorch pretrained bert pypi pypi pytorch transformers pypi pypi torch pypi pypi torch scatter pypi pypi torch struct pypi pypi torchcrf pypi pypi torchsnooper pypi pypi torchtext pypi pypi cc ezyang gchanan ssnl alband gqchen
| 1
|
689,134
| 23,609,234,765
|
IssuesEvent
|
2022-08-24 10:55:39
|
younginnovations/iatipublisher
|
https://api.github.com/repos/younginnovations/iatipublisher
|
opened
|
Bug :Routing Issue
|
type: bug priority: high Frontend Backend
|
Context
- Desktop
- Chrome 102.0.5005.61
Precondition
- https://stage.iatipublisher.yipl.com.np/
- Username: Publisher 3
- Password: test1234
- [ ] **Issue 1:When the user wants to edit the iati-identifier an unwanted message is displayed**
Actual Result
https://user-images.githubusercontent.com/78422663/186399015-797d1246-4df6-4e99-b0aa-841f180e4707.mp4
Excepted Result
The user should be able to edit the iati-identifier
- [ ] **Issue 2: Back button redirects to the unwanted page**
Actual Result
https://user-images.githubusercontent.com/78422663/186398917-bbd79749-312c-4bb6-9242-1bcf08dd8c8e.mp4
Expected Result
- should redirect to the activity detail page
- [ ] **Issue 3:title name link redirects to the unwanted page**
Actual Result
https://user-images.githubusercontent.com/78422663/186400950-0dc35a59-b7d7-422d-aabb-69b19384aa20.mp4
Expected Result
- should redirect to the activity detail page
- [ ] **Issue 4:Any user is allowed to access all of the activities created by any user**
Actual Result
https://user-images.githubusercontent.com/78422663/186398656-2ef67182-e4e0-456b-8e7d-0614f84f159c.mp4
Expected Result
- Activities which are only of their own are to be allowed to be accessible
- [ ] **Issue 5: UI breakdown in recipient region and recipient country**
Actual Result

Expected Result

- [ ] **Issue 6: unappropriate title name in edit form**
Actual Result

Expected Result
- A proper title name should be displayed
- [ ] **Issue 7: UI breakdown in humanitarian scope**
Actual Result

Expected Result

- [ ] **Issue 8: UI breakdown in contact-info**
Actual Result

Expected Result

- [ ] **Issue 9: UI breakdown in planned-disbursement**
Actual Result

Expected Result

- [ ] **Issue 10:UI breakdown in listing page of activity, indicator, period, budget**
Actual Result

Expected Result

- [ ] **Issue 11: Show Full transaction list button disappears from the activity detail page**
Actual Result

Expected Result

|
1.0
|
Bug :Routing Issue - Context
- Desktop
- Chrome 102.0.5005.61
Precondition
- https://stage.iatipublisher.yipl.com.np/
- Username: Publisher 3
- Password: test1234
- [ ] **Issue 1:When the user wants to edit the iati-identifier an unwanted message is displayed**
Actual Result
https://user-images.githubusercontent.com/78422663/186399015-797d1246-4df6-4e99-b0aa-841f180e4707.mp4
Excepted Result
The user should be able to edit the iati-identifier
- [ ] **Issue 2: Back button redirects to the unwanted page**
Actual Result
https://user-images.githubusercontent.com/78422663/186398917-bbd79749-312c-4bb6-9242-1bcf08dd8c8e.mp4
Expected Result
- should redirect to the activity detail page
- [ ] **Issue 3:title name link redirects to the unwanted page**
Actual Result
https://user-images.githubusercontent.com/78422663/186400950-0dc35a59-b7d7-422d-aabb-69b19384aa20.mp4
Expected Result
- should redirect to the activity detail page
- [ ] **Issue 4:Any user is allowed to access all of the activities created by any user**
Actual Result
https://user-images.githubusercontent.com/78422663/186398656-2ef67182-e4e0-456b-8e7d-0614f84f159c.mp4
Expected Result
- Activities which are only of their own are to be allowed to be accessible
- [ ] **Issue 5: UI breakdown in recipient region and recipient country**
Actual Result

Expected Result

- [ ] **Issue 6: unappropriate title name in edit form**
Actual Result

Expected Result
- A proper title name should be displayed
- [ ] **Issue 7: UI breakdown in humanitarian scope**
Actual Result

Expected Result

- [ ] **Issue 8: UI breakdown in contact-info**
Actual Result

Expected Result

- [ ] **Issue 9: UI breakdown in planned-disbursement**
Actual Result

Expected Result

- [ ] **Issue 10:UI breakdown in listing page of activity, indicator, period, budget**
Actual Result

Expected Result

- [ ] **Issue 11: Show Full transaction list button disappears from the activity detail page**
Actual Result

Expected Result

|
priority
|
bug routing issue context desktop chrome precondition username publisher password issue when the user wants to edit the iati identifier an unwanted message is displayed actual result excepted result the user should be able to edit the iati identifier issue back button redirects to the unwanted page actual result expected result should redirect to the activity detail page issue title name link redirects to the unwanted page actual result expected result should redirect to the activity detail page issue any user is allowed to access all of the activities created by any user actual result expected result activities which are only of their own are to be allowed to be accessible issue ui breakdown in recipient region and recipient country actual result expected result issue unappropriate title name in edit form actual result expected result a proper title name should be displayed issue ui breakdown in humanitarian scope actual result expected result issue ui breakdown in contact info actual result expected result issue ui breakdown in planned disbursement actual result expected result issue ui breakdown in listing page of activity indicator period budget actual result expected result issue show full transaction list button disappears from the activity detail page actual result expected result
| 1
|
457,911
| 13,164,985,009
|
IssuesEvent
|
2020-08-11 05:25:28
|
ahmedkaludi/accelerated-mobile-pages
|
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
|
reopened
|
View non amp version is not working in mobile due to conflict with Redis Cache and WP Rocket
|
[Priority: HIGH] bug
|
Ref : https://secure.helpscout.net/conversation/1168676747/130585?folderId=3611365
Video : https://monosnap.com/file/EbpCcmMqlrZOFfAuvxGRaxFLjvmsqL
User is using Cloudflare, WP rocket, Redis cache plugins.
|
1.0
|
View non amp version is not working in mobile due to conflict with Redis Cache and WP Rocket - Ref : https://secure.helpscout.net/conversation/1168676747/130585?folderId=3611365
Video : https://monosnap.com/file/EbpCcmMqlrZOFfAuvxGRaxFLjvmsqL
User is using Cloudflare, WP rocket, Redis cache plugins.
|
priority
|
view non amp version is not working in mobile due to conflict with redis cache and wp rocket ref video user is using cloudflare wp rocket redis cache plugins
| 1
|
398,010
| 11,736,726,548
|
IssuesEvent
|
2020-03-11 13:33:41
|
AY1920S2-CS2103-T09-4/main
|
https://api.github.com/repos/AY1920S2-CS2103-T09-4/main
|
opened
|
Finalize calendar view functions.
|
priority.High
|
- display entries on calendar
- locate on a specific month / date
|
1.0
|
Finalize calendar view functions. - - display entries on calendar
- locate on a specific month / date
|
priority
|
finalize calendar view functions display entries on calendar locate on a specific month date
| 1
|
477,233
| 13,758,085,513
|
IssuesEvent
|
2020-10-06 23:05:02
|
mfem/mfem
|
https://api.github.com/repos/mfem/mfem
|
closed
|
Support for compressed MFEM-format mesh files?
|
enhancement high-priority hpc mesh question usage
|
I've run into an interesting problem while prepping some larger production runs I'm planning on doing where I've got around a 27e6 element linear hex mesh. I've noticed that when saved this mesh is around 3 GBs in size using the MFEM mesh file format v1.0. So, I was wondering if there was a way to save this off in a compressed format that could later be read and then have some pre-processing done on it like suggested within #934 (also where that could be saved off in a compressed format) before I run these on a HPC system like Summit?
Alternatively, do you know if the ```CUBIT``` file format can be read in the parallel? I might be able to convert mesh over to that format with the parallel partitioning already done on the CUBIT side of things, and then load the mesh up that way in parallel. Although, I might run into some issues related to having to define the boundary element attributes over again.
|
1.0
|
Support for compressed MFEM-format mesh files? - I've run into an interesting problem while prepping some larger production runs I'm planning on doing where I've got around a 27e6 element linear hex mesh. I've noticed that when saved this mesh is around 3 GBs in size using the MFEM mesh file format v1.0. So, I was wondering if there was a way to save this off in a compressed format that could later be read and then have some pre-processing done on it like suggested within #934 (also where that could be saved off in a compressed format) before I run these on a HPC system like Summit?
Alternatively, do you know if the ```CUBIT``` file format can be read in the parallel? I might be able to convert mesh over to that format with the parallel partitioning already done on the CUBIT side of things, and then load the mesh up that way in parallel. Although, I might run into some issues related to having to define the boundary element attributes over again.
|
priority
|
support for compressed mfem format mesh files i ve run into an interesting problem while prepping some larger production runs i m planning on doing where i ve got around a element linear hex mesh i ve noticed that when saved this mesh is around gbs in size using the mfem mesh file format so i was wondering if there was a way to save this off in a compressed format that could later be read and then have some pre processing done on it like suggested within also where that could be saved off in a compressed format before i run these on a hpc system like summit alternatively do you know if the cubit file format can be read in the parallel i might be able to convert mesh over to that format with the parallel partitioning already done on the cubit side of things and then load the mesh up that way in parallel although i might run into some issues related to having to define the boundary element attributes over again
| 1
|
518,261
| 15,026,328,286
|
IssuesEvent
|
2021-02-01 22:29:14
|
tysonkaufmann/su-go
|
https://api.github.com/repos/tysonkaufmann/su-go
|
opened
|
[DEV] Create an Add Route Endpoint
|
High Priority task
|
**Related To**
- [Add a route](https://github.com/tysonkaufmann/su-go/issues/51)
**Description**
Create an API endpoint `/api/createroute` which will serve `POST` requests with a body that looks like:
```
{
"username":"",
"routetitle":"",
"routetype":"",
"routetime":"",
"routedistance":"",
"routedescription":"",
"photos":[],
"mapdata":{}
}
```
On Success, the API endpoint should return the creation was successful and the routeid e.g
```
{
"status":"200",
"success":"true",
"routeid":""
}
```
On Error, the API endpoint should return an error message e.g
```
{
"status":"200",
"success":"false",
"error":"Invalid username"
}
```
**Development Steps**
- Create integration tests to fully test the API endpoint `/api/createroute` (TDD)
- Route the endpoint in `backend/routes/Routes`
- Create unit tests for any code added in `backend/controllers/Routes` (TDD)
- Add code to the `backend/controllers/Routes` to serve the API request
- Ensure newly created Route is stored in the Routes collection
|
1.0
|
[DEV] Create an Add Route Endpoint - **Related To**
- [Add a route](https://github.com/tysonkaufmann/su-go/issues/51)
**Description**
Create an API endpoint `/api/createroute` which will serve `POST` requests with a body that looks like:
```
{
"username":"",
"routetitle":"",
"routetype":"",
"routetime":"",
"routedistance":"",
"routedescription":"",
"photos":[],
"mapdata":{}
}
```
On Success, the API endpoint should return the creation was successful and the routeid e.g
```
{
"status":"200",
"success":"true",
"routeid":""
}
```
On Error, the API endpoint should return an error message e.g
```
{
"status":"200",
"success":"false",
"error":"Invalid username"
}
```
**Development Steps**
- Create integration tests to fully test the API endpoint `/api/createroute` (TDD)
- Route the endpoint in `backend/routes/Routes`
- Create unit tests for any code added in `backend/controllers/Routes` (TDD)
- Add code to the `backend/controllers/Routes` to serve the API request
- Ensure newly created Route is stored in the Routes collection
|
priority
|
create an add route endpoint related to description create an api endpoint api createroute which will serve post requests with a body that looks like username routetitle routetype routetime routedistance routedescription photos mapdata on success the api endpoint should return the creation was successful and the routeid e g status success true routeid on error the api endpoint should return an error message e g status success false error invalid username development steps create integration tests to fully test the api endpoint api createroute tdd route the endpoint in backend routes routes create unit tests for any code added in backend controllers routes tdd add code to the backend controllers routes to serve the api request ensure newly created route is stored in the routes collection
| 1
|
345,476
| 10,368,141,147
|
IssuesEvent
|
2019-09-07 14:36:20
|
Goxiaoy/aanote
|
https://api.github.com/repos/Goxiaoy/aanote
|
opened
|
Create activity statistics
|
priority: high
|
- [ ] total cost
- [ ] cost bar chart by day( may labeled with person or category)
- [ ] cost category pie chart
- [ ] cost bar chart person
- [ ] how to balance graph( like adjacency list?)
|
1.0
|
Create activity statistics - - [ ] total cost
- [ ] cost bar chart by day( may labeled with person or category)
- [ ] cost category pie chart
- [ ] cost bar chart person
- [ ] how to balance graph( like adjacency list?)
|
priority
|
create activity statistics total cost cost bar chart by day may labeled with person or category cost category pie chart cost bar chart person how to balance graph like adjacency list?
| 1
|
235,904
| 7,744,067,788
|
IssuesEvent
|
2018-05-29 14:29:40
|
Gloirin/m2gTest
|
https://api.github.com/repos/Gloirin/m2gTest
|
closed
|
0000996:
add changes in relations/linked objects to modlog/history
|
Feature Request Tinebase high priority
|
**Reported by pschuele on 20 Apr 2009 08:47**
add/show changes in relations/linked objects to modlog/history
|
1.0
|
0000996:
add changes in relations/linked objects to modlog/history - **Reported by pschuele on 20 Apr 2009 08:47**
add/show changes in relations/linked objects to modlog/history
|
priority
|
add changes in relations linked objects to modlog history reported by pschuele on apr add show changes in relations linked objects to modlog history
| 1
|
311,865
| 9,539,822,502
|
IssuesEvent
|
2019-04-30 17:55:14
|
hydroshare/hydroshare
|
https://api.github.com/repos/hydroshare/hydroshare
|
closed
|
Ascii characters without a unicode mapping cause resource creation to fail
|
Encoding Standards High Priority bug
|
```í```
In a name causes resource creation to fail. Fix this and add perhaps add some useful logging within resource creation.
|
1.0
|
Ascii characters without a unicode mapping cause resource creation to fail - ```í```
In a name causes resource creation to fail. Fix this and add perhaps add some useful logging within resource creation.
|
priority
|
ascii characters without a unicode mapping cause resource creation to fail í in a name causes resource creation to fail fix this and add perhaps add some useful logging within resource creation
| 1
|
375,885
| 11,135,658,606
|
IssuesEvent
|
2019-12-20 14:52:15
|
ualbertalib/discovery
|
https://api.github.com/repos/ualbertalib/discovery
|
opened
|
SFX Journals not ingested after move to hosted environment
|
High priority bug
|
**Describe the bug**
The SFX E-journals, which are ingested as part of the nightly process, were not ingested after we moved from a local to a hosted service yesterday.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to https://search.library.ualberta.ca/catalog/954925428260
2. See error
**Expected behavior**
An e-journal record should appear
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- Any
**Additional context**
This problem is occurring because of a change to the path for the SFX data file. Instead of a deferencible URI for the file, we now have to use a CGI script. The current file path is "http://resolver.library.ualberta.ca/sfx2sirsi/data/sfxdata.xml" (in [ingest.yml](https://github.com/ualbertalib/discovery/blob/87b665ee850f3e41ed35feb6a4eb76b152ae0ab6/spec/fixtures/ingest.yml#L38)). This needs to be changed to
https://sfx-resolver.hosted.exlibrisgroup.com/resolver/cgi/public/get_file.cgi?file=sfxdata.xml.
We'll need to test that the ingest works with this format of URL (in SFX2Sirsi the process broke because of the equals sign in the CGI URL). Additionally, the IP of whatever server makes the file request will need to be whitelisted on the new SFX server (I can do that).
As this has caused all e-journals to be missing from the Discovery system, this bug fix is high priority.
Thanks!
@weiweishi @pgwillia @nmacgreg
|
1.0
|
SFX Journals not ingested after move to hosted environment - **Describe the bug**
The SFX E-journals, which are ingested as part of the nightly process, were not ingested after we moved from a local to a hosted service yesterday.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to https://search.library.ualberta.ca/catalog/954925428260
2. See error
**Expected behavior**
An e-journal record should appear
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- Any
**Additional context**
This problem is occurring because of a change to the path for the SFX data file. Instead of a deferencible URI for the file, we now have to use a CGI script. The current file path is "http://resolver.library.ualberta.ca/sfx2sirsi/data/sfxdata.xml" (in [ingest.yml](https://github.com/ualbertalib/discovery/blob/87b665ee850f3e41ed35feb6a4eb76b152ae0ab6/spec/fixtures/ingest.yml#L38)). This needs to be changed to
https://sfx-resolver.hosted.exlibrisgroup.com/resolver/cgi/public/get_file.cgi?file=sfxdata.xml.
We'll need to test that the ingest works with this format of URL (in SFX2Sirsi the process broke because of the equals sign in the CGI URL). Additionally, the IP of whatever server makes the file request will need to be whitelisted on the new SFX server (I can do that).
As this has caused all e-journals to be missing from the Discovery system, this bug fix is high priority.
Thanks!
@weiweishi @pgwillia @nmacgreg
|
priority
|
sfx journals not ingested after move to hosted environment describe the bug the sfx e journals which are ingested as part of the nightly process were not ingested after we moved from a local to a hosted service yesterday to reproduce steps to reproduce the behavior go to see error expected behavior an e journal record should appear screenshots if applicable add screenshots to help explain your problem desktop please complete the following information any additional context this problem is occurring because of a change to the path for the sfx data file instead of a deferencible uri for the file we now have to use a cgi script the current file path is in this needs to be changed to we ll need to test that the ingest works with this format of url in the process broke because of the equals sign in the cgi url additionally the ip of whatever server makes the file request will need to be whitelisted on the new sfx server i can do that as this has caused all e journals to be missing from the discovery system this bug fix is high priority thanks weiweishi pgwillia nmacgreg
| 1
|
285,368
| 8,757,883,374
|
IssuesEvent
|
2018-12-14 23:08:19
|
ClinGen/clincoded
|
https://api.github.com/repos/ClinGen/clincoded
|
closed
|
Add Explanation box for each criteria code in VCI
|
ClinVar submission EP request R24 VCI priority: high release ready
|
Users would like an explanation box for each criterion in the VCI (right now there is a box per set of criteria associated with an evaluation) -- would be free text just as current ones
|
1.0
|
Add Explanation box for each criteria code in VCI - Users would like an explanation box for each criterion in the VCI (right now there is a box per set of criteria associated with an evaluation) -- would be free text just as current ones
|
priority
|
add explanation box for each criteria code in vci users would like an explanation box for each criterion in the vci right now there is a box per set of criteria associated with an evaluation would be free text just as current ones
| 1
|
798,127
| 28,237,283,619
|
IssuesEvent
|
2023-04-06 02:26:13
|
masastack/MASA.DCC
|
https://api.github.com/repos/masastack/MASA.DCC
|
closed
|
Error associated with encrypted public configuration object, cannot enter configuration detail page
|
type/bug status/resolved severity/high site/staging priority/p2
|
关联加密的公共配置对象,报错,无法进入配置详情页

|
1.0
|
Error associated with encrypted public configuration object, cannot enter configuration detail page - 关联加密的公共配置对象,报错,无法进入配置详情页

|
priority
|
error associated with encrypted public configuration object cannot enter configuration detail page 关联加密的公共配置对象,报错,无法进入配置详情页
| 1
|
403,148
| 11,836,821,006
|
IssuesEvent
|
2020-03-23 13:13:30
|
webcompat/web-bugs
|
https://api.github.com/repos/webcompat/web-bugs
|
closed
|
www.xnxx.com - site is not usable
|
browser-firefox engine-gecko form-v2-experiment ml-needsdiagnosis-false ml-probability-high nsfw priority-important
|
<!-- @browser: Firefox 75.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; rv:75.0) Gecko/20100101 Firefox/75.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/50610 -->
<!-- @extra_labels: form-v2-experiment -->
**URL**: https://www.xnxx.com/search/stepmom
**Browser / Version**: Firefox 75.0
**Operating System**: Windows 7
**Tested Another Browser**: Yes Internet Explorer
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
Not Loading & So I Cant See Any Porn
<details><summary>View the screenshot</summary><img alt='Screenshot' src='https://webcompat.com/uploads/2020/3/b99139b3-6a15-4e29-9107-755bf33be152.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: 20200322132212</li><li>channel: beta</li><li>hasTouchScreen: false</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/bc263f75-6925-48ec-8b01-6615c4338743)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
1.0
|
www.xnxx.com - site is not usable - <!-- @browser: Firefox 75.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; rv:75.0) Gecko/20100101 Firefox/75.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/50610 -->
<!-- @extra_labels: form-v2-experiment -->
**URL**: https://www.xnxx.com/search/stepmom
**Browser / Version**: Firefox 75.0
**Operating System**: Windows 7
**Tested Another Browser**: Yes Internet Explorer
**Problem type**: Site is not usable
**Description**: Browser unsupported
**Steps to Reproduce**:
Not Loading & So I Cant See Any Porn
<details><summary>View the screenshot</summary><img alt='Screenshot' src='https://webcompat.com/uploads/2020/3/b99139b3-6a15-4e29-9107-755bf33be152.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: 20200322132212</li><li>channel: beta</li><li>hasTouchScreen: false</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/bc263f75-6925-48ec-8b01-6615c4338743)
_From [webcompat.com](https://webcompat.com/) with ❤️_
|
priority
|
site is not usable url browser version firefox operating system windows tested another browser yes internet explorer problem type site is not usable description browser unsupported steps to reproduce not loading so i cant see any porn 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 false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
| 1
|
463,396
| 13,264,644,944
|
IssuesEvent
|
2020-08-21 04:20:04
|
wso2/docs-ei
|
https://api.github.com/repos/wso2/docs-ei
|
opened
|
Documentation for 'New maven profiles for project build'
|
Priority/Highest micro-integrator
|
Add the following content to the docs:
We have introduced new maven profiles as below for the ease of project build (with selective child modules) when there are multiple child modules inside the Integration Project.
Maven Profiles:
- Solution profile : Integration artifacts
- Docker profile: Integration artifacts + Docker modules
- Kubernetes profile: Integration artifacts + Kubernetes modules
Command:
```
mvn clean install -P <Profile_name>
```
The default profile will be selected and it will build all the modules when no above profile is selected with the -P parameter.
|
1.0
|
Documentation for 'New maven profiles for project build' - Add the following content to the docs:
We have introduced new maven profiles as below for the ease of project build (with selective child modules) when there are multiple child modules inside the Integration Project.
Maven Profiles:
- Solution profile : Integration artifacts
- Docker profile: Integration artifacts + Docker modules
- Kubernetes profile: Integration artifacts + Kubernetes modules
Command:
```
mvn clean install -P <Profile_name>
```
The default profile will be selected and it will build all the modules when no above profile is selected with the -P parameter.
|
priority
|
documentation for new maven profiles for project build add the following content to the docs we have introduced new maven profiles as below for the ease of project build with selective child modules when there are multiple child modules inside the integration project maven profiles solution profile integration artifacts docker profile integration artifacts docker modules kubernetes profile integration artifacts kubernetes modules command mvn clean install p the default profile will be selected and it will build all the modules when no above profile is selected with the p parameter
| 1
|
587,932
| 17,634,892,573
|
IssuesEvent
|
2021-08-19 12:42:38
|
qoollo/bob
|
https://api.github.com/repos/qoollo/bob
|
opened
|
Panic on atomic operations with AcqRel Ordering
|
bug high priority
|
I started bobd with default configs and received following panic:
```
thread 'main' panicked at 'there is no such thing as an acquire/release load', /rustc/30a0a9b694cde95cbab863f7ef4d554f0f46b606/library/core/src/sync/atomic.rs:2359:23
```
As I found in this [issue comment](https://github.com/rust-lang/rust/issues/49127#issuecomment-373984912) this happens if you use AcqRel ordering in just store | load operations.
|
1.0
|
Panic on atomic operations with AcqRel Ordering - I started bobd with default configs and received following panic:
```
thread 'main' panicked at 'there is no such thing as an acquire/release load', /rustc/30a0a9b694cde95cbab863f7ef4d554f0f46b606/library/core/src/sync/atomic.rs:2359:23
```
As I found in this [issue comment](https://github.com/rust-lang/rust/issues/49127#issuecomment-373984912) this happens if you use AcqRel ordering in just store | load operations.
|
priority
|
panic on atomic operations with acqrel ordering i started bobd with default configs and received following panic thread main panicked at there is no such thing as an acquire release load rustc library core src sync atomic rs as i found in this this happens if you use acqrel ordering in just store load operations
| 1
|
292,774
| 8,967,879,518
|
IssuesEvent
|
2019-01-29 05:45:18
|
actiontech/dble
|
https://api.github.com/repos/actiontech/dble
|
closed
|
query with 2 "in subquery" with global table may get error "ERROR 4004 (42S22): column autoalias_tt.autoalias_scalar not found"
|
Priority/High complex-query resolve
|
* **dble version:**
5.6.29-dble-9.9.9.9-f2ee68f267caf5c53371cb68de2068998b363b72-20190128080033
* **preconditions :**
table tt is a table in schema's default node
* **configs:**
**schema.xml**
```
<table dataNode="dn1,dn2,dn3,dn4" name="test" type="global" />
```
**rule.xml**
```
```
**server.xml**
```
```
* **steps:**
step1. execute queries with dble:
```
mysql> create table tt(id int);
Query OK, 0 rows affected (0.01 sec)
mysql> insert into tt values(1),(2),(3),(4);
Query OK, 4 rows affected (0.00 sec)
mysql> create table test(id int, k int);
Query OK, 0 rows affected (0.08 sec)
mysql> insert into test values(1,1),(2,2),(3,3),(null,null);
Query OK, 4 rows affected (0.02 sec)
```
step2.execute queries with dble:
```
mysql> select * from test where k=1 and k in (select id from tt) and id in (select id from tt);
ERROR 4004 (42S22): column autoalias_tt.autoalias_scalar not found
```
* **expect result:**
1.step2 query success
* **real result:**
1.step2 query got error
* **supplements:**
1.sharding table has no such problem
/label ~BUG
|
1.0
|
query with 2 "in subquery" with global table may get error "ERROR 4004 (42S22): column autoalias_tt.autoalias_scalar not found" - * **dble version:**
5.6.29-dble-9.9.9.9-f2ee68f267caf5c53371cb68de2068998b363b72-20190128080033
* **preconditions :**
table tt is a table in schema's default node
* **configs:**
**schema.xml**
```
<table dataNode="dn1,dn2,dn3,dn4" name="test" type="global" />
```
**rule.xml**
```
```
**server.xml**
```
```
* **steps:**
step1. execute queries with dble:
```
mysql> create table tt(id int);
Query OK, 0 rows affected (0.01 sec)
mysql> insert into tt values(1),(2),(3),(4);
Query OK, 4 rows affected (0.00 sec)
mysql> create table test(id int, k int);
Query OK, 0 rows affected (0.08 sec)
mysql> insert into test values(1,1),(2,2),(3,3),(null,null);
Query OK, 4 rows affected (0.02 sec)
```
step2.execute queries with dble:
```
mysql> select * from test where k=1 and k in (select id from tt) and id in (select id from tt);
ERROR 4004 (42S22): column autoalias_tt.autoalias_scalar not found
```
* **expect result:**
1.step2 query success
* **real result:**
1.step2 query got error
* **supplements:**
1.sharding table has no such problem
/label ~BUG
|
priority
|
query with in subquery with global table may get error error column autoalias tt autoalias scalar not found dble version: dble preconditions : table tt is a table in schema s default node configs: schema xml rule xml server xml steps: execute queries with dble mysql create table tt id int query ok rows affected sec mysql insert into tt values query ok rows affected sec mysql create table test id int k int query ok rows affected sec mysql insert into test values null null query ok rows affected sec execute queries with dble mysql select from test where k and k in select id from tt and id in select id from tt error column autoalias tt autoalias scalar not found expect result: query success real result: query got error supplements: sharding table has no such problem label bug
| 1
|
177,797
| 6,587,352,535
|
IssuesEvent
|
2017-09-13 20:44:51
|
ampproject/amphtml
|
https://api.github.com/repos/ampproject/amphtml
|
closed
|
Upgrade to Babel 6
|
Category: Tooling P1: High Priority PR use: Work in Progress Type: Bug
|
Babel 6 offers a number of features (bug fixes, and speedups, and more ES* compatibility), but really the biggest thing it offers is [babel-preset-env](https://github.com/babel/babel-preset-env).
Essentially, `babel-preset-env` allows us to tailor our development build to the browser we're running. Instead of compiling every ES6 feature down to ES5, we can run the ES6 features Chrome supports and compile just the ones that it doesn't. This leads to easier test debugger and smaller files since we'll be stepping over the _actual_ code we wrote.
When we're doing integration testing (or local testing on another browser), we'll need to be able to customize the browser support. So for Travis, we can do a full compile of every feature. And for local, we can just flip it to support Safari X, or whatever browser we want.
|
1.0
|
Upgrade to Babel 6 - Babel 6 offers a number of features (bug fixes, and speedups, and more ES* compatibility), but really the biggest thing it offers is [babel-preset-env](https://github.com/babel/babel-preset-env).
Essentially, `babel-preset-env` allows us to tailor our development build to the browser we're running. Instead of compiling every ES6 feature down to ES5, we can run the ES6 features Chrome supports and compile just the ones that it doesn't. This leads to easier test debugger and smaller files since we'll be stepping over the _actual_ code we wrote.
When we're doing integration testing (or local testing on another browser), we'll need to be able to customize the browser support. So for Travis, we can do a full compile of every feature. And for local, we can just flip it to support Safari X, or whatever browser we want.
|
priority
|
upgrade to babel babel offers a number of features bug fixes and speedups and more es compatibility but really the biggest thing it offers is essentially babel preset env allows us to tailor our development build to the browser we re running instead of compiling every feature down to we can run the features chrome supports and compile just the ones that it doesn t this leads to easier test debugger and smaller files since we ll be stepping over the actual code we wrote when we re doing integration testing or local testing on another browser we ll need to be able to customize the browser support so for travis we can do a full compile of every feature and for local we can just flip it to support safari x or whatever browser we want
| 1
|
257,664
| 8,140,306,038
|
IssuesEvent
|
2018-08-20 20:38:40
|
openforge/junto-scope
|
https://api.github.com/repos/openforge/junto-scope
|
closed
|
Scoping Session: N/A & ? are giving numeric values
|
Bug Priority: High QA Ready
|
When a participant or moderator select N/A or ? as a scoping option is it being entered as -1(N/A0 and 0(?). these values are being added into the math of calculating the average.
|
1.0
|
Scoping Session: N/A & ? are giving numeric values - When a participant or moderator select N/A or ? as a scoping option is it being entered as -1(N/A0 and 0(?). these values are being added into the math of calculating the average.
|
priority
|
scoping session n a are giving numeric values when a participant or moderator select n a or as a scoping option is it being entered as n and these values are being added into the math of calculating the average
| 1
|
807,163
| 29,953,927,503
|
IssuesEvent
|
2023-06-23 05:29:40
|
woocommerce/google-listings-and-ads
|
https://api.github.com/repos/woocommerce/google-listings-and-ads
|
closed
|
Edit Free Listings: Success notification is shown when there is an API error and saving is not successful
|
type: bug priority: high
|
### Describe the bug:
- This is mentioned in https://github.com/woocommerce/google-listings-and-ads/pull/1313#pullrequestreview-911315044.
> Found another issue that already existed before this project. When there is a failed API call, the notification at the bottom still shows "Your changes to your Free Listings have been saved and will be synced to your Google Merchant Center account."
https://github.com/woocommerce/google-listings-and-ads/blob/154565b1739ba5a9982caaab60447a05503d00ba/js/src/edit-free-campaign/index.js#L188-L208
https://user-images.githubusercontent.com/17420811/158565390-9cf4b921-0adf-4eda-b37e-a6ec65f972a2.mp4
### Steps to reproduce:
<!-- Describe the steps to reproduce the behavior.-->
1. Modify some API path (e.g. upsert shipping rate API path) so that it will throw error when users are trying to save changes in Edit Free Listings.
2. Go to Edit Free Listings and make some changes.
3. Click on "Save changes" button.
### Expected behavior:
Error message notification should be displayed, e.g. `'Something went wrong while saving your changes. Please try again later.'`.
### Actual behavior:
Success message notification is displayed: `'Your changes to your Free Listings have been saved and will be synced to your Google Merchant Center account.'`.
### Additional details:
I think this is due to the wrong use of [`Promise.allSettled()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled). It should be [`Promise.all()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all) instead. We should investigate a lil bit deeper on why we used `allSettled` in the first place, whether it is really intentional.
|
1.0
|
Edit Free Listings: Success notification is shown when there is an API error and saving is not successful - ### Describe the bug:
- This is mentioned in https://github.com/woocommerce/google-listings-and-ads/pull/1313#pullrequestreview-911315044.
> Found another issue that already existed before this project. When there is a failed API call, the notification at the bottom still shows "Your changes to your Free Listings have been saved and will be synced to your Google Merchant Center account."
https://github.com/woocommerce/google-listings-and-ads/blob/154565b1739ba5a9982caaab60447a05503d00ba/js/src/edit-free-campaign/index.js#L188-L208
https://user-images.githubusercontent.com/17420811/158565390-9cf4b921-0adf-4eda-b37e-a6ec65f972a2.mp4
### Steps to reproduce:
<!-- Describe the steps to reproduce the behavior.-->
1. Modify some API path (e.g. upsert shipping rate API path) so that it will throw error when users are trying to save changes in Edit Free Listings.
2. Go to Edit Free Listings and make some changes.
3. Click on "Save changes" button.
### Expected behavior:
Error message notification should be displayed, e.g. `'Something went wrong while saving your changes. Please try again later.'`.
### Actual behavior:
Success message notification is displayed: `'Your changes to your Free Listings have been saved and will be synced to your Google Merchant Center account.'`.
### Additional details:
I think this is due to the wrong use of [`Promise.allSettled()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled). It should be [`Promise.all()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all) instead. We should investigate a lil bit deeper on why we used `allSettled` in the first place, whether it is really intentional.
|
priority
|
edit free listings success notification is shown when there is an api error and saving is not successful describe the bug this is mentioned in found another issue that already existed before this project when there is a failed api call the notification at the bottom still shows your changes to your free listings have been saved and will be synced to your google merchant center account steps to reproduce modify some api path e g upsert shipping rate api path so that it will throw error when users are trying to save changes in edit free listings go to edit free listings and make some changes click on save changes button expected behavior error message notification should be displayed e g something went wrong while saving your changes please try again later actual behavior success message notification is displayed your changes to your free listings have been saved and will be synced to your google merchant center account additional details i think this is due to the wrong use of it should be instead we should investigate a lil bit deeper on why we used allsettled in the first place whether it is really intentional
| 1
|
617,690
| 19,402,695,315
|
IssuesEvent
|
2021-12-19 13:22:03
|
bounswe/2021SpringGroup6
|
https://api.github.com/repos/bounswe/2021SpringGroup6
|
closed
|
Bug: Other Users Can Update Event
|
Type: Bug Platform: Back-end Priority: High Status: Waiting Review
|
When I was going through the update event code, I realized that non-organizer users can also edit the event since there is no check. This should be fixed. Related pull request #306
|
1.0
|
Bug: Other Users Can Update Event - When I was going through the update event code, I realized that non-organizer users can also edit the event since there is no check. This should be fixed. Related pull request #306
|
priority
|
bug other users can update event when i was going through the update event code i realized that non organizer users can also edit the event since there is no check this should be fixed related pull request
| 1
|
667,203
| 22,421,914,906
|
IssuesEvent
|
2022-06-20 04:49:30
|
AlphaWallet/alpha-wallet-android
|
https://api.github.com/repos/AlphaWallet/alpha-wallet-android
|
opened
|
Deeplink-based wallet API
|
High Priority
|
This is analogous to offering an WalletConnect SDK that other (client) apps can implement to sign messages with AlphaWallet. For ByteBrew to implement and sign messages in their (client) apps (games actually). We do not need to sign transactions at the moment.
Refer to:
* For context: https://github.com/AlphaWallet/alpha-wallet-ios/issues/4659
* For the final word on the API (parameters etc. The issue above might be outdated): https://www.notion.so/stormbirdlabs/Deep-link-based-wallet-SDK-3a8a124b54754452b9623615a8ac8e2b
|
1.0
|
Deeplink-based wallet API - This is analogous to offering an WalletConnect SDK that other (client) apps can implement to sign messages with AlphaWallet. For ByteBrew to implement and sign messages in their (client) apps (games actually). We do not need to sign transactions at the moment.
Refer to:
* For context: https://github.com/AlphaWallet/alpha-wallet-ios/issues/4659
* For the final word on the API (parameters etc. The issue above might be outdated): https://www.notion.so/stormbirdlabs/Deep-link-based-wallet-SDK-3a8a124b54754452b9623615a8ac8e2b
|
priority
|
deeplink based wallet api this is analogous to offering an walletconnect sdk that other client apps can implement to sign messages with alphawallet for bytebrew to implement and sign messages in their client apps games actually we do not need to sign transactions at the moment refer to for context for the final word on the api parameters etc the issue above might be outdated
| 1
|
421,644
| 12,259,683,047
|
IssuesEvent
|
2020-05-06 17:00:13
|
department-of-veterans-affairs/caseflow
|
https://api.github.com/repos/department-of-veterans-affairs/caseflow
|
closed
|
Editing AOD from DailyDocket sends partial update
|
Priority: High Product: caseflow-hearings Team: Tango 💃 Type: Bug
|
## Description
There is a bug that is potentially creating bad AOD data in the database on the Daily Docket page. I think this stems from the fact that we are only sending changed data to the API server. I'm seeing partial AOD data that looks like this:
```
#<AdvanceOnDocketMotion:0x000055d28e40e4b0
id: 4,
created_at: Tue, 28 Apr 2020 18:22:16 UTC +00:00,
granted: nil,
person_id: 450,
reason: "financial_distress",
updated_at: Tue, 28 Apr 2020 18:22:16 UTC +00:00,
user_id: nil>
```
Validations should help prevent bad data, but we should fix the underlying cause
## Acceptance criteria
- [ ] Ensure that a fully populated AdvanceOnDocketMotion record gets created
## Background/context/resources
Additional context: https://github.com/department-of-veterans-affairs/caseflow/pull/14102#discussion_r416835612
https://dsva.slack.com/archives/C3EAF3Q15/p1588101793486800
## Technical notes
This is related to how we are doing a diff before sending data to the server. This was a change we had implemented to support virtual hearings.
|
1.0
|
Editing AOD from DailyDocket sends partial update - ## Description
There is a bug that is potentially creating bad AOD data in the database on the Daily Docket page. I think this stems from the fact that we are only sending changed data to the API server. I'm seeing partial AOD data that looks like this:
```
#<AdvanceOnDocketMotion:0x000055d28e40e4b0
id: 4,
created_at: Tue, 28 Apr 2020 18:22:16 UTC +00:00,
granted: nil,
person_id: 450,
reason: "financial_distress",
updated_at: Tue, 28 Apr 2020 18:22:16 UTC +00:00,
user_id: nil>
```
Validations should help prevent bad data, but we should fix the underlying cause
## Acceptance criteria
- [ ] Ensure that a fully populated AdvanceOnDocketMotion record gets created
## Background/context/resources
Additional context: https://github.com/department-of-veterans-affairs/caseflow/pull/14102#discussion_r416835612
https://dsva.slack.com/archives/C3EAF3Q15/p1588101793486800
## Technical notes
This is related to how we are doing a diff before sending data to the server. This was a change we had implemented to support virtual hearings.
|
priority
|
editing aod from dailydocket sends partial update description there is a bug that is potentially creating bad aod data in the database on the daily docket page i think this stems from the fact that we are only sending changed data to the api server i m seeing partial aod data that looks like this advanceondocketmotion id created at tue apr utc granted nil person id reason financial distress updated at tue apr utc user id nil validations should help prevent bad data but we should fix the underlying cause acceptance criteria ensure that a fully populated advanceondocketmotion record gets created background context resources additional context technical notes this is related to how we are doing a diff before sending data to the server this was a change we had implemented to support virtual hearings
| 1
|
230,173
| 7,605,088,352
|
IssuesEvent
|
2018-04-30 07:09:52
|
apiato/apiato
|
https://api.github.com/repos/apiato/apiato
|
closed
|
API path customization
|
Priority:High Type:Enhancement
|
Instead of a subdomain (api), it would nice to be able to use the URL path instead.
For example:
api.example.com/... => example.com/api/...
Reasoning: not everyone has easy access to update DNS records.
[Link to RoutesLoader](https://github.com/apiato/apiato/blob/3ba97554f1cf2600cf02be429cdda70fdaa12915/app/Ship/Engine/Loaders/RoutesLoaderTrait.php#L94)
As mentioned in Slack, you could add
` $versionPrefix = "api/" . $this->getRouteFileVersionFromFileName($file);
`
and then change the API_URL for your .env example.com
the same goes for
admin.example.com/... => example.com/admin/...
|
1.0
|
API path customization - Instead of a subdomain (api), it would nice to be able to use the URL path instead.
For example:
api.example.com/... => example.com/api/...
Reasoning: not everyone has easy access to update DNS records.
[Link to RoutesLoader](https://github.com/apiato/apiato/blob/3ba97554f1cf2600cf02be429cdda70fdaa12915/app/Ship/Engine/Loaders/RoutesLoaderTrait.php#L94)
As mentioned in Slack, you could add
` $versionPrefix = "api/" . $this->getRouteFileVersionFromFileName($file);
`
and then change the API_URL for your .env example.com
the same goes for
admin.example.com/... => example.com/admin/...
|
priority
|
api path customization instead of a subdomain api it would nice to be able to use the url path instead for example api example com example com api reasoning not everyone has easy access to update dns records as mentioned in slack you could add versionprefix api this getroutefileversionfromfilename file and then change the api url for your env example com the same goes for admin example com example com admin
| 1
|
323,287
| 9,852,729,403
|
IssuesEvent
|
2019-06-19 13:28:33
|
acidanthera/bugtracker
|
https://api.github.com/repos/acidanthera/bugtracker
|
closed
|
ScanPolicy support expansion
|
priority:high project:apfs project:oc
|
In the meanwhile given that we support `ScanPolicy` there are several more issues to implement:
- [x] OcBootManagementLib needs refactoring: single file is already too big.
- [x] `ScanPolicy` should gain HFS file system detection, we can temporarily implement it in OcBootManagementLib with the presence of blessed files and folders.
- [x] ApfsDriverLoader should respect filesystem and device policy and not load APFS driver from disallowed media. The only exception must be RamDisks, which we can check via DevicePath.
- [x] We should detect cases when invalid bits are set in a group while group bits ignore them.
- [x] Mark all known external drive types (e.g. USB) as visibly external in boot GUI, with `(external)` suffix.
- [x] Expose the interface of `ScanPolicy` for external driver usage from OcBootManagementLib.
The reason for making exceptions for RamDisks is that in reality we trust their contents by verifying their digital signature, and `BootPolicy`, once implemented, is supposed to permit blocking dmg mount at an earlier stage. `ScanPolicy` is simply not flexible enough here.
The also are some tasks we may want to consider in the future:
- VBoxHfs may also want to respect filesystem and device policy and not mount disallowed media. The only exception must be RamDisks. Not certain whether it is worth it, as HFSPlus will be unable to support this anyway, and VBoxHfs audit will unlikely happen soon.
- ApplePartitionInfo protocol can be supported to reliably detect filesystems prior to trying to load the driver (which is really the way this should work from security standpoint). In addition it will also allow detecting FAT32. Note, that we cannot use EfiPartitionInfo (it is sometimes unavailable and/or broken).
|
1.0
|
ScanPolicy support expansion - In the meanwhile given that we support `ScanPolicy` there are several more issues to implement:
- [x] OcBootManagementLib needs refactoring: single file is already too big.
- [x] `ScanPolicy` should gain HFS file system detection, we can temporarily implement it in OcBootManagementLib with the presence of blessed files and folders.
- [x] ApfsDriverLoader should respect filesystem and device policy and not load APFS driver from disallowed media. The only exception must be RamDisks, which we can check via DevicePath.
- [x] We should detect cases when invalid bits are set in a group while group bits ignore them.
- [x] Mark all known external drive types (e.g. USB) as visibly external in boot GUI, with `(external)` suffix.
- [x] Expose the interface of `ScanPolicy` for external driver usage from OcBootManagementLib.
The reason for making exceptions for RamDisks is that in reality we trust their contents by verifying their digital signature, and `BootPolicy`, once implemented, is supposed to permit blocking dmg mount at an earlier stage. `ScanPolicy` is simply not flexible enough here.
The also are some tasks we may want to consider in the future:
- VBoxHfs may also want to respect filesystem and device policy and not mount disallowed media. The only exception must be RamDisks. Not certain whether it is worth it, as HFSPlus will be unable to support this anyway, and VBoxHfs audit will unlikely happen soon.
- ApplePartitionInfo protocol can be supported to reliably detect filesystems prior to trying to load the driver (which is really the way this should work from security standpoint). In addition it will also allow detecting FAT32. Note, that we cannot use EfiPartitionInfo (it is sometimes unavailable and/or broken).
|
priority
|
scanpolicy support expansion in the meanwhile given that we support scanpolicy there are several more issues to implement ocbootmanagementlib needs refactoring single file is already too big scanpolicy should gain hfs file system detection we can temporarily implement it in ocbootmanagementlib with the presence of blessed files and folders apfsdriverloader should respect filesystem and device policy and not load apfs driver from disallowed media the only exception must be ramdisks which we can check via devicepath we should detect cases when invalid bits are set in a group while group bits ignore them mark all known external drive types e g usb as visibly external in boot gui with external suffix expose the interface of scanpolicy for external driver usage from ocbootmanagementlib the reason for making exceptions for ramdisks is that in reality we trust their contents by verifying their digital signature and bootpolicy once implemented is supposed to permit blocking dmg mount at an earlier stage scanpolicy is simply not flexible enough here the also are some tasks we may want to consider in the future vboxhfs may also want to respect filesystem and device policy and not mount disallowed media the only exception must be ramdisks not certain whether it is worth it as hfsplus will be unable to support this anyway and vboxhfs audit will unlikely happen soon applepartitioninfo protocol can be supported to reliably detect filesystems prior to trying to load the driver which is really the way this should work from security standpoint in addition it will also allow detecting note that we cannot use efipartitioninfo it is sometimes unavailable and or broken
| 1
|
319,377
| 9,743,008,411
|
IssuesEvent
|
2019-06-02 22:04:23
|
philburk/hmsl
|
https://api.github.com/repos/philburk/hmsl
|
closed
|
HMSL should not depend on pforth-xcode
|
forth high priority
|
HMSL can be built from the master pForth repo at https://github.com/philburk/pforth
This is important because changes needed for HMSL are going into that repo.
The XCode project could refer to just "pforth" folder instead of "pforth-xcode".
README.md should then be updated.
|
1.0
|
HMSL should not depend on pforth-xcode - HMSL can be built from the master pForth repo at https://github.com/philburk/pforth
This is important because changes needed for HMSL are going into that repo.
The XCode project could refer to just "pforth" folder instead of "pforth-xcode".
README.md should then be updated.
|
priority
|
hmsl should not depend on pforth xcode hmsl can be built from the master pforth repo at this is important because changes needed for hmsl are going into that repo the xcode project could refer to just pforth folder instead of pforth xcode readme md should then be updated
| 1
|
681,540
| 23,315,085,359
|
IssuesEvent
|
2022-08-08 11:48:15
|
Clm-Roig/suivie
|
https://api.github.com/repos/Clm-Roig/suivie
|
closed
|
[STATS] Month view goes beyond 31 days
|
Type: Bug 🐛 Priority: high
|
It's not the case for all 31-days months... I need to investigate why.

|
1.0
|
[STATS] Month view goes beyond 31 days - It's not the case for all 31-days months... I need to investigate why.

|
priority
|
month view goes beyond days it s not the case for all days months i need to investigate why
| 1
|
631,698
| 20,157,944,579
|
IssuesEvent
|
2022-02-09 18:15:52
|
nevermined-io/sdk-js
|
https://api.github.com/repos/nevermined-io/sdk-js
|
closed
|
Add new graph events api support in the javascript sdk
|
enhancement priority:high sdk
|
Add support for the new GraphQL events api with Graph.
- Ability to query for past events
- Ability to subscribe to future events
|
1.0
|
Add new graph events api support in the javascript sdk - Add support for the new GraphQL events api with Graph.
- Ability to query for past events
- Ability to subscribe to future events
|
priority
|
add new graph events api support in the javascript sdk add support for the new graphql events api with graph ability to query for past events ability to subscribe to future events
| 1
|
215,376
| 7,293,695,660
|
IssuesEvent
|
2018-02-25 16:44:50
|
CosmosOS/Cosmos
|
https://api.github.com/repos/CosmosOS/Cosmos
|
closed
|
[CGS] VmWare support
|
Complexity: Medium Priority: High Up for Grabs
|
Luckily it is not so difficult as it could seem as Cosmos has a VMWare driver already:
https://github.com/CosmosOS/Cosmos/blob/master/source/Cosmos.HAL/Drivers/PCI/Video/VMWareSVGAII.cs
it simply needs a VmWareScreenClass in System to make it usable from the user level!
The one done for Bochs should be used as template:
https://github.com/CosmosOS/Cosmos/blob/master/source/Cosmos.System/Graphics/VBEScreen.cs
the first objectives should be to overwrite the "stub" Clear method in Canvas to use the hardware Clear implemented in the HAL VmWare driver, then overwrite DrawPoint() with what is needed to make it work with VmWare.
Done this the other methods of CGS should already work as they are all based on DrawPoint() but thing can be done better in VmWare as it has hardware accelerated line and rectangle drawing, to take advantage of them you simply need to overload the methods of the abstract canvas class.
Points to indagate:
1. There is a method in VmWare to get the list of supported modes? If it exists the List returned by getAviableModes() should be filled with real values not with hard coded ones as done for the Bochs driver
2. The VmWare driver permits to return in Text Mode?
|
1.0
|
[CGS] VmWare support - Luckily it is not so difficult as it could seem as Cosmos has a VMWare driver already:
https://github.com/CosmosOS/Cosmos/blob/master/source/Cosmos.HAL/Drivers/PCI/Video/VMWareSVGAII.cs
it simply needs a VmWareScreenClass in System to make it usable from the user level!
The one done for Bochs should be used as template:
https://github.com/CosmosOS/Cosmos/blob/master/source/Cosmos.System/Graphics/VBEScreen.cs
the first objectives should be to overwrite the "stub" Clear method in Canvas to use the hardware Clear implemented in the HAL VmWare driver, then overwrite DrawPoint() with what is needed to make it work with VmWare.
Done this the other methods of CGS should already work as they are all based on DrawPoint() but thing can be done better in VmWare as it has hardware accelerated line and rectangle drawing, to take advantage of them you simply need to overload the methods of the abstract canvas class.
Points to indagate:
1. There is a method in VmWare to get the list of supported modes? If it exists the List returned by getAviableModes() should be filled with real values not with hard coded ones as done for the Bochs driver
2. The VmWare driver permits to return in Text Mode?
|
priority
|
vmware support luckily it is not so difficult as it could seem as cosmos has a vmware driver already it simply needs a vmwarescreenclass in system to make it usable from the user level the one done for bochs should be used as template the first objectives should be to overwrite the stub clear method in canvas to use the hardware clear implemented in the hal vmware driver then overwrite drawpoint with what is needed to make it work with vmware done this the other methods of cgs should already work as they are all based on drawpoint but thing can be done better in vmware as it has hardware accelerated line and rectangle drawing to take advantage of them you simply need to overload the methods of the abstract canvas class points to indagate there is a method in vmware to get the list of supported modes if it exists the list returned by getaviablemodes should be filled with real values not with hard coded ones as done for the bochs driver the vmware driver permits to return in text mode
| 1
|
452,602
| 13,056,589,672
|
IssuesEvent
|
2020-07-30 05:12:40
|
topcoder-platform/u-bahn-app
|
https://api.github.com/repos/topcoder-platform/u-bahn-app
|
closed
|
[$130] Cant Found new Group After Succesfully Created
|
bug high priority tcx_Feedback tcx_FixAccepted
|
## Step To Reproduce
1. Go to https://skill-search.topcoder-dev.com/
2. Login as ToniJ(topcoder)
3. Go to middle tab (create group tab)
4. Type **javascript** in search box
5. Click create button
6. search **javascrip**t in the same search box
## Expected Result
We can search the new group after successfully added it.
## Actual Result
Cant found new group after successfully created
## Screenshot

## Video
https://www.dropbox.com/s/t9jvrg161pr0f59/U-Bahn%20employee%20skills%20search%20portal%20-%20Google%20Chrome%202020-07-12%2017-02-45.mp4?dl=0
## Device/OS/Browser Information:
a. Device: Lenovo (laptop)
Processor : AMD A9-9420 RADEON R5, 5 Compute Cores 2C+3G 3.00 GHz
RAM : 8 GB
System Type: 64 Bit OS, x64-based processor
Pen or touch: no pen or touch
b. OS: Windows 10 Home Single Language
c. Browser: Chrome Version 83.0.4103.106 (Official Build) (64-bit)
|
1.0
|
[$130] Cant Found new Group After Succesfully Created -
## Step To Reproduce
1. Go to https://skill-search.topcoder-dev.com/
2. Login as ToniJ(topcoder)
3. Go to middle tab (create group tab)
4. Type **javascript** in search box
5. Click create button
6. search **javascrip**t in the same search box
## Expected Result
We can search the new group after successfully added it.
## Actual Result
Cant found new group after successfully created
## Screenshot

## Video
https://www.dropbox.com/s/t9jvrg161pr0f59/U-Bahn%20employee%20skills%20search%20portal%20-%20Google%20Chrome%202020-07-12%2017-02-45.mp4?dl=0
## Device/OS/Browser Information:
a. Device: Lenovo (laptop)
Processor : AMD A9-9420 RADEON R5, 5 Compute Cores 2C+3G 3.00 GHz
RAM : 8 GB
System Type: 64 Bit OS, x64-based processor
Pen or touch: no pen or touch
b. OS: Windows 10 Home Single Language
c. Browser: Chrome Version 83.0.4103.106 (Official Build) (64-bit)
|
priority
|
cant found new group after succesfully created step to reproduce go to login as tonij topcoder go to middle tab create group tab type javascript in search box click create button search javascrip t in the same search box expected result we can search the new group after successfully added it actual result cant found new group after successfully created screenshot video device os browser information a device lenovo laptop processor amd radeon compute cores ghz ram gb system type bit os based processor pen or touch no pen or touch b os windows home single language c browser chrome version official build bit
| 1
|
234,926
| 7,732,600,412
|
IssuesEvent
|
2018-05-26 00:04:02
|
GiantsLoveDeathMetal/foolscap
|
https://api.github.com/repos/GiantsLoveDeathMetal/foolscap
|
closed
|
Macro tag Directories
|
HIGH PRIORITY Quality of Life
|
```
{book:textbooks} <-- macro tag
{code} {python}
=========
```
These only show when typing in the command line:
`fscap list --m:textbooks` or `fscap list --macro:textbooks`
Filtering by tag should still work:
`fscap list code --m:textbooks`
Updating a note's macro category should update the meta data.
|
1.0
|
Macro tag Directories - ```
{book:textbooks} <-- macro tag
{code} {python}
=========
```
These only show when typing in the command line:
`fscap list --m:textbooks` or `fscap list --macro:textbooks`
Filtering by tag should still work:
`fscap list code --m:textbooks`
Updating a note's macro category should update the meta data.
|
priority
|
macro tag directories book textbooks macro tag code python these only show when typing in the command line fscap list m textbooks or fscap list macro textbooks filtering by tag should still work fscap list code m textbooks updating a note s macro category should update the meta data
| 1
|
825,079
| 31,271,363,875
|
IssuesEvent
|
2023-08-22 00:26:32
|
puyu-pe/bifrost-io
|
https://api.github.com/repos/puyu-pe/bifrost-io
|
opened
|
Actualizar comando de prueba en artillery_config.md
|
point: 1 priority: high type:feature
|
# El comando lanzamiento de prueba de artillery esta desactualido
- El ruc de cada espacio de nombre no respeta los 11 digitos
- No se puso un sufijo opcional
- El sufijo no respeta el hecho de ser 1 digito numerico
|
1.0
|
Actualizar comando de prueba en artillery_config.md - # El comando lanzamiento de prueba de artillery esta desactualido
- El ruc de cada espacio de nombre no respeta los 11 digitos
- No se puso un sufijo opcional
- El sufijo no respeta el hecho de ser 1 digito numerico
|
priority
|
actualizar comando de prueba en artillery config md el comando lanzamiento de prueba de artillery esta desactualido el ruc de cada espacio de nombre no respeta los digitos no se puso un sufijo opcional el sufijo no respeta el hecho de ser digito numerico
| 1
|
480,605
| 13,854,884,004
|
IssuesEvent
|
2020-10-15 10:07:41
|
MitchellWeg/dummy-repo
|
https://api.github.com/repos/MitchellWeg/dummy-repo
|
opened
|
mserver5 crashes with corruption, double free, invalid size or invalid pointer (30)
|
SQL bug high priority major
|
Date: 2019-09-20 17:34:07 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
To: SQL devs <<bugs-sql@monetdb.org>>
Version: 11.33.11 (Apr2019-SP1)
Last updated: 2019-11-28 10:00:06 +0100
## Comment 27308
Date: 2019-09-20 17:34:07 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
mserver5 crashes with one of the following errors:
corrupted double-linked list
corrupted size vs. prev_size
double free or corruption (out)
double free or corruption (!prev)
free(): invalid size
munmap_chunk(): invalid pointer
script to reproduce will follow.
## Comment 27309
Date: 2019-09-20 17:37:17 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
Please find a script to reproduce the bug at
http://homepages.cwi.nl/~manegold/Bug-6764.tar
## Comment 27312
Date: 2019-09-21 21:22:00 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
when running a debug build of mserver5,
some crashes still occur:
corrupted double-linked list
corrupted size vs. prev_size
free(): invalid size
while instead(?) of the other crashes (see initial comment), these assertions are triggered:
MonetDB/gdk/gdk_bat.c:1587: BATsetcount: Assertion `b->batCapacity >= cnt' failed.
MonetDB/gdk/gdk_utils.c:1789: GDKfree: Assertion `(asize & 2) == 0' failed.
MonetDB/gdk/gdk_utils.c:1794: GDKfree: Assertion `((char *) s)[i] == '\xBD'' failed.
## Comment 27313
Date: 2019-09-23 11:44:54 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
Created attachment 635
table schema
> Attached file: [Bug-6764-schema.ddl](https://github.com/MitchellWeg/monetdb-issues-attachments/blob/master/Bug-6764-schema.ddl) (text/plain, 20721 bytes)
> Description: table schema
## Comment 27314
Date: 2019-09-23 11:45:24 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
Created attachment 636
query that triggers assertion / crash
> Attached file: [Bug-6764-query.sql](https://github.com/MitchellWeg/monetdb-issues-attachments/blob/master/Bug-6764-query.sql) (application/sql, 83 bytes)
> Description: query that triggers assertion / crash
## Comment 27315
Date: 2019-09-23 11:47:07 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
For what it's worth,
a simpler way to reproduce the assertion / crash is by loading the data from
http://homepages.cwi.nl/~manegold/Bug-6764-data.csv.bz2
into the table defined by attached Bug-6764-schema.ddl
and then run attached Bug-6764-query.sql
## Comment 27316
Date: 2019-09-23 12:34:53 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
ps: the copy into statement should look as follows:
COPY OFFSET 3 INTO "data-x" FROM '.../Bug-6764-data.csv.bz2' DELIMITERS ',','\n','' NULL AS '';
## Comment 27317
Date: 2019-09-23 14:24:38 +0200
From: MonetDB Mercurial Repository <<hg@monetdb.org>>
Changeset [cc708f0d0b28](https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cc708f0d0b28) made by Sjoerd Mullender <sjoerd@acm.org> in the MonetDB repo, refers to this bug.
For complete details, see https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cc708f0d0b28
Changeset description:
Make sure enough space is allocated for extents and histogram BATs.
This fixes bug #6764.
## Comment 27319
Date: 2019-09-24 09:21:08 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
Changeset [cc708f0d0b28](https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cc708f0d0b28) indeed appears to fix also the other incarnations of the bug (crash/assertion) reported here.
Thank you very much!
|
1.0
|
mserver5 crashes with corruption, double free, invalid size or invalid pointer (30) - Date: 2019-09-20 17:34:07 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
To: SQL devs <<bugs-sql@monetdb.org>>
Version: 11.33.11 (Apr2019-SP1)
Last updated: 2019-11-28 10:00:06 +0100
## Comment 27308
Date: 2019-09-20 17:34:07 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
mserver5 crashes with one of the following errors:
corrupted double-linked list
corrupted size vs. prev_size
double free or corruption (out)
double free or corruption (!prev)
free(): invalid size
munmap_chunk(): invalid pointer
script to reproduce will follow.
## Comment 27309
Date: 2019-09-20 17:37:17 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
Please find a script to reproduce the bug at
http://homepages.cwi.nl/~manegold/Bug-6764.tar
## Comment 27312
Date: 2019-09-21 21:22:00 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
when running a debug build of mserver5,
some crashes still occur:
corrupted double-linked list
corrupted size vs. prev_size
free(): invalid size
while instead(?) of the other crashes (see initial comment), these assertions are triggered:
MonetDB/gdk/gdk_bat.c:1587: BATsetcount: Assertion `b->batCapacity >= cnt' failed.
MonetDB/gdk/gdk_utils.c:1789: GDKfree: Assertion `(asize & 2) == 0' failed.
MonetDB/gdk/gdk_utils.c:1794: GDKfree: Assertion `((char *) s)[i] == '\xBD'' failed.
## Comment 27313
Date: 2019-09-23 11:44:54 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
Created attachment 635
table schema
> Attached file: [Bug-6764-schema.ddl](https://github.com/MitchellWeg/monetdb-issues-attachments/blob/master/Bug-6764-schema.ddl) (text/plain, 20721 bytes)
> Description: table schema
## Comment 27314
Date: 2019-09-23 11:45:24 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
Created attachment 636
query that triggers assertion / crash
> Attached file: [Bug-6764-query.sql](https://github.com/MitchellWeg/monetdb-issues-attachments/blob/master/Bug-6764-query.sql) (application/sql, 83 bytes)
> Description: query that triggers assertion / crash
## Comment 27315
Date: 2019-09-23 11:47:07 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
For what it's worth,
a simpler way to reproduce the assertion / crash is by loading the data from
http://homepages.cwi.nl/~manegold/Bug-6764-data.csv.bz2
into the table defined by attached Bug-6764-schema.ddl
and then run attached Bug-6764-query.sql
## Comment 27316
Date: 2019-09-23 12:34:53 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
ps: the copy into statement should look as follows:
COPY OFFSET 3 INTO "data-x" FROM '.../Bug-6764-data.csv.bz2' DELIMITERS ',','\n','' NULL AS '';
## Comment 27317
Date: 2019-09-23 14:24:38 +0200
From: MonetDB Mercurial Repository <<hg@monetdb.org>>
Changeset [cc708f0d0b28](https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cc708f0d0b28) made by Sjoerd Mullender <sjoerd@acm.org> in the MonetDB repo, refers to this bug.
For complete details, see https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cc708f0d0b28
Changeset description:
Make sure enough space is allocated for extents and histogram BATs.
This fixes bug #6764.
## Comment 27319
Date: 2019-09-24 09:21:08 +0200
From: Stefan Manegold <<Stefan.Manegold@cwi.nl>>
Changeset [cc708f0d0b28](https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cc708f0d0b28) indeed appears to fix also the other incarnations of the bug (crash/assertion) reported here.
Thank you very much!
|
priority
|
crashes with corruption double free invalid size or invalid pointer date from stefan manegold lt gt to sql devs lt gt version last updated comment date from stefan manegold lt gt crashes with one of the following errors corrupted double linked list corrupted size vs prev size double free or corruption out double free or corruption prev free invalid size munmap chunk invalid pointer script to reproduce will follow comment date from stefan manegold lt gt please find a script to reproduce the bug at comment date from stefan manegold lt gt when running a debug build of some crashes still occur corrupted double linked list corrupted size vs prev size free invalid size while instead of the other crashes see initial comment these assertions are triggered monetdb gdk gdk bat c batsetcount assertion b batcapacity cnt failed monetdb gdk gdk utils c gdkfree assertion asize failed monetdb gdk gdk utils c gdkfree assertion char s xbd failed comment date from stefan manegold lt gt created attachment table schema attached file text plain bytes description table schema comment date from stefan manegold lt gt created attachment query that triggers assertion crash attached file application sql bytes description query that triggers assertion crash comment date from stefan manegold lt gt for what it s worth a simpler way to reproduce the assertion crash is by loading the data from into the table defined by attached bug schema ddl and then run attached bug query sql comment date from stefan manegold lt gt ps the copy into statement should look as follows copy offset into data x from bug data csv delimiters n null as comment date from monetdb mercurial repository lt gt changeset made by sjoerd mullender in the monetdb repo refers to this bug for complete details see changeset description make sure enough space is allocated for extents and histogram bats this fixes bug comment date from stefan manegold lt gt changeset indeed appears to fix also the other incarnations of the bug crash assertion reported here thank you very much
| 1
|
489,350
| 14,105,026,017
|
IssuesEvent
|
2020-11-06 12:51:36
|
AY2021S1-CS2113T-W12-4/tp
|
https://api.github.com/repos/AY2021S1-CS2113T-W12-4/tp
|
closed
|
[PE-D] Additional parameters not recognized (add quiz command)
|
priority.High
|
o5 option is not handle (as an exception or another answer).

<!--session: 1604047651069-4f91bbb7-4694-4771-bd63-fdcd1e6d1f79-->
-------------
Labels: `severity.Low` `type.FunctionalityBug`
original: hungvo0603/ped#10
|
1.0
|
[PE-D] Additional parameters not recognized (add quiz command) - o5 option is not handle (as an exception or another answer).

<!--session: 1604047651069-4f91bbb7-4694-4771-bd63-fdcd1e6d1f79-->
-------------
Labels: `severity.Low` `type.FunctionalityBug`
original: hungvo0603/ped#10
|
priority
|
additional parameters not recognized add quiz command option is not handle as an exception or another answer labels severity low type functionalitybug original ped
| 1
|
321,604
| 9,806,400,874
|
IssuesEvent
|
2019-06-12 11:18:46
|
StrangeLoopGames/EcoIssues
|
https://api.github.com/repos/StrangeLoopGames/EcoIssues
|
closed
|
problem with crafting experience calculation
|
Fixed High Priority QA Verified
|
problem only with craft where more 1 ingredient.
If we put just part of ingredient (for example for bricks it will be mortar) and go to dig clay, then put clay when part of progress bar will be filled we get instantly few bricks but experience for craft will be gain only like for 1 item.
Attaching video with example this issue: https://www.youtube.com/watch?v=N0r__cRvcjY
steps.
profession exp is 0
exp for creation brick is 50
start project on 10 bricks and put 40 mortar for project
waiting for filling progress bar
put second part ingridient 25 clay.
instantly getted 6 clay and getted 50 exp (must be 300 exp because 6*50=300)
|
1.0
|
problem with crafting experience calculation - problem only with craft where more 1 ingredient.
If we put just part of ingredient (for example for bricks it will be mortar) and go to dig clay, then put clay when part of progress bar will be filled we get instantly few bricks but experience for craft will be gain only like for 1 item.
Attaching video with example this issue: https://www.youtube.com/watch?v=N0r__cRvcjY
steps.
profession exp is 0
exp for creation brick is 50
start project on 10 bricks and put 40 mortar for project
waiting for filling progress bar
put second part ingridient 25 clay.
instantly getted 6 clay and getted 50 exp (must be 300 exp because 6*50=300)
|
priority
|
problem with crafting experience calculation problem only with craft where more ingredient if we put just part of ingredient for example for bricks it will be mortar and go to dig clay then put clay when part of progress bar will be filled we get instantly few bricks but experience for craft will be gain only like for item attaching video with example this issue steps profession exp is exp for creation brick is start project on bricks and put mortar for project waiting for filling progress bar put second part ingridient clay instantly getted clay and getted exp must be exp because
| 1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.