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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
365,264
| 10,780,199,086
|
IssuesEvent
|
2019-11-04 12:25:54
|
TigerHacks/app-android
|
https://api.github.com/repos/TigerHacks/app-android
|
closed
|
Figure out what the link to onboarding is and set it to link the user if profile.registered = false
|
High Priority
|
They seem to just have a register button and redirect to tigerhacks.com.
|
1.0
|
Figure out what the link to onboarding is and set it to link the user if profile.registered = false - They seem to just have a register button and redirect to tigerhacks.com.
|
priority
|
figure out what the link to onboarding is and set it to link the user if profile registered false they seem to just have a register button and redirect to tigerhacks com
| 1
|
223,542
| 7,458,253,540
|
IssuesEvent
|
2018-03-30 09:24:22
|
CS2103JAN2018-F11-B1/main
|
https://api.github.com/repos/CS2103JAN2018-F11-B1/main
|
closed
|
Modify conversion to support new fields in Leads and Contacts
|
priority.high type.task
|
Belongs to #60 and #87 .
Related to #61 and #62 .
|
1.0
|
Modify conversion to support new fields in Leads and Contacts - Belongs to #60 and #87 .
Related to #61 and #62 .
|
priority
|
modify conversion to support new fields in leads and contacts belongs to and related to and
| 1
|
374,519
| 11,091,724,676
|
IssuesEvent
|
2019-12-15 14:20:37
|
bounswe/bounswe2019group8
|
https://api.github.com/repos/bounswe/bounswe2019group8
|
closed
|
Add fixtures for stocks, digital currencies and ETFs
|
Backend Effort: Medium Priority: High Type: Feature
|
**Actions:**
1. Add fixtures for stocks, digital currencies and ETFs
**Deadline:** 07.12.2019
|
1.0
|
Add fixtures for stocks, digital currencies and ETFs - **Actions:**
1. Add fixtures for stocks, digital currencies and ETFs
**Deadline:** 07.12.2019
|
priority
|
add fixtures for stocks digital currencies and etfs actions add fixtures for stocks digital currencies and etfs deadline
| 1
|
506,898
| 14,675,458,655
|
IssuesEvent
|
2020-12-30 17:38:56
|
OldHaven-Network/MegaMod-Mixins
|
https://api.github.com/repos/OldHaven-Network/MegaMod-Mixins
|
closed
|
Loading player models creates lag spikes
|
!!!HIGH PRIORITY!!! bug
|
When a player is loaded into view, the game freezes for around half a second before returning back to normal. We may have to ask somebody who understands async computing to help with implementing more proper skin rendering.
|
1.0
|
Loading player models creates lag spikes - When a player is loaded into view, the game freezes for around half a second before returning back to normal. We may have to ask somebody who understands async computing to help with implementing more proper skin rendering.
|
priority
|
loading player models creates lag spikes when a player is loaded into view the game freezes for around half a second before returning back to normal we may have to ask somebody who understands async computing to help with implementing more proper skin rendering
| 1
|
70,214
| 3,321,250,884
|
IssuesEvent
|
2015-11-09 07:31:35
|
sceene/sprint-planning
|
https://api.github.com/repos/sceene/sprint-planning
|
closed
|
3. CARDS COMMENTS SECTION
|
HIGH PRIORITY ONE ON ONE
|
- [ ] Finalize the card layout and final adjustments.

[Comments.pdf](https://github.com/sceene/sprint-planning/files/29552/Comments.pdf)
|
1.0
|
3. CARDS COMMENTS SECTION - - [ ] Finalize the card layout and final adjustments.

[Comments.pdf](https://github.com/sceene/sprint-planning/files/29552/Comments.pdf)
|
priority
|
cards comments section finalize the card layout and final adjustments
| 1
|
79,387
| 3,535,416,533
|
IssuesEvent
|
2016-01-16 13:59:07
|
nim-lang/Nim
|
https://api.github.com/repos/nim-lang/Nim
|
closed
|
Incorrect C code produced
|
High Priority Lambda lifting
|
This code used to work (I think in 0.9.6, but definitely in 0.9.3):
```
type
TBinOp*[T] = proc (x,y: T): bool
THeap*[T] = object
cmp*: TBinOp[T]
proc less*[T](x,y: T): bool =
x < y
proc initHeap*[T](cmp: TBinOp[T]): THeap[T] =
result.cmp = cmp
when isMainModule:
var h = initHeap[int](less[int])
echo h.cmp(2,3)
```
In 0.10.2, it results in C compiler error:
```
.../heap/nimcache/test.c:191:20: error: called object type 'tbinop89053' is not a function or function pointer
LOC2 = h_89087.Cmp(2, 3);
```
(Tested both on Mac OS X 10.8 (with the default clang 3.5 compiler) and Linux with GCC 4.9.2.)
|
1.0
|
Incorrect C code produced - This code used to work (I think in 0.9.6, but definitely in 0.9.3):
```
type
TBinOp*[T] = proc (x,y: T): bool
THeap*[T] = object
cmp*: TBinOp[T]
proc less*[T](x,y: T): bool =
x < y
proc initHeap*[T](cmp: TBinOp[T]): THeap[T] =
result.cmp = cmp
when isMainModule:
var h = initHeap[int](less[int])
echo h.cmp(2,3)
```
In 0.10.2, it results in C compiler error:
```
.../heap/nimcache/test.c:191:20: error: called object type 'tbinop89053' is not a function or function pointer
LOC2 = h_89087.Cmp(2, 3);
```
(Tested both on Mac OS X 10.8 (with the default clang 3.5 compiler) and Linux with GCC 4.9.2.)
|
priority
|
incorrect c code produced this code used to work i think in but definitely in type tbinop proc x y t bool theap object cmp tbinop proc less x y t bool x y proc initheap cmp tbinop theap result cmp cmp when ismainmodule var h initheap less echo h cmp in it results in c compiler error heap nimcache test c error called object type is not a function or function pointer h cmp tested both on mac os x with the default clang compiler and linux with gcc
| 1
|
261,554
| 8,237,220,199
|
IssuesEvent
|
2018-09-10 01:28:47
|
North-Vine-Engineering/ibs-server
|
https://api.github.com/repos/North-Vine-Engineering/ibs-server
|
opened
|
Edit/View Invoice View
|
frontend high priority
|
## Description / User Story
As a user I would like to be able to view and edit individual Invoice.
## Comments / Additional Information
We have a table view page, but we need to create a zoomed in view where users can edit and view individual invoices.
## Tasks
- [ ] Create Template
- [ ] Create Resource
- [ ] Add CRUD Support
|
1.0
|
Edit/View Invoice View - ## Description / User Story
As a user I would like to be able to view and edit individual Invoice.
## Comments / Additional Information
We have a table view page, but we need to create a zoomed in view where users can edit and view individual invoices.
## Tasks
- [ ] Create Template
- [ ] Create Resource
- [ ] Add CRUD Support
|
priority
|
edit view invoice view description user story as a user i would like to be able to view and edit individual invoice comments additional information we have a table view page but we need to create a zoomed in view where users can edit and view individual invoices tasks create template create resource add crud support
| 1
|
6,199
| 2,585,548,902
|
IssuesEvent
|
2015-02-17 00:48:52
|
aopell/RocketLauncher
|
https://api.github.com/repos/aopell/RocketLauncher
|
closed
|
Website favicons should appear
|
Feature Suggestion High Priority In Progress
|
Simple change that would be really nice.
Related Issues: #2
|
1.0
|
Website favicons should appear - Simple change that would be really nice.
Related Issues: #2
|
priority
|
website favicons should appear simple change that would be really nice related issues
| 1
|
155,060
| 5,948,265,679
|
IssuesEvent
|
2017-05-26 10:49:00
|
GeekyAnts/NativeBase
|
https://api.github.com/repos/GeekyAnts/NativeBase
|
closed
|
Deck Swiper content flashing
|
bug high priority
|
Hey there guys!
I'm pretty new to React Native and Native base both, but I'm having a issue with the Deck Swiper.
Whenever I start to drag a card and it's moving, all the content inside is flashing. I'm not sure exactly why this would be and was hoping somebody could give me suggestions on how to fix this issue.
Ref: [NativeBase Forum](http://discuss.nativebase.io/t/deck-swiper-content-flashing/407)
|
1.0
|
Deck Swiper content flashing - Hey there guys!
I'm pretty new to React Native and Native base both, but I'm having a issue with the Deck Swiper.
Whenever I start to drag a card and it's moving, all the content inside is flashing. I'm not sure exactly why this would be and was hoping somebody could give me suggestions on how to fix this issue.
Ref: [NativeBase Forum](http://discuss.nativebase.io/t/deck-swiper-content-flashing/407)
|
priority
|
deck swiper content flashing hey there guys i m pretty new to react native and native base both but i m having a issue with the deck swiper whenever i start to drag a card and it s moving all the content inside is flashing i m not sure exactly why this would be and was hoping somebody could give me suggestions on how to fix this issue ref
| 1
|
92,188
| 3,868,753,187
|
IssuesEvent
|
2016-04-10 05:32:10
|
cs2103jan2016-t16-4j/main
|
https://api.github.com/repos/cs2103jan2016-t16-4j/main
|
closed
|
A user can have a short cut command or auto complete function.
|
priority.high type.epic
|
So that he can save some time typing out the commands.
|
1.0
|
A user can have a short cut command or auto complete function. - So that he can save some time typing out the commands.
|
priority
|
a user can have a short cut command or auto complete function so that he can save some time typing out the commands
| 1
|
498,225
| 14,403,827,150
|
IssuesEvent
|
2020-12-03 16:31:35
|
wazuh/wazuh-documentation
|
https://api.github.com/repos/wazuh/wazuh-documentation
|
closed
|
Fix typo in Command monitoring configuration section
|
priority: highest type: bug
|
Hello team!
This issue aims to fix a typo in [Command monitoring configuration section](https://documentation.wazuh.com/3.13/user-manual/capabilities/command-monitoring/command-configuration.html#load-average).
In the "Load average" section, the example shows `<regex>load averages: 2.</regex>` this should be `<regex>load average: 2.</regex>`
This should be reviewed in all branches
Thanks to @JcabreraC for reporting.
Regards,
David
|
1.0
|
Fix typo in Command monitoring configuration section - Hello team!
This issue aims to fix a typo in [Command monitoring configuration section](https://documentation.wazuh.com/3.13/user-manual/capabilities/command-monitoring/command-configuration.html#load-average).
In the "Load average" section, the example shows `<regex>load averages: 2.</regex>` this should be `<regex>load average: 2.</regex>`
This should be reviewed in all branches
Thanks to @JcabreraC for reporting.
Regards,
David
|
priority
|
fix typo in command monitoring configuration section hello team this issue aims to fix a typo in in the load average section the example shows load averages this should be load average this should be reviewed in all branches thanks to jcabrerac for reporting regards david
| 1
|
115,946
| 4,690,288,951
|
IssuesEvent
|
2016-10-11 05:55:39
|
PowerlineApp/powerline-mobile
|
https://api.github.com/repos/PowerlineApp/powerline-mobile
|
closed
|
iOS Notifications not delivered on iPhone 6
|
blocked-by-other-issue bug P1 - High Priority
|
Tried to use Jon Stamos account. Did not work.
Then I registered user christophermino9 registered via Facebook.
Neither resulted in:
- Event notification
- Leader Petition notification
- Crowdfunder notification, unable to test Fundraiser due to 500 issue (might be related to the fact that BT3 group does not have bank account info setup, in which case the same error should occur for Crowdfunders, not just Fundraisers)
- Announcement notification (believe this is a contentHelper issue)
- Poll notification
- New post or user petition by followed user (Android and iOS)
I am grouping these together because it seems like it's all one issue, but we can split out if needed.
|
1.0
|
iOS Notifications not delivered on iPhone 6 - Tried to use Jon Stamos account. Did not work.
Then I registered user christophermino9 registered via Facebook.
Neither resulted in:
- Event notification
- Leader Petition notification
- Crowdfunder notification, unable to test Fundraiser due to 500 issue (might be related to the fact that BT3 group does not have bank account info setup, in which case the same error should occur for Crowdfunders, not just Fundraisers)
- Announcement notification (believe this is a contentHelper issue)
- Poll notification
- New post or user petition by followed user (Android and iOS)
I am grouping these together because it seems like it's all one issue, but we can split out if needed.
|
priority
|
ios notifications not delivered on iphone tried to use jon stamos account did not work then i registered user registered via facebook neither resulted in event notification leader petition notification crowdfunder notification unable to test fundraiser due to issue might be related to the fact that group does not have bank account info setup in which case the same error should occur for crowdfunders not just fundraisers announcement notification believe this is a contenthelper issue poll notification new post or user petition by followed user android and ios i am grouping these together because it seems like it s all one issue but we can split out if needed
| 1
|
163,101
| 6,190,058,710
|
IssuesEvent
|
2017-07-04 14:27:04
|
vanilla-framework/vanilla-framework
|
https://api.github.com/repos/vanilla-framework/vanilla-framework
|
closed
|
Top margin on main navigation
|
Priority: High Type: Bug
|
## Process
The new vertical rhythm update adds top margin to the header
## Expected result
There shouldn’t be top margin on the header
## Current result
There’s margin above the header
## Screenshot

|
1.0
|
Top margin on main navigation - ## Process
The new vertical rhythm update adds top margin to the header
## Expected result
There shouldn’t be top margin on the header
## Current result
There’s margin above the header
## Screenshot

|
priority
|
top margin on main navigation process the new vertical rhythm update adds top margin to the header expected result there shouldn’t be top margin on the header current result there’s margin above the header screenshot
| 1
|
485,914
| 14,001,347,508
|
IssuesEvent
|
2020-10-28 13:32:55
|
AY2021S1-CS2113-T14-4/tp
|
https://api.github.com/repos/AY2021S1-CS2113-T14-4/tp
|
closed
|
Get list of properties from FoodList for saving
|
priority.High type.Enhancement
|
Should be able to get a list of all the LocalDateTimes and portion sizes associated with the entries in foodlist.
This is to save the data in the foodlist.
|
1.0
|
Get list of properties from FoodList for saving - Should be able to get a list of all the LocalDateTimes and portion sizes associated with the entries in foodlist.
This is to save the data in the foodlist.
|
priority
|
get list of properties from foodlist for saving should be able to get a list of all the localdatetimes and portion sizes associated with the entries in foodlist this is to save the data in the foodlist
| 1
|
373,557
| 11,045,611,484
|
IssuesEvent
|
2019-12-09 15:24:44
|
geosolutions-it/MapStore2
|
https://api.github.com/repos/geosolutions-it/MapStore2
|
closed
|
Warning message problems saving resources with same name
|
Priority: High
|
### Description
Actually the behavior of the warning message when saving resources with the same name is quite various, depending of resource type:
1. **Renaming a resource with an existing resource name from the Edit properties button**
- For maps the following warning message appears : `A thumbnail with this name already exist` (see image 1. in 'Other useful information')
- For dashboards no warning message appears, when you try to save nothing happens (see image 2. in 'Other useful information')
- For stories same than dashboards
- For contexts same than dashboards
2. **Naming a resource with an existing resource name from Save/Save as button**
- For maps the following warning message appears : `A resource with this name already exist, try 'resourcename - 2'` and a warning window on background appears with the following message: `Cannot save current map - A map with this name already exist` (see image 3. in 'Other useful information')
- For dashboards only a warning message appears: `A resource with this name already exist, try 'resourcename - 2'` (see image 4. in 'Other useful information')
- For stories same than dashboards
- For contexts same than the others
I propose to uniform the behavior that has to be the same for all the resources (maps, dashboards, stories and contexts), in this way:
1. **Renaming a resource with an existing resource name from the Edit properties button**
- The following warning message appears: `A resource with this name already exist`
2. **Naming a resource with an existing resource name from Save/Save as button**
- The following warning message appears: `A resource with this name already exist`
- The following warning window appears in background: `Cannot save current resource - A
resource with this name already exist`
Moreover, a little fix is needed, only for maps and stories:
When you rename a resource with an existing resource name from the Save button, if you close the Save and you open the Save as (or again the Save), the warning message is still there. All the way around, when you rename a resource with an existing resource name from the Save as button, if you close the Save as and you open the Save (or again the Save as), the warning message is still there (see image 5. in 'Other useful information')
### Other useful information (optional):
1.

2.

3.

4.

5.

|
1.0
|
Warning message problems saving resources with same name - ### Description
Actually the behavior of the warning message when saving resources with the same name is quite various, depending of resource type:
1. **Renaming a resource with an existing resource name from the Edit properties button**
- For maps the following warning message appears : `A thumbnail with this name already exist` (see image 1. in 'Other useful information')
- For dashboards no warning message appears, when you try to save nothing happens (see image 2. in 'Other useful information')
- For stories same than dashboards
- For contexts same than dashboards
2. **Naming a resource with an existing resource name from Save/Save as button**
- For maps the following warning message appears : `A resource with this name already exist, try 'resourcename - 2'` and a warning window on background appears with the following message: `Cannot save current map - A map with this name already exist` (see image 3. in 'Other useful information')
- For dashboards only a warning message appears: `A resource with this name already exist, try 'resourcename - 2'` (see image 4. in 'Other useful information')
- For stories same than dashboards
- For contexts same than the others
I propose to uniform the behavior that has to be the same for all the resources (maps, dashboards, stories and contexts), in this way:
1. **Renaming a resource with an existing resource name from the Edit properties button**
- The following warning message appears: `A resource with this name already exist`
2. **Naming a resource with an existing resource name from Save/Save as button**
- The following warning message appears: `A resource with this name already exist`
- The following warning window appears in background: `Cannot save current resource - A
resource with this name already exist`
Moreover, a little fix is needed, only for maps and stories:
When you rename a resource with an existing resource name from the Save button, if you close the Save and you open the Save as (or again the Save), the warning message is still there. All the way around, when you rename a resource with an existing resource name from the Save as button, if you close the Save as and you open the Save (or again the Save as), the warning message is still there (see image 5. in 'Other useful information')
### Other useful information (optional):
1.

2.

3.

4.

5.

|
priority
|
warning message problems saving resources with same name description actually the behavior of the warning message when saving resources with the same name is quite various depending of resource type renaming a resource with an existing resource name from the edit properties button for maps the following warning message appears a thumbnail with this name already exist see image in other useful information for dashboards no warning message appears when you try to save nothing happens see image in other useful information for stories same than dashboards for contexts same than dashboards naming a resource with an existing resource name from save save as button for maps the following warning message appears a resource with this name already exist try resourcename and a warning window on background appears with the following message cannot save current map a map with this name already exist see image in other useful information for dashboards only a warning message appears a resource with this name already exist try resourcename see image in other useful information for stories same than dashboards for contexts same than the others i propose to uniform the behavior that has to be the same for all the resources maps dashboards stories and contexts in this way renaming a resource with an existing resource name from the edit properties button the following warning message appears a resource with this name already exist naming a resource with an existing resource name from save save as button the following warning message appears a resource with this name already exist the following warning window appears in background cannot save current resource a resource with this name already exist moreover a little fix is needed only for maps and stories when you rename a resource with an existing resource name from the save button if you close the save and you open the save as or again the save the warning message is still there all the way around when you rename a resource with an existing resource name from the save as button if you close the save as and you open the save or again the save as the warning message is still there see image in other useful information other useful information optional
| 1
|
523,527
| 15,184,338,455
|
IssuesEvent
|
2021-02-15 09:26:26
|
ooni/probe
|
https://api.github.com/repos/ooni/probe
|
closed
|
Add support for specifying custom URL or test list in websites test
|
discuss effort/M enhancement epic ooni/probe-cli ooni/probe-desktop priority/high
|
Currently it's not possible to pass your own test-list or URL to probe-cli.
|
1.0
|
Add support for specifying custom URL or test list in websites test - Currently it's not possible to pass your own test-list or URL to probe-cli.
|
priority
|
add support for specifying custom url or test list in websites test currently it s not possible to pass your own test list or url to probe cli
| 1
|
219,249
| 7,334,203,543
|
IssuesEvent
|
2018-03-05 21:57:12
|
StrangeLoopGames/EcoIssues
|
https://api.github.com/repos/StrangeLoopGames/EcoIssues
|
closed
|
Lag, Disconnects, High in game pings.
|
High Priority
|
Our server has become almost unplayable since the release of 0.7.0.8, We get constant in game high pings (2000ms+) but if you ping the server IP through terminal its a low ping so that makes no sense.
Inactivity kick is a joke, it kicks people who are playing and then sometimes they can't get back onto the server for a while.
It helps when the server software is rebooted for a bit but then it all comes back.
The load on the server is barely ever more than 50% and it has 32gb of RAM so I don't believe it's a server side issue.
I wish I had a log or an error file to show how bad it is at the moment.
|
1.0
|
Lag, Disconnects, High in game pings. - Our server has become almost unplayable since the release of 0.7.0.8, We get constant in game high pings (2000ms+) but if you ping the server IP through terminal its a low ping so that makes no sense.
Inactivity kick is a joke, it kicks people who are playing and then sometimes they can't get back onto the server for a while.
It helps when the server software is rebooted for a bit but then it all comes back.
The load on the server is barely ever more than 50% and it has 32gb of RAM so I don't believe it's a server side issue.
I wish I had a log or an error file to show how bad it is at the moment.
|
priority
|
lag disconnects high in game pings our server has become almost unplayable since the release of we get constant in game high pings but if you ping the server ip through terminal its a low ping so that makes no sense inactivity kick is a joke it kicks people who are playing and then sometimes they can t get back onto the server for a while it helps when the server software is rebooted for a bit but then it all comes back the load on the server is barely ever more than and it has of ram so i don t believe it s a server side issue i wish i had a log or an error file to show how bad it is at the moment
| 1
|
647,282
| 21,097,439,464
|
IssuesEvent
|
2022-04-04 11:41:23
|
helgoboss/realearn
|
https://api.github.com/repos/helgoboss/realearn
|
closed
|
Add keyboard shortcut mapping source option
|
enhancement high priority
|
I currently use loopMIDI and GlovePie with ReaLearn to assign MIDI CC 80 and 81 to Numpad- and Numpad+ in order to control a talkback mic in momentary and toggle modes (like on a dedicated talkback mic) without using an external controller. Such native feature would be very handy, any 'MIDI CC/OSC only' action could be triggered from keyboard with different characters.
|
1.0
|
Add keyboard shortcut mapping source option - I currently use loopMIDI and GlovePie with ReaLearn to assign MIDI CC 80 and 81 to Numpad- and Numpad+ in order to control a talkback mic in momentary and toggle modes (like on a dedicated talkback mic) without using an external controller. Such native feature would be very handy, any 'MIDI CC/OSC only' action could be triggered from keyboard with different characters.
|
priority
|
add keyboard shortcut mapping source option i currently use loopmidi and glovepie with realearn to assign midi cc and to numpad and numpad in order to control a talkback mic in momentary and toggle modes like on a dedicated talkback mic without using an external controller such native feature would be very handy any midi cc osc only action could be triggered from keyboard with different characters
| 1
|
783,974
| 27,553,606,646
|
IssuesEvent
|
2023-03-07 16:25:48
|
patternfly/patternfly-elements
|
https://api.github.com/repos/patternfly/patternfly-elements
|
opened
|
jump-links subsections aren't reachable by keyboard
|
accessibility priority: high bug
|
<!-- Hello! Please read the [Contributing Guidelines](CONTRIBUTING.md) before submitting an issue. -->
## Description of the issue
jump-links subsections aren't reachable by keyboard
### Impacted component(s)
- `pf-jumplinks`
### Steps to reproduce
1. Go to [jump-links subsection demo](https://patternflyelements.org/components/jump-links/#expandable-vertical-with-subsection)
2. Focus on *Jump to Section*.
3. Click <kbd>Enter<kbd>.
4. Use arrow keys to focus on any "subsection".
### Expected behavior
Subsections should be reachable by arrow keys.
|
1.0
|
jump-links subsections aren't reachable by keyboard - <!-- Hello! Please read the [Contributing Guidelines](CONTRIBUTING.md) before submitting an issue. -->
## Description of the issue
jump-links subsections aren't reachable by keyboard
### Impacted component(s)
- `pf-jumplinks`
### Steps to reproduce
1. Go to [jump-links subsection demo](https://patternflyelements.org/components/jump-links/#expandable-vertical-with-subsection)
2. Focus on *Jump to Section*.
3. Click <kbd>Enter<kbd>.
4. Use arrow keys to focus on any "subsection".
### Expected behavior
Subsections should be reachable by arrow keys.
|
priority
|
jump links subsections aren t reachable by keyboard description of the issue jump links subsections aren t reachable by keyboard impacted component s pf jumplinks steps to reproduce go to focus on jump to section click enter use arrow keys to focus on any subsection expected behavior subsections should be reachable by arrow keys
| 1
|
60,616
| 3,130,836,392
|
IssuesEvent
|
2015-09-09 11:48:50
|
ImperialCollegeLondon/EpiCollectplus
|
https://api.github.com/repos/ImperialCollegeLondon/EpiCollectplus
|
opened
|
Resizing columns on table data view triggers error on IE
|
High Priority (next release)
|
Trying to resize a column on IE trigger a `js` error
|
1.0
|
Resizing columns on table data view triggers error on IE - Trying to resize a column on IE trigger a `js` error
|
priority
|
resizing columns on table data view triggers error on ie trying to resize a column on ie trigger a js error
| 1
|
393,550
| 11,621,189,937
|
IssuesEvent
|
2020-02-27 02:05:11
|
ppy/osu
|
https://api.github.com/repos/ppy/osu
|
closed
|
Game freezes (without crash) during gameplay on mobile devices
|
high-priority platform:iOS
|
After updating to **2019.930.0**, osu!lazer begins to freeze again. Just like what happened to previous issue, it could be related to `Xamarin`.
**Current State:** _Somewhat freezes in latest release **(2020.215.0)**._
**Images:**


|
1.0
|
Game freezes (without crash) during gameplay on mobile devices - After updating to **2019.930.0**, osu!lazer begins to freeze again. Just like what happened to previous issue, it could be related to `Xamarin`.
**Current State:** _Somewhat freezes in latest release **(2020.215.0)**._
**Images:**


|
priority
|
game freezes without crash during gameplay on mobile devices after updating to osu lazer begins to freeze again just like what happened to previous issue it could be related to xamarin current state somewhat freezes in latest release images
| 1
|
297,086
| 9,160,363,055
|
IssuesEvent
|
2019-03-01 07:06:34
|
projectacrn/acrn-hypervisor
|
https://api.github.com/repos/projectacrn/acrn-hypervisor
|
closed
|
AaaG kernel watchdog reset hit during stability testing- backtrace: io_schedule+0x16/0x40(apl_sdc_stable)
|
priority: P2-High status: implemented type: bug
|
We AaaG watchdog reset hit during stress AaaG warm reset or AaaG create/destroy:
<3>[ 246.925567] INFO: task init:1 blocked for more than 120 seconds.
<3>[ 246.932987] Tainted: G U W 4.19.8-quilt-2e5dc0ac-00023-g0bbd9b5f57cc #1
<3>[ 246.945872] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
<6>[ 246.953581] init D 0 1 0 0x00000000
<4>[ 246.953587] Call Trace:
<4>[ 246.953616] __schedule+0x2a1/0x890
<4>[ 246.953621] ? bit_wait+0x60/0x60
<4>[ 246.953623] schedule+0x36/0x90
<4>[ 246.953642] io_schedule+0x16/0x40
<4>[ 246.953645] bit_wait_io+0x11/0x60
<4>[ 246.953647] __wait_on_bit+0x4c/0x90
<4>[ 246.953650] out_of_line_wait_on_bit+0x90/0xb0
<4>[ 246.953653] ? init_wait_var_entry+0x50/0x50
<4>[ 246.953658] __wait_on_buffer+0x40/0x50
<4>[ 246.953661] __ext4_get_inode_loc+0x1b5/0x430
<4>[ 246.953664] ext4_iget+0x92/0xb90
<4>[ 246.953667] ext4_iget_normal+0x2f/0x40
Not sure whether it's related with storage emulation, so create ACRN bug to track it.
|
1.0
|
AaaG kernel watchdog reset hit during stability testing- backtrace: io_schedule+0x16/0x40(apl_sdc_stable) - We AaaG watchdog reset hit during stress AaaG warm reset or AaaG create/destroy:
<3>[ 246.925567] INFO: task init:1 blocked for more than 120 seconds.
<3>[ 246.932987] Tainted: G U W 4.19.8-quilt-2e5dc0ac-00023-g0bbd9b5f57cc #1
<3>[ 246.945872] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
<6>[ 246.953581] init D 0 1 0 0x00000000
<4>[ 246.953587] Call Trace:
<4>[ 246.953616] __schedule+0x2a1/0x890
<4>[ 246.953621] ? bit_wait+0x60/0x60
<4>[ 246.953623] schedule+0x36/0x90
<4>[ 246.953642] io_schedule+0x16/0x40
<4>[ 246.953645] bit_wait_io+0x11/0x60
<4>[ 246.953647] __wait_on_bit+0x4c/0x90
<4>[ 246.953650] out_of_line_wait_on_bit+0x90/0xb0
<4>[ 246.953653] ? init_wait_var_entry+0x50/0x50
<4>[ 246.953658] __wait_on_buffer+0x40/0x50
<4>[ 246.953661] __ext4_get_inode_loc+0x1b5/0x430
<4>[ 246.953664] ext4_iget+0x92/0xb90
<4>[ 246.953667] ext4_iget_normal+0x2f/0x40
Not sure whether it's related with storage emulation, so create ACRN bug to track it.
|
priority
|
aaag kernel watchdog reset hit during stability testing backtrace io schedule apl sdc stable we aaag watchdog reset hit during stress aaag warm reset or aaag create destroy info task init blocked for more than seconds tainted g u w quilt echo proc sys kernel hung task timeout secs disables this message init d call trace schedule bit wait schedule io schedule bit wait io wait on bit out of line wait on bit init wait var entry wait on buffer get inode loc iget iget normal not sure whether it s related with storage emulation so create acrn bug to track it
| 1
|
521,609
| 15,112,480,715
|
IssuesEvent
|
2021-02-08 21:55:51
|
josecls/agripluvi-api
|
https://api.github.com/repos/josecls/agripluvi-api
|
closed
|
Feature: Adicionar propriedades de conexão ao banco de dados
|
Feature High Priority good first issue
|
### Descrição
Não estão definidas as propriedades provisórias de conexão com o H2, estas que vão ser usadas para testes enquanto não escolhemos definitivamente o banco de dados que iremos utilizar.
### Ação
Segundo a descrição, precisamos da definição dessas propriedades para utilizar o H2 no ambiente de desenvolvimento. Esta ação consiste em definir corretamente as propriedades de conexão.
### Observações
- O professor Alexandre em uma de suas aulas gravadas mostra como realizar essa conexão.
|
1.0
|
Feature: Adicionar propriedades de conexão ao banco de dados - ### Descrição
Não estão definidas as propriedades provisórias de conexão com o H2, estas que vão ser usadas para testes enquanto não escolhemos definitivamente o banco de dados que iremos utilizar.
### Ação
Segundo a descrição, precisamos da definição dessas propriedades para utilizar o H2 no ambiente de desenvolvimento. Esta ação consiste em definir corretamente as propriedades de conexão.
### Observações
- O professor Alexandre em uma de suas aulas gravadas mostra como realizar essa conexão.
|
priority
|
feature adicionar propriedades de conexão ao banco de dados descrição não estão definidas as propriedades provisórias de conexão com o estas que vão ser usadas para testes enquanto não escolhemos definitivamente o banco de dados que iremos utilizar ação segundo a descrição precisamos da definição dessas propriedades para utilizar o no ambiente de desenvolvimento esta ação consiste em definir corretamente as propriedades de conexão observações o professor alexandre em uma de suas aulas gravadas mostra como realizar essa conexão
| 1
|
613,347
| 19,087,702,590
|
IssuesEvent
|
2021-11-29 08:36:24
|
Tribler/py-ipv8
|
https://api.github.com/repos/Tribler/py-ipv8
|
closed
|
Broken labels for GitHub issue templates
|
priority: high
|
Both the [`bug_report`](https://github.com/Tribler/py-ipv8/blob/master/.github/ISSUE_TEMPLATE/bug_report.md) and [`feature_request`](https://github.com/Tribler/py-ipv8/blob/master/.github/ISSUE_TEMPLATE/feature_request.md) have had their pre-assigned labels broken. With the new labeling system, both should start as `priority: unknown`.
|
1.0
|
Broken labels for GitHub issue templates - Both the [`bug_report`](https://github.com/Tribler/py-ipv8/blob/master/.github/ISSUE_TEMPLATE/bug_report.md) and [`feature_request`](https://github.com/Tribler/py-ipv8/blob/master/.github/ISSUE_TEMPLATE/feature_request.md) have had their pre-assigned labels broken. With the new labeling system, both should start as `priority: unknown`.
|
priority
|
broken labels for github issue templates both the and have had their pre assigned labels broken with the new labeling system both should start as priority unknown
| 1
|
69,410
| 3,298,493,783
|
IssuesEvent
|
2015-11-02 14:49:34
|
cs2103aug2015-w13-2j/main
|
https://api.github.com/repos/cs2103aug2015-w13-2j/main
|
closed
|
Debug instance where redo-ing may cause 'text modifying' functions to not undo properly
|
component.logic priority.high status.ongoing type.bug type.task
|
* Inputting 'redo', when user undoes a task and executes a different command, will cause the undo history stack to not contain the correct tasks. It seems that the undo history stack keeps the past 2 commands in a same undo history entry and loses the most recent command.
|
1.0
|
Debug instance where redo-ing may cause 'text modifying' functions to not undo properly - * Inputting 'redo', when user undoes a task and executes a different command, will cause the undo history stack to not contain the correct tasks. It seems that the undo history stack keeps the past 2 commands in a same undo history entry and loses the most recent command.
|
priority
|
debug instance where redo ing may cause text modifying functions to not undo properly inputting redo when user undoes a task and executes a different command will cause the undo history stack to not contain the correct tasks it seems that the undo history stack keeps the past commands in a same undo history entry and loses the most recent command
| 1
|
466,065
| 13,396,314,917
|
IssuesEvent
|
2020-09-03 09:44:19
|
AbsaOSS/enceladus
|
https://api.github.com/repos/AbsaOSS/enceladus
|
opened
|
Add ability to write output in legacy parquet for spark-jobs
|
Conformance Standardization feature priority: high
|
## Background
Let spark-jobs be able to write output in legacy parquet for legacy Hive purposes
## Feature
Add a new option `--write-legacy-parquet` that would use legacy parquet writer
|
1.0
|
Add ability to write output in legacy parquet for spark-jobs - ## Background
Let spark-jobs be able to write output in legacy parquet for legacy Hive purposes
## Feature
Add a new option `--write-legacy-parquet` that would use legacy parquet writer
|
priority
|
add ability to write output in legacy parquet for spark jobs background let spark jobs be able to write output in legacy parquet for legacy hive purposes feature add a new option write legacy parquet that would use legacy parquet writer
| 1
|
107,426
| 4,308,479,852
|
IssuesEvent
|
2016-07-21 13:10:39
|
TCA-Team/iOS
|
https://api.github.com/repos/TCA-Team/iOS
|
opened
|
Release First Version
|
High Priority
|
I'm currently working with the guys from the ITSZ to get an account rolling, so we can publish the app.
Hope to have everything set up by next week, so we can publish a first version starting with august.
|
1.0
|
Release First Version - I'm currently working with the guys from the ITSZ to get an account rolling, so we can publish the app.
Hope to have everything set up by next week, so we can publish a first version starting with august.
|
priority
|
release first version i m currently working with the guys from the itsz to get an account rolling so we can publish the app hope to have everything set up by next week so we can publish a first version starting with august
| 1
|
599,509
| 18,275,805,815
|
IssuesEvent
|
2021-10-04 18:40:06
|
moja-global/community-website
|
https://api.github.com/repos/moja-global/community-website
|
closed
|
Add LightHouse CI for the Community Website
|
enhancement good first issue Hacktoberfest Priority = High
|
## Description
The LightHouse CI should ideally:
- Add `lighthousesrc.json` to identify the metrics we are looking to track.
- Use the `aaron-binary/vercel-preview-url-action@v0.0.3` action to grab the deployed preview link.
- Use the `treosh/lighthouse-ci-action` to audit the preview link through LightHouse and upload generated files as artifact.
- Use the `actions/github-script` and `marocchino/sticky-pull-request-comment` to mark the performance as a PR comment.
Some inspiration can be fetched from the following PR by @sarthakkundra on Docusaurus:
- https://github.com/facebook/docusaurus/pull/3761
Note that it is using Netlify previews, instead of standard Vercel previews and it can be tweaked further for our use-case.
|
1.0
|
Add LightHouse CI for the Community Website - ## Description
The LightHouse CI should ideally:
- Add `lighthousesrc.json` to identify the metrics we are looking to track.
- Use the `aaron-binary/vercel-preview-url-action@v0.0.3` action to grab the deployed preview link.
- Use the `treosh/lighthouse-ci-action` to audit the preview link through LightHouse and upload generated files as artifact.
- Use the `actions/github-script` and `marocchino/sticky-pull-request-comment` to mark the performance as a PR comment.
Some inspiration can be fetched from the following PR by @sarthakkundra on Docusaurus:
- https://github.com/facebook/docusaurus/pull/3761
Note that it is using Netlify previews, instead of standard Vercel previews and it can be tweaked further for our use-case.
|
priority
|
add lighthouse ci for the community website description the lighthouse ci should ideally add lighthousesrc json to identify the metrics we are looking to track use the aaron binary vercel preview url action action to grab the deployed preview link use the treosh lighthouse ci action to audit the preview link through lighthouse and upload generated files as artifact use the actions github script and marocchino sticky pull request comment to mark the performance as a pr comment some inspiration can be fetched from the following pr by sarthakkundra on docusaurus note that it is using netlify previews instead of standard vercel previews and it can be tweaked further for our use case
| 1
|
578,811
| 17,155,318,334
|
IssuesEvent
|
2021-07-14 05:49:35
|
kubesphere/kubesphere
|
https://api.github.com/repos/kubesphere/kubesphere
|
closed
|
Provide an API endpoint of KS to trigger a regular Pipeline
|
area/devops kind/feature-request priority/high
|
**What's it about?**
<!--
A clear and concise description of what this feature request is.
-->

**What's the reason why we need it?**
<!--
Please tell us if you think it's a necessary feature for Kubesphere. Give us as many details about it as you can.
Two or more use cases might be very helpful when other contributors try to go through this request. If you have some references,
please just add it below.
-->
Currently, ks only offer a description of the Pipeline remote build trigger. But users need to use Jenkins endpoint instead of ks endpoint. This is not appropriate.
We need two parts:
* backend
* provide an endpoint
* front-end
* modify the description on the regular Pipeline page
**Area Suggestion**
<!--
In order to have a clear issue list, giving an accuracy area is necessary. If you are not sure about it, please just leave it alone.
You can find some possible areas below. Please attention, sometimes crossing multiple areas might be possible. So, you
can keep one or more areas in this issue.
> /area alerting
> /area api
> /area apiserver
> /area app-management
> /area audit
> /area console
> /area devops
> /area documentation
> /area edge
> /area iam
> /area installation
> /area logging
> /area microservice
> /area monitoring
> /area multicluster
> /area networking
> /area notification
> /area observability
> /area performance
> /area security
> /area storage
> /area test
> /area upgrade
-->
/kind feature-request
/area devops
/priority high
|
1.0
|
Provide an API endpoint of KS to trigger a regular Pipeline - **What's it about?**
<!--
A clear and concise description of what this feature request is.
-->

**What's the reason why we need it?**
<!--
Please tell us if you think it's a necessary feature for Kubesphere. Give us as many details about it as you can.
Two or more use cases might be very helpful when other contributors try to go through this request. If you have some references,
please just add it below.
-->
Currently, ks only offer a description of the Pipeline remote build trigger. But users need to use Jenkins endpoint instead of ks endpoint. This is not appropriate.
We need two parts:
* backend
* provide an endpoint
* front-end
* modify the description on the regular Pipeline page
**Area Suggestion**
<!--
In order to have a clear issue list, giving an accuracy area is necessary. If you are not sure about it, please just leave it alone.
You can find some possible areas below. Please attention, sometimes crossing multiple areas might be possible. So, you
can keep one or more areas in this issue.
> /area alerting
> /area api
> /area apiserver
> /area app-management
> /area audit
> /area console
> /area devops
> /area documentation
> /area edge
> /area iam
> /area installation
> /area logging
> /area microservice
> /area monitoring
> /area multicluster
> /area networking
> /area notification
> /area observability
> /area performance
> /area security
> /area storage
> /area test
> /area upgrade
-->
/kind feature-request
/area devops
/priority high
|
priority
|
provide an api endpoint of ks to trigger a regular pipeline what s it about a clear and concise description of what this feature request is what s the reason why we need it please tell us if you think it s a necessary feature for kubesphere give us as many details about it as you can two or more use cases might be very helpful when other contributors try to go through this request if you have some references please just add it below currently ks only offer a description of the pipeline remote build trigger but users need to use jenkins endpoint instead of ks endpoint this is not appropriate we need two parts backend provide an endpoint front end modify the description on the regular pipeline page area suggestion in order to have a clear issue list giving an accuracy area is necessary if you are not sure about it please just leave it alone you can find some possible areas below please attention sometimes crossing multiple areas might be possible so you can keep one or more areas in this issue area alerting area api area apiserver area app management area audit area console area devops area documentation area edge area iam area installation area logging area microservice area monitoring area multicluster area networking area notification area observability area performance area security area storage area test area upgrade kind feature request area devops priority high
| 1
|
461,199
| 13,225,046,523
|
IssuesEvent
|
2020-08-17 20:22:53
|
UTA-FabLab/fabapp
|
https://api.github.com/repos/UTA-FabLab/fabapp
|
closed
|
Error when adding items to inventory
|
Confirmed Fixed - READY for Merge High Priority Bug Merged into dev
|
When adding a new item to inventory, modal with contents "Update Inventory" header and "undefined" in body appears. After Update Inventory button is clicked, it gives a confirmation message but item has not actually been added to inventory.
|
1.0
|
Error when adding items to inventory - When adding a new item to inventory, modal with contents "Update Inventory" header and "undefined" in body appears. After Update Inventory button is clicked, it gives a confirmation message but item has not actually been added to inventory.
|
priority
|
error when adding items to inventory when adding a new item to inventory modal with contents update inventory header and undefined in body appears after update inventory button is clicked it gives a confirmation message but item has not actually been added to inventory
| 1
|
353,278
| 10,551,003,037
|
IssuesEvent
|
2019-10-03 12:26:47
|
onaio/reveal-frontend
|
https://api.github.com/repos/onaio/reveal-frontend
|
opened
|
IRS reporting table view breaks when there is no data from Superset
|
Priority: High bug
|
As in the site completely breaks with no recourse apart from a refresh. We should handle this more gracefully. Currently happening in Zambia production.
|
1.0
|
IRS reporting table view breaks when there is no data from Superset - As in the site completely breaks with no recourse apart from a refresh. We should handle this more gracefully. Currently happening in Zambia production.
|
priority
|
irs reporting table view breaks when there is no data from superset as in the site completely breaks with no recourse apart from a refresh we should handle this more gracefully currently happening in zambia production
| 1
|
230,681
| 7,612,911,303
|
IssuesEvent
|
2018-05-01 19:15:38
|
taneresme/swe.573.project
|
https://api.github.com/repos/taneresme/swe.573.project
|
closed
|
[It-11] Fix null balance issue
|
phase.implementation priority.high tier.api type.bug
|
**Environment:** SIT
**Application:** swe.573.project
**Module:** BalanceService
**Affected User:** taneresme
**Affected Customer:**
**Sample Information:**
SEVERE: Unexpected error occurred in scheduled task.
java.lang.NullPointerException
at com.wolower.ui.service.BalanceService.updateBalance(BalanceService.java:30)
at com.wolower.ui.service.payment.MasterpassPaymentScheduler.payment(MasterpassPaymentScheduler.java:75)
at sun.reflect.GeneratedMethodAccessor107.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:65)
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
**Scenario it occurred:**
When saving new balance...
|
1.0
|
[It-11] Fix null balance issue - **Environment:** SIT
**Application:** swe.573.project
**Module:** BalanceService
**Affected User:** taneresme
**Affected Customer:**
**Sample Information:**
SEVERE: Unexpected error occurred in scheduled task.
java.lang.NullPointerException
at com.wolower.ui.service.BalanceService.updateBalance(BalanceService.java:30)
at com.wolower.ui.service.payment.MasterpassPaymentScheduler.payment(MasterpassPaymentScheduler.java:75)
at sun.reflect.GeneratedMethodAccessor107.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:65)
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
**Scenario it occurred:**
When saving new balance...
|
priority
|
fix null balance issue environment sit application swe project module balanceservice affected user taneresme affected customer sample information severe unexpected error occurred in scheduled task java lang nullpointerexception at com wolower ui service balanceservice updatebalance balanceservice java at com wolower ui service payment masterpasspaymentscheduler payment masterpasspaymentscheduler java at sun reflect invoke unknown source at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org springframework scheduling support scheduledmethodrunnable run scheduledmethodrunnable java at org springframework scheduling support delegatingerrorhandlingrunnable run delegatingerrorhandlingrunnable java at java util concurrent executors runnableadapter call executors java at java util concurrent futuretask runandreset futuretask java at java util concurrent scheduledthreadpoolexecutor scheduledfuturetask access scheduledthreadpoolexecutor java at java util concurrent scheduledthreadpoolexecutor scheduledfuturetask run scheduledthreadpoolexecutor java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java scenario it occurred when saving new balance
| 1
|
720,942
| 24,811,900,064
|
IssuesEvent
|
2022-10-25 10:04:22
|
blaze-slider/blaze-slider
|
https://api.github.com/repos/blaze-slider/blaze-slider
|
closed
|
Differentiate between drag and click events
|
bug high-priority
|
Currently you can not reliably add add a click event to the slides as it detects it as a grab event. You should be able to differentiate between click and grab by calculating the delta: https://stackoverflow.com/a/59741870
|
1.0
|
Differentiate between drag and click events - Currently you can not reliably add add a click event to the slides as it detects it as a grab event. You should be able to differentiate between click and grab by calculating the delta: https://stackoverflow.com/a/59741870
|
priority
|
differentiate between drag and click events currently you can not reliably add add a click event to the slides as it detects it as a grab event you should be able to differentiate between click and grab by calculating the delta
| 1
|
582,215
| 17,356,158,415
|
IssuesEvent
|
2021-07-29 14:37:26
|
litentry/litentry-parachain
|
https://api.github.com/repos/litentry/litentry-parachain
|
opened
|
Integrate NFT pallet into parachain
|
high-priority
|
**Acceptance Criteria**
- [ ] NFT pallet can be built with parachain
- [ ] Integration test should be added for NFT testing (This can be done later for not blocking frontend devs)
|
1.0
|
Integrate NFT pallet into parachain -
**Acceptance Criteria**
- [ ] NFT pallet can be built with parachain
- [ ] Integration test should be added for NFT testing (This can be done later for not blocking frontend devs)
|
priority
|
integrate nft pallet into parachain acceptance criteria nft pallet can be built with parachain integration test should be added for nft testing this can be done later for not blocking frontend devs
| 1
|
200,411
| 7,007,310,760
|
IssuesEvent
|
2017-12-19 11:48:11
|
DOAJ/doaj
|
https://api.github.com/repos/DOAJ/doaj
|
closed
|
1818-331X accepted but does not appear as accepted
|
bug high priority
|
This journal was accepted on the 15th Nov. Although the application show as accepted, the journal does not show on the public or admin site as accepted.
I think this could be related with the data problems we are experiencing now.

|
1.0
|
1818-331X accepted but does not appear as accepted - This journal was accepted on the 15th Nov. Although the application show as accepted, the journal does not show on the public or admin site as accepted.
I think this could be related with the data problems we are experiencing now.

|
priority
|
accepted but does not appear as accepted this journal was accepted on the nov although the application show as accepted the journal does not show on the public or admin site as accepted i think this could be related with the data problems we are experiencing now
| 1
|
411,531
| 12,025,662,727
|
IssuesEvent
|
2020-04-12 10:25:15
|
way-of-elendil/3.3.5
|
https://api.github.com/repos/way-of-elendil/3.3.5
|
opened
|
Quest: La lumière de l'aube
|
bug priority-high type-quest
|
**Description**
12801 - [La Lumière de l’Aube]
Name: Highlord Darion Mograine
Entry: 29173.
Name: Highlord Tirion Fordring
Entry: 29175.
Name: Defender of the Light
Entry: 29174.
53642 - [La puissance de Mograine, rank 1 frFR]
- Le buff de Darion Mograine se perd facilement, il suffit de s'éloigner vraiment un peu de Darion ou de prendre un bump dans le sens opposé à Darion et la quête est perdue, il n'est plus possible de récuperer le buff(et je crois qu'avoir le buff c'est une condition pour avoir le rewarded sur la quête, dans tous les cas, il évite au joueur de se faire OS)
=> le gader sur la cible jusqu'a que la quête soit rendue/abandonnée ?
N.B.: J'étais en GM ON en commençant la quête (oupsi), quand je m'en suis rendu compte, je suis passé GM off et j'ai reçu le buff en rejoignant la phase, quand la bataille était en cours
- Tirion Fordring est toujours là quand l'event est relancé par un joueur et qu'un autre joueur a précedemment réussi la quête, je crois que ça pose problème
- Il y a des NPCs méchants qui reset combat et regagnent toute leur vie
|
1.0
|
Quest: La lumière de l'aube - **Description**
12801 - [La Lumière de l’Aube]
Name: Highlord Darion Mograine
Entry: 29173.
Name: Highlord Tirion Fordring
Entry: 29175.
Name: Defender of the Light
Entry: 29174.
53642 - [La puissance de Mograine, rank 1 frFR]
- Le buff de Darion Mograine se perd facilement, il suffit de s'éloigner vraiment un peu de Darion ou de prendre un bump dans le sens opposé à Darion et la quête est perdue, il n'est plus possible de récuperer le buff(et je crois qu'avoir le buff c'est une condition pour avoir le rewarded sur la quête, dans tous les cas, il évite au joueur de se faire OS)
=> le gader sur la cible jusqu'a que la quête soit rendue/abandonnée ?
N.B.: J'étais en GM ON en commençant la quête (oupsi), quand je m'en suis rendu compte, je suis passé GM off et j'ai reçu le buff en rejoignant la phase, quand la bataille était en cours
- Tirion Fordring est toujours là quand l'event est relancé par un joueur et qu'un autre joueur a précedemment réussi la quête, je crois que ça pose problème
- Il y a des NPCs méchants qui reset combat et regagnent toute leur vie
|
priority
|
quest la lumière de l aube description name highlord darion mograine entry name highlord tirion fordring entry name defender of the light entry le buff de darion mograine se perd facilement il suffit de s éloigner vraiment un peu de darion ou de prendre un bump dans le sens opposé à darion et la quête est perdue il n est plus possible de récuperer le buff et je crois qu avoir le buff c est une condition pour avoir le rewarded sur la quête dans tous les cas il évite au joueur de se faire os le gader sur la cible jusqu a que la quête soit rendue abandonnée n b j étais en gm on en commençant la quête oupsi quand je m en suis rendu compte je suis passé gm off et j ai reçu le buff en rejoignant la phase quand la bataille était en cours tirion fordring est toujours là quand l event est relancé par un joueur et qu un autre joueur a précedemment réussi la quête je crois que ça pose problème il y a des npcs méchants qui reset combat et regagnent toute leur vie
| 1
|
426,777
| 12,379,095,543
|
IssuesEvent
|
2020-05-19 11:53:53
|
cpeditor/cpeditor
|
https://api.github.com/repos/cpeditor/cpeditor
|
closed
|
Bind files with problem URLs
|
enhancement high_priority preferences
|
**Is your feature request related to a problem? Please describe.**
Sometimes I don't remember where the file to a problem URL is saved, or I don't want to search in the file manager by myself.
Also, the problem URL is lost after closing the tab.
**Describe the solution you'd like**
Add an option to bind files with problem URLs. When files are reopened, the problem URLs will remain.
Add an option to open the old files with the problem URL from Competitive Companion. (The above option is required.)
**Describe alternatives you've considered**
N/A
**Additional context**
From #198.
|
1.0
|
Bind files with problem URLs - **Is your feature request related to a problem? Please describe.**
Sometimes I don't remember where the file to a problem URL is saved, or I don't want to search in the file manager by myself.
Also, the problem URL is lost after closing the tab.
**Describe the solution you'd like**
Add an option to bind files with problem URLs. When files are reopened, the problem URLs will remain.
Add an option to open the old files with the problem URL from Competitive Companion. (The above option is required.)
**Describe alternatives you've considered**
N/A
**Additional context**
From #198.
|
priority
|
bind files with problem urls is your feature request related to a problem please describe sometimes i don t remember where the file to a problem url is saved or i don t want to search in the file manager by myself also the problem url is lost after closing the tab describe the solution you d like add an option to bind files with problem urls when files are reopened the problem urls will remain add an option to open the old files with the problem url from competitive companion the above option is required describe alternatives you ve considered n a additional context from
| 1
|
742,991
| 25,881,942,686
|
IssuesEvent
|
2022-12-14 11:54:16
|
younginnovations/iatipublisher
|
https://api.github.com/repos/younginnovations/iatipublisher
|
closed
|
Remaining Issue in XML
|
type: bug priority: high
|
- [ ] **Issue 1: The error log doesn't show the appropriate error message.**
https://user-images.githubusercontent.com/78422663/205284434-1a05fdbe-2a68-4232-8bae-253f45ab46b7.mp4
- [ ] **Issue 2: Issue in Result Dimension**
https://user-images.githubusercontent.com/78422663/205284471-c49e0ea3-727c-4762-8859-360bf7bf26c0.mp4
- [ ] **Issue 3: Complete status is not working properly**.
https://user-images.githubusercontent.com/78422663/205285302-89549732-5036-47c0-a245-0ee7b29c88ce.mp4
- [x] **Issue 4: The user can create two or more than two activities with the same identifier.**
- [x] **Issue 5: IATI identifier is not displaying on the activity detail page.**

|
1.0
|
Remaining Issue in XML -
- [ ] **Issue 1: The error log doesn't show the appropriate error message.**
https://user-images.githubusercontent.com/78422663/205284434-1a05fdbe-2a68-4232-8bae-253f45ab46b7.mp4
- [ ] **Issue 2: Issue in Result Dimension**
https://user-images.githubusercontent.com/78422663/205284471-c49e0ea3-727c-4762-8859-360bf7bf26c0.mp4
- [ ] **Issue 3: Complete status is not working properly**.
https://user-images.githubusercontent.com/78422663/205285302-89549732-5036-47c0-a245-0ee7b29c88ce.mp4
- [x] **Issue 4: The user can create two or more than two activities with the same identifier.**
- [x] **Issue 5: IATI identifier is not displaying on the activity detail page.**

|
priority
|
remaining issue in xml issue the error log doesn t show the appropriate error message issue issue in result dimension issue complete status is not working properly issue the user can create two or more than two activities with the same identifier issue iati identifier is not displaying on the activity detail page
| 1
|
750,585
| 26,207,047,041
|
IssuesEvent
|
2023-01-04 00:13:06
|
LibriVox/librivox-catalog
|
https://api.github.com/repos/LibriVox/librivox-catalog
|
opened
|
Some characters now not allowed in author date fields
|
bug priority:high
|
Trying to use a dash in the author date field (such as "ca. 1315-1325") or a slash (such as "1315/1325") results in the field not saving. Those are the only two characters discovered that are occasionally used.
This has only been an issue since the upgrades. It worked before.
|
1.0
|
Some characters now not allowed in author date fields - Trying to use a dash in the author date field (such as "ca. 1315-1325") or a slash (such as "1315/1325") results in the field not saving. Those are the only two characters discovered that are occasionally used.
This has only been an issue since the upgrades. It worked before.
|
priority
|
some characters now not allowed in author date fields trying to use a dash in the author date field such as ca or a slash such as results in the field not saving those are the only two characters discovered that are occasionally used this has only been an issue since the upgrades it worked before
| 1
|
436,740
| 12,552,624,706
|
IssuesEvent
|
2020-06-06 18:44:54
|
TheCaptainYaya/Vortex
|
https://api.github.com/repos/TheCaptainYaya/Vortex
|
closed
|
Github Webhook
|
Discord High Priority
|
The webhook for this git is not set up correct in Discord. [This](https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks) shows exactly how to do it. If you need help, you can ask me.
|
1.0
|
Github Webhook - The webhook for this git is not set up correct in Discord. [This](https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks) shows exactly how to do it. If you need help, you can ask me.
|
priority
|
github webhook the webhook for this git is not set up correct in discord shows exactly how to do it if you need help you can ask me
| 1
|
24,950
| 2,674,899,496
|
IssuesEvent
|
2015-03-25 08:26:19
|
leo-project/leofs
|
https://api.github.com/repos/leo-project/leofs
|
opened
|
[leo_storage][mdc] Replication DELETE messages coudn't be consumed properly when the target objects already have been compacted
|
Bug Priority-HIGH _leo_storage
|
When the target objects already have been compacted(removed by compaction) at a local cluster,
leo_sync_remote_cluster:compare_metadata/1 function doesn't work intentionally,
so being executed [this block](https://github.com/leo-project/leo_storage/blob/develop/src/leo_sync_remote_cluster.erl#L247).
As a result, an invalid replication message could be generated.
|
1.0
|
[leo_storage][mdc] Replication DELETE messages coudn't be consumed properly when the target objects already have been compacted - When the target objects already have been compacted(removed by compaction) at a local cluster,
leo_sync_remote_cluster:compare_metadata/1 function doesn't work intentionally,
so being executed [this block](https://github.com/leo-project/leo_storage/blob/develop/src/leo_sync_remote_cluster.erl#L247).
As a result, an invalid replication message could be generated.
|
priority
|
replication delete messages coudn t be consumed properly when the target objects already have been compacted when the target objects already have been compacted removed by compaction at a local cluster leo sync remote cluster compare metadata function doesn t work intentionally so being executed as a result an invalid replication message could be generated
| 1
|
114,626
| 4,641,681,406
|
IssuesEvent
|
2016-09-30 06:27:19
|
ari/jobsworth
|
https://api.github.com/repos/ari/jobsworth
|
closed
|
Default milestone for new tasks
|
high priority
|
A recent change breaks the ability for users to create tasks if they don't have access to the default milestone.
Let's fix this by either not setting that default if the user doesn't have access, or else setting it anyway even if they can't access it normally. Whichever is easier.
|
1.0
|
Default milestone for new tasks - A recent change breaks the ability for users to create tasks if they don't have access to the default milestone.
Let's fix this by either not setting that default if the user doesn't have access, or else setting it anyway even if they can't access it normally. Whichever is easier.
|
priority
|
default milestone for new tasks a recent change breaks the ability for users to create tasks if they don t have access to the default milestone let s fix this by either not setting that default if the user doesn t have access or else setting it anyway even if they can t access it normally whichever is easier
| 1
|
71,793
| 3,368,157,000
|
IssuesEvent
|
2015-11-22 19:25:18
|
cryptonomex/graphene-ui
|
https://api.github.com/repos/cryptonomex/graphene-ui
|
reopened
|
Clicking on lowest or highest buy/sell price does not result in an eligible market order
|
bug HIGH PRIORITY
|
Study this screen shot first:

In this screen shot, I clicked on the lowest sell price (114.810.56250) and specified .29238 BTC. This value populated correctly in the buy input field, however, during the order confirmation, it gets changed to 114,810.5664139393. Since this value is higher than the lowest offer, it will not execute immediately. IMO, the reason for being able to click on a particular offer, it that the end user whats to execute it immediately. I can only assume that the fractional difference is the 10BTS fee.
It is critical that the price BTS/BTC match in all locations. We should make this a top priority and resolve every edge case in this Milestone. I think it also would be good to modify the market page to include the fee so the confirmation dialog matches it exactly.
I'm going to place a large estimate on this item. I really hope you agree with the importance of this item.
|
1.0
|
Clicking on lowest or highest buy/sell price does not result in an eligible market order - Study this screen shot first:

In this screen shot, I clicked on the lowest sell price (114.810.56250) and specified .29238 BTC. This value populated correctly in the buy input field, however, during the order confirmation, it gets changed to 114,810.5664139393. Since this value is higher than the lowest offer, it will not execute immediately. IMO, the reason for being able to click on a particular offer, it that the end user whats to execute it immediately. I can only assume that the fractional difference is the 10BTS fee.
It is critical that the price BTS/BTC match in all locations. We should make this a top priority and resolve every edge case in this Milestone. I think it also would be good to modify the market page to include the fee so the confirmation dialog matches it exactly.
I'm going to place a large estimate on this item. I really hope you agree with the importance of this item.
|
priority
|
clicking on lowest or highest buy sell price does not result in an eligible market order study this screen shot first in this screen shot i clicked on the lowest sell price and specified btc this value populated correctly in the buy input field however during the order confirmation it gets changed to since this value is higher than the lowest offer it will not execute immediately imo the reason for being able to click on a particular offer it that the end user whats to execute it immediately i can only assume that the fractional difference is the fee it is critical that the price bts btc match in all locations we should make this a top priority and resolve every edge case in this milestone i think it also would be good to modify the market page to include the fee so the confirmation dialog matches it exactly i m going to place a large estimate on this item i really hope you agree with the importance of this item
| 1
|
264,031
| 8,304,378,617
|
IssuesEvent
|
2018-09-21 20:56:57
|
SunwellWoW/Sunwell-TBC-Bugtracker
|
https://api.github.com/repos/SunwellWoW/Sunwell-TBC-Bugtracker
|
closed
|
[Critical] When mobs leash they will aggro anyone on their path back to starting position.
|
Critical General/Core High Priority question
|
Decription:
If someone runs by on their mount for example, when the mobs leash they will aggro anyone in the vicinity before going back to their original location. It doesn't matter what faction you are, in party or if you're in combat with the mob. If you're close to it you'll aggro it.
How it should work:
It should evade and go back to its normal position.
Source (you should point out proofs of your report, please give us some source):
https://github.com/Looking4Group/L4G_Core/issues/1213
|
1.0
|
[Critical] When mobs leash they will aggro anyone on their path back to starting position. - Decription:
If someone runs by on their mount for example, when the mobs leash they will aggro anyone in the vicinity before going back to their original location. It doesn't matter what faction you are, in party or if you're in combat with the mob. If you're close to it you'll aggro it.
How it should work:
It should evade and go back to its normal position.
Source (you should point out proofs of your report, please give us some source):
https://github.com/Looking4Group/L4G_Core/issues/1213
|
priority
|
when mobs leash they will aggro anyone on their path back to starting position decription if someone runs by on their mount for example when the mobs leash they will aggro anyone in the vicinity before going back to their original location it doesn t matter what faction you are in party or if you re in combat with the mob if you re close to it you ll aggro it how it should work it should evade and go back to its normal position source you should point out proofs of your report please give us some source
| 1
|
328,210
| 9,991,069,206
|
IssuesEvent
|
2019-07-11 10:12:13
|
SacredDuckwhale/Rarity
|
https://api.github.com/repos/SacredDuckwhale/Rarity
|
closed
|
Rise of Azshara: Add new Island Expedition Maps
|
complexity: low module:core priority:high status:in-progress type:task
|
Source: [MMOC](https://www.mmo-champion.com/content/8590-Patch-8-2-Rise-of-Azshara-Live-This-Week!)
> Crestfall and Snowblossom Island Expedition Maps
Two new island expeditions have been added to the map rotation for Islands.
- [x] Add pets to ItemDB
- [x] Add pets to Core (IE tracking)
- [x] Add new map IDs to Core (IE tracking)
- [ ] Testing: Crestfall - Island from Warcraft II
- [ ] Testing: Snowblossom - A Pandaren village
|
1.0
|
Rise of Azshara: Add new Island Expedition Maps - Source: [MMOC](https://www.mmo-champion.com/content/8590-Patch-8-2-Rise-of-Azshara-Live-This-Week!)
> Crestfall and Snowblossom Island Expedition Maps
Two new island expeditions have been added to the map rotation for Islands.
- [x] Add pets to ItemDB
- [x] Add pets to Core (IE tracking)
- [x] Add new map IDs to Core (IE tracking)
- [ ] Testing: Crestfall - Island from Warcraft II
- [ ] Testing: Snowblossom - A Pandaren village
|
priority
|
rise of azshara add new island expedition maps source crestfall and snowblossom island expedition maps two new island expeditions have been added to the map rotation for islands add pets to itemdb add pets to core ie tracking add new map ids to core ie tracking testing crestfall island from warcraft ii testing snowblossom a pandaren village
| 1
|
538,780
| 15,778,205,739
|
IssuesEvent
|
2021-04-01 07:23:28
|
hackforla/expunge-assist
|
https://api.github.com/repos/hackforla/expunge-assist
|
closed
|
simplify form field validations
|
development good first issue high priority
|
I noticed that we did a bunch of clever validation checks such as:
* 2 or more words in the name input of `IntroductionStep`
* checking for periods in `GoalsStep`
* Having a max of 2 periods for "How will clearing your record change your life or help you? (2 sentences maximum)"
Let's simplify validation into just not being blank. The reasoning being that punctuation might not be obvious as required. Names might be different for everyone. I'd rather not confuse users who need to have this filled out with requirements in this first iteration.
|
1.0
|
simplify form field validations - I noticed that we did a bunch of clever validation checks such as:
* 2 or more words in the name input of `IntroductionStep`
* checking for periods in `GoalsStep`
* Having a max of 2 periods for "How will clearing your record change your life or help you? (2 sentences maximum)"
Let's simplify validation into just not being blank. The reasoning being that punctuation might not be obvious as required. Names might be different for everyone. I'd rather not confuse users who need to have this filled out with requirements in this first iteration.
|
priority
|
simplify form field validations i noticed that we did a bunch of clever validation checks such as or more words in the name input of introductionstep checking for periods in goalsstep having a max of periods for how will clearing your record change your life or help you sentences maximum let s simplify validation into just not being blank the reasoning being that punctuation might not be obvious as required names might be different for everyone i d rather not confuse users who need to have this filled out with requirements in this first iteration
| 1
|
434,702
| 12,521,994,529
|
IssuesEvent
|
2020-06-03 18:22:21
|
opt-out-tools/start-here
|
https://api.github.com/repos/opt-out-tools/start-here
|
closed
|
Decide on team & milestones for Prototype fund Application
|
high priority medium task
|
**Objective**
We should decide on the team who wants to apply for the prototype fund.
**Description**
The prototype fund https://prototypefund.de/ funds open source projects. We need to decide on the team who would like to apply for it so we can begin the application.
**Skills**
**Tools**
**Time Estimation**
**Tasks**
- [ ] Research what the PF is and what they're looking for this round
- [ ] Form working group of interested people
- [ ] Decide on what would be covered
- [ ] Confirm team
|
1.0
|
Decide on team & milestones for Prototype fund Application - **Objective**
We should decide on the team who wants to apply for the prototype fund.
**Description**
The prototype fund https://prototypefund.de/ funds open source projects. We need to decide on the team who would like to apply for it so we can begin the application.
**Skills**
**Tools**
**Time Estimation**
**Tasks**
- [ ] Research what the PF is and what they're looking for this round
- [ ] Form working group of interested people
- [ ] Decide on what would be covered
- [ ] Confirm team
|
priority
|
decide on team milestones for prototype fund application objective we should decide on the team who wants to apply for the prototype fund description the prototype fund funds open source projects we need to decide on the team who would like to apply for it so we can begin the application skills tools time estimation tasks research what the pf is and what they re looking for this round form working group of interested people decide on what would be covered confirm team
| 1
|
263,207
| 8,286,161,568
|
IssuesEvent
|
2018-09-19 03:05:37
|
python/mypy
|
https://api.github.com/repos/python/mypy
|
reopened
|
Two issues with subclassing namedtuple-generated class and overriding __new__
|
bug false-positive priority-0-high topic-named-tuple
|
Python 3.5.1, mypy 2f89c79.
Test code:
```
from typing import NamedTuple
Base = NamedTuple('Base', [('param', int)])
class Child(Base):
def __new__(cls, param: int = 1) -> 'Child':
return Base.__new__(cls, param)
print(Child())
```
Python result:
```
% python3 test2.py
Child(param=1)
```
mypy output:
```
test2.py: note: In member "__new__" of class "Child":
test2.py:9: error: Too many arguments for "__new__" of "object"
test2.py: note: At top level:
test2.py:12: error: Too few arguments for "Child"
```
I poked around in the code a bit and I believe I managed to narrow this down to the following difference:
- The code above depends on the namedtuple-generated class to have `__new__` defined (CPython: https://github.com/python/cpython/blob/9967d6c1053f186f3b3d118ac336a03752efec32/Lib/collections/__init__.py#L316)
- mypy treats namedtuple definitions as if they were overriding `__init__` instead (https://github.com/python/mypy/blob/2f89c79a5b030343879f2f3c7172f0ad2b00c4de/mypy/semanal.py#L1444)
|
1.0
|
Two issues with subclassing namedtuple-generated class and overriding __new__ - Python 3.5.1, mypy 2f89c79.
Test code:
```
from typing import NamedTuple
Base = NamedTuple('Base', [('param', int)])
class Child(Base):
def __new__(cls, param: int = 1) -> 'Child':
return Base.__new__(cls, param)
print(Child())
```
Python result:
```
% python3 test2.py
Child(param=1)
```
mypy output:
```
test2.py: note: In member "__new__" of class "Child":
test2.py:9: error: Too many arguments for "__new__" of "object"
test2.py: note: At top level:
test2.py:12: error: Too few arguments for "Child"
```
I poked around in the code a bit and I believe I managed to narrow this down to the following difference:
- The code above depends on the namedtuple-generated class to have `__new__` defined (CPython: https://github.com/python/cpython/blob/9967d6c1053f186f3b3d118ac336a03752efec32/Lib/collections/__init__.py#L316)
- mypy treats namedtuple definitions as if they were overriding `__init__` instead (https://github.com/python/mypy/blob/2f89c79a5b030343879f2f3c7172f0ad2b00c4de/mypy/semanal.py#L1444)
|
priority
|
two issues with subclassing namedtuple generated class and overriding new python mypy test code from typing import namedtuple base namedtuple base class child base def new cls param int child return base new cls param print child python result py child param mypy output py note in member new of class child py error too many arguments for new of object py note at top level py error too few arguments for child i poked around in the code a bit and i believe i managed to narrow this down to the following difference the code above depends on the namedtuple generated class to have new defined cpython mypy treats namedtuple definitions as if they were overriding init instead
| 1
|
637,656
| 20,674,503,002
|
IssuesEvent
|
2022-03-10 07:49:14
|
AY2122S2-CS2103-F09-2/tp
|
https://api.github.com/repos/AY2122S2-CS2103-F09-2/tp
|
closed
|
Add log
|
type.Story priority.High
|
As a user I can keep track of things that my friend has recently talked about so that I can appear invested in my relationship and not forget important things about my friends
|
1.0
|
Add log - As a user I can keep track of things that my friend has recently talked about so that I can appear invested in my relationship and not forget important things about my friends
|
priority
|
add log as a user i can keep track of things that my friend has recently talked about so that i can appear invested in my relationship and not forget important things about my friends
| 1
|
154,140
| 5,914,220,187
|
IssuesEvent
|
2017-05-22 01:24:56
|
kuzzleio/documentation
|
https://api.github.com/repos/kuzzleio/documentation
|
closed
|
Feedback about page 'plugins-reference/plugins-features/adding-authentication-strategy.md'
|
info-missing plugins-reference priority-high
|
`TL;DR skeleton plugin` lakes a `afterRegister` method example
|
1.0
|
Feedback about page 'plugins-reference/plugins-features/adding-authentication-strategy.md' - `TL;DR skeleton plugin` lakes a `afterRegister` method example
|
priority
|
feedback about page plugins reference plugins features adding authentication strategy md tl dr skeleton plugin lakes a afterregister method example
| 1
|
355,998
| 10,587,248,390
|
IssuesEvent
|
2019-10-08 21:37:07
|
USDAForestService/fs-open-forest-platform
|
https://api.github.com/repos/USDAForestService/fs-open-forest-platform
|
opened
|
As an Oka-Wen NF POC I would like to implement final changes to MAPS so that the site is fully updated prior to launch
|
Christmas Trees high priority
|
## Notes
* What are things we should consider when making this story *
New Maps are saved in Pinyon here https://usfs.box.com/s/8sdqnqmt5xn9jgzidc8f3anivy1tmfcx
## Acceptance Criteria
- [ ] The new maps are shown on the Open Forest site
- [ ] For each map add a link to view a larger image and download it to device.
# West Cle Elum Christmas tree cutting area
## Tasks
- [ ] Remove all existing maps
- [ ] Add new maps and new
- [ ] PO approved
## Definition of Done
- [ ] Pull requests meet technical definition of done
- [ ] Compare finished design with mockup
- [ ] Usability tested
|
1.0
|
As an Oka-Wen NF POC I would like to implement final changes to MAPS so that the site is fully updated prior to launch - ## Notes
* What are things we should consider when making this story *
New Maps are saved in Pinyon here https://usfs.box.com/s/8sdqnqmt5xn9jgzidc8f3anivy1tmfcx
## Acceptance Criteria
- [ ] The new maps are shown on the Open Forest site
- [ ] For each map add a link to view a larger image and download it to device.
# West Cle Elum Christmas tree cutting area
## Tasks
- [ ] Remove all existing maps
- [ ] Add new maps and new
- [ ] PO approved
## Definition of Done
- [ ] Pull requests meet technical definition of done
- [ ] Compare finished design with mockup
- [ ] Usability tested
|
priority
|
as an oka wen nf poc i would like to implement final changes to maps so that the site is fully updated prior to launch notes what are things we should consider when making this story new maps are saved in pinyon here acceptance criteria the new maps are shown on the open forest site for each map add a link to view a larger image and download it to device west cle elum christmas tree cutting area tasks remove all existing maps add new maps and new po approved definition of done pull requests meet technical definition of done compare finished design with mockup usability tested
| 1
|
244,562
| 7,876,610,804
|
IssuesEvent
|
2018-06-26 02:08:17
|
Fireboyd78/mm2hook
|
https://api.github.com/repos/Fireboyd78/mm2hook
|
closed
|
Improvements to use of night textures and headlights/streetlights
|
enhancement help wanted high priority
|
Implement the following changes as configurable options:
- [x] Allow night textures to be used in the evening.
- **TODO:** Make optional toggle
- [x] Use headlights in every condition except noon clear and noon cloudy, street lights in evening.
- Partially addressed in commit e6013ec
|
1.0
|
Improvements to use of night textures and headlights/streetlights - Implement the following changes as configurable options:
- [x] Allow night textures to be used in the evening.
- **TODO:** Make optional toggle
- [x] Use headlights in every condition except noon clear and noon cloudy, street lights in evening.
- Partially addressed in commit e6013ec
|
priority
|
improvements to use of night textures and headlights streetlights implement the following changes as configurable options allow night textures to be used in the evening todo make optional toggle use headlights in every condition except noon clear and noon cloudy street lights in evening partially addressed in commit
| 1
|
454,552
| 13,103,615,387
|
IssuesEvent
|
2020-08-04 08:52:21
|
wso2/devstudio-tooling-ei
|
https://api.github.com/repos/wso2/devstudio-tooling-ei
|
opened
|
The mappings are not generated when a xsd has referenced xsds
|
DataMapper Priority/High Severity/Critical
|
**Description:**
Following error recorded in the logs when generating the mappings for xsd which has referenced xsds
```
!ENTRY org.wso2.developerstudio.datamapper.diagram 4 0 2020-08-04 13:13:02.576
!MESSAGE Error in generating the tree
!STACK 0
java.lang.IllegalArgumentException: Given schema does not contain value under key : items
at org.wso2.developerstudio.datamapper.diagram.tree.generator.SchemaTransformer.getSchemaItems(SchemaTransformer.java:533)
at org.wso2.developerstudio.datamapper.diagram.tree.generator.SchemaTransformer.setItemsToArray(SchemaTransformer.java:689)
at org.wso2.developerstudio.datamapper.diagram.tree.generator.SchemaTransformer.setProperties(SchemaTransformer.java:652)
at org.wso2.developerstudio.datamapper.diagram.tree.generator.SchemaTransformer.generateTree(SchemaTransformer.java:171)
at org.wso2.developerstudio.datamapper.diagram.edit.parts.OutputEditPart.resetOutputTreeFromFile(OutputEditPart.java:167)
at org.wso2.developerstudio.datamapper.diagram.custom.util.SchemaKeyEditorDialog.saveInputOutputSchema(SchemaKeyEditorDialog.java:1029)
at org.wso2.developerstudio.datamapper.diagram.custom.util.SchemaKeyEditorDialog.openFileBrowser(SchemaKeyEditorDialog.java:994)
at org.wso2.developerstudio.datamapper.diagram.custom.util.SchemaKeyEditorDialog.access$14(SchemaKeyEditorDialog.java:960)
at org.wso2.developerstudio.datamapper.diagram.custom.util.SchemaKeyEditorDialog$4.widgetSelected(SchemaKeyEditorDialog.java:398)
at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:249)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:86)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:5348)
```
[HL7-xml v2.7.1.zip](https://github.com/wso2/devstudio-tooling-ei/files/5021089/HL7-xml.v2.7.1.zip)
**Steps to reproduce:**
Please find the attached xsds. use ADT_A01.xsd
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
|
1.0
|
The mappings are not generated when a xsd has referenced xsds - **Description:**
Following error recorded in the logs when generating the mappings for xsd which has referenced xsds
```
!ENTRY org.wso2.developerstudio.datamapper.diagram 4 0 2020-08-04 13:13:02.576
!MESSAGE Error in generating the tree
!STACK 0
java.lang.IllegalArgumentException: Given schema does not contain value under key : items
at org.wso2.developerstudio.datamapper.diagram.tree.generator.SchemaTransformer.getSchemaItems(SchemaTransformer.java:533)
at org.wso2.developerstudio.datamapper.diagram.tree.generator.SchemaTransformer.setItemsToArray(SchemaTransformer.java:689)
at org.wso2.developerstudio.datamapper.diagram.tree.generator.SchemaTransformer.setProperties(SchemaTransformer.java:652)
at org.wso2.developerstudio.datamapper.diagram.tree.generator.SchemaTransformer.generateTree(SchemaTransformer.java:171)
at org.wso2.developerstudio.datamapper.diagram.edit.parts.OutputEditPart.resetOutputTreeFromFile(OutputEditPart.java:167)
at org.wso2.developerstudio.datamapper.diagram.custom.util.SchemaKeyEditorDialog.saveInputOutputSchema(SchemaKeyEditorDialog.java:1029)
at org.wso2.developerstudio.datamapper.diagram.custom.util.SchemaKeyEditorDialog.openFileBrowser(SchemaKeyEditorDialog.java:994)
at org.wso2.developerstudio.datamapper.diagram.custom.util.SchemaKeyEditorDialog.access$14(SchemaKeyEditorDialog.java:960)
at org.wso2.developerstudio.datamapper.diagram.custom.util.SchemaKeyEditorDialog$4.widgetSelected(SchemaKeyEditorDialog.java:398)
at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:249)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:86)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:5348)
```
[HL7-xml v2.7.1.zip](https://github.com/wso2/devstudio-tooling-ei/files/5021089/HL7-xml.v2.7.1.zip)
**Steps to reproduce:**
Please find the attached xsds. use ADT_A01.xsd
**Related Issues:**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
|
priority
|
the mappings are not generated when a xsd has referenced xsds description following error recorded in the logs when generating the mappings for xsd which has referenced xsds entry org developerstudio datamapper diagram message error in generating the tree stack java lang illegalargumentexception given schema does not contain value under key items at org developerstudio datamapper diagram tree generator schematransformer getschemaitems schematransformer java at org developerstudio datamapper diagram tree generator schematransformer setitemstoarray schematransformer java at org developerstudio datamapper diagram tree generator schematransformer setproperties schematransformer java at org developerstudio datamapper diagram tree generator schematransformer generatetree schematransformer java at org developerstudio datamapper diagram edit parts outputeditpart resetoutputtreefromfile outputeditpart java at org developerstudio datamapper diagram custom util schemakeyeditordialog saveinputoutputschema schemakeyeditordialog java at org developerstudio datamapper diagram custom util schemakeyeditordialog openfilebrowser schemakeyeditordialog java at org developerstudio datamapper diagram custom util schemakeyeditordialog access schemakeyeditordialog java at org developerstudio datamapper diagram custom util schemakeyeditordialog widgetselected schemakeyeditordialog java at org eclipse swt widgets typedlistener handleevent typedlistener java at org eclipse swt widgets eventtable sendevent eventtable java at org eclipse swt widgets display sendevent display java steps to reproduce please find the attached xsds use adt xsd related issues
| 1
|
178,448
| 6,608,891,187
|
IssuesEvent
|
2017-09-19 12:49:01
|
RMUASD-Team1-2017/RMUASD
|
https://api.github.com/repos/RMUASD-Team1-2017/RMUASD
|
closed
|
Path planner Ros interface
|
Priority High Software Task
|
Implement a Ros interface in to the path planner in order to get start/goal coordinates and turn them into a full path.
|
1.0
|
Path planner Ros interface - Implement a Ros interface in to the path planner in order to get start/goal coordinates and turn them into a full path.
|
priority
|
path planner ros interface implement a ros interface in to the path planner in order to get start goal coordinates and turn them into a full path
| 1
|
556,683
| 16,488,394,369
|
IssuesEvent
|
2021-05-24 21:49:14
|
woocommerce/woocommerce
|
https://api.github.com/repos/woocommerce/woocommerce
|
closed
|
[Admin Settings] Select all does not work after Select none
|
priority: high type: bug
|
**Prerequisites (mark completed items with an [x]):**
- [x] I have have carried out troubleshooting steps and I believe I have found a bug.
- [x] I have searched for similar bugs in both open and closed issues and cannot find a duplicate.
**Describe the bug**
In the WooCommerce admin setting (`wp-admin/admin.php?page=wc-settings&tab=general`), there is a **Sell to specific countries** setting. Below that setting, there are two buttons
1. `Select all`
2. `Select none`
The `Select all` stops working if the following actions are taken in the following sequence:
1. Click on `Select all`
2. Then click on `Select none`
3. Now clicking on `Select all` does not change anything
**Expected behavior**
Clicking on `Select all` should always select all the options every time it is clicked.
**Actual behavior**
`Select all` does not work the second time.
**Steps to reproduce the bug (We need to be able to reproduce the bug in order to fix it.)**
Steps to reproduce the bug:
1. Go to WooCommerce admin setting (`wp-admin/admin.php?page=wc-settings&tab=general`),
2. Scroll to **Sell to specific countries** setting
3. Click on `Select all`
4. Then click on `Select none`
5. Now clicking on `Select all` does not change anything
**Screenshots**

<!-- Please try testing your site for theme and plugins conflict. To do that deactivate all plugins except for WooCommerce and switch to a default WordPress theme or [Storefront](https://en-gb.wordpress.org/themes/storefront/). Then test again. If the issue is resolved with the default theme and all plugins deactivated, it means that one of your plugins or a theme is causing the issue. You will then need to enable it one by one and test every time you do that in order to figure out which plugin is causing the issue. -->
**Isolating the problem (mark completed items with an [x]):**
- [ ] I have deactivated other plugins and confirmed this bug occurs when only WooCommerce plugin is active.
- [x] This bug happens with a default WordPress theme active, or [Storefront](https://woocommerce.com/storefront/).
- [x] I can reproduce this bug consistently using the steps above.
**WordPress Environment**
We use the [WooCommerce System Status Report](https://docs.woocommerce.com/document/understanding-the-woocommerce-system-status-report/) to help us evaluate the issue.
Without this report we won't be able to fully evaluate this issue.
<details>
`
### WordPress Environment ###
WordPress address (URL): https://wordpress-one.test
Site address (URL): https://wordpress-one.test
WC Version: 5.2.2
REST API Version: ✔ 5.2.2
WC Blocks Version: ✔ 4.7.2
Action Scheduler Version: ✔ 3.1.6
WC Admin Version: ✔ 2.1.5
Log Directory Writable: ✔
WP Version: ❌ 5.7 - There is a newer version of WordPress available (5.7.1)
WP Multisite: –
WP Memory Limit: 512 MB
WP Debug Mode: ✔
WP Cron: ✔
Language: en_US
External object cache: –
### Server Environment ###
Server Info: nginx/1.19.6
PHP Version: 7.4.15
PHP Post Max Size: 512 MB
PHP Time Limit: 30
PHP Max Input Vars: 1000
cURL Version: 7.75.0
(SecureTransport) OpenSSL/1.1.1k
SUHOSIN Installed: –
MySQL Version: 5.7.32
Max Upload Size: 512 MB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔
### Database ###
WC Database Version: 5.2.2
WC Database Prefix: wp_
Total Database Size: 4.80MB
Database Data Size: 3.20MB
Database Index Size: 1.60MB
wp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_actionscheduler_actions: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_blogmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_blogs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_options: Data: 2.03MB + Index: 0.03MB + Engine InnoDB
wp_postmeta: Data: 0.13MB + Index: 0.06MB + Engine InnoDB
wp_posts: Data: 0.06MB + Index: 0.06MB + Engine InnoDB
wp_registration_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_signups: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_site: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_sitemeta: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
### Post Type Counts ###
attachment: 24
elementor_library: 1
nav_menu_item: 4
page: 7
post: 2
product: 18
product_package: 6
product_variation: 7
revision: 27
### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ❌Error messages should not be shown to visitors.
### Active Plugins (2) ###
Product Packages for WooCommerce: by Charged Labs – 1.0.0-RC.1
WooCommerce: by Automattic – 5.2.2
### Inactive Plugins (2) ###
Hello Dolly: by Matt Mullenweg – 1.7.2
WooCommerce: by Automattic – 5.3.0-dev
### Settings ###
API Enabled: –
Force SSL: –
Currency: USD ($)
Currency Position: left
Thousand Separator: ,
Decimal Separator: .
Number of Decimals: 2
Taxonomies: Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)
Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
exclude-from-search (exclude-from-search)
featured (featured)
outofstock (outofstock)
rated-1 (rated-1)
rated-2 (rated-2)
rated-3 (rated-3)
rated-4 (rated-4)
rated-5 (rated-5)
Connected to WooCommerce.com: –
### WC Pages ###
Shop base: #8 - /shop/
Cart: #9 - /cart/
Checkout: #10 - /checkout/
My account: #11 - /my-account/
Terms and conditions: ❌ Page not set
### Theme ###
Name: Twenty Twenty-One
Version: 1.2
Author URL: https://wordpress.org/
Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
WooCommerce Support: ✔
### Templates ###
Overrides: –
### Action Scheduler ###
Complete: 7
Oldest: 2021-04-05 17:50:16 +0530
Newest: 2021-04-06 17:23:07 +0530
### Status report information ###
Generated at: 2021-04-17 17:14:50 +05:30
`
</details>
|
1.0
|
[Admin Settings] Select all does not work after Select none - **Prerequisites (mark completed items with an [x]):**
- [x] I have have carried out troubleshooting steps and I believe I have found a bug.
- [x] I have searched for similar bugs in both open and closed issues and cannot find a duplicate.
**Describe the bug**
In the WooCommerce admin setting (`wp-admin/admin.php?page=wc-settings&tab=general`), there is a **Sell to specific countries** setting. Below that setting, there are two buttons
1. `Select all`
2. `Select none`
The `Select all` stops working if the following actions are taken in the following sequence:
1. Click on `Select all`
2. Then click on `Select none`
3. Now clicking on `Select all` does not change anything
**Expected behavior**
Clicking on `Select all` should always select all the options every time it is clicked.
**Actual behavior**
`Select all` does not work the second time.
**Steps to reproduce the bug (We need to be able to reproduce the bug in order to fix it.)**
Steps to reproduce the bug:
1. Go to WooCommerce admin setting (`wp-admin/admin.php?page=wc-settings&tab=general`),
2. Scroll to **Sell to specific countries** setting
3. Click on `Select all`
4. Then click on `Select none`
5. Now clicking on `Select all` does not change anything
**Screenshots**

<!-- Please try testing your site for theme and plugins conflict. To do that deactivate all plugins except for WooCommerce and switch to a default WordPress theme or [Storefront](https://en-gb.wordpress.org/themes/storefront/). Then test again. If the issue is resolved with the default theme and all plugins deactivated, it means that one of your plugins or a theme is causing the issue. You will then need to enable it one by one and test every time you do that in order to figure out which plugin is causing the issue. -->
**Isolating the problem (mark completed items with an [x]):**
- [ ] I have deactivated other plugins and confirmed this bug occurs when only WooCommerce plugin is active.
- [x] This bug happens with a default WordPress theme active, or [Storefront](https://woocommerce.com/storefront/).
- [x] I can reproduce this bug consistently using the steps above.
**WordPress Environment**
We use the [WooCommerce System Status Report](https://docs.woocommerce.com/document/understanding-the-woocommerce-system-status-report/) to help us evaluate the issue.
Without this report we won't be able to fully evaluate this issue.
<details>
`
### WordPress Environment ###
WordPress address (URL): https://wordpress-one.test
Site address (URL): https://wordpress-one.test
WC Version: 5.2.2
REST API Version: ✔ 5.2.2
WC Blocks Version: ✔ 4.7.2
Action Scheduler Version: ✔ 3.1.6
WC Admin Version: ✔ 2.1.5
Log Directory Writable: ✔
WP Version: ❌ 5.7 - There is a newer version of WordPress available (5.7.1)
WP Multisite: –
WP Memory Limit: 512 MB
WP Debug Mode: ✔
WP Cron: ✔
Language: en_US
External object cache: –
### Server Environment ###
Server Info: nginx/1.19.6
PHP Version: 7.4.15
PHP Post Max Size: 512 MB
PHP Time Limit: 30
PHP Max Input Vars: 1000
cURL Version: 7.75.0
(SecureTransport) OpenSSL/1.1.1k
SUHOSIN Installed: –
MySQL Version: 5.7.32
Max Upload Size: 512 MB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔
### Database ###
WC Database Version: 5.2.2
WC Database Prefix: wp_
Total Database Size: 4.80MB
Database Data Size: 3.20MB
Database Index Size: 1.60MB
wp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_actionscheduler_actions: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_actionscheduler_logs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_blogmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_blogs: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_options: Data: 2.03MB + Index: 0.03MB + Engine InnoDB
wp_postmeta: Data: 0.13MB + Index: 0.06MB + Engine InnoDB
wp_posts: Data: 0.06MB + Index: 0.06MB + Engine InnoDB
wp_registration_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_signups: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_site: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_sitemeta: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
### Post Type Counts ###
attachment: 24
elementor_library: 1
nav_menu_item: 4
page: 7
post: 2
product: 18
product_package: 6
product_variation: 7
revision: 27
### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ❌Error messages should not be shown to visitors.
### Active Plugins (2) ###
Product Packages for WooCommerce: by Charged Labs – 1.0.0-RC.1
WooCommerce: by Automattic – 5.2.2
### Inactive Plugins (2) ###
Hello Dolly: by Matt Mullenweg – 1.7.2
WooCommerce: by Automattic – 5.3.0-dev
### Settings ###
API Enabled: –
Force SSL: –
Currency: USD ($)
Currency Position: left
Thousand Separator: ,
Decimal Separator: .
Number of Decimals: 2
Taxonomies: Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)
Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
exclude-from-search (exclude-from-search)
featured (featured)
outofstock (outofstock)
rated-1 (rated-1)
rated-2 (rated-2)
rated-3 (rated-3)
rated-4 (rated-4)
rated-5 (rated-5)
Connected to WooCommerce.com: –
### WC Pages ###
Shop base: #8 - /shop/
Cart: #9 - /cart/
Checkout: #10 - /checkout/
My account: #11 - /my-account/
Terms and conditions: ❌ Page not set
### Theme ###
Name: Twenty Twenty-One
Version: 1.2
Author URL: https://wordpress.org/
Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
WooCommerce Support: ✔
### Templates ###
Overrides: –
### Action Scheduler ###
Complete: 7
Oldest: 2021-04-05 17:50:16 +0530
Newest: 2021-04-06 17:23:07 +0530
### Status report information ###
Generated at: 2021-04-17 17:14:50 +05:30
`
</details>
|
priority
|
select all does not work after select none prerequisites mark completed items with an i have have carried out troubleshooting steps and i believe i have found a bug i have searched for similar bugs in both open and closed issues and cannot find a duplicate describe the bug in the woocommerce admin setting wp admin admin php page wc settings tab general there is a sell to specific countries setting below that setting there are two buttons select all select none the select all stops working if the following actions are taken in the following sequence click on select all then click on select none now clicking on select all does not change anything expected behavior clicking on select all should always select all the options every time it is clicked actual behavior select all does not work the second time steps to reproduce the bug we need to be able to reproduce the bug in order to fix it steps to reproduce the bug go to woocommerce admin setting wp admin admin php page wc settings tab general scroll to sell to specific countries setting click on select all then click on select none now clicking on select all does not change anything screenshots isolating the problem mark completed items with an i have deactivated other plugins and confirmed this bug occurs when only woocommerce plugin is active this bug happens with a default wordpress theme active or i can reproduce this bug consistently using the steps above wordpress environment we use the to help us evaluate the issue without this report we won t be able to fully evaluate this issue wordpress environment wordpress address url site address url wc version rest api version ✔ wc blocks version ✔ action scheduler version ✔ wc admin version ✔ log directory writable ✔ wp version ❌ there is a newer version of wordpress available wp multisite – wp memory limit mb wp debug mode ✔ wp cron ✔ language en us external object cache – server environment server info nginx php version php post max size mb php time limit php max input vars curl version securetransport openssl suhosin installed – mysql version max upload size mb default timezone is utc ✔ fsockopen curl ✔ soapclient ✔ domdocument ✔ gzip ✔ multibyte string ✔ remote post ✔ remote get ✔ database wc database version wc database prefix wp total database size database data size database index size wp woocommerce sessions data index engine innodb wp woocommerce api keys data index engine innodb wp woocommerce attribute taxonomies data index engine innodb wp woocommerce downloadable product permissions data index engine innodb wp woocommerce order items data index engine innodb wp woocommerce order itemmeta data index engine innodb wp woocommerce tax rates data index engine innodb wp woocommerce tax rate locations data index engine innodb wp woocommerce shipping zones data index engine innodb wp woocommerce shipping zone locations data index engine innodb wp woocommerce shipping zone methods data index engine innodb wp woocommerce payment tokens data index engine innodb wp woocommerce payment tokenmeta data index engine innodb wp woocommerce log data index engine innodb wp actionscheduler actions data index engine innodb wp actionscheduler claims data index engine innodb wp actionscheduler groups data index engine innodb wp actionscheduler logs data index engine innodb wp blogmeta data index engine innodb wp blogs data index engine innodb wp commentmeta data index engine innodb wp comments data index engine innodb wp links data index engine innodb wp options data index engine innodb wp postmeta data index engine innodb wp posts data index engine innodb wp registration log data index engine innodb wp signups data index engine innodb wp site data index engine innodb wp sitemeta data index engine innodb wp termmeta data index engine innodb wp terms data index engine innodb wp term relationships data index engine innodb wp term taxonomy data index engine innodb wp usermeta data index engine innodb wp users data index engine innodb wp wc admin notes data index engine innodb wp wc admin note actions data index engine innodb wp wc category lookup data index engine innodb wp wc customer lookup data index engine innodb wp wc download log data index engine innodb wp wc order coupon lookup data index engine innodb wp wc order product lookup data index engine innodb wp wc order stats data index engine innodb wp wc order tax lookup data index engine innodb wp wc product meta lookup data index engine innodb wp wc reserved stock data index engine innodb wp wc tax rate classes data index engine innodb wp wc webhooks data index engine innodb post type counts attachment elementor library nav menu item page post product product package product variation revision security secure connection https ✔ hide errors from visitors ❌error messages should not be shown to visitors active plugins product packages for woocommerce by charged labs – rc woocommerce by automattic – inactive plugins hello dolly by matt mullenweg – woocommerce by automattic – dev settings api enabled – force ssl – currency usd currency position left thousand separator decimal separator number of decimals taxonomies product types external external grouped grouped simple simple variable variable taxonomies product visibility exclude from catalog exclude from catalog exclude from search exclude from search featured featured outofstock outofstock rated rated rated rated rated rated rated rated rated rated connected to woocommerce com – wc pages shop base shop cart cart checkout checkout my account my account terms and conditions ❌ page not set theme name twenty twenty one version author url child theme ❌ – if you are modifying woocommerce on a parent theme that you did not build personally we recommend using a child theme see how to create a child theme woocommerce support ✔ templates overrides – action scheduler complete oldest newest status report information generated at
| 1
|
557,282
| 16,505,695,160
|
IssuesEvent
|
2021-05-25 19:00:22
|
rocky-linux/rockylinux.org
|
https://api.github.com/repos/rocky-linux/rockylinux.org
|
closed
|
Add export compliance blurb to Downloads page
|
priority: high tag: content type: enhancement
|
Please add the following blurb to the Downloads page:
# Export Compliance/Customs Information
By downloading Rocky Linux software, you acknowledge that you understand all of the following: Rocky Linux software and technical information may be subject to the U.S. Export Administration Regulations (the “EAR”) and other U.S. and foreign laws and may not be exported, re-exported or transferred (a) to a prohibited destination country under the EAR or U.S. sanctions regulations (currently Cuba, Iran, North Korea, Sudan, Syria, and the Crimea Region of Ukraine, subject to change as posted by the United States government); (b) to any prohibited destination or to any end user who has been prohibited from participating in U.S. export transactions by any federal agency of the U.S. government; or (c) for use in connection with the design, development or production of nuclear, chemical or biological weapons, or rocket systems, space launch vehicles, or sounding rockets, or unmanned air vehicle systems. You may not download Rocky Linux software or technical information if you are located in one of these countries or otherwise subject to these restrictions. You may not provide Rocky Linux software or technical information to individuals or entities located in one of these countries or otherwise subject to these restrictions. You are also responsible for compliance with foreign law requirements applicable to the import, export and use of Rocky Linux software and technical information.
Rocky Linux software in source code and binary code form are publicly available and are not subject to the EAR in accordance with §742.15(b).
|
1.0
|
Add export compliance blurb to Downloads page - Please add the following blurb to the Downloads page:
# Export Compliance/Customs Information
By downloading Rocky Linux software, you acknowledge that you understand all of the following: Rocky Linux software and technical information may be subject to the U.S. Export Administration Regulations (the “EAR”) and other U.S. and foreign laws and may not be exported, re-exported or transferred (a) to a prohibited destination country under the EAR or U.S. sanctions regulations (currently Cuba, Iran, North Korea, Sudan, Syria, and the Crimea Region of Ukraine, subject to change as posted by the United States government); (b) to any prohibited destination or to any end user who has been prohibited from participating in U.S. export transactions by any federal agency of the U.S. government; or (c) for use in connection with the design, development or production of nuclear, chemical or biological weapons, or rocket systems, space launch vehicles, or sounding rockets, or unmanned air vehicle systems. You may not download Rocky Linux software or technical information if you are located in one of these countries or otherwise subject to these restrictions. You may not provide Rocky Linux software or technical information to individuals or entities located in one of these countries or otherwise subject to these restrictions. You are also responsible for compliance with foreign law requirements applicable to the import, export and use of Rocky Linux software and technical information.
Rocky Linux software in source code and binary code form are publicly available and are not subject to the EAR in accordance with §742.15(b).
|
priority
|
add export compliance blurb to downloads page please add the following blurb to the downloads page export compliance customs information by downloading rocky linux software you acknowledge that you understand all of the following rocky linux software and technical information may be subject to the u s export administration regulations the “ear” and other u s and foreign laws and may not be exported re exported or transferred a to a prohibited destination country under the ear or u s sanctions regulations currently cuba iran north korea sudan syria and the crimea region of ukraine subject to change as posted by the united states government b to any prohibited destination or to any end user who has been prohibited from participating in u s export transactions by any federal agency of the u s government or c for use in connection with the design development or production of nuclear chemical or biological weapons or rocket systems space launch vehicles or sounding rockets or unmanned air vehicle systems you may not download rocky linux software or technical information if you are located in one of these countries or otherwise subject to these restrictions you may not provide rocky linux software or technical information to individuals or entities located in one of these countries or otherwise subject to these restrictions you are also responsible for compliance with foreign law requirements applicable to the import export and use of rocky linux software and technical information rocky linux software in source code and binary code form are publicly available and are not subject to the ear in accordance with § b
| 1
|
273,293
| 8,528,917,183
|
IssuesEvent
|
2018-11-03 05:17:55
|
CS2103-AY1819S1-W14-1/main
|
https://api.github.com/repos/CS2103-AY1819S1-W14-1/main
|
opened
|
Appointment invalid day
|
priority.High severity.Medium type.Bug
|
**Describe the bug**
isValidDay in Appointment specifies that months before September cannot have more than 30 days. August 2018 has 31 days.
|
1.0
|
Appointment invalid day - **Describe the bug**
isValidDay in Appointment specifies that months before September cannot have more than 30 days. August 2018 has 31 days.
|
priority
|
appointment invalid day describe the bug isvalidday in appointment specifies that months before september cannot have more than days august has days
| 1
|
30,686
| 2,724,819,208
|
IssuesEvent
|
2015-04-14 19:58:29
|
webketje/GS-Custom-Settings
|
https://api.github.com/repos/webketje/GS-Custom-Settings
|
closed
|
Saving a setting with type 'text' & unset value will fail
|
Bug Priority: High
|
Remedy by setting a single space as value
|
1.0
|
Saving a setting with type 'text' & unset value will fail - Remedy by setting a single space as value
|
priority
|
saving a setting with type text unset value will fail remedy by setting a single space as value
| 1
|
515,717
| 14,968,064,056
|
IssuesEvent
|
2021-01-27 16:24:14
|
dtcenter/METcalcpy
|
https://api.github.com/repos/dtcenter/METcalcpy
|
closed
|
enhancing the bootstrapping to support circular temporal block bootstrap
|
alert: NEED MORE DEFINITION priority: high reporting: DTC NCAR Base requestor: NCAR/RAL type: new feature type: task
|
Account Key:
2702691 - Work with Eric on how to implement
|
1.0
|
enhancing the bootstrapping to support circular temporal block bootstrap - Account Key:
2702691 - Work with Eric on how to implement
|
priority
|
enhancing the bootstrapping to support circular temporal block bootstrap account key work with eric on how to implement
| 1
|
308,134
| 9,430,644,912
|
IssuesEvent
|
2019-04-12 09:31:26
|
OpenRefine/OpenRefine
|
https://api.github.com/repos/OpenRefine/OpenRefine
|
closed
|
New behaviour of list facet breaks predefined facets
|
bug facets priority-High
|
The change in #1666 requires users to add `.toString()` at the end of the expression for their facets.
Some predefined facets have not been adapted for this.
This is a bad breaking change and should be reverted.
If we want to introduce a different behaviour for a facet, here is a better way to do it:
* introduce in the backend a new facet with the new behaviour. The facet will have a different identifier and the previous facet will still be available.
* update the UI to migrate some or all of the predefined facets to this new facet identifier with new behaviour.
* if the old facet is no longer exposed in the UI, and after a long period of depreciation (so that people can adapt their workflows), the old facet may be dropped from the backend.
|
1.0
|
New behaviour of list facet breaks predefined facets - The change in #1666 requires users to add `.toString()` at the end of the expression for their facets.
Some predefined facets have not been adapted for this.
This is a bad breaking change and should be reverted.
If we want to introduce a different behaviour for a facet, here is a better way to do it:
* introduce in the backend a new facet with the new behaviour. The facet will have a different identifier and the previous facet will still be available.
* update the UI to migrate some or all of the predefined facets to this new facet identifier with new behaviour.
* if the old facet is no longer exposed in the UI, and after a long period of depreciation (so that people can adapt their workflows), the old facet may be dropped from the backend.
|
priority
|
new behaviour of list facet breaks predefined facets the change in requires users to add tostring at the end of the expression for their facets some predefined facets have not been adapted for this this is a bad breaking change and should be reverted if we want to introduce a different behaviour for a facet here is a better way to do it introduce in the backend a new facet with the new behaviour the facet will have a different identifier and the previous facet will still be available update the ui to migrate some or all of the predefined facets to this new facet identifier with new behaviour if the old facet is no longer exposed in the ui and after a long period of depreciation so that people can adapt their workflows the old facet may be dropped from the backend
| 1
|
741,789
| 25,819,313,687
|
IssuesEvent
|
2022-12-12 08:22:18
|
ChainSafe/forest
|
https://api.github.com/repos/ChainSafe/forest
|
closed
|
Fix the `forest-cli wallet sign|verify` commands
|
Bug Priority: 2 - High Ready
|
**Issue summary**
<!-- A clear and concise description of what the task is. -->
We should be able to sign and verify messages using the wallet keys. However, something seems to have broken.
Steps to reproduce:
1. Boot calibnet and sync to HEAD.
2. Get an address from your wallet: `forest-cli --token {token} wallet list`
3. Sign a message: `forest-cli --token {token} wallet sign -a {address} -m {message}`
4. Verify a signature: `forest-cli --token {token} wallet verify -a {address} -m {message} -s {signature}`
Current, incorrect output:
```bash
$ ./target/release/forest-cli --token {token} wallet sign -a f1uatkwrkzfn5yuw67sxoosh37rujleu6xvb2dhwq -m "test message"
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: InvalidHexCharacter { c: 't', index: 0 }', forest/cli/src/cli/wallet_cmd.rs:239:52
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```
```bash
$ ./target/release/forest-cli --token {token} wallet verify -a f1uatkwrkzfn5yuw67sxoosh37rujleu6xvb2dhwq -m "test message" -s "dummy signature"
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: OddLength', forest/cli/src/cli/wallet_cmd.rs:256:56
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```
**Other information and links**
<!-- Add any other context or screenshots about the issue here. -->
<!-- Thank you 🙏 -->
|
1.0
|
Fix the `forest-cli wallet sign|verify` commands - **Issue summary**
<!-- A clear and concise description of what the task is. -->
We should be able to sign and verify messages using the wallet keys. However, something seems to have broken.
Steps to reproduce:
1. Boot calibnet and sync to HEAD.
2. Get an address from your wallet: `forest-cli --token {token} wallet list`
3. Sign a message: `forest-cli --token {token} wallet sign -a {address} -m {message}`
4. Verify a signature: `forest-cli --token {token} wallet verify -a {address} -m {message} -s {signature}`
Current, incorrect output:
```bash
$ ./target/release/forest-cli --token {token} wallet sign -a f1uatkwrkzfn5yuw67sxoosh37rujleu6xvb2dhwq -m "test message"
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: InvalidHexCharacter { c: 't', index: 0 }', forest/cli/src/cli/wallet_cmd.rs:239:52
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```
```bash
$ ./target/release/forest-cli --token {token} wallet verify -a f1uatkwrkzfn5yuw67sxoosh37rujleu6xvb2dhwq -m "test message" -s "dummy signature"
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: OddLength', forest/cli/src/cli/wallet_cmd.rs:256:56
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```
**Other information and links**
<!-- Add any other context or screenshots about the issue here. -->
<!-- Thank you 🙏 -->
|
priority
|
fix the forest cli wallet sign verify commands issue summary we should be able to sign and verify messages using the wallet keys however something seems to have broken steps to reproduce boot calibnet and sync to head get an address from your wallet forest cli token token wallet list sign a message forest cli token token wallet sign a address m message verify a signature forest cli token token wallet verify a address m message s signature current incorrect output bash target release forest cli token token wallet sign a m test message thread main panicked at called result unwrap on an err value invalidhexcharacter c t index forest cli src cli wallet cmd rs note run with rust backtrace environment variable to display a backtrace bash target release forest cli token token wallet verify a m test message s dummy signature thread main panicked at called result unwrap on an err value oddlength forest cli src cli wallet cmd rs note run with rust backtrace environment variable to display a backtrace other information and links
| 1
|
217,292
| 7,320,063,490
|
IssuesEvent
|
2018-03-02 04:43:22
|
wso2/product-is
|
https://api.github.com/repos/wso2/product-is
|
closed
|
JWT client-handler path should be corrected in the documentation
|
Affected/5.5.0-Alpha Priority/High Type/Docs
|
JWT client-handler path should be corrected in the documentation [1]
[1] https://docs.wso2.com/display/IS550/Private+Key+JWT+Client+Authentication+for+OIDC
Under below section, **Deploying and configuring JWT client-handler artifacts** it mentions as below:
Navigate to client-handler/org.wso2.carbon.identity.oauth2.grant.jwt and build.
It should be,
Navigate to **component/client-handler/org.wso2.carbon.identity.oauth2.grant.jwt** and build.
|
1.0
|
JWT client-handler path should be corrected in the documentation - JWT client-handler path should be corrected in the documentation [1]
[1] https://docs.wso2.com/display/IS550/Private+Key+JWT+Client+Authentication+for+OIDC
Under below section, **Deploying and configuring JWT client-handler artifacts** it mentions as below:
Navigate to client-handler/org.wso2.carbon.identity.oauth2.grant.jwt and build.
It should be,
Navigate to **component/client-handler/org.wso2.carbon.identity.oauth2.grant.jwt** and build.
|
priority
|
jwt client handler path should be corrected in the documentation jwt client handler path should be corrected in the documentation under below section deploying and configuring jwt client handler artifacts it mentions as below navigate to client handler org carbon identity grant jwt and build it should be navigate to component client handler org carbon identity grant jwt and build
| 1
|
487,712
| 14,058,514,445
|
IssuesEvent
|
2020-11-03 00:24:31
|
michaelrsweet/htmldoc
|
https://api.github.com/repos/michaelrsweet/htmldoc
|
closed
|
Can't find libpng16.16.dylib in MacOS Catalina
|
bug platform issue priority-high
|
Hi Michael,
I have not been able to run HTMLDOC on my MacOS Catalina because /usr/local/opt/libpng/lib/libpng16.16.dylib does not exist. I tried setting up a symlink to a copy of libpng16.16.dylib I have elsewhere, but it wouldn't give me permission to use it.
Steve
|
1.0
|
Can't find libpng16.16.dylib in MacOS Catalina - Hi Michael,
I have not been able to run HTMLDOC on my MacOS Catalina because /usr/local/opt/libpng/lib/libpng16.16.dylib does not exist. I tried setting up a symlink to a copy of libpng16.16.dylib I have elsewhere, but it wouldn't give me permission to use it.
Steve
|
priority
|
can t find dylib in macos catalina hi michael i have not been able to run htmldoc on my macos catalina because usr local opt libpng lib dylib does not exist i tried setting up a symlink to a copy of dylib i have elsewhere but it wouldn t give me permission to use it steve
| 1
|
252,249
| 8,033,645,458
|
IssuesEvent
|
2018-07-29 09:01:15
|
AnSyn/PrivIssues
|
https://api.github.com/repos/AnSyn/PrivIssues
|
closed
|
(enh): Update Version To onPromise configuration
|
Customer Site Deploy Priority: High enhancement
|
- [ ] Logs
- [ ] Confd (backend & Frontend)
- [ ] Http-server -> Nginx
- [ ] Storage service
- [ ] dist with slashes
|
1.0
|
(enh): Update Version To onPromise configuration - - [ ] Logs
- [ ] Confd (backend & Frontend)
- [ ] Http-server -> Nginx
- [ ] Storage service
- [ ] dist with slashes
|
priority
|
enh update version to onpromise configuration logs confd backend frontend http server nginx storage service dist with slashes
| 1
|
382,570
| 11,308,121,162
|
IssuesEvent
|
2020-01-19 02:42:21
|
qlcchain/go-qlc
|
https://api.github.com/repos/qlcchain/go-qlc
|
opened
|
[2020] Week #4 goals
|
Epic Priority: High Status: In Progress
|
public key distribution
#859 public key distribution test and deploy a test net @lc3091
#858 update pov state for public key distribution @wenyuangui
pccw global
#671 Ledger supports custom index @zengchen221
#881 create contract sequence diagram for UI @gythialy
#863 define settlement functions interface @gythialy
#885 constructing virtual router structure @wenchaopeng
run representative node in community @ariesunny
|
1.0
|
[2020] Week #4 goals - public key distribution
#859 public key distribution test and deploy a test net @lc3091
#858 update pov state for public key distribution @wenyuangui
pccw global
#671 Ledger supports custom index @zengchen221
#881 create contract sequence diagram for UI @gythialy
#863 define settlement functions interface @gythialy
#885 constructing virtual router structure @wenchaopeng
run representative node in community @ariesunny
|
priority
|
week goals public key distribution public key distribution test and deploy a test net update pov state for public key distribution wenyuangui pccw global ledger supports custom index create contract sequence diagram for ui gythialy define settlement functions interface gythialy constructing virtual router structure wenchaopeng run representative node in community ariesunny
| 1
|
143,928
| 5,532,879,493
|
IssuesEvent
|
2017-03-21 11:51:20
|
intel-analytics/BigDL
|
https://api.github.com/repos/intel-analytics/BigDL
|
closed
|
add documentation to Dropout Layer
|
document high priority
|
I don't see any documentation for the Dropout Layer in scala code (parameters and what they are for). Really doubt if there's any API docs (if they're generated from scala docs) for this important layer.
|
1.0
|
add documentation to Dropout Layer - I don't see any documentation for the Dropout Layer in scala code (parameters and what they are for). Really doubt if there's any API docs (if they're generated from scala docs) for this important layer.
|
priority
|
add documentation to dropout layer i don t see any documentation for the dropout layer in scala code parameters and what they are for really doubt if there s any api docs if they re generated from scala docs for this important layer
| 1
|
201,864
| 7,041,760,684
|
IssuesEvent
|
2017-12-30 00:22:14
|
cdnjs/cdnjs
|
https://api.github.com/repos/cdnjs/cdnjs
|
closed
|
[Author] Brython library has wrong latest version (3.3.20 instead of, currently, 3.3.5)
|
High Priority Library - Request to Add/Update
|
cc: @PierreQuentel, @extend1994, @x09326
The [Brython](https://cdnjs.com/libraries/brython/) library shows the latest version to be 3.3.20. However the actual files are from [version 3.3.0](https://github.com/brython-dev/brython/releases/tag/3.3.0); version 3.3.20 does not exist at all. Currently the latest is [3.3.5](https://github.com/brython-dev/brython/releases/tag/3.3.5) (which [is](https://cdnjs.com/libraries/brython/3.3.5) on CDNJS, apparently [added](https://github.com/cdnjs/cdnjs/commit/b535c8b0e6d21c88e3485d0fef0287bc21a4b577) by npm-autoupdate). It would be nice if the [3.3.20](https://cdnjs.com/libraries/brython/3.3.20) version could be removed from CDNJS.
|
1.0
|
[Author] Brython library has wrong latest version (3.3.20 instead of, currently, 3.3.5) - cc: @PierreQuentel, @extend1994, @x09326
The [Brython](https://cdnjs.com/libraries/brython/) library shows the latest version to be 3.3.20. However the actual files are from [version 3.3.0](https://github.com/brython-dev/brython/releases/tag/3.3.0); version 3.3.20 does not exist at all. Currently the latest is [3.3.5](https://github.com/brython-dev/brython/releases/tag/3.3.5) (which [is](https://cdnjs.com/libraries/brython/3.3.5) on CDNJS, apparently [added](https://github.com/cdnjs/cdnjs/commit/b535c8b0e6d21c88e3485d0fef0287bc21a4b577) by npm-autoupdate). It would be nice if the [3.3.20](https://cdnjs.com/libraries/brython/3.3.20) version could be removed from CDNJS.
|
priority
|
brython library has wrong latest version instead of currently cc pierrequentel the library shows the latest version to be however the actual files are from version does not exist at all currently the latest is which on cdnjs apparently by npm autoupdate it would be nice if the version could be removed from cdnjs
| 1
|
283,213
| 8,717,874,056
|
IssuesEvent
|
2018-12-07 18:34:15
|
APS-USAXS/ipython-usaxs
|
https://api.github.com/repos/APS-USAXS/ipython-usaxs
|
opened
|
review code that sets motor limits during mode changes
|
help wanted high priority
|
We need to examine the code that sets the various motor limits during instrument mode changes. Compare with the SPEC macros and make the bluesky code do what we wish it to do. The bluesky code will be easier to read.
|
1.0
|
review code that sets motor limits during mode changes - We need to examine the code that sets the various motor limits during instrument mode changes. Compare with the SPEC macros and make the bluesky code do what we wish it to do. The bluesky code will be easier to read.
|
priority
|
review code that sets motor limits during mode changes we need to examine the code that sets the various motor limits during instrument mode changes compare with the spec macros and make the bluesky code do what we wish it to do the bluesky code will be easier to read
| 1
|
118,756
| 4,755,420,400
|
IssuesEvent
|
2016-10-24 10:42:14
|
mulesoft/api-workbench
|
https://api.github.com/repos/mulesoft/api-workbench
|
closed
|
Tutorial error: Uncaught TypeError: this.lowLevel(...).root is not a function
|
bug priority:high
|
[Enter steps to reproduce below:]
While going through the Getting Started Tutorial
1. Put cursor at Mammal type and activate Pull up action from Palette or context menu
2. Move color property from left to right, select Pet supertype target and press Extract button.

**Atom Version**: 1.10.2
**Electron Version**: 0.37.8
**System**: Mac OS X 10.12
**Thrown From**: [api-workbench](https://github.com/mulesoft/api-workbench) package, v0.8.38
### Stack Trace
Uncaught TypeError: this.lowLevel(...).root is not a function
```
At /Users/ernest/.atom/packages/api-workbench/node_modules/raml-1-parser/dist/raml1/highLevelImpl.js:1531
TypeError: this.lowLevel(...).root is not a function
at ASTNodeImpl.isEmptyRamlFile (/Users/ernest/.atom/packages/api-workbench/node_modules/raml-1-parser/dist/raml1/highLevelImpl.js:1531:38)
at Object.addToNode (/Users/ernest/.atom/packages/api-workbench/node_modules/raml-1-parser/dist/raml1/ast.core/mutators.js:347:36)
at ASTNodeImpl.add (/Users/ernest/.atom/packages/api-workbench/node_modules/raml-1-parser/dist/raml1/highLevelImpl.js:1381:18)
at e.t.mergeNode (/Users/ernest/.atom/packages/api-workbench/main.js:3:28639)
at /Users/ernest/.atom/packages/api-workbench/main.js:3:28237
at Array.forEach (native)
at e.t.mergeTrees (/Users/ernest/.atom/packages/api-workbench/main.js:3:28215)
at e.performOk (/Users/ernest/.atom/packages/api-workbench/main.js:4:8488)
at /Users/ernest/.atom/packages/api-workbench/main.js:3:27778
at /Users/ernest/.atom/packages/api-workbench/node_modules/atom-ui-lib/dist/UI.js:413:68
at Array.forEach (native)
at HTMLButtonElement.element.onclick (/Users/ernest/.atom/packages/api-workbench/node_modules/atom-ui-lib/dist/UI.js:413:31)
```
### Commands
```
-1:28.7.0 editor:indent-selected-rows (atom-text-editor.editor.is-focused)
-1:21.4.0 editor:newline (atom-text-editor.editor.is-focused)
2x -1:19.5.0 autocomplete-plus:confirm (atom-text-editor.editor.is-focused.autocomplete-active)
3x -1:05.4.0 core:backspace (atom-text-editor.editor.is-focused)
2x -1:04.2.0 editor:newline (atom-text-editor.editor.is-focused)
5x -1:00.8.0 core:backspace (atom-text-editor.editor.is-focused)
-0:59.4.0 editor:newline (atom-text-editor.editor.is-focused)
-0:51.6.0 core:copy (atom-text-editor.editor.is-focused)
-0:51.2.0 core:move-down (atom-text-editor.editor.is-focused)
2x -0:50.7.0 core:move-up (atom-text-editor.editor.is-focused)
-0:49.5.0 core:paste (atom-text-editor.editor.is-focused)
4x -0:46 editor:outdent-selected-rows (atom-text-editor.editor.is-focused)
4x -0:41.4.0 core:backspace (atom-text-editor.editor.is-focused)
-0:32.6.0 core:paste (atom-text-editor.editor.is-focused)
-0:29.7.0 autocomplete-plus:confirm (atom-text-editor.editor.is-focused.autocomplete-active)
6x -0:27.5.0 core:backspace (atom-text-editor.editor.is-focused)
```
### Config
```json
{
"core": {
"disabledPackages": [
"raml"
],
"projectHome": "/Users/ernest/Developer/",
"themes": [
"one-dark-ui",
"base16-tomorrow-dark-theme"
]
}
}
```
### Installed Packages
```coffee
# User
api-workbench, v0.8.38 (active)
git-time-machine, v1.5.3 (inactive)
linter, v1.11.18 (active)
raml, v0.2.0 (inactive)
atom-dark-syntax, v0.27.0 (inactive)
atom-dark-ui, v0.52.0 (inactive)
atom-light-syntax, v0.28.0 (inactive)
atom-light-ui, v0.44.0 (inactive)
base16-tomorrow-dark-theme, v1.1.0 (active)
base16-tomorrow-light-theme, v1.1.1 (inactive)
one-dark-ui, v1.5.0 (active)
one-light-ui, v1.5.0 (inactive)
one-dark-syntax, v1.3.0 (inactive)
one-light-syntax, v1.3.0 (inactive)
solarized-dark-syntax, v1.0.2 (inactive)
solarized-light-syntax, v1.0.2 (inactive)
about, v1.5.3 (active)
archive-view, v0.61.1 (active)
autocomplete-atom-api, v0.10.0 (active)
autocomplete-css, v0.11.2 (active)
autocomplete-html, v0.7.2 (active)
autocomplete-plus, v2.31.1 (active)
autocomplete-snippets, v1.11.0 (active)
autoflow, v0.27.0 (inactive)
autosave, v0.23.1 (active)
background-tips, v0.26.1 (active)
bookmarks, v0.41.0 (active)
bracket-matcher, v0.82.1 (active)
command-palette, v0.38.0 (inactive)
deprecation-cop, v0.54.1 (active)
dev-live-reload, v0.47.0 (active)
encoding-selector, v0.22.0 (active)
exception-reporting, v0.39.0 (active)
find-and-replace, v0.201.0 (inactive)
fuzzy-finder, v1.3.0 (active)
git-diff, v1.1.0 (active)
go-to-line, v0.31.0 (inactive)
grammar-selector, v0.48.1 (active)
image-view, v0.58.2 (active)
incompatible-packages, v0.26.1 (active)
keybinding-resolver, v0.35.0 (active)
line-ending-selector, v0.5.0 (active)
link, v0.31.1 (inactive)
markdown-preview, v0.158.0 (active)
metrics, v0.53.1 (active)
notifications, v0.65.0 (active)
open-on-github, v1.2.0 (inactive)
package-generator, v1.0.0 (inactive)
settings-view, v0.242.2 (active)
snippets, v1.0.2 (active)
spell-check, v0.67.1 (active)
status-bar, v1.4.1 (active)
styleguide, v0.47.0 (active)
symbols-view, v0.113.0 (inactive)
tabs, v0.100.2 (active)
timecop, v0.33.2 (active)
tree-view, v0.208.2 (active)
update-package-dependencies, v0.10.0 (active)
welcome, v0.34.0 (active)
whitespace, v0.33.0 (active)
wrap-guide, v0.38.1 (active)
language-c, v0.52.1 (active)
language-clojure, v0.21.0 (active)
language-coffee-script, v0.47.2 (active)
language-csharp, v0.12.1 (active)
language-css, v0.37.1 (active)
language-gfm, v0.88.0 (active)
language-git, v0.15.0 (active)
language-go, v0.42.1 (active)
language-html, v0.45.1 (active)
language-hyperlink, v0.16.0 (active)
language-java, v0.23.0 (active)
language-javascript, v0.119.0 (active)
language-json, v0.18.2 (active)
language-less, v0.29.5 (active)
language-make, v0.22.2 (active)
language-mustache, v0.13.0 (active)
language-objective-c, v0.15.1 (active)
language-perl, v0.35.0 (active)
language-php, v0.37.2 (active)
language-property-list, v0.8.0 (active)
language-python, v0.45.0 (active)
language-ruby, v0.69.0 (active)
language-ruby-on-rails, v0.25.0 (active)
language-sass, v0.56.0 (active)
language-shellscript, v0.22.4 (active)
language-source, v0.9.0 (active)
language-sql, v0.23.0 (active)
language-text, v0.7.1 (active)
language-todo, v0.28.0 (active)
language-toml, v0.18.0 (active)
language-xml, v0.34.9 (active)
language-yaml, v0.26.0 (active)
# Dev
No dev packages
```
|
1.0
|
Tutorial error: Uncaught TypeError: this.lowLevel(...).root is not a function - [Enter steps to reproduce below:]
While going through the Getting Started Tutorial
1. Put cursor at Mammal type and activate Pull up action from Palette or context menu
2. Move color property from left to right, select Pet supertype target and press Extract button.

**Atom Version**: 1.10.2
**Electron Version**: 0.37.8
**System**: Mac OS X 10.12
**Thrown From**: [api-workbench](https://github.com/mulesoft/api-workbench) package, v0.8.38
### Stack Trace
Uncaught TypeError: this.lowLevel(...).root is not a function
```
At /Users/ernest/.atom/packages/api-workbench/node_modules/raml-1-parser/dist/raml1/highLevelImpl.js:1531
TypeError: this.lowLevel(...).root is not a function
at ASTNodeImpl.isEmptyRamlFile (/Users/ernest/.atom/packages/api-workbench/node_modules/raml-1-parser/dist/raml1/highLevelImpl.js:1531:38)
at Object.addToNode (/Users/ernest/.atom/packages/api-workbench/node_modules/raml-1-parser/dist/raml1/ast.core/mutators.js:347:36)
at ASTNodeImpl.add (/Users/ernest/.atom/packages/api-workbench/node_modules/raml-1-parser/dist/raml1/highLevelImpl.js:1381:18)
at e.t.mergeNode (/Users/ernest/.atom/packages/api-workbench/main.js:3:28639)
at /Users/ernest/.atom/packages/api-workbench/main.js:3:28237
at Array.forEach (native)
at e.t.mergeTrees (/Users/ernest/.atom/packages/api-workbench/main.js:3:28215)
at e.performOk (/Users/ernest/.atom/packages/api-workbench/main.js:4:8488)
at /Users/ernest/.atom/packages/api-workbench/main.js:3:27778
at /Users/ernest/.atom/packages/api-workbench/node_modules/atom-ui-lib/dist/UI.js:413:68
at Array.forEach (native)
at HTMLButtonElement.element.onclick (/Users/ernest/.atom/packages/api-workbench/node_modules/atom-ui-lib/dist/UI.js:413:31)
```
### Commands
```
-1:28.7.0 editor:indent-selected-rows (atom-text-editor.editor.is-focused)
-1:21.4.0 editor:newline (atom-text-editor.editor.is-focused)
2x -1:19.5.0 autocomplete-plus:confirm (atom-text-editor.editor.is-focused.autocomplete-active)
3x -1:05.4.0 core:backspace (atom-text-editor.editor.is-focused)
2x -1:04.2.0 editor:newline (atom-text-editor.editor.is-focused)
5x -1:00.8.0 core:backspace (atom-text-editor.editor.is-focused)
-0:59.4.0 editor:newline (atom-text-editor.editor.is-focused)
-0:51.6.0 core:copy (atom-text-editor.editor.is-focused)
-0:51.2.0 core:move-down (atom-text-editor.editor.is-focused)
2x -0:50.7.0 core:move-up (atom-text-editor.editor.is-focused)
-0:49.5.0 core:paste (atom-text-editor.editor.is-focused)
4x -0:46 editor:outdent-selected-rows (atom-text-editor.editor.is-focused)
4x -0:41.4.0 core:backspace (atom-text-editor.editor.is-focused)
-0:32.6.0 core:paste (atom-text-editor.editor.is-focused)
-0:29.7.0 autocomplete-plus:confirm (atom-text-editor.editor.is-focused.autocomplete-active)
6x -0:27.5.0 core:backspace (atom-text-editor.editor.is-focused)
```
### Config
```json
{
"core": {
"disabledPackages": [
"raml"
],
"projectHome": "/Users/ernest/Developer/",
"themes": [
"one-dark-ui",
"base16-tomorrow-dark-theme"
]
}
}
```
### Installed Packages
```coffee
# User
api-workbench, v0.8.38 (active)
git-time-machine, v1.5.3 (inactive)
linter, v1.11.18 (active)
raml, v0.2.0 (inactive)
atom-dark-syntax, v0.27.0 (inactive)
atom-dark-ui, v0.52.0 (inactive)
atom-light-syntax, v0.28.0 (inactive)
atom-light-ui, v0.44.0 (inactive)
base16-tomorrow-dark-theme, v1.1.0 (active)
base16-tomorrow-light-theme, v1.1.1 (inactive)
one-dark-ui, v1.5.0 (active)
one-light-ui, v1.5.0 (inactive)
one-dark-syntax, v1.3.0 (inactive)
one-light-syntax, v1.3.0 (inactive)
solarized-dark-syntax, v1.0.2 (inactive)
solarized-light-syntax, v1.0.2 (inactive)
about, v1.5.3 (active)
archive-view, v0.61.1 (active)
autocomplete-atom-api, v0.10.0 (active)
autocomplete-css, v0.11.2 (active)
autocomplete-html, v0.7.2 (active)
autocomplete-plus, v2.31.1 (active)
autocomplete-snippets, v1.11.0 (active)
autoflow, v0.27.0 (inactive)
autosave, v0.23.1 (active)
background-tips, v0.26.1 (active)
bookmarks, v0.41.0 (active)
bracket-matcher, v0.82.1 (active)
command-palette, v0.38.0 (inactive)
deprecation-cop, v0.54.1 (active)
dev-live-reload, v0.47.0 (active)
encoding-selector, v0.22.0 (active)
exception-reporting, v0.39.0 (active)
find-and-replace, v0.201.0 (inactive)
fuzzy-finder, v1.3.0 (active)
git-diff, v1.1.0 (active)
go-to-line, v0.31.0 (inactive)
grammar-selector, v0.48.1 (active)
image-view, v0.58.2 (active)
incompatible-packages, v0.26.1 (active)
keybinding-resolver, v0.35.0 (active)
line-ending-selector, v0.5.0 (active)
link, v0.31.1 (inactive)
markdown-preview, v0.158.0 (active)
metrics, v0.53.1 (active)
notifications, v0.65.0 (active)
open-on-github, v1.2.0 (inactive)
package-generator, v1.0.0 (inactive)
settings-view, v0.242.2 (active)
snippets, v1.0.2 (active)
spell-check, v0.67.1 (active)
status-bar, v1.4.1 (active)
styleguide, v0.47.0 (active)
symbols-view, v0.113.0 (inactive)
tabs, v0.100.2 (active)
timecop, v0.33.2 (active)
tree-view, v0.208.2 (active)
update-package-dependencies, v0.10.0 (active)
welcome, v0.34.0 (active)
whitespace, v0.33.0 (active)
wrap-guide, v0.38.1 (active)
language-c, v0.52.1 (active)
language-clojure, v0.21.0 (active)
language-coffee-script, v0.47.2 (active)
language-csharp, v0.12.1 (active)
language-css, v0.37.1 (active)
language-gfm, v0.88.0 (active)
language-git, v0.15.0 (active)
language-go, v0.42.1 (active)
language-html, v0.45.1 (active)
language-hyperlink, v0.16.0 (active)
language-java, v0.23.0 (active)
language-javascript, v0.119.0 (active)
language-json, v0.18.2 (active)
language-less, v0.29.5 (active)
language-make, v0.22.2 (active)
language-mustache, v0.13.0 (active)
language-objective-c, v0.15.1 (active)
language-perl, v0.35.0 (active)
language-php, v0.37.2 (active)
language-property-list, v0.8.0 (active)
language-python, v0.45.0 (active)
language-ruby, v0.69.0 (active)
language-ruby-on-rails, v0.25.0 (active)
language-sass, v0.56.0 (active)
language-shellscript, v0.22.4 (active)
language-source, v0.9.0 (active)
language-sql, v0.23.0 (active)
language-text, v0.7.1 (active)
language-todo, v0.28.0 (active)
language-toml, v0.18.0 (active)
language-xml, v0.34.9 (active)
language-yaml, v0.26.0 (active)
# Dev
No dev packages
```
|
priority
|
tutorial error uncaught typeerror this lowlevel root is not a function while going through the getting started tutorial put cursor at mammal type and activate pull up action from palette or context menu move color property from left to right select pet supertype target and press extract button atom version electron version system mac os x thrown from package stack trace uncaught typeerror this lowlevel root is not a function at users ernest atom packages api workbench node modules raml parser dist highlevelimpl js typeerror this lowlevel root is not a function at astnodeimpl isemptyramlfile users ernest atom packages api workbench node modules raml parser dist highlevelimpl js at object addtonode users ernest atom packages api workbench node modules raml parser dist ast core mutators js at astnodeimpl add users ernest atom packages api workbench node modules raml parser dist highlevelimpl js at e t mergenode users ernest atom packages api workbench main js at users ernest atom packages api workbench main js at array foreach native at e t mergetrees users ernest atom packages api workbench main js at e performok users ernest atom packages api workbench main js at users ernest atom packages api workbench main js at users ernest atom packages api workbench node modules atom ui lib dist ui js at array foreach native at htmlbuttonelement element onclick users ernest atom packages api workbench node modules atom ui lib dist ui js commands editor indent selected rows atom text editor editor is focused editor newline atom text editor editor is focused autocomplete plus confirm atom text editor editor is focused autocomplete active core backspace atom text editor editor is focused editor newline atom text editor editor is focused core backspace atom text editor editor is focused editor newline atom text editor editor is focused core copy atom text editor editor is focused core move down atom text editor editor is focused core move up atom text editor editor is focused core paste atom text editor editor is focused editor outdent selected rows atom text editor editor is focused core backspace atom text editor editor is focused core paste atom text editor editor is focused autocomplete plus confirm atom text editor editor is focused autocomplete active core backspace atom text editor editor is focused config json core disabledpackages raml projecthome users ernest developer themes one dark ui tomorrow dark theme installed packages coffee user api workbench active git time machine inactive linter active raml inactive atom dark syntax inactive atom dark ui inactive atom light syntax inactive atom light ui inactive tomorrow dark theme active tomorrow light theme inactive one dark ui active one light ui inactive one dark syntax inactive one light syntax inactive solarized dark syntax inactive solarized light syntax inactive about active archive view active autocomplete atom api active autocomplete css active autocomplete html active autocomplete plus active autocomplete snippets active autoflow inactive autosave active background tips active bookmarks active bracket matcher active command palette inactive deprecation cop active dev live reload active encoding selector active exception reporting active find and replace inactive fuzzy finder active git diff active go to line inactive grammar selector active image view active incompatible packages active keybinding resolver active line ending selector active link inactive markdown preview active metrics active notifications active open on github inactive package generator inactive settings view active snippets active spell check active status bar active styleguide active symbols view inactive tabs active timecop active tree view active update package dependencies active welcome active whitespace active wrap guide active language c active language clojure active language coffee script active language csharp active language css active language gfm active language git active language go active language html active language hyperlink active language java active language javascript active language json active language less active language make active language mustache active language objective c active language perl active language php active language property list active language python active language ruby active language ruby on rails active language sass active language shellscript active language source active language sql active language text active language todo active language toml active language xml active language yaml active dev no dev packages
| 1
|
418,374
| 12,197,073,869
|
IssuesEvent
|
2020-04-29 20:07:30
|
zairza-cetb/bench-routes
|
https://api.github.com/repos/zairza-cetb/bench-routes
|
opened
|
Update system and process metrics with new chainset in tsdb
|
bug priority:high
|
PR #233 added the much-needed batch writes that drastically reduce the disk IO and prevents write amplification and SSD burnouts. However, this was applied to the main bench-routes and the system, process metrics were not updated. The aim is to update the system and process metrics in lines of the chainset used in bench-routes.
|
1.0
|
Update system and process metrics with new chainset in tsdb - PR #233 added the much-needed batch writes that drastically reduce the disk IO and prevents write amplification and SSD burnouts. However, this was applied to the main bench-routes and the system, process metrics were not updated. The aim is to update the system and process metrics in lines of the chainset used in bench-routes.
|
priority
|
update system and process metrics with new chainset in tsdb pr added the much needed batch writes that drastically reduce the disk io and prevents write amplification and ssd burnouts however this was applied to the main bench routes and the system process metrics were not updated the aim is to update the system and process metrics in lines of the chainset used in bench routes
| 1
|
316,171
| 9,637,813,588
|
IssuesEvent
|
2019-05-16 09:38:51
|
wso2/product-microgateway
|
https://api.github.com/repos/wso2/product-microgateway
|
closed
|
API level throttling is not working
|
Affected/3.0.0-Beta Priority/Highest bug
|
**Steps to reproduce:**
1) Add these new policies under `resourcePolicies` in `policies.yaml`
```
- 2PerMin:
count: 2
unitTime: 1
timeUnit: min
- 5PerMin:
count: 5
unitTime: 1
timeUnit: min
- 8PerMin:
count: 8
unitTime: 1
timeUnit: min
```
2) Create an API with below OAS file.
```
openapi: "3.0.0"
info:
version: 1.0.0
title: Swagger Petstore
x-mgw-basePath: /petstore/v1
x-mgw-throttling-tier: 5PerMin
x-mgw-production-endpoints:
urls:
- http://www.mocky.io/v2/5cdc00d52d0000dc49f5a4e9
paths:
/dogs:
get:
x-mgw-throttling-tier: 2PerMin
summary: List all pets
operationId: listPets
responses:
'200':
description: A paged array of pets
post:
summary: Create a pet
operationId: createPets
responses:
'201':
description: Null response
/cats:
get:
x-mgw-throttling-tier: 8PerMin
summary: Info for a specific pet
operationId: showPetById
responses:
'200':
description: Expected response to a valid request
```
3) Invoke `POST /dogs` resource more than 5 times. It doesn't throttle out.
|
1.0
|
API level throttling is not working - **Steps to reproduce:**
1) Add these new policies under `resourcePolicies` in `policies.yaml`
```
- 2PerMin:
count: 2
unitTime: 1
timeUnit: min
- 5PerMin:
count: 5
unitTime: 1
timeUnit: min
- 8PerMin:
count: 8
unitTime: 1
timeUnit: min
```
2) Create an API with below OAS file.
```
openapi: "3.0.0"
info:
version: 1.0.0
title: Swagger Petstore
x-mgw-basePath: /petstore/v1
x-mgw-throttling-tier: 5PerMin
x-mgw-production-endpoints:
urls:
- http://www.mocky.io/v2/5cdc00d52d0000dc49f5a4e9
paths:
/dogs:
get:
x-mgw-throttling-tier: 2PerMin
summary: List all pets
operationId: listPets
responses:
'200':
description: A paged array of pets
post:
summary: Create a pet
operationId: createPets
responses:
'201':
description: Null response
/cats:
get:
x-mgw-throttling-tier: 8PerMin
summary: Info for a specific pet
operationId: showPetById
responses:
'200':
description: Expected response to a valid request
```
3) Invoke `POST /dogs` resource more than 5 times. It doesn't throttle out.
|
priority
|
api level throttling is not working steps to reproduce add these new policies under resourcepolicies in policies yaml count unittime timeunit min count unittime timeunit min count unittime timeunit min create an api with below oas file openapi info version title swagger petstore x mgw basepath petstore x mgw throttling tier x mgw production endpoints urls paths dogs get x mgw throttling tier summary list all pets operationid listpets responses description a paged array of pets post summary create a pet operationid createpets responses description null response cats get x mgw throttling tier summary info for a specific pet operationid showpetbyid responses description expected response to a valid request invoke post dogs resource more than times it doesn t throttle out
| 1
|
624,644
| 19,703,265,937
|
IssuesEvent
|
2022-01-12 18:52:15
|
savvy-coders/sc-curriculum
|
https://api.github.com/repos/savvy-coders/sc-curriculum
|
closed
|
Update Section 6 SPA instructions
|
enhancement high priority
|
Update Section 6 SPA instructions to the current version of the SPA
- Remove the gallery and register html files from the Pre SPA Example
- Remove the Gallery.js and Form.js views, stores, links and event handlers
- Remove all reference to the `lib` folder
- Remove Activity 3 from Section 6.3
- Add a Contact html & view, store and link using FormSpree
- Add the Pizza "Order" view, store and link using the SC Pizza API (Move section 9.2 From SCC-110 to Section 6)
- Add hidden customer field that default to the students name
- Dependent of updates to API to handle customer field
- Update the screenshots where appropriate
Update SPA to be similar to the following Cohort example:
https://github.com/matsinet/aug2021SPAwServer
|
1.0
|
Update Section 6 SPA instructions - Update Section 6 SPA instructions to the current version of the SPA
- Remove the gallery and register html files from the Pre SPA Example
- Remove the Gallery.js and Form.js views, stores, links and event handlers
- Remove all reference to the `lib` folder
- Remove Activity 3 from Section 6.3
- Add a Contact html & view, store and link using FormSpree
- Add the Pizza "Order" view, store and link using the SC Pizza API (Move section 9.2 From SCC-110 to Section 6)
- Add hidden customer field that default to the students name
- Dependent of updates to API to handle customer field
- Update the screenshots where appropriate
Update SPA to be similar to the following Cohort example:
https://github.com/matsinet/aug2021SPAwServer
|
priority
|
update section spa instructions update section spa instructions to the current version of the spa remove the gallery and register html files from the pre spa example remove the gallery js and form js views stores links and event handlers remove all reference to the lib folder remove activity from section add a contact html view store and link using formspree add the pizza order view store and link using the sc pizza api move section from scc to section add hidden customer field that default to the students name dependent of updates to api to handle customer field update the screenshots where appropriate update spa to be similar to the following cohort example
| 1
|
604,020
| 18,675,734,458
|
IssuesEvent
|
2021-10-31 14:28:18
|
wager/hub
|
https://api.github.com/repos/wager/hub
|
closed
|
Restrict access to `wager.systems`
|
kind/feature area/platform priority/high
|
- [x] [Support GitHub and Google logins](https://dash.teams.cloudflare.com/a5fd65c096720c242cfdc94b9deabeb1/settings/authentication/idp/add)
- [x] [Terraform Cloudflare Access configuration](https://registry.terraform.io/providers/cloudflare/cloudflare/latest/docs/resources/access_policy)
- [x] [Configure the Cloudflare App Launcher](https://developers.cloudflare.com/cloudflare-one/applications/app-launcher)
- [x] [Deploy an Ingress controller to route internal traffic to Kubernetes services](https://cloud.google.com/kubernetes-engine/docs/how-to/internal-load-balance-ingress)
- [x] Terraform a Cloudflare Tunnel.
- [x] [Deploy a `cloudflared` deployment to route external traffic to the Ingress controller](https://github.com/cloudflare/argo-tunnel-examples/tree/master/terraform-gcp-gke-ingress-controller)
|
1.0
|
Restrict access to `wager.systems` - - [x] [Support GitHub and Google logins](https://dash.teams.cloudflare.com/a5fd65c096720c242cfdc94b9deabeb1/settings/authentication/idp/add)
- [x] [Terraform Cloudflare Access configuration](https://registry.terraform.io/providers/cloudflare/cloudflare/latest/docs/resources/access_policy)
- [x] [Configure the Cloudflare App Launcher](https://developers.cloudflare.com/cloudflare-one/applications/app-launcher)
- [x] [Deploy an Ingress controller to route internal traffic to Kubernetes services](https://cloud.google.com/kubernetes-engine/docs/how-to/internal-load-balance-ingress)
- [x] Terraform a Cloudflare Tunnel.
- [x] [Deploy a `cloudflared` deployment to route external traffic to the Ingress controller](https://github.com/cloudflare/argo-tunnel-examples/tree/master/terraform-gcp-gke-ingress-controller)
|
priority
|
restrict access to wager systems terraform a cloudflare tunnel
| 1
|
522,832
| 15,168,651,616
|
IssuesEvent
|
2021-02-12 19:46:10
|
Lumiverse/Lumiverse-Atlas-Issues
|
https://api.github.com/repos/Lumiverse/Lumiverse-Atlas-Issues
|
opened
|
Map sometimes doesn't load, players fall through spawn, map loading bar stuck at the end
|
High Priority bug
|
Reported by **lv*#FF453AairplaNe** (01/01/2021 18:34:29)
**Description:**
yo
**Reproduction:**
yoo
|
1.0
|
Map sometimes doesn't load, players fall through spawn, map loading bar stuck at the end - Reported by **lv*#FF453AairplaNe** (01/01/2021 18:34:29)
**Description:**
yo
**Reproduction:**
yoo
|
priority
|
map sometimes doesn t load players fall through spawn map loading bar stuck at the end reported by lv description yo reproduction yoo
| 1
|
637,726
| 20,676,249,282
|
IssuesEvent
|
2022-03-10 09:33:56
|
micronaut-projects/micronaut-core
|
https://api.github.com/repos/micronaut-projects/micronaut-core
|
opened
|
Remove the direct dependency on Jackson
|
type: improvement priority: high
|
### Feature description
Jackson should be made an optional dependency and added as a starter feature like any other module.
|
1.0
|
Remove the direct dependency on Jackson - ### Feature description
Jackson should be made an optional dependency and added as a starter feature like any other module.
|
priority
|
remove the direct dependency on jackson feature description jackson should be made an optional dependency and added as a starter feature like any other module
| 1
|
100,648
| 4,099,822,625
|
IssuesEvent
|
2016-06-03 14:07:10
|
Nexxado/ProjectHands
|
https://api.github.com/repos/Nexxado/ProjectHands
|
opened
|
Create Server Routes for Renovations
|
0 - Backlog Backend Points: 13 Priority: High
|
- [ ] Get renovation info
- [ ] Get all renovations
- [ ] Create renovation
- [ ] Edit renovation
<!---
@huboard:{"order":5.75,"milestone_order":0.0048828125}
-->
|
1.0
|
Create Server Routes for Renovations - - [ ] Get renovation info
- [ ] Get all renovations
- [ ] Create renovation
- [ ] Edit renovation
<!---
@huboard:{"order":5.75,"milestone_order":0.0048828125}
-->
|
priority
|
create server routes for renovations get renovation info get all renovations create renovation edit renovation huboard order milestone order
| 1
|
732,482
| 25,260,861,855
|
IssuesEvent
|
2022-11-15 22:35:55
|
OregonDigital/OD2
|
https://api.github.com/repos/OregonDigital/OD2
|
closed
|
Fix displayed label for "Designer Label" property on form and work show page
|
Metadata Priority - High Features
|
### Descriptive summary
The metadata property Designer Label (Property ID = designer_inscription; Predicate = http://opaquenamespace.org/ns/cdwa/InscriptionTranscription) in the Descriptions category is displaying as "Designer" on both the metadata entry form and the work show page. It should display as "Designer Label."
"Designer" is the intended label for the Designer property (Property ID = designer; Predicate = http://id.loc.gov/vocabulary/relators/dsr) in the Creators category. This is functioning correctly, so the result is that two different properties have the same label.
Example:
https://prod.oregondigital.org/concern/images/df711j54z?locale=en
### Expected behavior
designer_inscription should display as "Designer Label" on the form and work show page.
|
1.0
|
Fix displayed label for "Designer Label" property on form and work show page - ### Descriptive summary
The metadata property Designer Label (Property ID = designer_inscription; Predicate = http://opaquenamespace.org/ns/cdwa/InscriptionTranscription) in the Descriptions category is displaying as "Designer" on both the metadata entry form and the work show page. It should display as "Designer Label."
"Designer" is the intended label for the Designer property (Property ID = designer; Predicate = http://id.loc.gov/vocabulary/relators/dsr) in the Creators category. This is functioning correctly, so the result is that two different properties have the same label.
Example:
https://prod.oregondigital.org/concern/images/df711j54z?locale=en
### Expected behavior
designer_inscription should display as "Designer Label" on the form and work show page.
|
priority
|
fix displayed label for designer label property on form and work show page descriptive summary the metadata property designer label property id designer inscription predicate in the descriptions category is displaying as designer on both the metadata entry form and the work show page it should display as designer label designer is the intended label for the designer property property id designer predicate in the creators category this is functioning correctly so the result is that two different properties have the same label example expected behavior designer inscription should display as designer label on the form and work show page
| 1
|
198,930
| 6,979,224,124
|
IssuesEvent
|
2017-12-12 20:14:41
|
b2io/base2.io
|
https://api.github.com/repos/b2io/base2.io
|
opened
|
Create hero
|
priority: 2-high scope: site type: feature
|
Create the landing page header. Display the Base Two logo and tagline. Should work on both desktop and mobile devices.
|
1.0
|
Create hero - Create the landing page header. Display the Base Two logo and tagline. Should work on both desktop and mobile devices.
|
priority
|
create hero create the landing page header display the base two logo and tagline should work on both desktop and mobile devices
| 1
|
275,862
| 8,581,494,979
|
IssuesEvent
|
2018-11-13 14:50:28
|
DemocraciaEnRed/congreso
|
https://api.github.com/repos/DemocraciaEnRed/congreso
|
closed
|
Modal de feedback al agregar comentario
|
priority:high
|
El modal de feedback permanece y no se quita a menos qué se haga clic sobre el texto
|
1.0
|
Modal de feedback al agregar comentario - El modal de feedback permanece y no se quita a menos qué se haga clic sobre el texto
|
priority
|
modal de feedback al agregar comentario el modal de feedback permanece y no se quita a menos qué se haga clic sobre el texto
| 1
|
253,915
| 8,067,370,234
|
IssuesEvent
|
2018-08-05 06:24:55
|
Entrana/EntranaBugs
|
https://api.github.com/repos/Entrana/EntranaBugs
|
closed
|
Walking on first playthrough
|
bug client issue high priority
|
Steps to reproduce:
1. Delete the local cache.
2. Start the beta game client.
3. Login
4. Try and walk anywhere, client should crash. Is fixed on relog.
|
1.0
|
Walking on first playthrough - Steps to reproduce:
1. Delete the local cache.
2. Start the beta game client.
3. Login
4. Try and walk anywhere, client should crash. Is fixed on relog.
|
priority
|
walking on first playthrough steps to reproduce delete the local cache start the beta game client login try and walk anywhere client should crash is fixed on relog
| 1
|
316,801
| 9,657,506,319
|
IssuesEvent
|
2019-05-20 08:45:05
|
Wikidata/soweego
|
https://api.github.com/repos/Wikidata/soweego
|
closed
|
Parallelized full-text blocking crashes with IMDb
|
bug high priority
|
The following uncaught exception is thrown after `blocking.full_text_query_block #56`, when processing IMDb **actor training** set, chunk **149**:
```
OSError: [Errno 12] Cannot allocate memory
```
The command that hit this is `python -m soweego linker train nb imdb actor`, launched in the `soweego-1` VPS instance.
Full stack trace:
```
Traceback (most recent call last): [46/49008]
File "/usr/local/lib/python3.7/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/local/lib/python3.7/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/app/soweego/soweego/__main__.py", line 3, in <module>
cli.cli(obj={})
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 764, in __call__
return self.main(*args, **kwargs)
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 717, in main
rv = self.invoke(ctx)
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 1137, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 1137, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 956, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 555, in invoke
return callback(*args, **kwargs)
File "/app/soweego/soweego/linker/train.py", line 36, in cli
constants.CLASSIFIERS[classifier], target, target_type, binarize, dir_io)
File "/app/soweego/soweego/linker/train.py", line 47, in execute
goal, catalog, entity, dir_io)
File "/app/soweego/soweego/linker/train.py", line 64, in build_dataset
goal, catalog, wd_chunk[constants.NAME_TOKENS], i, target_database.get_entity(catalog, entity), dir_io)
File "/app/soweego/soweego/linker/blocking.py", line 62, in full_text_query_block
qids_and_tids, names=[constants.QID, constants.TID])
File "/usr/local/lib/python3.7/site-packages/pandas/core/indexes/multi.py", line 385, in from_tuples
tuples = list(tuples)
File "/app/soweego/soweego/linker/blocking.py", line 87, in _extract_target_candidates
with Pool() as pool:
File "/usr/local/lib/python3.7/multiprocessing/context.py", line 119, in Pool
context=self.get_context())
File "/usr/local/lib/python3.7/multiprocessing/pool.py", line 177, in __init__
self._repopulate_pool()
File "/usr/local/lib/python3.7/multiprocessing/pool.py", line 238, in _repopulate_pool
self._wrap_exception)
File "/usr/local/lib/python3.7/multiprocessing/pool.py", line 257, in _repopulate_pool_static
w.start()
File "/usr/local/lib/python3.7/multiprocessing/process.py", line 112, in start
self._popen = self._Popen(self)
File "/usr/local/lib/python3.7/multiprocessing/context.py", line 277, in _Popen
return Popen(process_obj)
File "/usr/local/lib/python3.7/multiprocessing/popen_fork.py", line 20, in __init__
self._launch(process_obj)
File "/usr/local/lib/python3.7/multiprocessing/popen_fork.py", line 70, in _launch
self.pid = os.fork()
OSError: [Errno 12] Cannot allocate memory
```
|
1.0
|
Parallelized full-text blocking crashes with IMDb - The following uncaught exception is thrown after `blocking.full_text_query_block #56`, when processing IMDb **actor training** set, chunk **149**:
```
OSError: [Errno 12] Cannot allocate memory
```
The command that hit this is `python -m soweego linker train nb imdb actor`, launched in the `soweego-1` VPS instance.
Full stack trace:
```
Traceback (most recent call last): [46/49008]
File "/usr/local/lib/python3.7/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/local/lib/python3.7/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/app/soweego/soweego/__main__.py", line 3, in <module>
cli.cli(obj={})
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 764, in __call__
return self.main(*args, **kwargs)
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 717, in main
rv = self.invoke(ctx)
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 1137, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 1137, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 956, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/usr/local/lib/python3.7/site-packages/click/core.py", line 555, in invoke
return callback(*args, **kwargs)
File "/app/soweego/soweego/linker/train.py", line 36, in cli
constants.CLASSIFIERS[classifier], target, target_type, binarize, dir_io)
File "/app/soweego/soweego/linker/train.py", line 47, in execute
goal, catalog, entity, dir_io)
File "/app/soweego/soweego/linker/train.py", line 64, in build_dataset
goal, catalog, wd_chunk[constants.NAME_TOKENS], i, target_database.get_entity(catalog, entity), dir_io)
File "/app/soweego/soweego/linker/blocking.py", line 62, in full_text_query_block
qids_and_tids, names=[constants.QID, constants.TID])
File "/usr/local/lib/python3.7/site-packages/pandas/core/indexes/multi.py", line 385, in from_tuples
tuples = list(tuples)
File "/app/soweego/soweego/linker/blocking.py", line 87, in _extract_target_candidates
with Pool() as pool:
File "/usr/local/lib/python3.7/multiprocessing/context.py", line 119, in Pool
context=self.get_context())
File "/usr/local/lib/python3.7/multiprocessing/pool.py", line 177, in __init__
self._repopulate_pool()
File "/usr/local/lib/python3.7/multiprocessing/pool.py", line 238, in _repopulate_pool
self._wrap_exception)
File "/usr/local/lib/python3.7/multiprocessing/pool.py", line 257, in _repopulate_pool_static
w.start()
File "/usr/local/lib/python3.7/multiprocessing/process.py", line 112, in start
self._popen = self._Popen(self)
File "/usr/local/lib/python3.7/multiprocessing/context.py", line 277, in _Popen
return Popen(process_obj)
File "/usr/local/lib/python3.7/multiprocessing/popen_fork.py", line 20, in __init__
self._launch(process_obj)
File "/usr/local/lib/python3.7/multiprocessing/popen_fork.py", line 70, in _launch
self.pid = os.fork()
OSError: [Errno 12] Cannot allocate memory
```
|
priority
|
parallelized full text blocking crashes with imdb the following uncaught exception is thrown after blocking full text query block when processing imdb actor training set chunk oserror cannot allocate memory the command that hit this is python m soweego linker train nb imdb actor launched in the soweego vps instance full stack trace traceback most recent call last file usr local lib runpy py line in run module as main main mod spec file usr local lib runpy py line in run code exec code run globals file app soweego soweego main py line in cli cli obj file usr local lib site packages click core py line in call return self main args kwargs file usr local lib site packages click core py line in main rv self invoke ctx file usr local lib site packages click core py line in invoke return process result sub ctx command invoke sub ctx file usr local lib site packages click core py line in invoke return process result sub ctx command invoke sub ctx file usr local lib site packages click core py line in invoke return ctx invoke self callback ctx params file usr local lib site packages click core py line in invoke return callback args kwargs file app soweego soweego linker train py line in cli constants classifiers target target type binarize dir io file app soweego soweego linker train py line in execute goal catalog entity dir io file app soweego soweego linker train py line in build dataset goal catalog wd chunk i target database get entity catalog entity dir io file app soweego soweego linker blocking py line in full text query block qids and tids names file usr local lib site packages pandas core indexes multi py line in from tuples tuples list tuples file app soweego soweego linker blocking py line in extract target candidates with pool as pool file usr local lib multiprocessing context py line in pool context self get context file usr local lib multiprocessing pool py line in init self repopulate pool file usr local lib multiprocessing pool py line in repopulate pool self wrap exception file usr local lib multiprocessing pool py line in repopulate pool static w start file usr local lib multiprocessing process py line in start self popen self popen self file usr local lib multiprocessing context py line in popen return popen process obj file usr local lib multiprocessing popen fork py line in init self launch process obj file usr local lib multiprocessing popen fork py line in launch self pid os fork oserror cannot allocate memory
| 1
|
232,087
| 7,654,401,116
|
IssuesEvent
|
2018-05-10 09:07:15
|
esaude/esaude-emr-poc
|
https://api.github.com/repos/esaude/esaude-emr-poc
|
opened
|
[Vitals] Unable to delete vitals in Vitals module
|
High Priority bug
|
Actual Results
--
When clicked on delete vitals form the system does not present the `confirm` and `cancel` button but the `delete` instead
Expected results
--
When `delete` is clicked, the system should present two options `confirm` and `cancel`. `confirm` should void the `obs` and/or `encoulter` and remove the record from the list, and `cancel` should return to the previous display state
Steps to reproduce
--
Login > Vitals module > Search and select a patient with vitals history > Delete one vitals entry
Screenshot/Attachment (Optional)
--
A visual description of the unexpected behaviour.
|
1.0
|
[Vitals] Unable to delete vitals in Vitals module - Actual Results
--
When clicked on delete vitals form the system does not present the `confirm` and `cancel` button but the `delete` instead
Expected results
--
When `delete` is clicked, the system should present two options `confirm` and `cancel`. `confirm` should void the `obs` and/or `encoulter` and remove the record from the list, and `cancel` should return to the previous display state
Steps to reproduce
--
Login > Vitals module > Search and select a patient with vitals history > Delete one vitals entry
Screenshot/Attachment (Optional)
--
A visual description of the unexpected behaviour.
|
priority
|
unable to delete vitals in vitals module actual results when clicked on delete vitals form the system does not present the confirm and cancel button but the delete instead expected results when delete is clicked the system should present two options confirm and cancel confirm should void the obs and or encoulter and remove the record from the list and cancel should return to the previous display state steps to reproduce login vitals module search and select a patient with vitals history delete one vitals entry screenshot attachment optional a visual description of the unexpected behaviour
| 1
|
599,857
| 18,284,667,747
|
IssuesEvent
|
2021-10-05 08:57:31
|
microsoft/fluentui
|
https://api.github.com/repos/microsoft/fluentui
|
closed
|
@emotion/core typings are leaking
|
Priority 1: High
|
Components can't be used in simple create-react-app projects with the following error:

## What
To make `PopoverSurface` work the code needs to be written this way:
```ts
<PopoverSurface css={{}}>Great workaround \o/</PopoverSurface>
```
otherwise TS will continuously error
## Why ?
All components were refactored to use `type` from `interface` following #19850 they are always inlined during build by typescript. The addition of `IntrinsicShorthandProps` in #19642 is another major factor.
Let's look at the example of `PopoverSurface`
```tsx
export const PopoverSurface = React.forwardRef<HTMLDivElement, PopoverSurfaceProps>((props, ref) => {
```
The resulting props for the `root` slot includes a property `css` (as seen in the above error). Here is the type declaration in `@emotion/core`:
```ts
declare module 'react' {
interface DOMAttributes<T> {
🚨🚨🚨🚨 This leaks into the props of `PopoverSurface`
css?: InterpolationWithTheme<any>
}
}
declare global {
namespace JSX {
/**
* Do we need to modify `LibraryManagedAttributes` too,
* to make `className` props optional when `css` props is specified?
*/
interface IntrinsicAttributes {
🚨🚨🚨🚨 This leaks into the props of `PopoverSurface`
css?: InterpolationWithTheme<any>
}
}
}
```
The `css` property leaks into the expanded type. There is no way for typescript to exclude type roots in the build process and a way to do so is an open issue microsoft/TypeScript#37053.
## Solutions
### Explicitly typing the return of `forwardRef` which is already proposed in #19923
> ⚠️⚠️ This does mean that types will not leak in the future thanks to type inlining, read article in the next section
```tsx
export const PopoverSurface: React.ForwardRefExoticComponent<PopoverSurfaceProps> = React.forwardRef<HTMLDivElement, PopoverSurfaceProps>((props, ref) => {
```
### Use interfaces over types
`interface` are not inlined during the typescript build process and is why Bloomberg has advocated not using `type` altogether: https://www.techatbloomberg.com/blog/10-insights-adopting-typescript-at-scale/
|
1.0
|
@emotion/core typings are leaking - Components can't be used in simple create-react-app projects with the following error:

## What
To make `PopoverSurface` work the code needs to be written this way:
```ts
<PopoverSurface css={{}}>Great workaround \o/</PopoverSurface>
```
otherwise TS will continuously error
## Why ?
All components were refactored to use `type` from `interface` following #19850 they are always inlined during build by typescript. The addition of `IntrinsicShorthandProps` in #19642 is another major factor.
Let's look at the example of `PopoverSurface`
```tsx
export const PopoverSurface = React.forwardRef<HTMLDivElement, PopoverSurfaceProps>((props, ref) => {
```
The resulting props for the `root` slot includes a property `css` (as seen in the above error). Here is the type declaration in `@emotion/core`:
```ts
declare module 'react' {
interface DOMAttributes<T> {
🚨🚨🚨🚨 This leaks into the props of `PopoverSurface`
css?: InterpolationWithTheme<any>
}
}
declare global {
namespace JSX {
/**
* Do we need to modify `LibraryManagedAttributes` too,
* to make `className` props optional when `css` props is specified?
*/
interface IntrinsicAttributes {
🚨🚨🚨🚨 This leaks into the props of `PopoverSurface`
css?: InterpolationWithTheme<any>
}
}
}
```
The `css` property leaks into the expanded type. There is no way for typescript to exclude type roots in the build process and a way to do so is an open issue microsoft/TypeScript#37053.
## Solutions
### Explicitly typing the return of `forwardRef` which is already proposed in #19923
> ⚠️⚠️ This does mean that types will not leak in the future thanks to type inlining, read article in the next section
```tsx
export const PopoverSurface: React.ForwardRefExoticComponent<PopoverSurfaceProps> = React.forwardRef<HTMLDivElement, PopoverSurfaceProps>((props, ref) => {
```
### Use interfaces over types
`interface` are not inlined during the typescript build process and is why Bloomberg has advocated not using `type` altogether: https://www.techatbloomberg.com/blog/10-insights-adopting-typescript-at-scale/
|
priority
|
emotion core typings are leaking components can t be used in simple create react app projects with the following error what to make popoversurface work the code needs to be written this way ts great workaround o otherwise ts will continuously error why all components were refactored to use type from interface following they are always inlined during build by typescript the addition of intrinsicshorthandprops in is another major factor let s look at the example of popoversurface tsx export const popoversurface react forwardref props ref the resulting props for the root slot includes a property css as seen in the above error here is the type declaration in emotion core ts declare module react interface domattributes 🚨🚨🚨🚨 this leaks into the props of popoversurface css interpolationwiththeme declare global namespace jsx do we need to modify librarymanagedattributes too to make classname props optional when css props is specified interface intrinsicattributes 🚨🚨🚨🚨 this leaks into the props of popoversurface css interpolationwiththeme the css property leaks into the expanded type there is no way for typescript to exclude type roots in the build process and a way to do so is an open issue microsoft typescript solutions explicitly typing the return of forwardref which is already proposed in ⚠️⚠️ this does mean that types will not leak in the future thanks to type inlining read article in the next section tsx export const popoversurface react forwardrefexoticcomponent react forwardref props ref use interfaces over types interface are not inlined during the typescript build process and is why bloomberg has advocated not using type altogether
| 1
|
90,966
| 3,834,954,594
|
IssuesEvent
|
2016-04-01 12:23:54
|
RestComm/mediaserver
|
https://api.github.com/repos/RestComm/mediaserver
|
opened
|
Detach MGCP stack from Media Scheduler
|
enhancement High-Priority
|
Stop submitting the MGCP stacks to the Media Scheduler because it enforces a delay of 20ms, reducing the MGCP stack responsiveness. Instead, rely on the Task Scheduler used by the UDP Manager that relies on JDK Executor.
|
1.0
|
Detach MGCP stack from Media Scheduler - Stop submitting the MGCP stacks to the Media Scheduler because it enforces a delay of 20ms, reducing the MGCP stack responsiveness. Instead, rely on the Task Scheduler used by the UDP Manager that relies on JDK Executor.
|
priority
|
detach mgcp stack from media scheduler stop submitting the mgcp stacks to the media scheduler because it enforces a delay of reducing the mgcp stack responsiveness instead rely on the task scheduler used by the udp manager that relies on jdk executor
| 1
|
644,289
| 20,973,026,088
|
IssuesEvent
|
2022-03-28 13:07:03
|
carbon-design-system/carbon-for-ibm-dotcom
|
https://api.github.com/repos/carbon-design-system/carbon-for-ibm-dotcom
|
closed
|
Update the banner on the standards/web page to indicate 2022 instead of 2021
|
Feature request priority: high dev
|
### The problem
Currently it references the sunset of v18 at the end of 2021.
### The solution
The message should read "Please be aware that the v18/v19 is targeted to be sunset at the end of 2022 and Carbon for IBM.com based on the Carbon Design System is its official replacement."
### Application/website
www.ibm.com/standards/web
### Business priority
High Priority = pressing release
### What time frame would this ideally be needed by (if applicable)
ASAP
### Examples
_No response_
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/blob/main/.github/CODE_OF_CONDUCT.md)
- [X] I checked the [current issues](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues) for duplicate issues
|
1.0
|
Update the banner on the standards/web page to indicate 2022 instead of 2021 - ### The problem
Currently it references the sunset of v18 at the end of 2021.
### The solution
The message should read "Please be aware that the v18/v19 is targeted to be sunset at the end of 2022 and Carbon for IBM.com based on the Carbon Design System is its official replacement."
### Application/website
www.ibm.com/standards/web
### Business priority
High Priority = pressing release
### What time frame would this ideally be needed by (if applicable)
ASAP
### Examples
_No response_
### Code of Conduct
- [X] I agree to follow this project's [Code of Conduct](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/blob/main/.github/CODE_OF_CONDUCT.md)
- [X] I checked the [current issues](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues) for duplicate issues
|
priority
|
update the banner on the standards web page to indicate instead of the problem currently it references the sunset of at the end of the solution the message should read please be aware that the is targeted to be sunset at the end of and carbon for ibm com based on the carbon design system is its official replacement application website business priority high priority pressing release what time frame would this ideally be needed by if applicable asap examples no response code of conduct i agree to follow this project s i checked the for duplicate issues
| 1
|
396,469
| 11,709,550,529
|
IssuesEvent
|
2020-03-08 19:30:07
|
AY1920S2-CS2103T-W13-2/main
|
https://api.github.com/repos/AY1920S2-CS2103T-W13-2/main
|
opened
|
As a user I can keep track of rooms that ordered room service
|
priority.High
|
So that I can charge them accordingly
|
1.0
|
As a user I can keep track of rooms that ordered room service - So that I can charge them accordingly
|
priority
|
as a user i can keep track of rooms that ordered room service so that i can charge them accordingly
| 1
|
219,377
| 7,341,571,254
|
IssuesEvent
|
2018-03-07 02:48:22
|
terminal-labs/rambo
|
https://api.github.com/repos/terminal-labs/rambo
|
closed
|
Add some first class rambo commands
|
enhancement high priority
|
We should add `scp` and `halt` to the list of basic, first class rambo commands that pass through to the same vagrant commands.
|
1.0
|
Add some first class rambo commands - We should add `scp` and `halt` to the list of basic, first class rambo commands that pass through to the same vagrant commands.
|
priority
|
add some first class rambo commands we should add scp and halt to the list of basic first class rambo commands that pass through to the same vagrant commands
| 1
|
89,804
| 3,800,391,789
|
IssuesEvent
|
2016-03-23 18:55:34
|
PrincetonRidgeHA/HomeWeb
|
https://api.github.com/repos/PrincetonRidgeHA/HomeWeb
|
opened
|
Documents not loading
|
bug high_priority user_suggested
|
# Description
End users report some documents are missing from the Members Area. No specifics on error type. Should examine both front-end links and FireBaseIO backend.
|
1.0
|
Documents not loading - # Description
End users report some documents are missing from the Members Area. No specifics on error type. Should examine both front-end links and FireBaseIO backend.
|
priority
|
documents not loading description end users report some documents are missing from the members area no specifics on error type should examine both front end links and firebaseio backend
| 1
|
205,047
| 7,093,592,472
|
IssuesEvent
|
2018-01-12 21:12:00
|
craftercms/craftercms
|
https://api.github.com/repos/craftercms/craftercms
|
closed
|
[studio] Support SAML2 authentication via mod_mellon (i.e. HTTP headers)
|
new feature priority: high
|
Per our conversation, please support headers-based authentication.
Please add the configuration items (feel free to rename/add/remove and then discuss with me):
```
studio.authentication.headers.enabled=false
studio.authentication.headers.secureKeyHeaderName={some key you expect}
studio.authentication.headers.secureKeyHeaderValue={some key you expect}
studio.authentication.headers.username={username header pattern}
studio.authentication.headers.firstName=
studio.authentication.headers.lastName=
studio.authentication.headers.email=
studio.authentication.headers.groups={comma-separated list of groups}
```
This precedes LDAP in the chain (headers, LDAP, DB).
Ping to review when ready.
|
1.0
|
[studio] Support SAML2 authentication via mod_mellon (i.e. HTTP headers) - Per our conversation, please support headers-based authentication.
Please add the configuration items (feel free to rename/add/remove and then discuss with me):
```
studio.authentication.headers.enabled=false
studio.authentication.headers.secureKeyHeaderName={some key you expect}
studio.authentication.headers.secureKeyHeaderValue={some key you expect}
studio.authentication.headers.username={username header pattern}
studio.authentication.headers.firstName=
studio.authentication.headers.lastName=
studio.authentication.headers.email=
studio.authentication.headers.groups={comma-separated list of groups}
```
This precedes LDAP in the chain (headers, LDAP, DB).
Ping to review when ready.
|
priority
|
support authentication via mod mellon i e http headers per our conversation please support headers based authentication please add the configuration items feel free to rename add remove and then discuss with me studio authentication headers enabled false studio authentication headers securekeyheadername some key you expect studio authentication headers securekeyheadervalue some key you expect studio authentication headers username username header pattern studio authentication headers firstname studio authentication headers lastname studio authentication headers email studio authentication headers groups comma separated list of groups this precedes ldap in the chain headers ldap db ping to review when ready
| 1
|
800,363
| 28,363,062,145
|
IssuesEvent
|
2023-04-12 12:11:39
|
mintterteam/mintter
|
https://api.github.com/repos/mintterteam/mintter
|
closed
|
Discussion: Can't go to the "reply" document clicking on clickable text
|
type: enhancement scope: editor scope: frontend priority: high
|
<img width="1849" alt="Screenshot 2022-10-27 at 12 33 06" src="https://user-images.githubusercontent.com/1793789/198262457-1c73fb28-8d19-41d3-8ad2-ed538f8883cf.png">
In the side discussion view, there's a lot of clickable text (all the highlighted one), but it doesn't do anything.
Also there's no obvious way to go the actual "reply" document. I spent more than a minute until I figured out "1 Reply" button at the bottom.
Maybe clicking on the title should open the backlink document?
|
1.0
|
Discussion: Can't go to the "reply" document clicking on clickable text - <img width="1849" alt="Screenshot 2022-10-27 at 12 33 06" src="https://user-images.githubusercontent.com/1793789/198262457-1c73fb28-8d19-41d3-8ad2-ed538f8883cf.png">
In the side discussion view, there's a lot of clickable text (all the highlighted one), but it doesn't do anything.
Also there's no obvious way to go the actual "reply" document. I spent more than a minute until I figured out "1 Reply" button at the bottom.
Maybe clicking on the title should open the backlink document?
|
priority
|
discussion can t go to the reply document clicking on clickable text img width alt screenshot at src in the side discussion view there s a lot of clickable text all the highlighted one but it doesn t do anything also there s no obvious way to go the actual reply document i spent more than a minute until i figured out reply button at the bottom maybe clicking on the title should open the backlink document
| 1
|
688,007
| 23,545,273,474
|
IssuesEvent
|
2022-08-21 02:22:10
|
epispot/epispot
|
https://api.github.com/repos/epispot/epispot
|
closed
|
Pre-configured parameter and model sanity checks
|
feat :rocket: high-priority :arrow_up_small: status:claimed
|
Models should automatically run sanity checks to ensure that parameter values are reasonable, implemented correctly, and that all layer combinations are proper. If any of these conditions is not met, `epispot` should either give a warning or stop the program with a `ValueError`.
|
1.0
|
Pre-configured parameter and model sanity checks - Models should automatically run sanity checks to ensure that parameter values are reasonable, implemented correctly, and that all layer combinations are proper. If any of these conditions is not met, `epispot` should either give a warning or stop the program with a `ValueError`.
|
priority
|
pre configured parameter and model sanity checks models should automatically run sanity checks to ensure that parameter values are reasonable implemented correctly and that all layer combinations are proper if any of these conditions is not met epispot should either give a warning or stop the program with a valueerror
| 1
|
551,633
| 16,177,754,833
|
IssuesEvent
|
2021-05-03 09:43:35
|
sopra-fs21-group-4/server
|
https://api.github.com/repos/sopra-fs21-group-4/server
|
closed
|
Tests for User Story 10
|
high priority removed task
|
- [ ] All tests for User Story 10 are set up and running
#32 Story 10
#66 Create Voting Request Test
#67 Implement Voting Round Test
|
1.0
|
Tests for User Story 10 - - [ ] All tests for User Story 10 are set up and running
#32 Story 10
#66 Create Voting Request Test
#67 Implement Voting Round Test
|
priority
|
tests for user story all tests for user story are set up and running story create voting request test implement voting round test
| 1
|
663,010
| 22,159,732,735
|
IssuesEvent
|
2022-06-04 10:10:11
|
PurplePalette/sonolus-fastapi
|
https://api.github.com/repos/PurplePalette/sonolus-fastapi
|
opened
|
Migration/Seedingを行うコンテナの作成
|
[Priority] high 💨 [Status] in progress🐒
|
## 提案理由
Docker-compose up で立ち上げた場合
サーバーの初期設定を行うためにはコンテナ内に入りシェルを立ち上げ
- `alembic upgrade head` で DBを作成し
- `python seeder.py` で シーディングを行い
- Adminer経由でユーザーアカウントの設定を行い
- 更になんやかんやする必要がある
あまりにも手間がかかり面倒なため、minio/mc のように環境変数から設定をもらい自動で初期化するコンテナをほしい
|
1.0
|
Migration/Seedingを行うコンテナの作成 - ## 提案理由
Docker-compose up で立ち上げた場合
サーバーの初期設定を行うためにはコンテナ内に入りシェルを立ち上げ
- `alembic upgrade head` で DBを作成し
- `python seeder.py` で シーディングを行い
- Adminer経由でユーザーアカウントの設定を行い
- 更になんやかんやする必要がある
あまりにも手間がかかり面倒なため、minio/mc のように環境変数から設定をもらい自動で初期化するコンテナをほしい
|
priority
|
migration seedingを行うコンテナの作成 提案理由 docker compose up で立ち上げた場合 サーバーの初期設定を行うためにはコンテナ内に入りシェルを立ち上げ alembic upgrade head で dbを作成し python seeder py で シーディングを行い adminer経由でユーザーアカウントの設定を行い 更になんやかんやする必要がある あまりにも手間がかかり面倒なため、minio mc のように環境変数から設定をもらい自動で初期化するコンテナをほしい
| 1
|
228,918
| 7,569,483,378
|
IssuesEvent
|
2018-04-23 04:50:31
|
ballerina-platform/ballerina-examples
|
https://api.github.com/repos/ballerina-platform/ballerina-examples
|
closed
|
multiple samples fail with undefined field 'targets' in struct with beta 3 and beta4
|
Priority/Highest bug
|
mutual-ssl sample throws errors when executed
openjdk version "1.8.0_162"
ubuntu 16.04
ballerina-platform-0.970.0-beta3
error
```
error: ./mutual-ssl.bal:50:5: undefined field 'targets' in struct 'ballerina.http:ClientEndpointConfig'
compilation contains errors
```
|
1.0
|
multiple samples fail with undefined field 'targets' in struct with beta 3 and beta4 - mutual-ssl sample throws errors when executed
openjdk version "1.8.0_162"
ubuntu 16.04
ballerina-platform-0.970.0-beta3
error
```
error: ./mutual-ssl.bal:50:5: undefined field 'targets' in struct 'ballerina.http:ClientEndpointConfig'
compilation contains errors
```
|
priority
|
multiple samples fail with undefined field targets in struct with beta and mutual ssl sample throws errors when executed openjdk version ubuntu ballerina platform error error mutual ssl bal undefined field targets in struct ballerina http clientendpointconfig compilation contains errors
| 1
|
259,219
| 8,195,164,451
|
IssuesEvent
|
2018-08-31 04:03:58
|
Kademi/kademi-dev
|
https://api.github.com/repos/Kademi/kademi-dev
|
closed
|
Product List component - Bug + Feature Request
|
High priority bug
|
Hello Guys,
I think I've spotted a bug with product list component.
I am not able to select the store in the options in the settings pane (it doesn't show any stores in the list).
**Feature Request**
If we could have the ability to choose "Product Category" in product list component along with the Store in the settings pane that would be great.
<img width="1224" alt="screen shot 2018-08-30 at 4 15 13 pm" src="https://user-images.githubusercontent.com/10014469/44829266-ebab0080-ac6f-11e8-9951-87f69b3a068b.png">
Thank you
|
1.0
|
Product List component - Bug + Feature Request - Hello Guys,
I think I've spotted a bug with product list component.
I am not able to select the store in the options in the settings pane (it doesn't show any stores in the list).
**Feature Request**
If we could have the ability to choose "Product Category" in product list component along with the Store in the settings pane that would be great.
<img width="1224" alt="screen shot 2018-08-30 at 4 15 13 pm" src="https://user-images.githubusercontent.com/10014469/44829266-ebab0080-ac6f-11e8-9951-87f69b3a068b.png">
Thank you
|
priority
|
product list component bug feature request hello guys i think i ve spotted a bug with product list component i am not able to select the store in the options in the settings pane it doesn t show any stores in the list feature request if we could have the ability to choose product category in product list component along with the store in the settings pane that would be great img width alt screen shot at pm src thank you
| 1
|
325,846
| 9,936,652,263
|
IssuesEvent
|
2019-07-02 19:42:28
|
VariantEffect/mavevis
|
https://api.github.com/repos/VariantEffect/mavevis
|
closed
|
[Webapp] make legend visible at all times
|
feature-request high-priority
|
To see the legend for the visualization, users currently must scroll all the way to the right.
Find a better placement for this.
|
1.0
|
[Webapp] make legend visible at all times - To see the legend for the visualization, users currently must scroll all the way to the right.
Find a better placement for this.
|
priority
|
make legend visible at all times to see the legend for the visualization users currently must scroll all the way to the right find a better placement for this
| 1
|
488,791
| 14,086,384,136
|
IssuesEvent
|
2020-11-05 03:33:10
|
UsrLightmann/Quorra
|
https://api.github.com/repos/UsrLightmann/Quorra
|
opened
|
Mic Methods Need Work
|
bug high priority
|
Seems as though the mic methods are causing issues with apps and iOS more generally.
Received reports of apps freezing up and/or crashing.
Received reports of panics causing the device to reboot and be unjailbreakable until Quorra v1.0.5 was removed.
|
1.0
|
Mic Methods Need Work - Seems as though the mic methods are causing issues with apps and iOS more generally.
Received reports of apps freezing up and/or crashing.
Received reports of panics causing the device to reboot and be unjailbreakable until Quorra v1.0.5 was removed.
|
priority
|
mic methods need work seems as though the mic methods are causing issues with apps and ios more generally received reports of apps freezing up and or crashing received reports of panics causing the device to reboot and be unjailbreakable until quorra was removed
| 1
|
512,658
| 14,906,486,634
|
IssuesEvent
|
2021-01-22 00:42:54
|
getodk/collect
|
https://api.github.com/repos/getodk/collect
|
opened
|
Downloading a form with the same formid and version fails every other time
|
high priority
|
#### Software and hardware versions
Collect v1.29.3
#### Problem description
Downloading a form with the same formid and version fails every other time.
#### Steps to reproduce the problem
1. Download a form such as All Widgets from the default server, verify it opens
2. Go back to Get Blank Form, select the same form, download it
3. Go to Fill Blank Form, see that the form is no longer there
4. On the device in `/sdcard/Android/data/org.odk.collect.android/files/forms`, verify that the form was added a `.bad` extension and is an empty file
#### Expected behavior
It should be possible to request downloading a form with the same formid and version over and over again. Files (form or media) with the same hash should be skipped.
#### Other information
I believe this is due to #4333. I haven't looked at the code yet but I imagine that the form definition download is skipped and then an empty file is copied over the existing form file.
@seadowg I think this is freshest for you!
|
1.0
|
Downloading a form with the same formid and version fails every other time - #### Software and hardware versions
Collect v1.29.3
#### Problem description
Downloading a form with the same formid and version fails every other time.
#### Steps to reproduce the problem
1. Download a form such as All Widgets from the default server, verify it opens
2. Go back to Get Blank Form, select the same form, download it
3. Go to Fill Blank Form, see that the form is no longer there
4. On the device in `/sdcard/Android/data/org.odk.collect.android/files/forms`, verify that the form was added a `.bad` extension and is an empty file
#### Expected behavior
It should be possible to request downloading a form with the same formid and version over and over again. Files (form or media) with the same hash should be skipped.
#### Other information
I believe this is due to #4333. I haven't looked at the code yet but I imagine that the form definition download is skipped and then an empty file is copied over the existing form file.
@seadowg I think this is freshest for you!
|
priority
|
downloading a form with the same formid and version fails every other time software and hardware versions collect problem description downloading a form with the same formid and version fails every other time steps to reproduce the problem download a form such as all widgets from the default server verify it opens go back to get blank form select the same form download it go to fill blank form see that the form is no longer there on the device in sdcard android data org odk collect android files forms verify that the form was added a bad extension and is an empty file expected behavior it should be possible to request downloading a form with the same formid and version over and over again files form or media with the same hash should be skipped other information i believe this is due to i haven t looked at the code yet but i imagine that the form definition download is skipped and then an empty file is copied over the existing form file seadowg i think this is freshest for you
| 1
|
817,400
| 30,639,734,309
|
IssuesEvent
|
2023-07-24 20:48:08
|
paleobot/pbot-dev
|
https://api.github.com/repos/paleobot/pbot-dev
|
closed
|
Unsupported image types--investigate and make decision about how to proceed prior to HackAThon
|
question high priority
|
As of 230629 10:15am EDT, .svg and .tiff files were not supported. Doug tried to get .svg working yesterday, but when I entered a .svg image I received this message: Error: Cannot read properties of undefined (reading '_fields').
Andrew to investigate to see what can be done, if we want to make any changes, and if we need to restrict image types for HackAThon only or generally going forward.
|
1.0
|
Unsupported image types--investigate and make decision about how to proceed prior to HackAThon - As of 230629 10:15am EDT, .svg and .tiff files were not supported. Doug tried to get .svg working yesterday, but when I entered a .svg image I received this message: Error: Cannot read properties of undefined (reading '_fields').
Andrew to investigate to see what can be done, if we want to make any changes, and if we need to restrict image types for HackAThon only or generally going forward.
|
priority
|
unsupported image types investigate and make decision about how to proceed prior to hackathon as of edt svg and tiff files were not supported doug tried to get svg working yesterday but when i entered a svg image i received this message error cannot read properties of undefined reading fields andrew to investigate to see what can be done if we want to make any changes and if we need to restrict image types for hackathon only or generally going forward
| 1
|
173,367
| 6,524,111,444
|
IssuesEvent
|
2017-08-29 11:23:33
|
gctools-outilsgc/gcconnex
|
https://api.github.com/repos/gctools-outilsgc/gcconnex
|
closed
|
Group operators need same group management options as group owners
|
Bug High Priority Usability
|
As a group operator, I need to be have the same access to group management options as group owners so that I can help the group owner manage content.
Group operators need to be able to manage group and group content, same as group owners.
Changes required (these options were available at one point to group operators, but are no longer available).
- Group operators need to have the rights and ability to edit/deleted comments made on content created by other group members. (At this time, they can edit/deleted content, but not comments)
- Group operators need to have rights and ability to change the access level of content created by other group members. (At the moment, only group owners have the rights to change read and write access of content created by other group members).
Thanks.
|
1.0
|
Group operators need same group management options as group owners - As a group operator, I need to be have the same access to group management options as group owners so that I can help the group owner manage content.
Group operators need to be able to manage group and group content, same as group owners.
Changes required (these options were available at one point to group operators, but are no longer available).
- Group operators need to have the rights and ability to edit/deleted comments made on content created by other group members. (At this time, they can edit/deleted content, but not comments)
- Group operators need to have rights and ability to change the access level of content created by other group members. (At the moment, only group owners have the rights to change read and write access of content created by other group members).
Thanks.
|
priority
|
group operators need same group management options as group owners as a group operator i need to be have the same access to group management options as group owners so that i can help the group owner manage content group operators need to be able to manage group and group content same as group owners changes required these options were available at one point to group operators but are no longer available group operators need to have the rights and ability to edit deleted comments made on content created by other group members at this time they can edit deleted content but not comments group operators need to have rights and ability to change the access level of content created by other group members at the moment only group owners have the rights to change read and write access of content created by other group members thanks
| 1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.