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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
105,642
| 4,239,516,851
|
IssuesEvent
|
2016-07-06 09:45:17
|
ow2-proactive/studio
|
https://api.github.com/repos/ow2-proactive/studio
|
opened
|
Message for authentication failure is misleading
|
priority:high type:improvement
|
When wrong login and/or password are used, the following message appears:

It is misleading. We are receiving support message due to that because the user does not understand what happen. It would be much better to display something like "Invalid login or password" but also to differentiate an issue because the REST API is not reachable from an authentication failure due to login or password.
|
1.0
|
Message for authentication failure is misleading - When wrong login and/or password are used, the following message appears:

It is misleading. We are receiving support message due to that because the user does not understand what happen. It would be much better to display something like "Invalid login or password" but also to differentiate an issue because the REST API is not reachable from an authentication failure due to login or password.
|
priority
|
message for authentication failure is misleading when wrong login and or password are used the following message appears it is misleading we are receiving support message due to that because the user does not understand what happen it would be much better to display something like invalid login or password but also to differentiate an issue because the rest api is not reachable from an authentication failure due to login or password
| 1
|
368,117
| 10,866,389,429
|
IssuesEvent
|
2019-11-14 21:08:11
|
cassproject/cass-editor
|
https://api.github.com/repos/cassproject/cass-editor
|
closed
|
SSL issues on staging server
|
High Priority
|
Background
We used LetsEncrypt to add SSL to the staging server.
CaSS would fail - due to running non-SSL under SSL site.
Fritz tried to export the certificate created by LetsEncrypt, but could not as a hidden/unknown password was created during the process.
**Actions**
Could a separate SSL be created for CaSS, and then installed?
If not, then we may need to explore other clients for letsencrypt:
https://letsencrypt.org/docs/client-options/
|
1.0
|
SSL issues on staging server - Background
We used LetsEncrypt to add SSL to the staging server.
CaSS would fail - due to running non-SSL under SSL site.
Fritz tried to export the certificate created by LetsEncrypt, but could not as a hidden/unknown password was created during the process.
**Actions**
Could a separate SSL be created for CaSS, and then installed?
If not, then we may need to explore other clients for letsencrypt:
https://letsencrypt.org/docs/client-options/
|
priority
|
ssl issues on staging server background we used letsencrypt to add ssl to the staging server cass would fail due to running non ssl under ssl site fritz tried to export the certificate created by letsencrypt but could not as a hidden unknown password was created during the process actions could a separate ssl be created for cass and then installed if not then we may need to explore other clients for letsencrypt
| 1
|
90,247
| 3,813,298,186
|
IssuesEvent
|
2016-03-28 03:55:59
|
IntellectualSites/PlotSquared
|
https://api.github.com/repos/IntellectualSites/PlotSquared
|
closed
|
Plot chat is broken with 3.3.1
|
[!] Bug [‼] high priority [✔] Verified
|
I just upgraded plotsquared to 3.3.1 and seem plot chat don't work anymore it do nothing... i am using 1.8.8.
|
1.0
|
Plot chat is broken with 3.3.1 - I just upgraded plotsquared to 3.3.1 and seem plot chat don't work anymore it do nothing... i am using 1.8.8.
|
priority
|
plot chat is broken with i just upgraded plotsquared to and seem plot chat don t work anymore it do nothing i am using
| 1
|
334,785
| 10,145,500,192
|
IssuesEvent
|
2019-08-05 04:41:34
|
ballerina-platform/ballerina-lang
|
https://api.github.com/repos/ballerina-platform/ballerina-lang
|
closed
|
Tooling updates for optional field access
|
Area/Tooling Component/LanguageServer Priority/High Type/Task
|
**Description:**
Creating an issue to track $title.
Introduced with https://github.com/ballerina-platform/ballerina-lang/pull/16340
Syntax
```ballerina
string? s = f?.name;
```
|
1.0
|
Tooling updates for optional field access - **Description:**
Creating an issue to track $title.
Introduced with https://github.com/ballerina-platform/ballerina-lang/pull/16340
Syntax
```ballerina
string? s = f?.name;
```
|
priority
|
tooling updates for optional field access description creating an issue to track title introduced with syntax ballerina string s f name
| 1
|
550,452
| 16,112,955,193
|
IssuesEvent
|
2021-04-28 01:13:43
|
rstudio/gt
|
https://api.github.com/repos/rstudio/gt
|
closed
|
fmt_number with columns = vars(where(is.numeric)) gives an error
|
Difficulty: [2] Intermediate Effort: [3] High Priority: [3] High Type: ★ Enhancement
|
Hi!,
I would expect using the selection helper `where` would work but:
```r
library(tidyselect)
library(dplyr)
library(gt)
countrypops %>%
dplyr::select(country_code_3, year, population) %>%
dplyr::filter(
country_code_3 %in% c(
"CHN", "IND", "USA", "PAK", "IDN")
) %>%
dplyr::filter(year > 1975 & year %% 5 == 0) %>%
tidyr::spread(year, population) %>%
dplyr::arrange(desc(`2015`)) %>%
gt(rowname_col = "country_code_3") %>%
fmt_number(
columns = vars(where(is.numeric)),
decimals = 2,
suffixing = TRUE
)
Error: Can't convert a call to a string
Run `rlang::last_error()` to see where the error occurred.
```
I also tried removing `vars`, `where` and both, even I didn't expect that these tries would work. I have all packages up to date and use R 3.6.3.
Thank you!
|
1.0
|
fmt_number with columns = vars(where(is.numeric)) gives an error - Hi!,
I would expect using the selection helper `where` would work but:
```r
library(tidyselect)
library(dplyr)
library(gt)
countrypops %>%
dplyr::select(country_code_3, year, population) %>%
dplyr::filter(
country_code_3 %in% c(
"CHN", "IND", "USA", "PAK", "IDN")
) %>%
dplyr::filter(year > 1975 & year %% 5 == 0) %>%
tidyr::spread(year, population) %>%
dplyr::arrange(desc(`2015`)) %>%
gt(rowname_col = "country_code_3") %>%
fmt_number(
columns = vars(where(is.numeric)),
decimals = 2,
suffixing = TRUE
)
Error: Can't convert a call to a string
Run `rlang::last_error()` to see where the error occurred.
```
I also tried removing `vars`, `where` and both, even I didn't expect that these tries would work. I have all packages up to date and use R 3.6.3.
Thank you!
|
priority
|
fmt number with columns vars where is numeric gives an error hi i would expect using the selection helper where would work but r library tidyselect library dplyr library gt countrypops dplyr select country code year population dplyr filter country code in c chn ind usa pak idn dplyr filter year year tidyr spread year population dplyr arrange desc gt rowname col country code fmt number columns vars where is numeric decimals suffixing true error can t convert a call to a string run rlang last error to see where the error occurred i also tried removing vars where and both even i didn t expect that these tries would work i have all packages up to date and use r thank you
| 1
|
682,263
| 23,338,974,203
|
IssuesEvent
|
2022-08-09 12:34:11
|
kubermatic/kubermatic
|
https://api.github.com/repos/kubermatic/kubermatic
|
closed
|
configurable cloud config for clusters
|
priority/high customer-request kind/feature Epic
|
As we have a constant pain in not being able to modify the cloud config of KKP Customer Clusters, we would like to have them generally configurable.
For example, we have already two open tickets: #8010 and #7955. These tickets want to make specific options configurable.
But we would like to have a more generic solution to set such options. The best place would be the kubermaticconfiguration, also it would be great to be able to define overrides in the cluster object itself.
The cluster object could then also be used to handle transitions for existing clusters.
|
1.0
|
configurable cloud config for clusters - As we have a constant pain in not being able to modify the cloud config of KKP Customer Clusters, we would like to have them generally configurable.
For example, we have already two open tickets: #8010 and #7955. These tickets want to make specific options configurable.
But we would like to have a more generic solution to set such options. The best place would be the kubermaticconfiguration, also it would be great to be able to define overrides in the cluster object itself.
The cluster object could then also be used to handle transitions for existing clusters.
|
priority
|
configurable cloud config for clusters as we have a constant pain in not being able to modify the cloud config of kkp customer clusters we would like to have them generally configurable for example we have already two open tickets and these tickets want to make specific options configurable but we would like to have a more generic solution to set such options the best place would be the kubermaticconfiguration also it would be great to be able to define overrides in the cluster object itself the cluster object could then also be used to handle transitions for existing clusters
| 1
|
677,617
| 23,167,964,534
|
IssuesEvent
|
2022-07-30 08:37:01
|
zeek/broker
|
https://api.github.com/repos/zeek/broker
|
closed
|
Some tests seem unstable on Fedora
|
Priority: High Type: Bug
|
I had it a couple times now that a CI run on Fedora would turn red. Restarting it usually turns it back to green, but we should make the tests stable of course. Not sure yet if these errors point to an actual issue in Broker or 'just' affect the test code. Working on it.
|
1.0
|
Some tests seem unstable on Fedora - I had it a couple times now that a CI run on Fedora would turn red. Restarting it usually turns it back to green, but we should make the tests stable of course. Not sure yet if these errors point to an actual issue in Broker or 'just' affect the test code. Working on it.
|
priority
|
some tests seem unstable on fedora i had it a couple times now that a ci run on fedora would turn red restarting it usually turns it back to green but we should make the tests stable of course not sure yet if these errors point to an actual issue in broker or just affect the test code working on it
| 1
|
298,045
| 9,195,281,568
|
IssuesEvent
|
2019-03-07 01:45:25
|
storybooks/storybook
|
https://api.github.com/repos/storybooks/storybook
|
closed
|
Deep linking broken in SB5
|
bug core high priority
|
H/t @NicoleGrondinAlayacare
## Variant 1
Click on: https://storybooks-official.netlify.com/?path=/story/ui-menuitem--default
Before anything shows it will automatically re-route to: https://storybooks-official.netlify.com/?path=/story/ui-panel--default
## Variant 2
Click on: https://storybooks-official.netlify.com/?selectedKind=UI%7CMenuItem&selectedStory=default&full=0&addons=1&stories=1&panelRight=0&addonPanel=storybook%2Fstories%2Fstories-panel
It will (correctly) reroute to: https://storybooks-official.netlify.com/?path=/story/ui-menuitem--default
But then, before anything shows it will automatically re-route to: https://storybooks-official.netlify.com/?path=/story/ui-panel--default
|
1.0
|
Deep linking broken in SB5 - H/t @NicoleGrondinAlayacare
## Variant 1
Click on: https://storybooks-official.netlify.com/?path=/story/ui-menuitem--default
Before anything shows it will automatically re-route to: https://storybooks-official.netlify.com/?path=/story/ui-panel--default
## Variant 2
Click on: https://storybooks-official.netlify.com/?selectedKind=UI%7CMenuItem&selectedStory=default&full=0&addons=1&stories=1&panelRight=0&addonPanel=storybook%2Fstories%2Fstories-panel
It will (correctly) reroute to: https://storybooks-official.netlify.com/?path=/story/ui-menuitem--default
But then, before anything shows it will automatically re-route to: https://storybooks-official.netlify.com/?path=/story/ui-panel--default
|
priority
|
deep linking broken in h t nicolegrondinalayacare variant click on before anything shows it will automatically re route to variant click on it will correctly reroute to but then before anything shows it will automatically re route to
| 1
|
331,540
| 10,074,769,974
|
IssuesEvent
|
2019-07-24 12:53:35
|
AnSyn/ansyn
|
https://api.github.com/repos/AnSyn/ansyn
|
closed
|
Bug- coordinates should be in the same place on all the screens
|
Bug Priority: High
|
For the component and the app


|
1.0
|
Bug- coordinates should be in the same place on all the screens - For the component and the app


|
priority
|
bug coordinates should be in the same place on all the screens for the component and the app
| 1
|
723,935
| 24,912,895,482
|
IssuesEvent
|
2022-10-30 03:26:08
|
DizzasTeR/VCMP-Lua
|
https://api.github.com/repos/DizzasTeR/VCMP-Lua
|
closed
|
onPlayerDisconnect: Inconsistency between Player 0 and Player 1
|
bug priority::high
|
When there is more than one player, players 0 and 1 get confused by being indexed in the onPlayerDisconnect event.
If Player 0 leaves the server, it ends up being recognized as ID 1
**Console logs:**
Players connecting
```
Player 'Player0' ID 0 connected.
Player 'Player1' ID 1 connected.
Player 'Player2' ID 2 connected.
```
Player 0 leaving (_The console shows that it is player 0 leaving, but the event recognizes it as player 1_)
```
Disconnecting player 'Player0' at ID 0, sent quit packet with reason 1.
Player 'Player0' ID 0 disconnected.
Player1 left with the ID 1
```
Script in onPlayerDisconnect:
```lua
print(player.name .. " left with the ID " .. player.id)
```
|
1.0
|
onPlayerDisconnect: Inconsistency between Player 0 and Player 1 - When there is more than one player, players 0 and 1 get confused by being indexed in the onPlayerDisconnect event.
If Player 0 leaves the server, it ends up being recognized as ID 1
**Console logs:**
Players connecting
```
Player 'Player0' ID 0 connected.
Player 'Player1' ID 1 connected.
Player 'Player2' ID 2 connected.
```
Player 0 leaving (_The console shows that it is player 0 leaving, but the event recognizes it as player 1_)
```
Disconnecting player 'Player0' at ID 0, sent quit packet with reason 1.
Player 'Player0' ID 0 disconnected.
Player1 left with the ID 1
```
Script in onPlayerDisconnect:
```lua
print(player.name .. " left with the ID " .. player.id)
```
|
priority
|
onplayerdisconnect inconsistency between player and player when there is more than one player players and get confused by being indexed in the onplayerdisconnect event if player leaves the server it ends up being recognized as id console logs players connecting player id connected player id connected player id connected player leaving the console shows that it is player leaving but the event recognizes it as player disconnecting player at id sent quit packet with reason player id disconnected left with the id script in onplayerdisconnect lua print player name left with the id player id
| 1
|
67,753
| 3,281,844,866
|
IssuesEvent
|
2015-10-28 00:48:33
|
jakev/dtfmods-core
|
https://api.github.com/repos/jakev/dtfmods-core
|
opened
|
dtf v1.2 --> v1.3 Migration
|
enhancement priority-high
|
Migration from v1.2 to v1.3 progress. I'll update this as I start doing commits.
#### Modules
#### Binaries
#### Libraries
#### Packages
No migrations needed.
|
1.0
|
dtf v1.2 --> v1.3 Migration - Migration from v1.2 to v1.3 progress. I'll update this as I start doing commits.
#### Modules
#### Binaries
#### Libraries
#### Packages
No migrations needed.
|
priority
|
dtf migration migration from to progress i ll update this as i start doing commits modules binaries libraries packages no migrations needed
| 1
|
650,819
| 21,418,337,968
|
IssuesEvent
|
2022-04-22 13:15:16
|
coders-camp-2021-best-team/TeamUp-Client
|
https://api.github.com/repos/coders-camp-2021-best-team/TeamUp-Client
|
opened
|
feat/app-create-post-screen
|
type: feat scope: app scope: ui priority: high
|
**AC**
Prepare screen with all of the posts based on figma requirements
Integrate with API, post should be fetched directly from the API
Also we should run mutation to add like/dislike to post and update that in real time
|
1.0
|
feat/app-create-post-screen - **AC**
Prepare screen with all of the posts based on figma requirements
Integrate with API, post should be fetched directly from the API
Also we should run mutation to add like/dislike to post and update that in real time
|
priority
|
feat app create post screen ac prepare screen with all of the posts based on figma requirements integrate with api post should be fetched directly from the api also we should run mutation to add like dislike to post and update that in real time
| 1
|
274,349
| 8,559,871,245
|
IssuesEvent
|
2018-11-08 22:42:41
|
webhintio/hint
|
https://api.github.com/repos/webhintio/hint
|
closed
|
Prevent `canvas` from being loaded when using the VS Code extension
|
priority:high type:bug
|
The biggest problem right now with the VS Code extension is related to `canvas`. `canvas` is a binary package. VS Code uses node 8.9 but a developer could be using any other version and thus cause the extension to fail loading (see https://github.com/jsdom/jsdom/issues/2410).
After talking with @antross and @jdalton, the idea is to hijack `require`'s cache and serve a fake canvas module, enough for jsdom to not crash and continue the execution while running on the VS Code extension.
|
1.0
|
Prevent `canvas` from being loaded when using the VS Code extension - The biggest problem right now with the VS Code extension is related to `canvas`. `canvas` is a binary package. VS Code uses node 8.9 but a developer could be using any other version and thus cause the extension to fail loading (see https://github.com/jsdom/jsdom/issues/2410).
After talking with @antross and @jdalton, the idea is to hijack `require`'s cache and serve a fake canvas module, enough for jsdom to not crash and continue the execution while running on the VS Code extension.
|
priority
|
prevent canvas from being loaded when using the vs code extension the biggest problem right now with the vs code extension is related to canvas canvas is a binary package vs code uses node but a developer could be using any other version and thus cause the extension to fail loading see after talking with antross and jdalton the idea is to hijack require s cache and serve a fake canvas module enough for jsdom to not crash and continue the execution while running on the vs code extension
| 1
|
461,081
| 13,223,224,932
|
IssuesEvent
|
2020-08-17 16:50:47
|
eventespresso/barista
|
https://api.github.com/repos/eventespresso/barista
|
closed
|
Default taxes are removed inside EDTR even if user doesn't submit.
|
C: data systems 🗑 D: Packages 📦 P2: HIGH priority ☹️ T: bug 🐞
|
Introduced in [core/pull/2950](https://github.com/eventespresso/event-espresso-core/pull/2950), the bug can be reproduced as follows:
- Open TPC for a ticket which has a default tax
- Remove that default tax
- Close TPC without submitting
- Open TPC again
**Expected behavior:** The removed default tax should still be there because the changes were no submitted.
**Actual behavior:** The removed default tax is no more in the prices list for the ticket.
|
1.0
|
Default taxes are removed inside EDTR even if user doesn't submit. - Introduced in [core/pull/2950](https://github.com/eventespresso/event-espresso-core/pull/2950), the bug can be reproduced as follows:
- Open TPC for a ticket which has a default tax
- Remove that default tax
- Close TPC without submitting
- Open TPC again
**Expected behavior:** The removed default tax should still be there because the changes were no submitted.
**Actual behavior:** The removed default tax is no more in the prices list for the ticket.
|
priority
|
default taxes are removed inside edtr even if user doesn t submit introduced in the bug can be reproduced as follows open tpc for a ticket which has a default tax remove that default tax close tpc without submitting open tpc again expected behavior the removed default tax should still be there because the changes were no submitted actual behavior the removed default tax is no more in the prices list for the ticket
| 1
|
395,809
| 11,696,765,745
|
IssuesEvent
|
2020-03-06 10:24:54
|
ahmedkaludi/accelerated-mobile-pages
|
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
|
closed
|
Query Monitor queries should be visible in amp pages too when logged in.
|
NEXT UPDATE [Priority: HIGH] bug
|
Desc: Query Monitor queries should be visible in amp pages too when user is logged in.
Ref: https://secure.helpscout.net/conversation/1097120108/113970?folderId=2770545
|
1.0
|
Query Monitor queries should be visible in amp pages too when logged in. - Desc: Query Monitor queries should be visible in amp pages too when user is logged in.
Ref: https://secure.helpscout.net/conversation/1097120108/113970?folderId=2770545
|
priority
|
query monitor queries should be visible in amp pages too when logged in desc query monitor queries should be visible in amp pages too when user is logged in ref
| 1
|
37,231
| 2,823,120,994
|
IssuesEvent
|
2015-05-21 06:27:49
|
UnknownShadow200/ClassicalSharp
|
https://api.github.com/repos/UnknownShadow200/ClassicalSharp
|
closed
|
MeasureString issues with UnsafeString on Windows XP.
|
bug high priority
|
Windows XP seems to include the trailing nulls when calculating width. This only affects FPSScreen and TextInputWidget.
|
1.0
|
MeasureString issues with UnsafeString on Windows XP. - Windows XP seems to include the trailing nulls when calculating width. This only affects FPSScreen and TextInputWidget.
|
priority
|
measurestring issues with unsafestring on windows xp windows xp seems to include the trailing nulls when calculating width this only affects fpsscreen and textinputwidget
| 1
|
594,464
| 18,046,232,466
|
IssuesEvent
|
2021-09-19 00:01:34
|
NVIDIA/TRTorch
|
https://api.github.com/repos/NVIDIA/TRTorch
|
closed
|
Upsample Support Tracker
|
feature request help wanted priority: high component: converters No Activity
|
Need to support:
- [x] Nearest Neighbor
- [x] Linear
- [x] Bilinear
- [x] Trilinear
- [ ] Bicubic
- [ ] Area
Relevant Documentation:
- https://docs.nvidia.com/deeplearning/sdk/tensorrt-archived/tensorrt-601/tensorrt-api/c_api/classnvinfer1_1_1_i_network_definition.html#a12b4eb2416951d1f575d3fc263395bb9
- https://docs.nvidia.com/deeplearning/sdk/tensorrt-archived/tensorrt-601/tensorrt-api/c_api/classnvinfer1_1_1_i_resize_layer.html
- https://pytorch.org/docs/stable/nn.functional.html#torch.nn.functional.interpolate
- https://github.com/pytorch/pytorch/blob/12fb8148e48d3e39d16832a84ac4b59182a00c4e/aten/src/ATen/native/native_functions.yaml#L6159
|
1.0
|
Upsample Support Tracker - Need to support:
- [x] Nearest Neighbor
- [x] Linear
- [x] Bilinear
- [x] Trilinear
- [ ] Bicubic
- [ ] Area
Relevant Documentation:
- https://docs.nvidia.com/deeplearning/sdk/tensorrt-archived/tensorrt-601/tensorrt-api/c_api/classnvinfer1_1_1_i_network_definition.html#a12b4eb2416951d1f575d3fc263395bb9
- https://docs.nvidia.com/deeplearning/sdk/tensorrt-archived/tensorrt-601/tensorrt-api/c_api/classnvinfer1_1_1_i_resize_layer.html
- https://pytorch.org/docs/stable/nn.functional.html#torch.nn.functional.interpolate
- https://github.com/pytorch/pytorch/blob/12fb8148e48d3e39d16832a84ac4b59182a00c4e/aten/src/ATen/native/native_functions.yaml#L6159
|
priority
|
upsample support tracker need to support nearest neighbor linear bilinear trilinear bicubic area relevant documentation
| 1
|
651,699
| 21,485,436,885
|
IssuesEvent
|
2022-04-26 22:36:07
|
ProjectG-Plugins/CrossplatForms
|
https://api.github.com/repos/ProjectG-Plugins/CrossplatForms
|
opened
|
Convert configs from GeyserHub
|
enhancement priority: high
|
### What feature do you want to see added?
Automatically convert configs from GeyserHub or a command to convert the file.
If anyone is interested in attempting this you'll need to learn or know how to use Configurate's Transformations (see [1](https://github.com/SpongePowered/Configurate/wiki/Transformations-and-Visitors) and [2](https://github.com/SpongePowered/Configurate/blob/master/examples/src/main/java/org/spongepowered/configurate/examples/Transformations.java)). And everything that GeyserHub and CrossplatForms has in common will have to be translated. Start with [MenuConfig](https://github.com/ProjectG-Plugins/CrossplatForms/blob/main/core/src/main/java/dev/projectg/crossplatforms/interfacing/java/MenuConfig.java) and [FormConfig](https://github.com/ProjectG-Plugins/CrossplatForms/blob/main/core/src/main/java/dev/projectg/crossplatforms/interfacing/bedrock/FormConfig.java) and traverse all the fields.
### Are there any alternatives?
Convert it by hand.
|
1.0
|
Convert configs from GeyserHub - ### What feature do you want to see added?
Automatically convert configs from GeyserHub or a command to convert the file.
If anyone is interested in attempting this you'll need to learn or know how to use Configurate's Transformations (see [1](https://github.com/SpongePowered/Configurate/wiki/Transformations-and-Visitors) and [2](https://github.com/SpongePowered/Configurate/blob/master/examples/src/main/java/org/spongepowered/configurate/examples/Transformations.java)). And everything that GeyserHub and CrossplatForms has in common will have to be translated. Start with [MenuConfig](https://github.com/ProjectG-Plugins/CrossplatForms/blob/main/core/src/main/java/dev/projectg/crossplatforms/interfacing/java/MenuConfig.java) and [FormConfig](https://github.com/ProjectG-Plugins/CrossplatForms/blob/main/core/src/main/java/dev/projectg/crossplatforms/interfacing/bedrock/FormConfig.java) and traverse all the fields.
### Are there any alternatives?
Convert it by hand.
|
priority
|
convert configs from geyserhub what feature do you want to see added automatically convert configs from geyserhub or a command to convert the file if anyone is interested in attempting this you ll need to learn or know how to use configurate s transformations see and and everything that geyserhub and crossplatforms has in common will have to be translated start with and and traverse all the fields are there any alternatives convert it by hand
| 1
|
245,564
| 7,887,797,783
|
IssuesEvent
|
2018-06-27 19:44:47
|
hassio-addons/addon-tasmoadmin
|
https://api.github.com/repos/hassio-addons/addon-tasmoadmin
|
closed
|
update error when flashing
|
Closed: Done Priority: High Type: Maintaince potential-duplicate
|
# Problem/Motivation
> when updating the sonoff device it comes with this error
## Expected behavior
> To update the software to the latest Tasmoa software
## Actual behavior
> I do get these failures:
[10-51-2018 14:46:55][GLOBAAL] Start update proces
[10-51-2018 14:46:55][ID-1][STAP-1][GLOBAAL] Start Stap 1
[10-51-2018 14:46:55][ID-1][STAP-1][CONTROLEER] Controleer verbinding | PROBEER => 1
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] FOUT: Apparaat heeft niet gereageerd! | MSG => JSON FOUT => 4: Syntax error
Kopieer de hele foutmelding en plak deze in een nieuwe bevinding op GitHUB. Op de een of andere manier gereageerde de Tasmota Firmware met een onjuiste JSON string, welke verwerkt dient te worden in TasmoAdmin.
JSON Antwoord => Status, Data Size 1, Data 213:46:56 RSL: Group 0, Index 1, Command STATUS, Data 2{"StatusFWR":{"Version":"5.10.0","BuildDateTime":"2017-12-29T11:40:24","Boot":4,"Core":"2_3_0","SDK":"1.5.3(aec24ac9)"}}
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] Controleer verbinding | PROBEER => 2
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] FOUT: Apparaat heeft niet gereageerd! | MSG => JSON FOUT => 4: Syntax error
Kopieer de hele foutmelding en plak deze in een nieuwe bevinding op GitHUB. Op de een of andere manier gereageerde de Tasmota Firmware met een onjuiste JSON string, welke verwerkt dient te worden in TasmoAdmin.
JSON Antwoord => Status, Data Size 1, Data 213:46:56 RSL: Group 0, Index 1, Command STATUS, Data 2{"StatusFWR":{"Version":"5.10.0","BuildDateTime":"2017-12-29T11:40:24","Boot":4,"Core":"2_3_0","SDK":"1.5.3(aec24ac9)"}}
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] Controleer verbinding | PROBEER => 3
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] FOUT: Apparaat heeft niet gereageerd! | MSG => JSON FOUT => 4: Syntax error
Kopieer de hele foutmelding en plak deze in een nieuwe bevinding op GitHUB. Op de een of andere manier gereageerde de Tasmota Firmware met een onjuiste JSON string, welke verwerkt dient te worden in TasmoAdmin.
JSON Antwoord => Status, Data Size 1, Data 213:46:56 RSL: Group 0, Index 1, Command STATUS, Data 2{"StatusFWR":{"Version":"5.10.0","BuildDateTime":"2017-12-29T11:40:24","Boot":4,"Core":"2_3_0","SDK":"1.5.3(aec24ac9)"}}
## Steps to reproduce
> First update in second dropdown menu of Tasmoadmin page. Then select automatic update, select the device and update, now this error is coming
|
1.0
|
update error when flashing - # Problem/Motivation
> when updating the sonoff device it comes with this error
## Expected behavior
> To update the software to the latest Tasmoa software
## Actual behavior
> I do get these failures:
[10-51-2018 14:46:55][GLOBAAL] Start update proces
[10-51-2018 14:46:55][ID-1][STAP-1][GLOBAAL] Start Stap 1
[10-51-2018 14:46:55][ID-1][STAP-1][CONTROLEER] Controleer verbinding | PROBEER => 1
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] FOUT: Apparaat heeft niet gereageerd! | MSG => JSON FOUT => 4: Syntax error
Kopieer de hele foutmelding en plak deze in een nieuwe bevinding op GitHUB. Op de een of andere manier gereageerde de Tasmota Firmware met een onjuiste JSON string, welke verwerkt dient te worden in TasmoAdmin.
JSON Antwoord => Status, Data Size 1, Data 213:46:56 RSL: Group 0, Index 1, Command STATUS, Data 2{"StatusFWR":{"Version":"5.10.0","BuildDateTime":"2017-12-29T11:40:24","Boot":4,"Core":"2_3_0","SDK":"1.5.3(aec24ac9)"}}
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] Controleer verbinding | PROBEER => 2
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] FOUT: Apparaat heeft niet gereageerd! | MSG => JSON FOUT => 4: Syntax error
Kopieer de hele foutmelding en plak deze in een nieuwe bevinding op GitHUB. Op de een of andere manier gereageerde de Tasmota Firmware met een onjuiste JSON string, welke verwerkt dient te worden in TasmoAdmin.
JSON Antwoord => Status, Data Size 1, Data 213:46:56 RSL: Group 0, Index 1, Command STATUS, Data 2{"StatusFWR":{"Version":"5.10.0","BuildDateTime":"2017-12-29T11:40:24","Boot":4,"Core":"2_3_0","SDK":"1.5.3(aec24ac9)"}}
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] Controleer verbinding | PROBEER => 3
[10-51-2018 14:46:56][ID-1][STAP-1][CONTROLEER] FOUT: Apparaat heeft niet gereageerd! | MSG => JSON FOUT => 4: Syntax error
Kopieer de hele foutmelding en plak deze in een nieuwe bevinding op GitHUB. Op de een of andere manier gereageerde de Tasmota Firmware met een onjuiste JSON string, welke verwerkt dient te worden in TasmoAdmin.
JSON Antwoord => Status, Data Size 1, Data 213:46:56 RSL: Group 0, Index 1, Command STATUS, Data 2{"StatusFWR":{"Version":"5.10.0","BuildDateTime":"2017-12-29T11:40:24","Boot":4,"Core":"2_3_0","SDK":"1.5.3(aec24ac9)"}}
## Steps to reproduce
> First update in second dropdown menu of Tasmoadmin page. Then select automatic update, select the device and update, now this error is coming
|
priority
|
update error when flashing problem motivation when updating the sonoff device it comes with this error expected behavior to update the software to the latest tasmoa software actual behavior i do get these failures start update proces start stap controleer verbinding probeer fout apparaat heeft niet gereageerd msg json fout syntax error kopieer de hele foutmelding en plak deze in een nieuwe bevinding op github op de een of andere manier gereageerde de tasmota firmware met een onjuiste json string welke verwerkt dient te worden in tasmoadmin json antwoord status data size data rsl group index command status data statusfwr version builddatetime boot core sdk controleer verbinding probeer fout apparaat heeft niet gereageerd msg json fout syntax error kopieer de hele foutmelding en plak deze in een nieuwe bevinding op github op de een of andere manier gereageerde de tasmota firmware met een onjuiste json string welke verwerkt dient te worden in tasmoadmin json antwoord status data size data rsl group index command status data statusfwr version builddatetime boot core sdk controleer verbinding probeer fout apparaat heeft niet gereageerd msg json fout syntax error kopieer de hele foutmelding en plak deze in een nieuwe bevinding op github op de een of andere manier gereageerde de tasmota firmware met een onjuiste json string welke verwerkt dient te worden in tasmoadmin json antwoord status data size data rsl group index command status data statusfwr version builddatetime boot core sdk steps to reproduce first update in second dropdown menu of tasmoadmin page then select automatic update select the device and update now this error is coming
| 1
|
536,147
| 15,704,989,228
|
IssuesEvent
|
2021-03-26 15:37:30
|
sopra-fs21-group-09/sopra-fs21-group-09-client
|
https://api.github.com/repos/sopra-fs21-group-09/sopra-fs21-group-09-client
|
opened
|
Joining private group requires password
|
high priority task
|
This is part of User story #16 and #7
Password is set in Create Group
Estimate: 4h
|
1.0
|
Joining private group requires password - This is part of User story #16 and #7
Password is set in Create Group
Estimate: 4h
|
priority
|
joining private group requires password this is part of user story and password is set in create group estimate
| 1
|
501,785
| 14,533,473,925
|
IssuesEvent
|
2020-12-15 00:39:23
|
jamiedavenport/nauth0
|
https://api.github.com/repos/jamiedavenport/nauth0
|
opened
|
Security
|
priority/high scope/client scope/server
|
Because it's important!
Tasks
- [ ] Organise Pen Test
- [ ] Add tooling like Snyk
- [ ] Add a security vulnerability reporting section to the README
|
1.0
|
Security - Because it's important!
Tasks
- [ ] Organise Pen Test
- [ ] Add tooling like Snyk
- [ ] Add a security vulnerability reporting section to the README
|
priority
|
security because it s important tasks organise pen test add tooling like snyk add a security vulnerability reporting section to the readme
| 1
|
123,532
| 4,864,510,715
|
IssuesEvent
|
2016-11-14 18:12:17
|
choderalab/yank
|
https://api.github.com/repos/choderalab/yank
|
closed
|
Update docs to make mpirun across multiple GPUs clearer
|
cleanup Priority high
|
It would help to update the docs to clarify our strategy for using multiple GPUs (especially when distributed across different nodes) in light of #269.
|
1.0
|
Update docs to make mpirun across multiple GPUs clearer - It would help to update the docs to clarify our strategy for using multiple GPUs (especially when distributed across different nodes) in light of #269.
|
priority
|
update docs to make mpirun across multiple gpus clearer it would help to update the docs to clarify our strategy for using multiple gpus especially when distributed across different nodes in light of
| 1
|
488,071
| 14,074,111,141
|
IssuesEvent
|
2020-11-04 06:38:33
|
OpenSRP/opensrp-client-chw
|
https://api.github.com/repos/OpenSRP/opensrp-client-chw
|
opened
|
Bug causing vaccines to be re-recorded
|
high priority
|
With the vaccines currently recorded (all up to and incl. 9 months, except Penta3), then changing date to 2 Dec and recording a visit again, it asks me to record Penta3 (which is correct) as well as Measles1 and Yellow Fever even though those have already been recorded.
Similar issue happened for other children as well: when a previous vaccine had not been recorded yet and is still due (e.g. 6 weeks dose), then the user is prompted to record that vaccine and all following vaccines, independent of them already having been recorded.
User: KP1, Pswd: Password1, Childvisit Family, child: Child One
|
1.0
|
Bug causing vaccines to be re-recorded - With the vaccines currently recorded (all up to and incl. 9 months, except Penta3), then changing date to 2 Dec and recording a visit again, it asks me to record Penta3 (which is correct) as well as Measles1 and Yellow Fever even though those have already been recorded.
Similar issue happened for other children as well: when a previous vaccine had not been recorded yet and is still due (e.g. 6 weeks dose), then the user is prompted to record that vaccine and all following vaccines, independent of them already having been recorded.
User: KP1, Pswd: Password1, Childvisit Family, child: Child One
|
priority
|
bug causing vaccines to be re recorded with the vaccines currently recorded all up to and incl months except then changing date to dec and recording a visit again it asks me to record which is correct as well as and yellow fever even though those have already been recorded similar issue happened for other children as well when a previous vaccine had not been recorded yet and is still due e g weeks dose then the user is prompted to record that vaccine and all following vaccines independent of them already having been recorded user pswd childvisit family child child one
| 1
|
273,022
| 8,519,703,151
|
IssuesEvent
|
2018-11-01 15:21:25
|
juju/juju-gui
|
https://api.github.com/repos/juju/juju-gui
|
closed
|
juju shell wraps onto the same line
|
Investigation: Needed bug high priority
|
If your shell text wraps to the next line it will wrap to the same line and overwrite whatever you'd just typed.
<img width="1167" alt="screenshot 2018-10-29 at 22 07 13" src="https://user-images.githubusercontent.com/103544/47683270-02fe5f80-dbc7-11e8-873d-f855e7a7a67e.png">
|
1.0
|
juju shell wraps onto the same line - If your shell text wraps to the next line it will wrap to the same line and overwrite whatever you'd just typed.
<img width="1167" alt="screenshot 2018-10-29 at 22 07 13" src="https://user-images.githubusercontent.com/103544/47683270-02fe5f80-dbc7-11e8-873d-f855e7a7a67e.png">
|
priority
|
juju shell wraps onto the same line if your shell text wraps to the next line it will wrap to the same line and overwrite whatever you d just typed img width alt screenshot at src
| 1
|
193,979
| 6,890,183,973
|
IssuesEvent
|
2017-11-22 13:09:23
|
metasfresh/metasfresh
|
https://api.github.com/repos/metasfresh/metasfresh
|
closed
|
Manufacturing Order add Filter for Planstatus
|
branch:master priority:high type:enhancement
|
### Is this a bug or feature request?
Feature Request
### What is the current behavior?
Currently, the Planstatus is not in Filter criteria in Manufacturing Order.
#### Which are the steps to reproduce?
Open and see.
### What is the expected or desired behavior?
Add the Planstatus to Manufacturing Order Filter criteria.
|
1.0
|
Manufacturing Order add Filter for Planstatus - ### Is this a bug or feature request?
Feature Request
### What is the current behavior?
Currently, the Planstatus is not in Filter criteria in Manufacturing Order.
#### Which are the steps to reproduce?
Open and see.
### What is the expected or desired behavior?
Add the Planstatus to Manufacturing Order Filter criteria.
|
priority
|
manufacturing order add filter for planstatus is this a bug or feature request feature request what is the current behavior currently the planstatus is not in filter criteria in manufacturing order which are the steps to reproduce open and see what is the expected or desired behavior add the planstatus to manufacturing order filter criteria
| 1
|
798,744
| 28,293,393,624
|
IssuesEvent
|
2023-04-09 13:51:08
|
bounswe/bounswe2023group6
|
https://api.github.com/repos/bounswe/bounswe2023group6
|
opened
|
Create Sequence Diagrams for Reporting Content
|
priority: high status: inprogress
|
### Problem
I will be creating a sequence diagram to help visualize and understand the interactions and data flow within the system. This diagram will focus on the reporting content functionality, detailing how users can report any content for any reason they state.
### Solution
_No response_
### Documentation
_No response_
### Additional notes
_No response_
### Reviewers
_No response_
### Deadline
10.04.2023
|
1.0
|
Create Sequence Diagrams for Reporting Content - ### Problem
I will be creating a sequence diagram to help visualize and understand the interactions and data flow within the system. This diagram will focus on the reporting content functionality, detailing how users can report any content for any reason they state.
### Solution
_No response_
### Documentation
_No response_
### Additional notes
_No response_
### Reviewers
_No response_
### Deadline
10.04.2023
|
priority
|
create sequence diagrams for reporting content problem i will be creating a sequence diagram to help visualize and understand the interactions and data flow within the system this diagram will focus on the reporting content functionality detailing how users can report any content for any reason they state solution no response documentation no response additional notes no response reviewers no response deadline
| 1
|
331,686
| 10,075,924,356
|
IssuesEvent
|
2019-07-24 15:11:13
|
AnSyn/ansyn
|
https://api.github.com/repos/AnSyn/ansyn
|
closed
|
(bug) - (Chrome 44) The component did not open with 'chrome 44'
|
Bug Priority: High Severity: Critical
|
**Steps to reproduce**
* Enter the component address (https://ansyn.github.io/angular-ansyn-implementation/) in the URL line and enter
**expected**
* The component will open
**Actually**
* The component did not open

|
1.0
|
(bug) - (Chrome 44) The component did not open with 'chrome 44' - **Steps to reproduce**
* Enter the component address (https://ansyn.github.io/angular-ansyn-implementation/) in the URL line and enter
**expected**
* The component will open
**Actually**
* The component did not open

|
priority
|
bug chrome the component did not open with chrome steps to reproduce enter the component address in the url line and enter expected the component will open actually the component did not open
| 1
|
422,598
| 12,280,691,886
|
IssuesEvent
|
2020-05-08 14:33:21
|
codeforbtv/green-up-app
|
https://api.github.com/repos/codeforbtv/green-up-app
|
reopened
|
Town info for Free Supplies is not displaying
|
Priority: High Usability
|
The map shows where to pick up the supplies, but the descriptive text regarding when, and more specifics, which is in the Admin Tool, does not appear in the app.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Free Supplies
2. Type in Addison
3. Notice that the Information field is blank
4. This field does have data in the admin tool
**Expected behavior**
The field should contain the data from the Admin Tool
**Screenshots**
If applicable, add screenshots to help explain your problem.
App Screen

Admin Tool Screen

**App Version 5.0.22
**Smartphone (please complete the following information):**
- Device: Motorola Force Z2
- OS: Android 9
- Browser Chrome
- Version ?
**Phone Emulators**
- OS: Android
- Version ?
**Additional context**
Add any other context about the problem here.
|
1.0
|
Town info for Free Supplies is not displaying - The map shows where to pick up the supplies, but the descriptive text regarding when, and more specifics, which is in the Admin Tool, does not appear in the app.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Free Supplies
2. Type in Addison
3. Notice that the Information field is blank
4. This field does have data in the admin tool
**Expected behavior**
The field should contain the data from the Admin Tool
**Screenshots**
If applicable, add screenshots to help explain your problem.
App Screen

Admin Tool Screen

**App Version 5.0.22
**Smartphone (please complete the following information):**
- Device: Motorola Force Z2
- OS: Android 9
- Browser Chrome
- Version ?
**Phone Emulators**
- OS: Android
- Version ?
**Additional context**
Add any other context about the problem here.
|
priority
|
town info for free supplies is not displaying the map shows where to pick up the supplies but the descriptive text regarding when and more specifics which is in the admin tool does not appear in the app to reproduce steps to reproduce the behavior go to free supplies type in addison notice that the information field is blank this field does have data in the admin tool expected behavior the field should contain the data from the admin tool screenshots if applicable add screenshots to help explain your problem app screen admin tool screen app version smartphone please complete the following information device motorola force os android browser chrome version phone emulators os android version additional context add any other context about the problem here
| 1
|
348,848
| 10,453,563,253
|
IssuesEvent
|
2019-09-19 16:53:39
|
USDAForestService/fs-open-forest-platform
|
https://api.github.com/repos/USDAForestService/fs-open-forest-platform
|
opened
|
As a WILLAMETTE admin I want to see the correct Rules and Guidelines info on the rules and guidelines page.
|
Christmas Trees high priority
|
## Notes
As a follow up to story #800 (per POC review) the information on the rules and guidelines page does not match the updated content.
## Acceptance Criteria
- [ ] The Information Page rules and guidelines match the Rules and Guidelines page
- [ ] The Rules and Guidelines page that is emailed also matches accordingly.
## Tasks
- [ ] Compare pages
*Implement content (under Christmas tree cutting section) as follows*
- [ ] Only cut trees within the national forest boundary.
- [ ] Five-needle pines (sugar and white pines) cannot be cut.
- [ ] Choose a tree from a dense forested area.
- [ ] Choose a tree that has another three within 8 feet of the one your cutting.
- [ ] You must leave a stump of 6 inches in height or less.
- [ ] Your tree must be less than 12 feet in height.
- [ ] Tree-topping is prohibited. Cut down the whole tree.
- [ ] Cut the leftover branches from the stump and scatter them.
- [ ] Keep road ditches functioning and debris off of, and away from, roadways (at least 50 feet).
*Implement content (under Christmas tree cutting/Do not cut trees within: section) as follows*
- [ ] 50 feet of trails and paved roads,
- [ ] 300 feet of campgrounds,
- [ ] 100 feet of streams,
- [ ] Areas posted "Christmas Tree Cutting Prohibited",
- [ ] Botanical areas and fenced plantations,
- [ ] Research natural areas,
- [ ] Scenic areas,
- [ ] Congressionally designated Wilderness Areas,
- [ ] Areas with rare, threatened or endangered plants.
- [ ] PO approved
## Definition of Done
- [ ] Pull requests meet technical definition of done
- [ ] Compare finished design with mockup
- [ ] Usability tested
|
1.0
|
As a WILLAMETTE admin I want to see the correct Rules and Guidelines info on the rules and guidelines page. - ## Notes
As a follow up to story #800 (per POC review) the information on the rules and guidelines page does not match the updated content.
## Acceptance Criteria
- [ ] The Information Page rules and guidelines match the Rules and Guidelines page
- [ ] The Rules and Guidelines page that is emailed also matches accordingly.
## Tasks
- [ ] Compare pages
*Implement content (under Christmas tree cutting section) as follows*
- [ ] Only cut trees within the national forest boundary.
- [ ] Five-needle pines (sugar and white pines) cannot be cut.
- [ ] Choose a tree from a dense forested area.
- [ ] Choose a tree that has another three within 8 feet of the one your cutting.
- [ ] You must leave a stump of 6 inches in height or less.
- [ ] Your tree must be less than 12 feet in height.
- [ ] Tree-topping is prohibited. Cut down the whole tree.
- [ ] Cut the leftover branches from the stump and scatter them.
- [ ] Keep road ditches functioning and debris off of, and away from, roadways (at least 50 feet).
*Implement content (under Christmas tree cutting/Do not cut trees within: section) as follows*
- [ ] 50 feet of trails and paved roads,
- [ ] 300 feet of campgrounds,
- [ ] 100 feet of streams,
- [ ] Areas posted "Christmas Tree Cutting Prohibited",
- [ ] Botanical areas and fenced plantations,
- [ ] Research natural areas,
- [ ] Scenic areas,
- [ ] Congressionally designated Wilderness Areas,
- [ ] Areas with rare, threatened or endangered plants.
- [ ] PO approved
## Definition of Done
- [ ] Pull requests meet technical definition of done
- [ ] Compare finished design with mockup
- [ ] Usability tested
|
priority
|
as a willamette admin i want to see the correct rules and guidelines info on the rules and guidelines page notes as a follow up to story per poc review the information on the rules and guidelines page does not match the updated content acceptance criteria the information page rules and guidelines match the rules and guidelines page the rules and guidelines page that is emailed also matches accordingly tasks compare pages implement content under christmas tree cutting section as follows only cut trees within the national forest boundary five needle pines sugar and white pines cannot be cut choose a tree from a dense forested area choose a tree that has another three within feet of the one your cutting you must leave a stump of inches in height or less your tree must be less than feet in height tree topping is prohibited cut down the whole tree cut the leftover branches from the stump and scatter them keep road ditches functioning and debris off of and away from roadways at least feet implement content under christmas tree cutting do not cut trees within section as follows feet of trails and paved roads feet of campgrounds feet of streams areas posted christmas tree cutting prohibited botanical areas and fenced plantations research natural areas scenic areas congressionally designated wilderness areas areas with rare threatened or endangered plants po approved definition of done pull requests meet technical definition of done compare finished design with mockup usability tested
| 1
|
541,515
| 15,828,245,897
|
IssuesEvent
|
2021-04-06 09:38:59
|
sopra-fs21-group-13/Server
|
https://api.github.com/repos/sopra-fs21-group-13/Server
|
closed
|
Flashcard Set Creation
|
high priority task
|
Time: 3h
Description:
First create Object Flashcard itself
- Controller -> add PostMapping for creating Flashcard set
- Service -> create method to check if stackName already exists
- Repository -> enable findByID /Username/Password
This task is part of user story #4
|
1.0
|
Flashcard Set Creation - Time: 3h
Description:
First create Object Flashcard itself
- Controller -> add PostMapping for creating Flashcard set
- Service -> create method to check if stackName already exists
- Repository -> enable findByID /Username/Password
This task is part of user story #4
|
priority
|
flashcard set creation time description first create object flashcard itself controller add postmapping for creating flashcard set service create method to check if stackname already exists repository enable findbyid username password this task is part of user story
| 1
|
666,537
| 22,358,845,390
|
IssuesEvent
|
2022-06-15 18:17:34
|
awsdocs/aws-doc-sdk-examples
|
https://api.github.com/repos/awsdocs/aws-doc-sdk-examples
|
closed
|
SOS: make API reference a link on Actions page
|
type/sos priority/high
|
We currently put emphasis text on the actions page that says something like "_see the [Service] API Reference._"
Here's an example page: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/service_code_examples_actions.html
It would be nice if this were a link.
I looked into this before and decided against it because the best way I could find is to build (and maintain) a lookup table of API reference URLs per service, but on further discussion I think we should do this (still with a lookup table), but only sparsely populate the table as needed. The code would then render a link if a URL is specified, otherwise continue as now with emphasis text.
Lookup would be in services.yaml, something like:
```
dynamodb:
long: "&DDBlong;"
short: "&DDB;"
sort: "DynamoDB"
version: dynamodb-2012-08-10
api_ref: "amazondynamodb/latest/APIReference/Welcome.html"
```
|
1.0
|
SOS: make API reference a link on Actions page - We currently put emphasis text on the actions page that says something like "_see the [Service] API Reference._"
Here's an example page: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/service_code_examples_actions.html
It would be nice if this were a link.
I looked into this before and decided against it because the best way I could find is to build (and maintain) a lookup table of API reference URLs per service, but on further discussion I think we should do this (still with a lookup table), but only sparsely populate the table as needed. The code would then render a link if a URL is specified, otherwise continue as now with emphasis text.
Lookup would be in services.yaml, something like:
```
dynamodb:
long: "&DDBlong;"
short: "&DDB;"
sort: "DynamoDB"
version: dynamodb-2012-08-10
api_ref: "amazondynamodb/latest/APIReference/Welcome.html"
```
|
priority
|
sos make api reference a link on actions page we currently put emphasis text on the actions page that says something like see the api reference here s an example page it would be nice if this were a link i looked into this before and decided against it because the best way i could find is to build and maintain a lookup table of api reference urls per service but on further discussion i think we should do this still with a lookup table but only sparsely populate the table as needed the code would then render a link if a url is specified otherwise continue as now with emphasis text lookup would be in services yaml something like dynamodb long ddblong short ddb sort dynamodb version dynamodb api ref amazondynamodb latest apireference welcome html
| 1
|
411,580
| 12,026,174,451
|
IssuesEvent
|
2020-04-12 12:59:44
|
AY1920S2-CS2103T-W17-2/main
|
https://api.github.com/repos/AY1920S2-CS2103T-W17-2/main
|
closed
|
Finish up Markdown to HTML compiler spec
|
priority.High type.Enhancement
|
Part of #162
To finish up, let's support:
- [Lists](https://github.github.com/gfm/#list) and [List items](https://github.github.com/gfm/#list-items) (ordered lists)
- [Emphasis and strong emphasis](https://github.github.com/gfm/#emphasis-and-strong-emphasis) (Simplified)
- [Strikethrough](https://github.github.com/gfm/#strikethrough-extension-)
If possible, also support:
- Paragraph continuation lines
- List continuation
|
1.0
|
Finish up Markdown to HTML compiler spec - Part of #162
To finish up, let's support:
- [Lists](https://github.github.com/gfm/#list) and [List items](https://github.github.com/gfm/#list-items) (ordered lists)
- [Emphasis and strong emphasis](https://github.github.com/gfm/#emphasis-and-strong-emphasis) (Simplified)
- [Strikethrough](https://github.github.com/gfm/#strikethrough-extension-)
If possible, also support:
- Paragraph continuation lines
- List continuation
|
priority
|
finish up markdown to html compiler spec part of to finish up let s support and ordered lists simplified if possible also support paragraph continuation lines list continuation
| 1
|
618,485
| 19,471,608,251
|
IssuesEvent
|
2021-12-24 02:45:28
|
TencentBlueKing/bk-nodeman
|
https://api.github.com/repos/TencentBlueKing/bk-nodeman
|
closed
|
[OPTIMIZATION] 忽略无效拓扑节点
|
kind/optimization version/V2.1.X module/backend priority/high
|
**你想要什么功能**
业务拓扑变更后,订阅范围内无效的拓扑应该被忽略
apps/backend/subscription/commons.py get_host_by_inst
```
{
"result": false,
"code": 3800003,
"data": [
[],
{
"page": {
"start": 0,
"limit": 1
},
"fields": [
"bk_host_innerip",
"bk_bak_operator",
"bk_os_type",
"bk_os_name",
"bk_cpu_module",
"bk_host_outerip",
"bk_cloud_id",
"bk_os_bit",
"bk_host_name",
"bk_supplier_account",
"operator",
"bk_host_id"
],
"bk_biz_id": 7,
"bk_obj_id": "test",
"bk_inst_id": 108
}
],
"message": "{'result': False, 'code': 1199006, 'data': None, 'message': \"'bk_obj_id' 数据参数校验不通过\", 'permission': None, 'request_id': 'b0d925587b1b4917990415b86161fd1c'}(3800003)",
"errors": null
}
```
|
1.0
|
[OPTIMIZATION] 忽略无效拓扑节点 - **你想要什么功能**
业务拓扑变更后,订阅范围内无效的拓扑应该被忽略
apps/backend/subscription/commons.py get_host_by_inst
```
{
"result": false,
"code": 3800003,
"data": [
[],
{
"page": {
"start": 0,
"limit": 1
},
"fields": [
"bk_host_innerip",
"bk_bak_operator",
"bk_os_type",
"bk_os_name",
"bk_cpu_module",
"bk_host_outerip",
"bk_cloud_id",
"bk_os_bit",
"bk_host_name",
"bk_supplier_account",
"operator",
"bk_host_id"
],
"bk_biz_id": 7,
"bk_obj_id": "test",
"bk_inst_id": 108
}
],
"message": "{'result': False, 'code': 1199006, 'data': None, 'message': \"'bk_obj_id' 数据参数校验不通过\", 'permission': None, 'request_id': 'b0d925587b1b4917990415b86161fd1c'}(3800003)",
"errors": null
}
```
|
priority
|
忽略无效拓扑节点 你想要什么功能 业务拓扑变更后,订阅范围内无效的拓扑应该被忽略 apps backend subscription commons py get host by inst result false code data page start limit fields bk host innerip bk bak operator bk os type bk os name bk cpu module bk host outerip bk cloud id bk os bit bk host name bk supplier account operator bk host id bk biz id bk obj id test bk inst id message result false code data none message bk obj id 数据参数校验不通过 permission none request id ( ) errors null
| 1
|
482,798
| 13,913,476,357
|
IssuesEvent
|
2020-10-20 20:30:19
|
ballerina-platform/ballerina-lang
|
https://api.github.com/repos/ballerina-platform/ballerina-lang
|
closed
|
Listener references should be allowed in isolated functions only if the type is a subtype of `readonly`
|
Points/0.5 Priority/High Team/CompilerFE Type/Bug
|
**Description:**
$title.
**Steps to reproduce:**
The following should result in a compilation error.
```ballerina
listener Listener ln = new;
public isolated function main() {
Listener ln2 = ln;
}
class Listener {
int i = 1;
public isolated function __attach(service s, string? name = ()) returns error? {
}
public isolated function __detach(service s) returns error? {
}
public isolated function __start() returns error? {
}
public isolated function __gracefulStop() returns error? {
}
public isolated function __immediateStop() returns error? {
}
}
```
The same should happen for services once we allow `readonly` with services.
**Affected Versions:**
Current master from which slp4 will be built.
|
1.0
|
Listener references should be allowed in isolated functions only if the type is a subtype of `readonly` - **Description:**
$title.
**Steps to reproduce:**
The following should result in a compilation error.
```ballerina
listener Listener ln = new;
public isolated function main() {
Listener ln2 = ln;
}
class Listener {
int i = 1;
public isolated function __attach(service s, string? name = ()) returns error? {
}
public isolated function __detach(service s) returns error? {
}
public isolated function __start() returns error? {
}
public isolated function __gracefulStop() returns error? {
}
public isolated function __immediateStop() returns error? {
}
}
```
The same should happen for services once we allow `readonly` with services.
**Affected Versions:**
Current master from which slp4 will be built.
|
priority
|
listener references should be allowed in isolated functions only if the type is a subtype of readonly description title steps to reproduce the following should result in a compilation error ballerina listener listener ln new public isolated function main listener ln class listener int i public isolated function attach service s string name returns error public isolated function detach service s returns error public isolated function start returns error public isolated function gracefulstop returns error public isolated function immediatestop returns error the same should happen for services once we allow readonly with services affected versions current master from which will be built
| 1
|
621,951
| 19,601,605,415
|
IssuesEvent
|
2022-01-06 02:25:21
|
WilderForge/WilderForge
|
https://api.github.com/repos/WilderForge/WilderForge
|
closed
|
Incursion Events
|
Category - Enhancement Priority - High ⇑
|
Sub issue of #25
- [x] OverlandMapGenerationEvent
- [x] IncursionCreationEvent
- [x] Pre
- [x] Cancellable
- [x] Post
- [x] IncursionRemovalEvent
- [ ] ~~IncursionGoalChangeEvent~~
- [ ] ~~IncursionMoveEvent~~
- [ ] ~~Pre~~
- [ ] ~~Cancellabe~~
- [ ] ~~Post~~
|
1.0
|
Incursion Events - Sub issue of #25
- [x] OverlandMapGenerationEvent
- [x] IncursionCreationEvent
- [x] Pre
- [x] Cancellable
- [x] Post
- [x] IncursionRemovalEvent
- [ ] ~~IncursionGoalChangeEvent~~
- [ ] ~~IncursionMoveEvent~~
- [ ] ~~Pre~~
- [ ] ~~Cancellabe~~
- [ ] ~~Post~~
|
priority
|
incursion events sub issue of overlandmapgenerationevent incursioncreationevent pre cancellable post incursionremovalevent incursiongoalchangeevent incursionmoveevent pre cancellabe post
| 1
|
731,012
| 25,198,209,929
|
IssuesEvent
|
2022-11-12 19:57:18
|
erohtar/Dasherr
|
https://api.github.com/repos/erohtar/Dasherr
|
closed
|
[Feature Request] Disable Glances?
|
priority_high
|
I don't run Glances, is there a way to disable the widget?
UPDATE: I ended up installing Glances and it seems handy although I still think the dashboard should be able to disable it.
|
1.0
|
[Feature Request] Disable Glances? - I don't run Glances, is there a way to disable the widget?
UPDATE: I ended up installing Glances and it seems handy although I still think the dashboard should be able to disable it.
|
priority
|
disable glances i don t run glances is there a way to disable the widget update i ended up installing glances and it seems handy although i still think the dashboard should be able to disable it
| 1
|
384,889
| 11,405,176,163
|
IssuesEvent
|
2020-01-31 11:26:44
|
kornia/kornia
|
https://api.github.com/repos/kornia/kornia
|
closed
|
[FEAT] Improve kornia.color
|
feature request high priority
|
I open this since we might want to implement the following operators in `kornia.color` module. The motivation is that torchvision only supports this for PIL images, we want to give support for torch.Tensor:
Assigned -> @priba
- [x] `kornia.color.adjust_brightness` https://github.com/arraiyopensource/kornia/pull/195
- [x] `kornia.color.adjust_contrast` [torchvision ref](https://pytorch.org/docs/stable/torchvision/transforms.html#torchvision.transforms.functional.adjust_contrast)
- [x] `kornia.color.adjust_hue` [torchvision ref](https://pytorch.org/docs/stable/torchvision/transforms.html#torchvision.transforms.functional.adjust_hue)
- [x] `kornia.color.adjust_saturation` [torchvision ref](https://pytorch.org/docs/stable/torchvision/transforms.html#torchvision.transforms.functional.adjust_saturation)
- [x] `kornia.color.adjust_gamma` [torchvision ref](https://pytorch.org/docs/stable/torchvision/transforms.html#torchvision.transforms.functional.adjust_gamma)
Extra:
- [ ] `kornia.color.zca_whitening` [numpy ref](https://github.com/mwv/zca/blob/master/zca/zca.py#L32)
|
1.0
|
[FEAT] Improve kornia.color - I open this since we might want to implement the following operators in `kornia.color` module. The motivation is that torchvision only supports this for PIL images, we want to give support for torch.Tensor:
Assigned -> @priba
- [x] `kornia.color.adjust_brightness` https://github.com/arraiyopensource/kornia/pull/195
- [x] `kornia.color.adjust_contrast` [torchvision ref](https://pytorch.org/docs/stable/torchvision/transforms.html#torchvision.transforms.functional.adjust_contrast)
- [x] `kornia.color.adjust_hue` [torchvision ref](https://pytorch.org/docs/stable/torchvision/transforms.html#torchvision.transforms.functional.adjust_hue)
- [x] `kornia.color.adjust_saturation` [torchvision ref](https://pytorch.org/docs/stable/torchvision/transforms.html#torchvision.transforms.functional.adjust_saturation)
- [x] `kornia.color.adjust_gamma` [torchvision ref](https://pytorch.org/docs/stable/torchvision/transforms.html#torchvision.transforms.functional.adjust_gamma)
Extra:
- [ ] `kornia.color.zca_whitening` [numpy ref](https://github.com/mwv/zca/blob/master/zca/zca.py#L32)
|
priority
|
improve kornia color i open this since we might want to implement the following operators in kornia color module the motivation is that torchvision only supports this for pil images we want to give support for torch tensor assigned priba kornia color adjust brightness kornia color adjust contrast kornia color adjust hue kornia color adjust saturation kornia color adjust gamma extra kornia color zca whitening
| 1
|
140,220
| 5,398,778,315
|
IssuesEvent
|
2017-02-27 17:45:28
|
chocolatey/choco
|
https://api.github.com/repos/chocolatey/choco
|
closed
|
Show download progress for the packages themselves
|
3 - Done Customer Enhancement Priority_HIGH
|
This is related to https://github.com/chocolatey/choco/issues/1095.
When packages are bigger than a certain size, Chocolatey should so the download progress for them. This is especially handy when the packages contain binaries and are bigger than 2MB.
This may be a duplicate of an already logged issue, but I was not able to find it.
|
1.0
|
Show download progress for the packages themselves - This is related to https://github.com/chocolatey/choco/issues/1095.
When packages are bigger than a certain size, Chocolatey should so the download progress for them. This is especially handy when the packages contain binaries and are bigger than 2MB.
This may be a duplicate of an already logged issue, but I was not able to find it.
|
priority
|
show download progress for the packages themselves this is related to when packages are bigger than a certain size chocolatey should so the download progress for them this is especially handy when the packages contain binaries and are bigger than this may be a duplicate of an already logged issue but i was not able to find it
| 1
|
259,774
| 8,199,784,932
|
IssuesEvent
|
2018-08-31 21:44:31
|
INCF/bids-validator
|
https://api.github.com/repos/INCF/bids-validator
|
closed
|
make sure that each _fieldmap.nii.gz is accompanied with a _magnitude.nii.gz file
|
enhancement fieldmaps help wanted priority:high
|
If not raise a warning.
|
1.0
|
make sure that each _fieldmap.nii.gz is accompanied with a _magnitude.nii.gz file - If not raise a warning.
|
priority
|
make sure that each fieldmap nii gz is accompanied with a magnitude nii gz file if not raise a warning
| 1
|
147,315
| 5,637,309,699
|
IssuesEvent
|
2017-04-06 08:50:20
|
mantidproject/mslice
|
https://api.github.com/repos/mantidproject/mslice
|
closed
|
Set E/Q mininum bin size
|
bug duplicate High priority
|
E/Q bins should not be set smaller than in original data.
At present they can be set arbitrarily small, which can lead to memory problems, and also means the represented data is not accurate, because bins which have been subdivided will appear as a pixel with counts in the centre and `NAN`s outside.
Ideally, `mslice` should snap to smallest bin in the data file.
|
1.0
|
Set E/Q mininum bin size - E/Q bins should not be set smaller than in original data.
At present they can be set arbitrarily small, which can lead to memory problems, and also means the represented data is not accurate, because bins which have been subdivided will appear as a pixel with counts in the centre and `NAN`s outside.
Ideally, `mslice` should snap to smallest bin in the data file.
|
priority
|
set e q mininum bin size e q bins should not be set smaller than in original data at present they can be set arbitrarily small which can lead to memory problems and also means the represented data is not accurate because bins which have been subdivided will appear as a pixel with counts in the centre and nan s outside ideally mslice should snap to smallest bin in the data file
| 1
|
537,834
| 15,755,185,810
|
IssuesEvent
|
2021-03-31 01:20:05
|
zulip/zulip
|
https://api.github.com/repos/zulip/zulip
|
opened
|
Improve perceived latency for sender when sending/editing a message in very large streams
|
area: compose area: message-editing priority: high
|
When sending messages to a stream with 15k+ subscribers, it can take 300ms between when the first user receives the message and the last does. It would be desirable for the sender to be "first in line" for this purpose, since the UX for the sender is not ideal while waiting for the message to send (especially with edits).
The logic for this system involves several `Set` data structures, starting with this part of `do_send_messages`:
```
user_ids = send_request.active_user_ids | set(user_flags.keys())
users = [
dict(
id=user_id,
flags=user_flags.get(user_id, []),
always_push_notify=(user_id in send_request.push_notify_user_ids),
stream_push_notify=(user_id in send_request.stream_push_user_ids),
stream_email_notify=(user_id in send_request.stream_email_user_ids),
wildcard_mention_notify=(user_id in send_request.wildcard_mention_user_ids),
)
for user_id in user_ids
]
send_event(send_request.realm, event, users)
```
That then runs to `zerver/tornado/events_queue.py`, and in particular `get_client_info_for_message_event` (and `process_message_event`, which actually does the work). I think if we do a bit of work to make sure the sender is first in the list sent from `do_send_messages` and then modify the Tornado code to use an OrderedDict or something (actually I think modern Python dicts all?) to avoid changing the iteration order, we can arrange it so that the order in the event sent from `do_send_messages` is also the processing order.
A fix should be testable by just adding `print(user_id)` type statements in `process_message_event` (with a bit of extra work to make sure `send_to_clients` doesn't break the ordering).
https://zulip.readthedocs.io/en/latest/subsystems/sending-messages.html has relevant background.
|
1.0
|
Improve perceived latency for sender when sending/editing a message in very large streams - When sending messages to a stream with 15k+ subscribers, it can take 300ms between when the first user receives the message and the last does. It would be desirable for the sender to be "first in line" for this purpose, since the UX for the sender is not ideal while waiting for the message to send (especially with edits).
The logic for this system involves several `Set` data structures, starting with this part of `do_send_messages`:
```
user_ids = send_request.active_user_ids | set(user_flags.keys())
users = [
dict(
id=user_id,
flags=user_flags.get(user_id, []),
always_push_notify=(user_id in send_request.push_notify_user_ids),
stream_push_notify=(user_id in send_request.stream_push_user_ids),
stream_email_notify=(user_id in send_request.stream_email_user_ids),
wildcard_mention_notify=(user_id in send_request.wildcard_mention_user_ids),
)
for user_id in user_ids
]
send_event(send_request.realm, event, users)
```
That then runs to `zerver/tornado/events_queue.py`, and in particular `get_client_info_for_message_event` (and `process_message_event`, which actually does the work). I think if we do a bit of work to make sure the sender is first in the list sent from `do_send_messages` and then modify the Tornado code to use an OrderedDict or something (actually I think modern Python dicts all?) to avoid changing the iteration order, we can arrange it so that the order in the event sent from `do_send_messages` is also the processing order.
A fix should be testable by just adding `print(user_id)` type statements in `process_message_event` (with a bit of extra work to make sure `send_to_clients` doesn't break the ordering).
https://zulip.readthedocs.io/en/latest/subsystems/sending-messages.html has relevant background.
|
priority
|
improve perceived latency for sender when sending editing a message in very large streams when sending messages to a stream with subscribers it can take between when the first user receives the message and the last does it would be desirable for the sender to be first in line for this purpose since the ux for the sender is not ideal while waiting for the message to send especially with edits the logic for this system involves several set data structures starting with this part of do send messages user ids send request active user ids set user flags keys users dict id user id flags user flags get user id always push notify user id in send request push notify user ids stream push notify user id in send request stream push user ids stream email notify user id in send request stream email user ids wildcard mention notify user id in send request wildcard mention user ids for user id in user ids send event send request realm event users that then runs to zerver tornado events queue py and in particular get client info for message event and process message event which actually does the work i think if we do a bit of work to make sure the sender is first in the list sent from do send messages and then modify the tornado code to use an ordereddict or something actually i think modern python dicts all to avoid changing the iteration order we can arrange it so that the order in the event sent from do send messages is also the processing order a fix should be testable by just adding print user id type statements in process message event with a bit of extra work to make sure send to clients doesn t break the ordering has relevant background
| 1
|
328,503
| 9,995,657,266
|
IssuesEvent
|
2019-07-11 20:50:57
|
ampproject/amp-wp
|
https://api.github.com/repos/ampproject/amp-wp
|
closed
|
Breaking editing experience for user role 'Author'
|
AMP Stories Sprint 10 Sprint 9 [Priority] High [Size] M [Type] Bug
|
Users with role of 'Author' seem unable to preview or publish stories. See snapshots for observed results.
<img width="1176" alt="Screen Shot 2019-06-26 at 11 59 44 AM" src="https://user-images.githubusercontent.com/506089/60150188-2dfa8b00-980a-11e9-90e6-8d8360718503.png">
<img width="1100" alt="Screen Shot 2019-06-26 at 11 59 52 AM" src="https://user-images.githubusercontent.com/506089/60150190-3357d580-980a-11e9-836b-1c615e4014c8.png">
|
1.0
|
Breaking editing experience for user role 'Author' - Users with role of 'Author' seem unable to preview or publish stories. See snapshots for observed results.
<img width="1176" alt="Screen Shot 2019-06-26 at 11 59 44 AM" src="https://user-images.githubusercontent.com/506089/60150188-2dfa8b00-980a-11e9-90e6-8d8360718503.png">
<img width="1100" alt="Screen Shot 2019-06-26 at 11 59 52 AM" src="https://user-images.githubusercontent.com/506089/60150190-3357d580-980a-11e9-836b-1c615e4014c8.png">
|
priority
|
breaking editing experience for user role author users with role of author seem unable to preview or publish stories see snapshots for observed results img width alt screen shot at am src img width alt screen shot at am src
| 1
|
767,463
| 26,926,152,114
|
IssuesEvent
|
2023-02-07 13:57:02
|
BVPyro/front
|
https://api.github.com/repos/BVPyro/front
|
closed
|
Exchange PDF on Insurance
|
bug high priority
|
Pls replace the document at https://bvpk.org/bvpk_versicherung.pdf by the updated document linked here: https://media.bvpk.org/versicherung/bvpk_versicherung.pdf
|
1.0
|
Exchange PDF on Insurance - Pls replace the document at https://bvpk.org/bvpk_versicherung.pdf by the updated document linked here: https://media.bvpk.org/versicherung/bvpk_versicherung.pdf
|
priority
|
exchange pdf on insurance pls replace the document at by the updated document linked here
| 1
|
801,502
| 28,491,358,199
|
IssuesEvent
|
2023-04-18 11:28:19
|
telerik/kendo-ui-core
|
https://api.github.com/repos/telerik/kendo-ui-core
|
reopened
|
Grouped and filtered Grid incorrectly adds two new rows instead of one
|
Bug SEV: High C: Grid jQuery Priority 5 Next LIB FP: Completed
|
### Bug report
The Grid incorrectly appends two new records when the "Add new record" button is clicked.
### Reproduction of the problem
Run the following Dojo and try to add a new record.
https://dojo.telerik.com/@gdenchev/aDObOYUN
### Current behavior
Two records are appended.
### Expected/desired behavior
Only one record must be appended.
### Environment
* **Kendo UI version:** 2022.3.1109 (Regression)
* **jQuery version:** 1.12.3
* **Browser:** [all]
|
1.0
|
Grouped and filtered Grid incorrectly adds two new rows instead of one - ### Bug report
The Grid incorrectly appends two new records when the "Add new record" button is clicked.
### Reproduction of the problem
Run the following Dojo and try to add a new record.
https://dojo.telerik.com/@gdenchev/aDObOYUN
### Current behavior
Two records are appended.
### Expected/desired behavior
Only one record must be appended.
### Environment
* **Kendo UI version:** 2022.3.1109 (Regression)
* **jQuery version:** 1.12.3
* **Browser:** [all]
|
priority
|
grouped and filtered grid incorrectly adds two new rows instead of one bug report the grid incorrectly appends two new records when the add new record button is clicked reproduction of the problem run the following dojo and try to add a new record current behavior two records are appended expected desired behavior only one record must be appended environment kendo ui version regression jquery version browser
| 1
|
671,865
| 22,779,383,610
|
IssuesEvent
|
2022-07-08 17:50:03
|
input-output-hk/cardano-node
|
https://api.github.com/repos/input-output-hk/cardano-node
|
closed
|
[BUG] - vasil-testnet-v1 - CLI queries "kes-period-info", "protocol-state" and "leadership-schedule" are broken
|
bug priority high Vasil 1.35.2
|
*Internal*
**Area**
*Other* Any other topic (Delegation, Ranking, ...).
**Summary**
In Alonzo era, with the `vasil-testnet-v1` tag, the CLI queries `kes-period-info`, `protocol-state` and `leadership-schedule` fail with
```
FatalError {fatalErrorMessage = ... currentlyBroken ...
```
E.g.
```
$ cardano-cli query kes-period-info --op-cert-file pool2_invalid_opcert_file.opcert --testnet-magic 42 --cardano-mode
cardano-cli: FatalError {fatalErrorMessage = "runQueryKesPeriodInfo: currentlyBroken - opCertOnDiskAndStateCounters ptclState opCert"}
$ cardano-cli query protocol-state --testnet-magic 42 --cardano-mode
cardano-cli: FatalError {fatalErrorMessage = "currentlyBroken: runQueryProtocolState writeProtocolState mOutFile result"}
$ cardano-cli query leadership-schedule --genesis ...
cardano-cli: FatalError {fatalErrorMessage = "runQueryLeadershipSchedule: currently broken"}'
```
**System info (please complete the following information):**
- OS Name: Fedora 35
- Node version: `vasil-testnet-v1`
________________________________________________________
TASKS:
- [x] kes-period (https://github.com/input-output-hk/cardano-node/pull/3945)
- [x] protocol-state https://github.com/input-output-hk/cardano-node/pull/4102
- [x] leadership schedule in Babbage https://github.com/input-output-hk/cardano-node/pull/4106
|
1.0
|
[BUG] - vasil-testnet-v1 - CLI queries "kes-period-info", "protocol-state" and "leadership-schedule" are broken - *Internal*
**Area**
*Other* Any other topic (Delegation, Ranking, ...).
**Summary**
In Alonzo era, with the `vasil-testnet-v1` tag, the CLI queries `kes-period-info`, `protocol-state` and `leadership-schedule` fail with
```
FatalError {fatalErrorMessage = ... currentlyBroken ...
```
E.g.
```
$ cardano-cli query kes-period-info --op-cert-file pool2_invalid_opcert_file.opcert --testnet-magic 42 --cardano-mode
cardano-cli: FatalError {fatalErrorMessage = "runQueryKesPeriodInfo: currentlyBroken - opCertOnDiskAndStateCounters ptclState opCert"}
$ cardano-cli query protocol-state --testnet-magic 42 --cardano-mode
cardano-cli: FatalError {fatalErrorMessage = "currentlyBroken: runQueryProtocolState writeProtocolState mOutFile result"}
$ cardano-cli query leadership-schedule --genesis ...
cardano-cli: FatalError {fatalErrorMessage = "runQueryLeadershipSchedule: currently broken"}'
```
**System info (please complete the following information):**
- OS Name: Fedora 35
- Node version: `vasil-testnet-v1`
________________________________________________________
TASKS:
- [x] kes-period (https://github.com/input-output-hk/cardano-node/pull/3945)
- [x] protocol-state https://github.com/input-output-hk/cardano-node/pull/4102
- [x] leadership schedule in Babbage https://github.com/input-output-hk/cardano-node/pull/4106
|
priority
|
vasil testnet cli queries kes period info protocol state and leadership schedule are broken internal area other any other topic delegation ranking summary in alonzo era with the vasil testnet tag the cli queries kes period info protocol state and leadership schedule fail with fatalerror fatalerrormessage currentlybroken e g cardano cli query kes period info op cert file invalid opcert file opcert testnet magic cardano mode cardano cli fatalerror fatalerrormessage runquerykesperiodinfo currentlybroken opcertondiskandstatecounters ptclstate opcert cardano cli query protocol state testnet magic cardano mode cardano cli fatalerror fatalerrormessage currentlybroken runqueryprotocolstate writeprotocolstate moutfile result cardano cli query leadership schedule genesis cardano cli fatalerror fatalerrormessage runqueryleadershipschedule currently broken system info please complete the following information os name fedora node version vasil testnet tasks kes period protocol state leadership schedule in babbage
| 1
|
293,227
| 8,973,822,677
|
IssuesEvent
|
2019-01-29 22:07:41
|
ucsdlib/damsmanager
|
https://api.github.com/repos/ucsdlib/damsmanager
|
closed
|
RDCP download counts are inaccurately reported
|
dams 4.0 high priority (3) rdcp statistics
|
### Descriptive summary and Steps to Reproduce Behavior
DAMS manager (DM) reports download counts inaccurately and inconsistently for RDCP components. Four tests were run on separate days, all on Chrome while on the UCSD domain. All testers shared this behavior:
* Clear cache and sign out of DAMS (non-curator mode)
* Search for a designated object's ARK in Google. Click on the object URL in search results.
* Find the designated component on the page and download the object once.
* Repeat for all objects on the test list, on a separate computer. (The number of tests performed per object varied by day.)
Documentation: https://docs.google.com/spreadsheets/d/1lR2ZaGQLUgwInN-ff6RfmP6WgdLX-OdgKTX92PgdaVA/edit#gid=1826356290
1. 2018-11-05: 5 downloads were performed. DM reported 4 downloads and 4 views.
2. 2018-11-06: 2 downloads were performed. DM reported 0 downloads and 0 views.
3. 2018-11-07: 4 downloads were performed. DM reported 0 downloads and 0 views.
4. 2018-11-08: 1 downloads were performed. DM reported 0 downloads and 0 views.
|
1.0
|
RDCP download counts are inaccurately reported - ### Descriptive summary and Steps to Reproduce Behavior
DAMS manager (DM) reports download counts inaccurately and inconsistently for RDCP components. Four tests were run on separate days, all on Chrome while on the UCSD domain. All testers shared this behavior:
* Clear cache and sign out of DAMS (non-curator mode)
* Search for a designated object's ARK in Google. Click on the object URL in search results.
* Find the designated component on the page and download the object once.
* Repeat for all objects on the test list, on a separate computer. (The number of tests performed per object varied by day.)
Documentation: https://docs.google.com/spreadsheets/d/1lR2ZaGQLUgwInN-ff6RfmP6WgdLX-OdgKTX92PgdaVA/edit#gid=1826356290
1. 2018-11-05: 5 downloads were performed. DM reported 4 downloads and 4 views.
2. 2018-11-06: 2 downloads were performed. DM reported 0 downloads and 0 views.
3. 2018-11-07: 4 downloads were performed. DM reported 0 downloads and 0 views.
4. 2018-11-08: 1 downloads were performed. DM reported 0 downloads and 0 views.
|
priority
|
rdcp download counts are inaccurately reported descriptive summary and steps to reproduce behavior dams manager dm reports download counts inaccurately and inconsistently for rdcp components four tests were run on separate days all on chrome while on the ucsd domain all testers shared this behavior clear cache and sign out of dams non curator mode search for a designated object s ark in google click on the object url in search results find the designated component on the page and download the object once repeat for all objects on the test list on a separate computer the number of tests performed per object varied by day documentation downloads were performed dm reported downloads and views downloads were performed dm reported downloads and views downloads were performed dm reported downloads and views downloads were performed dm reported downloads and views
| 1
|
803,002
| 29,087,625,797
|
IssuesEvent
|
2023-05-16 02:13:04
|
openmsupply/open-msupply
|
https://api.github.com/repos/openmsupply/open-msupply
|
closed
|
[User Training Feedback] Internal Order: "Approved packs" = "Requested" (units) - calculated field not working
|
bug Priority: High
|
## What went wrong? 😲
<!-- Provide a clear and concise description of what the bug is. Screenshots are helpful! -->
`Approved packs` = `Requested Quantity` (units) or `Approved Quantity` (units)
<img width="1511" alt="Screenshot 2023-05-15 at 6 31 05 PM" src="https://github.com/openmsupply/open-msupply/assets/74992958/a7d23729-4ca1-463d-8996-371720b15cac">
## Expected behaviour 🤔
`Approved packs` = `Approved Quantity` (units) / `Default Pack Size` so in above example it should be = `10` and not `300`
## How to Reproduce 🔨
Steps to reproduce the behaviour:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
## Your environment 🌱
<!-- e.g. 1.2.3 -->
- Version: 1.1.12
- Platform:
- [ ] browser (chrome mac)
- [ ] client mac
|
1.0
|
[User Training Feedback] Internal Order: "Approved packs" = "Requested" (units) - calculated field not working - ## What went wrong? 😲
<!-- Provide a clear and concise description of what the bug is. Screenshots are helpful! -->
`Approved packs` = `Requested Quantity` (units) or `Approved Quantity` (units)
<img width="1511" alt="Screenshot 2023-05-15 at 6 31 05 PM" src="https://github.com/openmsupply/open-msupply/assets/74992958/a7d23729-4ca1-463d-8996-371720b15cac">
## Expected behaviour 🤔
`Approved packs` = `Approved Quantity` (units) / `Default Pack Size` so in above example it should be = `10` and not `300`
## How to Reproduce 🔨
Steps to reproduce the behaviour:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
## Your environment 🌱
<!-- e.g. 1.2.3 -->
- Version: 1.1.12
- Platform:
- [ ] browser (chrome mac)
- [ ] client mac
|
priority
|
internal order approved packs requested units calculated field not working what went wrong 😲 approved packs requested quantity units or approved quantity units img width alt screenshot at pm src expected behaviour 🤔 approved packs approved quantity units default pack size so in above example it should be and not how to reproduce 🔨 steps to reproduce the behaviour go to click on scroll down to see error your environment 🌱 version platform browser chrome mac client mac
| 1
|
491,642
| 14,168,171,736
|
IssuesEvent
|
2020-11-12 11:19:57
|
bounswe/bounswe2020group8
|
https://api.github.com/repos/bounswe/bounswe2020group8
|
opened
|
Dockerizing of the web app
|
Priority: High enhancement web
|
We will use a docker container to run our web app in order to supply isolation and avoid dependency issues. Therefore, the React web application should be dockerized.
|
1.0
|
Dockerizing of the web app - We will use a docker container to run our web app in order to supply isolation and avoid dependency issues. Therefore, the React web application should be dockerized.
|
priority
|
dockerizing of the web app we will use a docker container to run our web app in order to supply isolation and avoid dependency issues therefore the react web application should be dockerized
| 1
|
327,077
| 9,966,062,517
|
IssuesEvent
|
2019-07-08 10:12:58
|
code4romania/monitorizare-vot-votanti-admin
|
https://api.github.com/repos/code4romania/monitorizare-vot-votanti-admin
|
closed
|
Admins can approve or reject messages
|
enhancement help wanted high priority react
|
Add messages option in admin dashboard menu.
Admin can view messages list
Admin can approve or reject messages
Admin can sort messages by unread / approved / rejected
Wireframes:


Best practices
- codebase language should be English
- we :two_hearts: unit tests
|
1.0
|
Admins can approve or reject messages - Add messages option in admin dashboard menu.
Admin can view messages list
Admin can approve or reject messages
Admin can sort messages by unread / approved / rejected
Wireframes:


Best practices
- codebase language should be English
- we :two_hearts: unit tests
|
priority
|
admins can approve or reject messages add messages option in admin dashboard menu admin can view messages list admin can approve or reject messages admin can sort messages by unread approved rejected wireframes best practices codebase language should be english we two hearts unit tests
| 1
|
468,840
| 13,491,548,467
|
IssuesEvent
|
2020-09-11 16:40:30
|
dmwm/CRABServer
|
https://api.github.com/repos/dmwm/CRABServer
|
closed
|
make PushiserMaster/slave relation work more like TW does, w/o blocking
|
Area: StandalonePublish/ASOless Priority: High Status: Done
|
see https://github.com/dmwm/CRABServer/issues/6100#issuecomment-651385942
since now it waits for Nslaves to be complted before submitting more, one task taking long (.eg. large migration) will block everything, need to somehow always keep Nslaves active. W/o the current process.join() which blocks until all subprocesses have ended.
|
1.0
|
make PushiserMaster/slave relation work more like TW does, w/o blocking - see https://github.com/dmwm/CRABServer/issues/6100#issuecomment-651385942
since now it waits for Nslaves to be complted before submitting more, one task taking long (.eg. large migration) will block everything, need to somehow always keep Nslaves active. W/o the current process.join() which blocks until all subprocesses have ended.
|
priority
|
make pushisermaster slave relation work more like tw does w o blocking see since now it waits for nslaves to be complted before submitting more one task taking long eg large migration will block everything need to somehow always keep nslaves active w o the current process join which blocks until all subprocesses have ended
| 1
|
344,781
| 10,349,640,047
|
IssuesEvent
|
2019-09-04 23:18:10
|
oslc-op/jira-migration-landfill
|
https://api.github.com/repos/oslc-op/jira-migration-landfill
|
closed
|
OSLC Paging, splitting a resource across pages
|
Core: Main Spec Core: Query Priority: High Xtra: Jira
|
[http://open-services.net/bin/view/Main/OslcCoreSpecification#Resource\\\_Paging](http://open-services.net/bin/view/Main/OslcCoreSpecification#Resource\_Paging) includes this text:
" A client can also request paging by adding the "key=value" pair oslc.pageSize to the query string component of the resource URI. By adding this, a client requests that the server respond with a specific number of property values. For example, oslc.pageSize=20 indicates to the server that the client would like 20 values per page. OSLC Services MAY ignore oslc.pageSize.
When Resource Paging is used, the values of a multi-valued property MAY be split across resource pages. Each property value MUST be represented in its entirety and not split across multiple partial resource pages. "
The last paragraph appears to be self-contradictory. It‘s unclear whether the spec is saying that all the values of a property MUST appear on a single page (as per the 2nd sentence) or MAY be split across multiple pages (as per the 1st sentence).
---
_Migrated from https://issues.oasis-open.org/browse/OSLCCORE-151 (opened by @oslc-bot; previously assigned to @jamsden)_
|
1.0
|
OSLC Paging, splitting a resource across pages - [http://open-services.net/bin/view/Main/OslcCoreSpecification#Resource\\\_Paging](http://open-services.net/bin/view/Main/OslcCoreSpecification#Resource\_Paging) includes this text:
" A client can also request paging by adding the "key=value" pair oslc.pageSize to the query string component of the resource URI. By adding this, a client requests that the server respond with a specific number of property values. For example, oslc.pageSize=20 indicates to the server that the client would like 20 values per page. OSLC Services MAY ignore oslc.pageSize.
When Resource Paging is used, the values of a multi-valued property MAY be split across resource pages. Each property value MUST be represented in its entirety and not split across multiple partial resource pages. "
The last paragraph appears to be self-contradictory. It‘s unclear whether the spec is saying that all the values of a property MUST appear on a single page (as per the 2nd sentence) or MAY be split across multiple pages (as per the 1st sentence).
---
_Migrated from https://issues.oasis-open.org/browse/OSLCCORE-151 (opened by @oslc-bot; previously assigned to @jamsden)_
|
priority
|
oslc paging splitting a resource across pages includes this text a client can also request paging by adding the key value pair oslc pagesize to the query string component of the resource uri by adding this a client requests that the server respond with a specific number of property values for example oslc pagesize indicates to the server that the client would like values per page oslc services may ignore oslc pagesize when resource paging is used the values of a multi valued property may be split across resource pages each property value must be represented in its entirety and not split across multiple partial resource pages the last paragraph appears to be self contradictory it‘s unclear whether the spec is saying that all the values of a property must appear on a single page as per the sentence or may be split across multiple pages as per the sentence migrated from opened by oslc bot previously assigned to jamsden
| 1
|
680,699
| 23,282,886,394
|
IssuesEvent
|
2022-08-05 13:46:38
|
unicef-drp/GeoSight
|
https://api.github.com/repos/unicef-drp/GeoSight
|
closed
|
Improve the way changes to dashboard config, widgets and filters are saved and applied
|
🐞 High Priority Ready for implementation BATCH 1
|
a bit duplicated from / related to: #157
It is not clear to users when changes (made to dashboard config, filters or individual widgets) are saved / temporarily saved or applied. It would be also useful to allow users to undo some changes.
**Dashboard Config**
- Dashboard Config should be moved to a separate full-width page (see mockups below).
- A "cog" icon could be added to the top-right menu and the whole section called "Reference Dataset" should be removed (moved to Dashboard Config full-page)
- the "Submit" button - it is not clear on what it does. Does it save the dashboard changes? It should be moved to the top menu
- top menu should have the following dashboard editing tools: "Save" icon (saves changes made to Filters and Widgets, undo, redo icons
Expected behavior:
- dashboard: user clicks "Save" icon - the Dashboard changes (to Widgets and Filters) are permanently saved

**Widget Config**
In the Widget Config window, currently, the behavior is the following:
- add dashboard Title section (with edit button to edit the title)
- user clicks the "X" icon: the window is closed, changes are temporarily saved but not applied (will be lost when page is refreshed)
- user clicks outside of the window: the window is closed, changes are temporarily saved but not applied (will be lost when page is refreshed),
- user clicks Apply - the window is closed and changes are applied

To Do:
- For all modal windows: add two buttons at the bottom of the window: 1) Save, 2) Discard. Put them at the bottom of the page, but always visible (like a floating footer)
- "X" button/icon can be removed from top right
- apply this to all modal windows (Widget Config etc)
Expected behavior:
- modal window: user clicks "Discard" the window is closed, changes are discarded,
- modal window: user clicks outside of the window: the window is closed, changes are discarded,
- modal window: user clicks "Save" - the window is closed and changes are applied.
Dashboard config to be moved to a separate page:






If possible - add "undo" button to the Dashboard Config.
|
1.0
|
Improve the way changes to dashboard config, widgets and filters are saved and applied - a bit duplicated from / related to: #157
It is not clear to users when changes (made to dashboard config, filters or individual widgets) are saved / temporarily saved or applied. It would be also useful to allow users to undo some changes.
**Dashboard Config**
- Dashboard Config should be moved to a separate full-width page (see mockups below).
- A "cog" icon could be added to the top-right menu and the whole section called "Reference Dataset" should be removed (moved to Dashboard Config full-page)
- the "Submit" button - it is not clear on what it does. Does it save the dashboard changes? It should be moved to the top menu
- top menu should have the following dashboard editing tools: "Save" icon (saves changes made to Filters and Widgets, undo, redo icons
Expected behavior:
- dashboard: user clicks "Save" icon - the Dashboard changes (to Widgets and Filters) are permanently saved

**Widget Config**
In the Widget Config window, currently, the behavior is the following:
- add dashboard Title section (with edit button to edit the title)
- user clicks the "X" icon: the window is closed, changes are temporarily saved but not applied (will be lost when page is refreshed)
- user clicks outside of the window: the window is closed, changes are temporarily saved but not applied (will be lost when page is refreshed),
- user clicks Apply - the window is closed and changes are applied

To Do:
- For all modal windows: add two buttons at the bottom of the window: 1) Save, 2) Discard. Put them at the bottom of the page, but always visible (like a floating footer)
- "X" button/icon can be removed from top right
- apply this to all modal windows (Widget Config etc)
Expected behavior:
- modal window: user clicks "Discard" the window is closed, changes are discarded,
- modal window: user clicks outside of the window: the window is closed, changes are discarded,
- modal window: user clicks "Save" - the window is closed and changes are applied.
Dashboard config to be moved to a separate page:






If possible - add "undo" button to the Dashboard Config.
|
priority
|
improve the way changes to dashboard config widgets and filters are saved and applied a bit duplicated from related to it is not clear to users when changes made to dashboard config filters or individual widgets are saved temporarily saved or applied it would be also useful to allow users to undo some changes dashboard config dashboard config should be moved to a separate full width page see mockups below a cog icon could be added to the top right menu and the whole section called reference dataset should be removed moved to dashboard config full page the submit button it is not clear on what it does does it save the dashboard changes it should be moved to the top menu top menu should have the following dashboard editing tools save icon saves changes made to filters and widgets undo redo icons expected behavior dashboard user clicks save icon the dashboard changes to widgets and filters are permanently saved widget config in the widget config window currently the behavior is the following add dashboard title section with edit button to edit the title user clicks the x icon the window is closed changes are temporarily saved but not applied will be lost when page is refreshed user clicks outside of the window the window is closed changes are temporarily saved but not applied will be lost when page is refreshed user clicks apply the window is closed and changes are applied to do for all modal windows add two buttons at the bottom of the window save discard put them at the bottom of the page but always visible like a floating footer x button icon can be removed from top right apply this to all modal windows widget config etc expected behavior modal window user clicks discard the window is closed changes are discarded modal window user clicks outside of the window the window is closed changes are discarded modal window user clicks save the window is closed and changes are applied dashboard config to be moved to a separate page if possible add undo button to the dashboard config
| 1
|
111,192
| 4,466,802,119
|
IssuesEvent
|
2016-08-25 00:35:16
|
influxdata/docs.influxdata.com
|
https://api.github.com/repos/influxdata/docs.influxdata.com
|
closed
|
Make clear in the documentation that basic authentication is supported
|
Fix underway Priority: high Time commitment: quick task
|
https://github.com/influxdata/influxdb/issues/7019#issuecomment-232992380
Basic authentication is supported along with using query string parameters. Make clear in the documentation that it is supported. The documentation currently says:
> The InfluxDB API provides a simple way interact with the database. It uses HTTP response codes, **HTTP authentication**, and responses are returned in JSON.
This implies it supports basic authentication, but it's not explicit enough for anybody to figure that out without guessing. It's very easy to think we're just referring to the `u` and `p` parameters. The documentation for those also says:
> Optional if you haven’t enabled authentication. Required if you’ve enabled authentication.
This implies that this is the only way to set authentication for the request. They are only required if you aren't using basic authentication.
Thanks!
|
1.0
|
Make clear in the documentation that basic authentication is supported - https://github.com/influxdata/influxdb/issues/7019#issuecomment-232992380
Basic authentication is supported along with using query string parameters. Make clear in the documentation that it is supported. The documentation currently says:
> The InfluxDB API provides a simple way interact with the database. It uses HTTP response codes, **HTTP authentication**, and responses are returned in JSON.
This implies it supports basic authentication, but it's not explicit enough for anybody to figure that out without guessing. It's very easy to think we're just referring to the `u` and `p` parameters. The documentation for those also says:
> Optional if you haven’t enabled authentication. Required if you’ve enabled authentication.
This implies that this is the only way to set authentication for the request. They are only required if you aren't using basic authentication.
Thanks!
|
priority
|
make clear in the documentation that basic authentication is supported basic authentication is supported along with using query string parameters make clear in the documentation that it is supported the documentation currently says the influxdb api provides a simple way interact with the database it uses http response codes http authentication and responses are returned in json this implies it supports basic authentication but it s not explicit enough for anybody to figure that out without guessing it s very easy to think we re just referring to the u and p parameters the documentation for those also says optional if you haven’t enabled authentication required if you’ve enabled authentication this implies that this is the only way to set authentication for the request they are only required if you aren t using basic authentication thanks
| 1
|
727,731
| 25,045,551,627
|
IssuesEvent
|
2022-11-05 07:21:53
|
CS3219-AY2223S1/cs3219-project-ay2223s1-g12
|
https://api.github.com/repos/CS3219-AY2223S1/cs3219-project-ay2223s1-g12
|
closed
|
Set up CI for automated testing
|
enhancement priority.High nice-to-have
|
- [x] cypress frontend testing e.g. for login/logout signup component
- [ ] some API testing if possible
- [x] CI config setup for GitHub Actions
Might need to merge frontend update in first, as frontend test will likely target component by classname or id
Note: PR is based on the assumption that 129 is merged
|
1.0
|
Set up CI for automated testing - - [x] cypress frontend testing e.g. for login/logout signup component
- [ ] some API testing if possible
- [x] CI config setup for GitHub Actions
Might need to merge frontend update in first, as frontend test will likely target component by classname or id
Note: PR is based on the assumption that 129 is merged
|
priority
|
set up ci for automated testing cypress frontend testing e g for login logout signup component some api testing if possible ci config setup for github actions might need to merge frontend update in first as frontend test will likely target component by classname or id note pr is based on the assumption that is merged
| 1
|
204,180
| 7,085,155,509
|
IssuesEvent
|
2018-01-11 09:57:56
|
metasfresh/metasfresh-webui-frontend
|
https://api.github.com/repos/metasfresh/metasfresh-webui-frontend
|
opened
|
frontend subscribscriptions to api's view topic get out of hand
|
priority:high type:bug
|
### Is this a bug or feature request?
Bug
### What is the current behavior?
I look as if
* when the frontend get multiple notifications via websocket,
* then it attempts to unsubscribe and resubscribe, *but*
* it unsubscribes **one time for all notifications** and then subscribes again for each notification.
It looks like this in the API log:
```
# this seems OK
2018-01-11 10:06:37.256 INFO 15540 [ ][ ] --- [nio-8080-exec-4] d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ nbusygth ]
# is realated indirectly to the order having been completed. it causes the frontend to be notified
2018-01-11 10:06:56.120 INFO 15540 [ ][ ] --- [MessageBroker-3] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[6 current WS(6)-HttpStream(0)-HttpPoll(0), 6 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(6)-CONNECTED(6)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 36], outboundChannelpool size = 1, active threads = 0, queued tasks = 0, completed tasks = 6], sockJsScheduler[pool size = 4, active threads = 1, queued tasks = 7, completed tasks = 9]
2018-01-11 10:08:39.200 DEBUG 15540 [ 192.168.1.81][metasfresh] --- [nio-8080-exec-9] de.metas.event.impl.EventBus : EventBus{name=de.metas.cache.CacheInvalidationRemoteHandler, type=REMOTE} - Posting event: Event(properties={CacheInvalidateRequest={"requests":[{"rootTableName":"C_OrderTax","rootRecordId":1000103,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_Order","rootRecordId":1000020,"childTableName":"C_OrderLine","childRecordId":1000038},{"rootTableName":"C_Order","rootRecordId":1000020,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_OrderTax","rootRecordId":1000102,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_Order","rootRecordId":1000020,"childTableName":"C_OrderLine","childRecordId":1000039},{"rootTableName":"PP_MRP","rootRecordId":1000058,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_OrderTax","rootRecordId":1000101,"childTableName":null,"childRecordId":-1},{"rootTableName":"PP_MRP","rootRecordId":1000057,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_OrderTax","rootRecordId":1000100,"childTableName":null,"childRecordId":-1}]}}, uuid=54c7704b-f762-49a0-83f9-b58c872fc3ab, when=2018-01-11T09:08:39.199Z, summary=null, detailPlain=null, detailADMessage=null, senderId=15540@pc13-510dd76c-cb68-4481-8a9a-8ce9d80efc02, recipientUserIds=[], receivedByEventBusIds=[])
# [...]
# (..here i ommitted more webui-api logs you most probably don't care about)
# here, it seems as if the frontend tries to *re*subscribe ..
# but it unsubscribes once and subscribes multiple times. I think, it's subscribing once for each notification
2018-01-11 10:08:45.008 INFO 15540 [ ][ ] --- [nio-8080-exec-8] d.m.ui.web.websocket.WebSocketConfig : Unsubscribed from <null> [ nbusygth ]
2018-01-11 10:08:45.417 INFO 15540 [ ][ ] --- [nio-8080-exec-2]
d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ th52ylav ]
2018-01-11 10:08:45.560 INFO 15540 [ ][ ] --- [nio-8080-exec-3] d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ th52ylav ]
2018-01-11 10:08:45.582 INFO 15540 [ ][ ] --- [nio-8080-exec-5] d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ th52ylav ]
2018-01-11 10:08:45.602 INFO 15540 [ ][ ] --- [nio-8080-exec-4] d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ th52ylav ]
```
In the next notification, each of those sucscribers do a GET etc...
Repeating this a few times, you can quickly shut down the system
Things we notded that *might* be related:
* The issue After an element is deleted from view, the selection is made for selectedId 1 https://github.com/metasfresh/metasfresh-webui-frontend/issues/1488
* in the case of the material cokpit, it's not an `1` but an `m` you will probably see (because many of id in that view start with "main")
* Also, we noticed that the frontend sometimes connects an empty session-ID in the request cooky
#### Which are the steps to reproduce?
In chrome
* Open the material cockpit window, also open the dev tools' network tab
* Open the sale order window in another tab
* Create a new sames order and complete it
* Check out the network tab
* Repeat
### What is the expected or desired behavior?
i don't want to over-specify..
but i guess there should be just one subscription to the `view` topic per view
|
1.0
|
frontend subscribscriptions to api's view topic get out of hand - ### Is this a bug or feature request?
Bug
### What is the current behavior?
I look as if
* when the frontend get multiple notifications via websocket,
* then it attempts to unsubscribe and resubscribe, *but*
* it unsubscribes **one time for all notifications** and then subscribes again for each notification.
It looks like this in the API log:
```
# this seems OK
2018-01-11 10:06:37.256 INFO 15540 [ ][ ] --- [nio-8080-exec-4] d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ nbusygth ]
# is realated indirectly to the order having been completed. it causes the frontend to be notified
2018-01-11 10:06:56.120 INFO 15540 [ ][ ] --- [MessageBroker-3] o.s.w.s.c.WebSocketMessageBrokerStats : WebSocketSession[6 current WS(6)-HttpStream(0)-HttpPoll(0), 6 total, 0 closed abnormally (0 connect failure, 0 send limit, 0 transport error)], stompSubProtocol[processed CONNECT(6)-CONNECTED(6)-DISCONNECT(0)], stompBrokerRelay[null], inboundChannel[pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 36], outboundChannelpool size = 1, active threads = 0, queued tasks = 0, completed tasks = 6], sockJsScheduler[pool size = 4, active threads = 1, queued tasks = 7, completed tasks = 9]
2018-01-11 10:08:39.200 DEBUG 15540 [ 192.168.1.81][metasfresh] --- [nio-8080-exec-9] de.metas.event.impl.EventBus : EventBus{name=de.metas.cache.CacheInvalidationRemoteHandler, type=REMOTE} - Posting event: Event(properties={CacheInvalidateRequest={"requests":[{"rootTableName":"C_OrderTax","rootRecordId":1000103,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_Order","rootRecordId":1000020,"childTableName":"C_OrderLine","childRecordId":1000038},{"rootTableName":"C_Order","rootRecordId":1000020,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_OrderTax","rootRecordId":1000102,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_Order","rootRecordId":1000020,"childTableName":"C_OrderLine","childRecordId":1000039},{"rootTableName":"PP_MRP","rootRecordId":1000058,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_OrderTax","rootRecordId":1000101,"childTableName":null,"childRecordId":-1},{"rootTableName":"PP_MRP","rootRecordId":1000057,"childTableName":null,"childRecordId":-1},{"rootTableName":"C_OrderTax","rootRecordId":1000100,"childTableName":null,"childRecordId":-1}]}}, uuid=54c7704b-f762-49a0-83f9-b58c872fc3ab, when=2018-01-11T09:08:39.199Z, summary=null, detailPlain=null, detailADMessage=null, senderId=15540@pc13-510dd76c-cb68-4481-8a9a-8ce9d80efc02, recipientUserIds=[], receivedByEventBusIds=[])
# [...]
# (..here i ommitted more webui-api logs you most probably don't care about)
# here, it seems as if the frontend tries to *re*subscribe ..
# but it unsubscribes once and subscribes multiple times. I think, it's subscribing once for each notification
2018-01-11 10:08:45.008 INFO 15540 [ ][ ] --- [nio-8080-exec-8] d.m.ui.web.websocket.WebSocketConfig : Unsubscribed from <null> [ nbusygth ]
2018-01-11 10:08:45.417 INFO 15540 [ ][ ] --- [nio-8080-exec-2]
d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ th52ylav ]
2018-01-11 10:08:45.560 INFO 15540 [ ][ ] --- [nio-8080-exec-3] d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ th52ylav ]
2018-01-11 10:08:45.582 INFO 15540 [ ][ ] --- [nio-8080-exec-5] d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ th52ylav ]
2018-01-11 10:08:45.602 INFO 15540 [ ][ ] --- [nio-8080-exec-4] d.m.ui.web.websocket.WebSocketConfig : Subscribed to /view/540376-d50fbfe9acdd41f8a5873d2cf42236e6 [ th52ylav ]
```
In the next notification, each of those sucscribers do a GET etc...
Repeating this a few times, you can quickly shut down the system
Things we notded that *might* be related:
* The issue After an element is deleted from view, the selection is made for selectedId 1 https://github.com/metasfresh/metasfresh-webui-frontend/issues/1488
* in the case of the material cokpit, it's not an `1` but an `m` you will probably see (because many of id in that view start with "main")
* Also, we noticed that the frontend sometimes connects an empty session-ID in the request cooky
#### Which are the steps to reproduce?
In chrome
* Open the material cockpit window, also open the dev tools' network tab
* Open the sale order window in another tab
* Create a new sames order and complete it
* Check out the network tab
* Repeat
### What is the expected or desired behavior?
i don't want to over-specify..
but i guess there should be just one subscription to the `view` topic per view
|
priority
|
frontend subscribscriptions to api s view topic get out of hand is this a bug or feature request bug what is the current behavior i look as if when the frontend get multiple notifications via websocket then it attempts to unsubscribe and resubscribe but it unsubscribes one time for all notifications and then subscribes again for each notification it looks like this in the api log this seems ok info d m ui web websocket websocketconfig subscribed to view is realated indirectly to the order having been completed it causes the frontend to be notified info o s w s c websocketmessagebrokerstats websocketsession stompsubprotocol stompbrokerrelay inboundchannel outboundchannelpool size active threads queued tasks completed tasks sockjsscheduler debug de metas event impl eventbus eventbus name de metas cache cacheinvalidationremotehandler type remote posting event event properties cacheinvalidaterequest requests uuid when summary null detailplain null detailadmessage null senderid recipientuserids receivedbyeventbusids here i ommitted more webui api logs you most probably don t care about here it seems as if the frontend tries to re subscribe but it unsubscribes once and subscribes multiple times i think it s subscribing once for each notification info d m ui web websocket websocketconfig unsubscribed from info d m ui web websocket websocketconfig subscribed to view info d m ui web websocket websocketconfig subscribed to view info d m ui web websocket websocketconfig subscribed to view info d m ui web websocket websocketconfig subscribed to view in the next notification each of those sucscribers do a get etc repeating this a few times you can quickly shut down the system things we notded that might be related the issue after an element is deleted from view the selection is made for selectedid in the case of the material cokpit it s not an but an m you will probably see because many of id in that view start with main also we noticed that the frontend sometimes connects an empty session id in the request cooky which are the steps to reproduce in chrome open the material cockpit window also open the dev tools network tab open the sale order window in another tab create a new sames order and complete it check out the network tab repeat what is the expected or desired behavior i don t want to over specify but i guess there should be just one subscription to the view topic per view
| 1
|
72,238
| 3,377,052,439
|
IssuesEvent
|
2015-11-25 00:26:04
|
projectcalico/calico
|
https://api.github.com/repos/projectcalico/calico
|
closed
|
Unexpected vif_type=tap breaking all tests
|
bug install priority:high ship-stopper
|
My most recent PR FV run (Icehouse) failed with these errors in the nova-scheduler log:
```
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/nova/compute/manager.py", line 1388, in _build_instance
set_access_ip=set_access_ip)
File "/usr/lib/python2.7/dist-packages/nova/compute/manager.py", line 414, in decorated_function
return function(self, context, *args, **kwargs)
File "/usr/lib/python2.7/dist-packages/nova/compute/manager.py", line 1806, in _spawn
LOG.exception(_('Instance failed to spawn'), instance=instance)
File "/usr/lib/python2.7/dist-packages/nova/openstack/common/excutils.py", line 68, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/dist-packages/nova/compute/manager.py", line 1803, in _spawn
block_device_info)
File "/usr/lib/python2.7/dist-packages/nova/virt/libvirt/driver.py", line 2370, in spawn
write_to_disk=True)
File "/usr/lib/python2.7/dist-packages/nova/virt/libvirt/driver.py", line 3572, in to_xml
disk_info, rescue, block_device_info)
File "/usr/lib/python2.7/dist-packages/nova/virt/libvirt/driver.py", line 3378, in get_guest_config
flavor)
File "/usr/lib/python2.7/dist-packages/nova/virt/libvirt/vif.py", line 384, in get_config
_("Unexpected vif_type=%s") % vif_type)
NovaException: Unexpected vif_type=tap
```
Sounds similar to #297; maybe they've revved the package.
This was run-fv-tests-pr-req build 129.
|
1.0
|
Unexpected vif_type=tap breaking all tests - My most recent PR FV run (Icehouse) failed with these errors in the nova-scheduler log:
```
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/nova/compute/manager.py", line 1388, in _build_instance
set_access_ip=set_access_ip)
File "/usr/lib/python2.7/dist-packages/nova/compute/manager.py", line 414, in decorated_function
return function(self, context, *args, **kwargs)
File "/usr/lib/python2.7/dist-packages/nova/compute/manager.py", line 1806, in _spawn
LOG.exception(_('Instance failed to spawn'), instance=instance)
File "/usr/lib/python2.7/dist-packages/nova/openstack/common/excutils.py", line 68, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/dist-packages/nova/compute/manager.py", line 1803, in _spawn
block_device_info)
File "/usr/lib/python2.7/dist-packages/nova/virt/libvirt/driver.py", line 2370, in spawn
write_to_disk=True)
File "/usr/lib/python2.7/dist-packages/nova/virt/libvirt/driver.py", line 3572, in to_xml
disk_info, rescue, block_device_info)
File "/usr/lib/python2.7/dist-packages/nova/virt/libvirt/driver.py", line 3378, in get_guest_config
flavor)
File "/usr/lib/python2.7/dist-packages/nova/virt/libvirt/vif.py", line 384, in get_config
_("Unexpected vif_type=%s") % vif_type)
NovaException: Unexpected vif_type=tap
```
Sounds similar to #297; maybe they've revved the package.
This was run-fv-tests-pr-req build 129.
|
priority
|
unexpected vif type tap breaking all tests my most recent pr fv run icehouse failed with these errors in the nova scheduler log traceback most recent call last file usr lib dist packages nova compute manager py line in build instance set access ip set access ip file usr lib dist packages nova compute manager py line in decorated function return function self context args kwargs file usr lib dist packages nova compute manager py line in spawn log exception instance failed to spawn instance instance file usr lib dist packages nova openstack common excutils py line in exit six reraise self type self value self tb file usr lib dist packages nova compute manager py line in spawn block device info file usr lib dist packages nova virt libvirt driver py line in spawn write to disk true file usr lib dist packages nova virt libvirt driver py line in to xml disk info rescue block device info file usr lib dist packages nova virt libvirt driver py line in get guest config flavor file usr lib dist packages nova virt libvirt vif py line in get config unexpected vif type s vif type novaexception unexpected vif type tap sounds similar to maybe they ve revved the package this was run fv tests pr req build
| 1
|
249,244
| 7,954,781,531
|
IssuesEvent
|
2018-07-12 08:40:40
|
weglot/translate-wordpress
|
https://api.github.com/repos/weglot/translate-wordpress
|
closed
|
Exclude URL should work with absolute URL
|
priority: high status: confirmed type: bug
|
I tried excluding the URL:
`http://wordpress/blog/category/uncategorized/`
It didn't work. It seems to only work with relative URL like
`/blog/category/uncategorized/`
We would like to be able to make it work in both case : absolute or relative.
|
1.0
|
Exclude URL should work with absolute URL - I tried excluding the URL:
`http://wordpress/blog/category/uncategorized/`
It didn't work. It seems to only work with relative URL like
`/blog/category/uncategorized/`
We would like to be able to make it work in both case : absolute or relative.
|
priority
|
exclude url should work with absolute url i tried excluding the url it didn t work it seems to only work with relative url like blog category uncategorized we would like to be able to make it work in both case absolute or relative
| 1
|
149,113
| 5,711,800,990
|
IssuesEvent
|
2017-04-19 00:35:19
|
MusicConnectionMachine/api
|
https://api.github.com/repos/MusicConnectionMachine/api
|
opened
|
Map IMSLP link to entity
|
GET request High Priority
|
Hey. In order to include our widgets on [IMSLP](http://imslp.org/), we need a function that maps IMSLP URLs to our entity-ids.
I suggest something like that:
```
GET /imslp2entity
params:
* url: string (see examples)
response:
200 -> { entityType: "work"|"artist", entityId: integer }
```
Examples:
* /wiki/Category:Mozart%2C_Wolfgang_Amadeus -> { entityType: 'artist', entityId: 123 }
* /wiki/Abendruhe,_K.Anh.C_9.10_(Mozart,_Wolfgang_Amadeus) -> { entityType: 'work', entityId: 456 }
I guess that @MusicConnectionMachine/group-1 is most qualified for this task..?
|
1.0
|
Map IMSLP link to entity - Hey. In order to include our widgets on [IMSLP](http://imslp.org/), we need a function that maps IMSLP URLs to our entity-ids.
I suggest something like that:
```
GET /imslp2entity
params:
* url: string (see examples)
response:
200 -> { entityType: "work"|"artist", entityId: integer }
```
Examples:
* /wiki/Category:Mozart%2C_Wolfgang_Amadeus -> { entityType: 'artist', entityId: 123 }
* /wiki/Abendruhe,_K.Anh.C_9.10_(Mozart,_Wolfgang_Amadeus) -> { entityType: 'work', entityId: 456 }
I guess that @MusicConnectionMachine/group-1 is most qualified for this task..?
|
priority
|
map imslp link to entity hey in order to include our widgets on we need a function that maps imslp urls to our entity ids i suggest something like that get params url string see examples response entitytype work artist entityid integer examples wiki category mozart wolfgang amadeus entitytype artist entityid wiki abendruhe k anh c mozart wolfgang amadeus entitytype work entityid i guess that musicconnectionmachine group is most qualified for this task
| 1
|
239,644
| 7,799,899,121
|
IssuesEvent
|
2018-06-09 01:50:38
|
tine20/Tine-2.0-Open-Source-Groupware-and-CRM
|
https://api.github.com/repos/tine20/Tine-2.0-Open-Source-Groupware-and-CRM
|
closed
|
0005952:
status_id sorting needs to be removed from state
|
Bug Mantis Tasks high priority
|
**Reported by pschuele on 6 Mar 2012 13:59**
**Version:** Milan (2012-03-1)
status_id sorting needs to be removed from state
state might still contain 'status_id' as field name -> tasks app is not working anymore until user clicks another column for sorting
|
1.0
|
0005952:
status_id sorting needs to be removed from state - **Reported by pschuele on 6 Mar 2012 13:59**
**Version:** Milan (2012-03-1)
status_id sorting needs to be removed from state
state might still contain 'status_id' as field name -> tasks app is not working anymore until user clicks another column for sorting
|
priority
|
status id sorting needs to be removed from state reported by pschuele on mar version milan status id sorting needs to be removed from state state might still contain status id as field name gt tasks app is not working anymore until user clicks another column for sorting
| 1
|
526,553
| 15,295,322,226
|
IssuesEvent
|
2021-02-24 04:33:36
|
wso2/product-apim-tooling
|
https://api.github.com/repos/wso2/product-apim-tooling
|
closed
|
Implement the commands for API delete, update and generate deployment directory for kubernetes
|
4.0.0 Priority/High Type/New Feature
|
**Description:**
- Implement delete and update API in the kubernetes cluster.
- Implement the command to Generate a sample directory with all the contents to use as the deployment directory when performing CI/CD pipeline tasks in kubernetes
|
1.0
|
Implement the commands for API delete, update and generate deployment directory for kubernetes - **Description:**
- Implement delete and update API in the kubernetes cluster.
- Implement the command to Generate a sample directory with all the contents to use as the deployment directory when performing CI/CD pipeline tasks in kubernetes
|
priority
|
implement the commands for api delete update and generate deployment directory for kubernetes description implement delete and update api in the kubernetes cluster implement the command to generate a sample directory with all the contents to use as the deployment directory when performing ci cd pipeline tasks in kubernetes
| 1
|
190,577
| 6,820,197,547
|
IssuesEvent
|
2017-11-07 13:05:51
|
fossasia/open-event-orga-server
|
https://api.github.com/repos/fossasia/open-event-orga-server
|
closed
|
Cannot delete ticket type in Wizard Step 1 even though no tickets have been sold
|
bug Priority: High
|
In the wizard step 1 it is not possible to delete an existing ticket type on eventyay.com. This ticket type does not have any tickets that we sold and should be deletable.
|
1.0
|
Cannot delete ticket type in Wizard Step 1 even though no tickets have been sold - In the wizard step 1 it is not possible to delete an existing ticket type on eventyay.com. This ticket type does not have any tickets that we sold and should be deletable.
|
priority
|
cannot delete ticket type in wizard step even though no tickets have been sold in the wizard step it is not possible to delete an existing ticket type on eventyay com this ticket type does not have any tickets that we sold and should be deletable
| 1
|
389,090
| 11,497,317,976
|
IssuesEvent
|
2020-02-12 09:49:16
|
AY1920S2-CS2103T-W13-4/main
|
https://api.github.com/repos/AY1920S2-CS2103T-W13-4/main
|
opened
|
viewExemptedModules
|
priority.High type.Story
|
As a user I can view the list of modules which I have declared exempted from, so that I can remember what modules I am exempted from.
|
1.0
|
viewExemptedModules - As a user I can view the list of modules which I have declared exempted from, so that I can remember what modules I am exempted from.
|
priority
|
viewexemptedmodules as a user i can view the list of modules which i have declared exempted from so that i can remember what modules i am exempted from
| 1
|
713,579
| 24,532,101,709
|
IssuesEvent
|
2022-10-11 17:19:52
|
RESOStandards/web-api-commander
|
https://api.github.com/repos/RESOStandards/web-api-commander
|
closed
|
Add Additional Logging for Lookup Resource Tests
|
enhancement high priority
|
In some cases, when the Lookup Resource tests fail, the error is logged to the console but not the error logs or test output.
Add handler for the case where lookup names advertised in the metadata aren't available in the Lookup resource.
|
1.0
|
Add Additional Logging for Lookup Resource Tests - In some cases, when the Lookup Resource tests fail, the error is logged to the console but not the error logs or test output.
Add handler for the case where lookup names advertised in the metadata aren't available in the Lookup resource.
|
priority
|
add additional logging for lookup resource tests in some cases when the lookup resource tests fail the error is logged to the console but not the error logs or test output add handler for the case where lookup names advertised in the metadata aren t available in the lookup resource
| 1
|
255,002
| 8,102,271,635
|
IssuesEvent
|
2018-08-12 23:48:13
|
collinbarrett/FilterLists
|
https://api.github.com/repos/collinbarrett/FilterLists
|
closed
|
fix dynamic page size to support soft keyboards on mobile
|
bug high priority ui
|
> The soft keyboard on Android is getting "pulled down" whenever i click the search bar
related to #329
|
1.0
|
fix dynamic page size to support soft keyboards on mobile - > The soft keyboard on Android is getting "pulled down" whenever i click the search bar
related to #329
|
priority
|
fix dynamic page size to support soft keyboards on mobile the soft keyboard on android is getting pulled down whenever i click the search bar related to
| 1
|
225,982
| 7,496,899,582
|
IssuesEvent
|
2018-04-08 14:26:21
|
uracreative/task-management
|
https://api.github.com/repos/uracreative/task-management
|
closed
|
Blog post about accepting crypto-currencies
|
Internal: Outreach Internal: Patreon Internal: Website Priority: High
|
Following our decision to accept cryptocurrency please proceed with a dedicated blog post about this. @AnXh3L0 also please support it with an image.
Deadline: 31.03.2018.
|
1.0
|
Blog post about accepting crypto-currencies - Following our decision to accept cryptocurrency please proceed with a dedicated blog post about this. @AnXh3L0 also please support it with an image.
Deadline: 31.03.2018.
|
priority
|
blog post about accepting crypto currencies following our decision to accept cryptocurrency please proceed with a dedicated blog post about this also please support it with an image deadline
| 1
|
115,316
| 4,663,009,060
|
IssuesEvent
|
2016-10-05 07:33:46
|
my-codeworks/fortnox-api
|
https://api.github.com/repos/my-codeworks/fortnox-api
|
closed
|
dry types
|
info:in-progress priority:high type:refactoring
|
Since we have found some cases where Virtus doesn't quite cover us and dry types is more explicitly what we need we are switching to dry types for our domain model implementation. This will also fix #62 and unblock #64...
|
1.0
|
dry types - Since we have found some cases where Virtus doesn't quite cover us and dry types is more explicitly what we need we are switching to dry types for our domain model implementation. This will also fix #62 and unblock #64...
|
priority
|
dry types since we have found some cases where virtus doesn t quite cover us and dry types is more explicitly what we need we are switching to dry types for our domain model implementation this will also fix and unblock
| 1
|
526,604
| 15,296,750,193
|
IssuesEvent
|
2021-02-24 07:22:21
|
hrsh7th/nvim-compe
|
https://api.github.com/repos/hrsh7th/nvim-compe
|
closed
|
Manual completion doesn't respect completeopt
|
enhancement high-priority
|
Hey there, thank you very much for the continued improvements to nvim-compe!
As of the latest master, whenever I manually trigger completion, my `completeopt` is ignored and `completeopt` is set to `menuone`.
This looks like an intentional change here: https://github.com/hrsh7th/nvim-compe/commit/398b06ccc9863f068e9103a7f8403f363f0d7bcb#diff-34e59c9ed2d73671884669c3870c279c247e447ecd596f57931c49a14c4ba4e0R259-R260
Is this something you'd be willing to change/make optional?
Thanks!
|
1.0
|
Manual completion doesn't respect completeopt - Hey there, thank you very much for the continued improvements to nvim-compe!
As of the latest master, whenever I manually trigger completion, my `completeopt` is ignored and `completeopt` is set to `menuone`.
This looks like an intentional change here: https://github.com/hrsh7th/nvim-compe/commit/398b06ccc9863f068e9103a7f8403f363f0d7bcb#diff-34e59c9ed2d73671884669c3870c279c247e447ecd596f57931c49a14c4ba4e0R259-R260
Is this something you'd be willing to change/make optional?
Thanks!
|
priority
|
manual completion doesn t respect completeopt hey there thank you very much for the continued improvements to nvim compe as of the latest master whenever i manually trigger completion my completeopt is ignored and completeopt is set to menuone this looks like an intentional change here is this something you d be willing to change make optional thanks
| 1
|
576,930
| 17,099,187,125
|
IssuesEvent
|
2021-07-09 08:48:51
|
MaibornWolff/codecharta
|
https://api.github.com/repos/MaibornWolff/codecharta
|
closed
|
Creating a scenario with changed colors
|
Hackathon feature javascript pr-visualization priority:high
|
# Feature request
<Please note by far the quickest way to get a new feature is to file a Pull Request.>
<We will consider your request but it may be closed,>
<if it's something we're not actively planning to work on>
<or it does not match our visison of this software.>
## Description
As a user, I want to save my set colors so that I can use them in other CC projects.
## Acceptance criteria
- The user can select also the colors by adding the scenario
- If the user switch to the scenario the map is colored in the saved colors.
|
1.0
|
Creating a scenario with changed colors - # Feature request
<Please note by far the quickest way to get a new feature is to file a Pull Request.>
<We will consider your request but it may be closed,>
<if it's something we're not actively planning to work on>
<or it does not match our visison of this software.>
## Description
As a user, I want to save my set colors so that I can use them in other CC projects.
## Acceptance criteria
- The user can select also the colors by adding the scenario
- If the user switch to the scenario the map is colored in the saved colors.
|
priority
|
creating a scenario with changed colors feature request description as a user i want to save my set colors so that i can use them in other cc projects acceptance criteria the user can select also the colors by adding the scenario if the user switch to the scenario the map is colored in the saved colors
| 1
|
226,745
| 7,522,615,968
|
IssuesEvent
|
2018-04-12 21:02:03
|
IFRCGo/cbs
|
https://api.github.com/repos/IFRCGo/cbs
|
closed
|
Add URL config for navigation
|
Portal frontend high-priority
|
### Description
At deployment stage, we need to know what environment we are in, and thus set the correct url for the different applications that is using the navigation bar as UI Glue
### Environment
* All
|
1.0
|
Add URL config for navigation - ### Description
At deployment stage, we need to know what environment we are in, and thus set the correct url for the different applications that is using the navigation bar as UI Glue
### Environment
* All
|
priority
|
add url config for navigation description at deployment stage we need to know what environment we are in and thus set the correct url for the different applications that is using the navigation bar as ui glue environment all
| 1
|
201,029
| 7,021,452,454
|
IssuesEvent
|
2017-12-22 04:29:10
|
wso2/message-broker
|
https://api.github.com/repos/wso2/message-broker
|
opened
|
Boostrap REST API framework
|
Priority/High Severity/Critical Type/New Feature
|
### Description
We can possibly use msf4j to implement the REST API framework in MB4. We are planning to implement following admin services using the framework.
- Queue related REST API
- Subscription related REST APIs
- Subscription Related REST API
- DLC related REST API
- Topic related REST API
|
1.0
|
Boostrap REST API framework - ### Description
We can possibly use msf4j to implement the REST API framework in MB4. We are planning to implement following admin services using the framework.
- Queue related REST API
- Subscription related REST APIs
- Subscription Related REST API
- DLC related REST API
- Topic related REST API
|
priority
|
boostrap rest api framework description we can possibly use to implement the rest api framework in we are planning to implement following admin services using the framework queue related rest api subscription related rest apis subscription related rest api dlc related rest api topic related rest api
| 1
|
565,658
| 16,766,665,664
|
IssuesEvent
|
2021-06-14 09:40:20
|
StrangeLoopGames/EcoIssues
|
https://api.github.com/repos/StrangeLoopGames/EcoIssues
|
opened
|
[0.9.4 staging-2020] Tool anomations are broken in 3rd person view.
|
Category: Gameplay Priority: High Regression Squad: Otter Type: Bug
|
Something happened to the left hand:


https://drive.google.com/file/d/1dneO9DQdplCGzU1136b0Qa7Q6oBePj43/view?usp=sharing
|
1.0
|
[0.9.4 staging-2020] Tool anomations are broken in 3rd person view. - Something happened to the left hand:


https://drive.google.com/file/d/1dneO9DQdplCGzU1136b0Qa7Q6oBePj43/view?usp=sharing
|
priority
|
tool anomations are broken in person view something happened to the left hand
| 1
|
24,217
| 2,666,952,538
|
IssuesEvent
|
2015-03-22 02:56:52
|
babel/babel
|
https://api.github.com/repos/babel/babel
|
reopened
|
Generate blacklist based on targets
|
high priority
|
Possibly through a `blacklistUserAgent` option or something. Would use the kangax compat-table. Important to note that it does not guarantee complete spec compliancy on the vendors end.
References:
- https://github.com/kangax/compat-table
- https://github.com/Fyrd/caniuse
- https://github.com/3rd-Eden/useragent
|
1.0
|
Generate blacklist based on targets - Possibly through a `blacklistUserAgent` option or something. Would use the kangax compat-table. Important to note that it does not guarantee complete spec compliancy on the vendors end.
References:
- https://github.com/kangax/compat-table
- https://github.com/Fyrd/caniuse
- https://github.com/3rd-Eden/useragent
|
priority
|
generate blacklist based on targets possibly through a blacklistuseragent option or something would use the kangax compat table important to note that it does not guarantee complete spec compliancy on the vendors end references
| 1
|
766,733
| 26,896,548,355
|
IssuesEvent
|
2023-02-06 12:52:16
|
zowe/api-layer
|
https://api.github.com/repos/zowe/api-layer
|
closed
|
Increasing number of WARN logs
|
bug Priority: High v2 23PI1
|
**Describe the bug**
Gateway service is producing many warn logs at startup
**Steps to Reproduce**
1. Start GW
**Expected behavior**
There are no or at least very few warn logs.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Logs**
2022-06-13 09:25:09.104 <ZWEAGW1:main:28407> ac892247 WARN (o.a.t.u.n.SSLHostConfig) The protocol [TLSv1.3] was added to the list of protocols on the SSLHostConfig named [_default_]. Check if a +/- prefix is missing.
2022-06-13 09:25:10.941 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/internal_error']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/error']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/application/health']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/application/info']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/application/version']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/gateway/auth/keys/public/all']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/gateway/auth/keys/public/current']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:11.380 <ZWEAGW1:main:28407> ac892247 WARN (o.s.c.c.l.r.ReactorLoadBalancerClientAutoConfiguration$ReactorLoadBalancerClientRibbonWarnLogger) You have RibbonLoadBalancerClient on your classpath. LoadBalancerExchangeFilterFunction that uses it under the hood will be used by default. Spring Cloud Ribbon is now in maintenance mode, so we suggest switching to ReactorLoadBalancerExchangeFilterFunction instead. In order to use it, set the value of `spring.cloud.loadbalancer.ribbon.enabled` to `false` or remove spring-cloud-starter-netflix-ribbon from your project.
2022-06-13 09:25:11.502 <ZWEAGW1:main:28407> ac892247 WARN (o.a.t.u.n.SSLUtilBase) The JSSE TLS 1.3 implementation does not support post handshake authentication (PHA) and is therefore incompatible with optional certificate authentication
2022-06-13 09:25:12.015 <ZWEAGW1:main:28407> ac892247 INFO (o.z.a.p.s.ServiceStartupEventHandler) ZWEAM000I Gateway Service started in 7.723 seconds
**Details**
- Version and build number: [e.g. 0.4.4-SNAPSHOT build # 155]
- Test environment: [either defined Zowe test environment: Marist (1, 2, 3), River, or your own environment: z/OS version and z/OSMF version]
**API Catalog Web UI (in case of API Catalog issue):**
- OS: [e.g. macOS, Windows]
- Browser [e.g. Chrome, Safari]
- Version [e.g. 71.0.3578.98]
**REST API client (in case of REST API issue):**
- Technology: [e.g. Spring Boot, Node.js]
- OS: [e.g. Windows 10]
**Additional context**
Add any other context about the problem here.
https://github.com/zowe/api-layer/wiki/Issue-management
|
1.0
|
Increasing number of WARN logs - **Describe the bug**
Gateway service is producing many warn logs at startup
**Steps to Reproduce**
1. Start GW
**Expected behavior**
There are no or at least very few warn logs.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Logs**
2022-06-13 09:25:09.104 <ZWEAGW1:main:28407> ac892247 WARN (o.a.t.u.n.SSLHostConfig) The protocol [TLSv1.3] was added to the list of protocols on the SSLHostConfig named [_default_]. Check if a +/- prefix is missing.
2022-06-13 09:25:10.941 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/internal_error']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/error']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/application/health']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/application/info']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/application/version']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/gateway/auth/keys/public/all']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:10.942 <ZWEAGW1:main:28407> ac892247 WARN (o.s.s.c.a.w.b.WebSecurity) You are asking Spring Security to ignore Ant [pattern='/gateway/auth/keys/public/current']. This is not recommended -- please use permitAll via HttpSecurity#authorizeHttpRequests instead.
2022-06-13 09:25:11.380 <ZWEAGW1:main:28407> ac892247 WARN (o.s.c.c.l.r.ReactorLoadBalancerClientAutoConfiguration$ReactorLoadBalancerClientRibbonWarnLogger) You have RibbonLoadBalancerClient on your classpath. LoadBalancerExchangeFilterFunction that uses it under the hood will be used by default. Spring Cloud Ribbon is now in maintenance mode, so we suggest switching to ReactorLoadBalancerExchangeFilterFunction instead. In order to use it, set the value of `spring.cloud.loadbalancer.ribbon.enabled` to `false` or remove spring-cloud-starter-netflix-ribbon from your project.
2022-06-13 09:25:11.502 <ZWEAGW1:main:28407> ac892247 WARN (o.a.t.u.n.SSLUtilBase) The JSSE TLS 1.3 implementation does not support post handshake authentication (PHA) and is therefore incompatible with optional certificate authentication
2022-06-13 09:25:12.015 <ZWEAGW1:main:28407> ac892247 INFO (o.z.a.p.s.ServiceStartupEventHandler) ZWEAM000I Gateway Service started in 7.723 seconds
**Details**
- Version and build number: [e.g. 0.4.4-SNAPSHOT build # 155]
- Test environment: [either defined Zowe test environment: Marist (1, 2, 3), River, or your own environment: z/OS version and z/OSMF version]
**API Catalog Web UI (in case of API Catalog issue):**
- OS: [e.g. macOS, Windows]
- Browser [e.g. Chrome, Safari]
- Version [e.g. 71.0.3578.98]
**REST API client (in case of REST API issue):**
- Technology: [e.g. Spring Boot, Node.js]
- OS: [e.g. Windows 10]
**Additional context**
Add any other context about the problem here.
https://github.com/zowe/api-layer/wiki/Issue-management
|
priority
|
increasing number of warn logs describe the bug gateway service is producing many warn logs at startup steps to reproduce start gw expected behavior there are no or at least very few warn logs screenshots if applicable add screenshots to help explain your problem logs warn o a t u n sslhostconfig the protocol was added to the list of protocols on the sslhostconfig named check if a prefix is missing warn o s s c a w b websecurity you are asking spring security to ignore ant this is not recommended please use permitall via httpsecurity authorizehttprequests instead warn o s s c a w b websecurity you are asking spring security to ignore ant this is not recommended please use permitall via httpsecurity authorizehttprequests instead warn o s s c a w b websecurity you are asking spring security to ignore ant this is not recommended please use permitall via httpsecurity authorizehttprequests instead warn o s s c a w b websecurity you are asking spring security to ignore ant this is not recommended please use permitall via httpsecurity authorizehttprequests instead warn o s s c a w b websecurity you are asking spring security to ignore ant this is not recommended please use permitall via httpsecurity authorizehttprequests instead warn o s s c a w b websecurity you are asking spring security to ignore ant this is not recommended please use permitall via httpsecurity authorizehttprequests instead warn o s s c a w b websecurity you are asking spring security to ignore ant this is not recommended please use permitall via httpsecurity authorizehttprequests instead warn o s c c l r reactorloadbalancerclientautoconfiguration reactorloadbalancerclientribbonwarnlogger you have ribbonloadbalancerclient on your classpath loadbalancerexchangefilterfunction that uses it under the hood will be used by default spring cloud ribbon is now in maintenance mode so we suggest switching to reactorloadbalancerexchangefilterfunction instead in order to use it set the value of spring cloud loadbalancer ribbon enabled to false or remove spring cloud starter netflix ribbon from your project warn o a t u n sslutilbase the jsse tls implementation does not support post handshake authentication pha and is therefore incompatible with optional certificate authentication info o z a p s servicestartupeventhandler gateway service started in seconds details version and build number test environment api catalog web ui in case of api catalog issue os browser version rest api client in case of rest api issue technology os additional context add any other context about the problem here
| 1
|
792,838
| 27,975,506,535
|
IssuesEvent
|
2023-03-25 14:32:19
|
AY2223S2-CS2113-W12-2/tp
|
https://api.github.com/repos/AY2223S2-CS2113-W12-2/tp
|
closed
|
Read data stored in text file to local ArrayList
|
enhancement priority.High
|
As a basic user, I am able to retrieve my saved data and load it back into the program
|
1.0
|
Read data stored in text file to local ArrayList - As a basic user, I am able to retrieve my saved data and load it back into the program
|
priority
|
read data stored in text file to local arraylist as a basic user i am able to retrieve my saved data and load it back into the program
| 1
|
119,545
| 4,771,819,737
|
IssuesEvent
|
2016-10-26 19:04:33
|
ORNL-CEES/DataTransferKit
|
https://api.github.com/repos/ORNL-CEES/DataTransferKit
|
closed
|
Version 2 Release
|
High Priority in progress
|
Version 2 of the code will be released prior to starting development on version 3. The following needs to be finished:
- [x] Merge all open pull requests
- [x] Create version 2 branch @rombur
- [x] Create a new website @rombur @dalg24
- [x] Publish version 2 documentation and development version on the new website @rombur
- [x] Make clear in documentation and on front page README that the version 2 branch is a stable release and the master branch is for development and is subject to changing interfaces and data structures. @rombur @sslattery
- [x] Update the front page README to link to the stable version and add link to the tarball @Rombur ur
- [x] Add version 2 to CI build system for any changes to branch and pull requests/bug fixes @dalg24
- [x] Create announce mailing list
- [x] Announcement of version 2 release
|
1.0
|
Version 2 Release - Version 2 of the code will be released prior to starting development on version 3. The following needs to be finished:
- [x] Merge all open pull requests
- [x] Create version 2 branch @rombur
- [x] Create a new website @rombur @dalg24
- [x] Publish version 2 documentation and development version on the new website @rombur
- [x] Make clear in documentation and on front page README that the version 2 branch is a stable release and the master branch is for development and is subject to changing interfaces and data structures. @rombur @sslattery
- [x] Update the front page README to link to the stable version and add link to the tarball @Rombur ur
- [x] Add version 2 to CI build system for any changes to branch and pull requests/bug fixes @dalg24
- [x] Create announce mailing list
- [x] Announcement of version 2 release
|
priority
|
version release version of the code will be released prior to starting development on version the following needs to be finished merge all open pull requests create version branch rombur create a new website rombur publish version documentation and development version on the new website rombur make clear in documentation and on front page readme that the version branch is a stable release and the master branch is for development and is subject to changing interfaces and data structures rombur sslattery update the front page readme to link to the stable version and add link to the tarball rombur ur add version to ci build system for any changes to branch and pull requests bug fixes create announce mailing list announcement of version release
| 1
|
713,094
| 24,515,911,407
|
IssuesEvent
|
2022-10-11 04:59:34
|
yukieiji/ExtremeRoles
|
https://api.github.com/repos/yukieiji/ExtremeRoles
|
closed
|
Extreme Roles v3.3.0.0 リリーステスト
|
優先度:高/Priority:High ExtremeRoles
|
内部的なリファクタ等で機能が多くなりすぎて把握しきれなくなり始めてるのでまだ全部完成してないですが現状で把握して置かなければならないリリーステストの項目を載せておきます
- [x] : ボディーガード
- [x] : ボディーガードのシールドがタスクフェーズの任意のタイミングでリセットできることを確認したか
- [x] : ボディーガードのシールドでシューターのシュートが防げるか
- [x] : ボディーガードが会議中にシールドを張ることが出来るか
- [x] : ボディーガードからシールドを張った人を確認できることを確認したか
- [x] : ボディーガードの能力覚醒を確認したか
- [x] : ボディーガードの能力発動時の死亡後の会議で正しく報告されることを確認したか
- [x] : 複数人ボディーガードがいる場合、上記がそれぞれ正しく動作することを確認したか
- [x] : カースメーカー
- [x] : 今までの全機能がすべて使えることを確認したか
- [x] : カースメーカーの能力覚醒を確認したか
- [x] : カースメーカーの能力覚醒後、死体が消えない事を確認したか
- [x] : カースメーカーの能力覚醒で発動時間が短くなったことを確認したか
- [x] : シェリフ
- [x] : 今までの全機能がすべて使えることを確認したか
- [x] : タスク増加率のオプション値を変更した時、複数のタスクをやることでキルボタンが生えキル可能回数が増えることを確認したか
- [x] : 見習い探偵
- [x] : +以降の役職が正しく引き継がれることを確認したか
- [x] : フェイカー
- [x] : 今までの全機能がすべて使えることを確認したか
- [x] : 上記機能を特定のキー操作で制御できることを確認したか
- [x] : 正しくダミープレイヤーを作成できることを確認したか
- [x] : キー入力によってボタンの画像が変化することを確認したか
- [x] : オーバーローダー
- [x] : 今までの全機能がすべて使えることを確認したか
- [x] : 覚醒役職として正しく機能することを確認したか
- [x] : ペインター
- [x] : キー入力で動作が変更できることを確認したか(画像も)
- [x] : ポルターガイスト
- [x] : 使用回数制限が正しく動作しているか
- [x] : 新役職周り
- [x] : Monoによるリファクタリングで会議情報周りが正しく動作しているか
- [x] : GameDataStoreからExtremeShipStatusにリファクタリングしたのでそこらへんの全機能のリリーステスト
- [x] : パン屋
- [x] : アサシン
- [x] : タイムマスター
- [x] : ベント周り
- [x] : 最終結果表示
- [x] : アップデートオブジェクト
- [x] : 会議リセットオブジェクト
- [x] : 不具合修正周り
- [x] : プレイヤー選択の色が残り続ける不具合が正しく治っているか
|
1.0
|
Extreme Roles v3.3.0.0 リリーステスト - 内部的なリファクタ等で機能が多くなりすぎて把握しきれなくなり始めてるのでまだ全部完成してないですが現状で把握して置かなければならないリリーステストの項目を載せておきます
- [x] : ボディーガード
- [x] : ボディーガードのシールドがタスクフェーズの任意のタイミングでリセットできることを確認したか
- [x] : ボディーガードのシールドでシューターのシュートが防げるか
- [x] : ボディーガードが会議中にシールドを張ることが出来るか
- [x] : ボディーガードからシールドを張った人を確認できることを確認したか
- [x] : ボディーガードの能力覚醒を確認したか
- [x] : ボディーガードの能力発動時の死亡後の会議で正しく報告されることを確認したか
- [x] : 複数人ボディーガードがいる場合、上記がそれぞれ正しく動作することを確認したか
- [x] : カースメーカー
- [x] : 今までの全機能がすべて使えることを確認したか
- [x] : カースメーカーの能力覚醒を確認したか
- [x] : カースメーカーの能力覚醒後、死体が消えない事を確認したか
- [x] : カースメーカーの能力覚醒で発動時間が短くなったことを確認したか
- [x] : シェリフ
- [x] : 今までの全機能がすべて使えることを確認したか
- [x] : タスク増加率のオプション値を変更した時、複数のタスクをやることでキルボタンが生えキル可能回数が増えることを確認したか
- [x] : 見習い探偵
- [x] : +以降の役職が正しく引き継がれることを確認したか
- [x] : フェイカー
- [x] : 今までの全機能がすべて使えることを確認したか
- [x] : 上記機能を特定のキー操作で制御できることを確認したか
- [x] : 正しくダミープレイヤーを作成できることを確認したか
- [x] : キー入力によってボタンの画像が変化することを確認したか
- [x] : オーバーローダー
- [x] : 今までの全機能がすべて使えることを確認したか
- [x] : 覚醒役職として正しく機能することを確認したか
- [x] : ペインター
- [x] : キー入力で動作が変更できることを確認したか(画像も)
- [x] : ポルターガイスト
- [x] : 使用回数制限が正しく動作しているか
- [x] : 新役職周り
- [x] : Monoによるリファクタリングで会議情報周りが正しく動作しているか
- [x] : GameDataStoreからExtremeShipStatusにリファクタリングしたのでそこらへんの全機能のリリーステスト
- [x] : パン屋
- [x] : アサシン
- [x] : タイムマスター
- [x] : ベント周り
- [x] : 最終結果表示
- [x] : アップデートオブジェクト
- [x] : 会議リセットオブジェクト
- [x] : 不具合修正周り
- [x] : プレイヤー選択の色が残り続ける不具合が正しく治っているか
|
priority
|
extreme roles リリーステスト 内部的なリファクタ等で機能が多くなりすぎて把握しきれなくなり始めてるのでまだ全部完成してないですが現状で把握して置かなければならないリリーステストの項目を載せておきます ボディーガード ボディーガードのシールドがタスクフェーズの任意のタイミングでリセットできることを確認したか ボディーガードのシールドでシューターのシュートが防げるか ボディーガードが会議中にシールドを張ることが出来るか ボディーガードからシールドを張った人を確認できることを確認したか ボディーガードの能力覚醒を確認したか ボディーガードの能力発動時の死亡後の会議で正しく報告されることを確認したか 複数人ボディーガードがいる場合、上記がそれぞれ正しく動作することを確認したか カースメーカー 今までの全機能がすべて使えることを確認したか カースメーカーの能力覚醒を確認したか カースメーカーの能力覚醒後、死体が消えない事を確認したか カースメーカーの能力覚醒で発動時間が短くなったことを確認したか シェリフ 今までの全機能がすべて使えることを確認したか タスク増加率のオプション値を変更した時、複数のタスクをやることでキルボタンが生えキル可能回数が増えることを確認したか 見習い探偵 以降の役職が正しく引き継がれることを確認したか フェイカー 今までの全機能がすべて使えることを確認したか 上記機能を特定のキー操作で制御できることを確認したか 正しくダミープレイヤーを作成できることを確認したか キー入力によってボタンの画像が変化することを確認したか オーバーローダー 今までの全機能がすべて使えることを確認したか 覚醒役職として正しく機能することを確認したか ペインター キー入力で動作が変更できることを確認したか 画像も ポルターガイスト 使用回数制限が正しく動作しているか 新役職周り monoによるリファクタリングで会議情報周りが正しく動作しているか gamedatastoreからextremeshipstatusにリファクタリングしたのでそこらへんの全機能のリリーステスト パン屋 アサシン タイムマスター ベント周り 最終結果表示 アップデートオブジェクト 会議リセットオブジェクト 不具合修正周り プレイヤー選択の色が残り続ける不具合が正しく治っているか
| 1
|
438,825
| 12,652,086,350
|
IssuesEvent
|
2020-06-17 02:27:27
|
jrsteensen/OpenHornet
|
https://api.github.com/repos/jrsteensen/OpenHornet
|
closed
|
Rudder Pedal Interface Plate - Holes for eccentric nuts
|
Category: MCAD Priority: High Status: Available Type: Bug
|
The holes for the eccentric nuts are not the proper size for the nuts selected. they are only used as spacers in the current arrangement.

|
1.0
|
Rudder Pedal Interface Plate - Holes for eccentric nuts - The holes for the eccentric nuts are not the proper size for the nuts selected. they are only used as spacers in the current arrangement.

|
priority
|
rudder pedal interface plate holes for eccentric nuts the holes for the eccentric nuts are not the proper size for the nuts selected they are only used as spacers in the current arrangement
| 1
|
170,580
| 6,451,715,619
|
IssuesEvent
|
2017-08-15 00:10:30
|
okTurtles/group-income-simple
|
https://api.github.com/repos/okTurtles/group-income-simple
|
opened
|
Update the Group Creation process to match mockups from last hackathon
|
App:Frontend Kind:Core Note:UI/UX Note:Up-for-grabs Priority:High
|
### Problem
We created a nice creation flow at the last hackathon but only implemented the Dashboard in code so far.
### Solution
Create, using the VueAssistant, the setup flow that we came up with during the hackathon. Questions? Send via gitter/slack. /cc @dsernst
|
1.0
|
Update the Group Creation process to match mockups from last hackathon - ### Problem
We created a nice creation flow at the last hackathon but only implemented the Dashboard in code so far.
### Solution
Create, using the VueAssistant, the setup flow that we came up with during the hackathon. Questions? Send via gitter/slack. /cc @dsernst
|
priority
|
update the group creation process to match mockups from last hackathon problem we created a nice creation flow at the last hackathon but only implemented the dashboard in code so far solution create using the vueassistant the setup flow that we came up with during the hackathon questions send via gitter slack cc dsernst
| 1
|
265,980
| 8,361,356,677
|
IssuesEvent
|
2018-10-03 14:09:33
|
mantidproject/mantid
|
https://api.github.com/repos/mantidproject/mantid
|
closed
|
ISIS Powder Gem Focus overwriting all results with final workspace
|
Component: Diffraction Component: Python Group: Powder Misc: Bug Priority: High
|
The final workspace of the of the focus for isis powder gem is overwriting all the previously focused workspaces
### Expected behavior
Focus should output 160 different workspaces in texture mode, or 6 when not.
### Actual behavior
the right number of workspaces are output, but each workspace is identical
### Steps to reproduce the behavior
run Gem.focus with any parameters on an run.
### Platforms affected
all
|
1.0
|
ISIS Powder Gem Focus overwriting all results with final workspace - The final workspace of the of the focus for isis powder gem is overwriting all the previously focused workspaces
### Expected behavior
Focus should output 160 different workspaces in texture mode, or 6 when not.
### Actual behavior
the right number of workspaces are output, but each workspace is identical
### Steps to reproduce the behavior
run Gem.focus with any parameters on an run.
### Platforms affected
all
|
priority
|
isis powder gem focus overwriting all results with final workspace the final workspace of the of the focus for isis powder gem is overwriting all the previously focused workspaces expected behavior focus should output different workspaces in texture mode or when not actual behavior the right number of workspaces are output but each workspace is identical steps to reproduce the behavior run gem focus with any parameters on an run platforms affected all
| 1
|
315,767
| 9,631,924,850
|
IssuesEvent
|
2019-05-15 15:08:51
|
tsea83-g34/TSEA83_Hardware
|
https://api.github.com/repos/tsea83-g34/TSEA83_Hardware
|
closed
|
Fix register file bug when writing and reading to same register in same cycle
|
high priority
|
Fix register file bug when writing and reading to same register in same cycle.
|
1.0
|
Fix register file bug when writing and reading to same register in same cycle - Fix register file bug when writing and reading to same register in same cycle.
|
priority
|
fix register file bug when writing and reading to same register in same cycle fix register file bug when writing and reading to same register in same cycle
| 1
|
381,578
| 11,276,857,928
|
IssuesEvent
|
2020-01-15 00:39:30
|
EyeSeeTea/malariapp
|
https://api.github.com/repos/EyeSeeTea/malariapp
|
closed
|
1.4 Plus sign not clear in plan module
|
HNQIS complexity - med (1-5hr) priority - high type - maintenance
|
The plus sign in plan module is not clear in some devices. This is not specific to 1.5.1. Would appreciate if this is made darker.

|
1.0
|
1.4 Plus sign not clear in plan module - The plus sign in plan module is not clear in some devices. This is not specific to 1.5.1. Would appreciate if this is made darker.

|
priority
|
plus sign not clear in plan module the plus sign in plan module is not clear in some devices this is not specific to would appreciate if this is made darker
| 1
|
527,536
| 15,344,271,133
|
IssuesEvent
|
2021-02-28 00:17:04
|
ubclaunchpad/life-at-ubc
|
https://api.github.com/repos/ubclaunchpad/life-at-ubc
|
opened
|
Saving Methods
|
discussion priority:high
|
we discussed two types of saving today! pls comment what you think about the two methods and/or which one you prefer @johnagl @yehee @nico-zhu @danielchen-pyc
## Shareable Links
After generating and selecting a schedule from Courseload, the user has the option of saving the schedule via a link (something like `courseload.com/saved/:id`). This link allows them to share their selected schedule with others. They'll have to click a save button on the selected schedule or something along those lines to get this link.
## Worklist Saving
Mentioned in issue #59. We can allow users to save a schedule by generating links of the form
```
courses.students.ubc.ca/cs/courseschedule?pname=subjarea&tname=subj-course&dept=[COURSECODE]&course=[COURSENUMBER]&submit=save
```
for each course. Once the user has logged in the SSC and selected the right worklist to save to, we provide a button that redirects them to each of those links and it'll save all courses to that worklist.
|
1.0
|
Saving Methods - we discussed two types of saving today! pls comment what you think about the two methods and/or which one you prefer @johnagl @yehee @nico-zhu @danielchen-pyc
## Shareable Links
After generating and selecting a schedule from Courseload, the user has the option of saving the schedule via a link (something like `courseload.com/saved/:id`). This link allows them to share their selected schedule with others. They'll have to click a save button on the selected schedule or something along those lines to get this link.
## Worklist Saving
Mentioned in issue #59. We can allow users to save a schedule by generating links of the form
```
courses.students.ubc.ca/cs/courseschedule?pname=subjarea&tname=subj-course&dept=[COURSECODE]&course=[COURSENUMBER]&submit=save
```
for each course. Once the user has logged in the SSC and selected the right worklist to save to, we provide a button that redirects them to each of those links and it'll save all courses to that worklist.
|
priority
|
saving methods we discussed two types of saving today pls comment what you think about the two methods and or which one you prefer johnagl yehee nico zhu danielchen pyc shareable links after generating and selecting a schedule from courseload the user has the option of saving the schedule via a link something like courseload com saved id this link allows them to share their selected schedule with others they ll have to click a save button on the selected schedule or something along those lines to get this link worklist saving mentioned in issue we can allow users to save a schedule by generating links of the form courses students ubc ca cs courseschedule pname subjarea tname subj course dept course submit save for each course once the user has logged in the ssc and selected the right worklist to save to we provide a button that redirects them to each of those links and it ll save all courses to that worklist
| 1
|
620,630
| 19,565,850,091
|
IssuesEvent
|
2022-01-04 00:06:22
|
Sequel-Ace/Sequel-Ace
|
https://api.github.com/repos/Sequel-Ace/Sequel-Ace
|
closed
|
Query Editor exremely laggy when a few dozen or more queries are present
|
Bug Help wanted PR Welcome Highest Priority
|
- Sequel Ace Version: Version 3.3.1m Build 3028
- Sequel Ace Source: App Store
- macOS Version: 11.3 (20E232)
- Processor Type (Intel/Apple): Intel
- MySQL Version: 5.7.12
- macOS Localization: English
**Description**
When I have only a few queries in the editor, key presses become sluggish. The more queries I have, the slower keypresses are registered until it becomes nearly unusable. Even with just this in the editor window, I am typing faster than the editor can keep up:
```
########### LIVE SERVER ############
show variables like '%version';
SELECT * FROM dtrpg_data d
WHERE d.`dtrpg_data_key` = 'login_30_not_logged_in'
OR d.`dtrpg_data_key` = 'login_not_logged_in_but_was'
OR d.`dtrpg_data_key` LIKE 'login_%_hits'
OR d.`dtrpg_data_key` LIKE 'login_%_misses'
;
DELETE FROM dtrpg_data
WHERE `dtrpg_data_key` = 'login_30_not_logged_in'
OR `dtrpg_data_key` = 'login_not_logged_in_but_was'
OR `dtrpg_data_key` LIKE 'login_%_hits'
OR `dtrpg_data_key` LIKE 'login_%_misses'
;
UPDATE products_attributes_pod
SET
lsi_setup_status = 8
, lsi_setup_message = '.'
WHERE products_attributes_id IN (1394623);
```
This appears to be caused by slow processing for syntax highlighting.
**Steps To Reproduce**
1. Insert above text.
2. Just type in a bunch of random characters on they keyboard.
3. Note that the editor does not keep up with your typing.
4. Turn off syntax highlighting and repeat.
5. Note that there is no lag now.
**Expected Behaviour**
Keypresses should register immediately.
Here is a video showing this in action: https://youtu.be/UxvHNs_VDHo I pressed all of those keys in under 1 second, and note that it took several seconds for the characters to appear. The more queries you have in the editor, the worse this gets until each individual keypress takes 10 seconds or more to register.
|
1.0
|
Query Editor exremely laggy when a few dozen or more queries are present - - Sequel Ace Version: Version 3.3.1m Build 3028
- Sequel Ace Source: App Store
- macOS Version: 11.3 (20E232)
- Processor Type (Intel/Apple): Intel
- MySQL Version: 5.7.12
- macOS Localization: English
**Description**
When I have only a few queries in the editor, key presses become sluggish. The more queries I have, the slower keypresses are registered until it becomes nearly unusable. Even with just this in the editor window, I am typing faster than the editor can keep up:
```
########### LIVE SERVER ############
show variables like '%version';
SELECT * FROM dtrpg_data d
WHERE d.`dtrpg_data_key` = 'login_30_not_logged_in'
OR d.`dtrpg_data_key` = 'login_not_logged_in_but_was'
OR d.`dtrpg_data_key` LIKE 'login_%_hits'
OR d.`dtrpg_data_key` LIKE 'login_%_misses'
;
DELETE FROM dtrpg_data
WHERE `dtrpg_data_key` = 'login_30_not_logged_in'
OR `dtrpg_data_key` = 'login_not_logged_in_but_was'
OR `dtrpg_data_key` LIKE 'login_%_hits'
OR `dtrpg_data_key` LIKE 'login_%_misses'
;
UPDATE products_attributes_pod
SET
lsi_setup_status = 8
, lsi_setup_message = '.'
WHERE products_attributes_id IN (1394623);
```
This appears to be caused by slow processing for syntax highlighting.
**Steps To Reproduce**
1. Insert above text.
2. Just type in a bunch of random characters on they keyboard.
3. Note that the editor does not keep up with your typing.
4. Turn off syntax highlighting and repeat.
5. Note that there is no lag now.
**Expected Behaviour**
Keypresses should register immediately.
Here is a video showing this in action: https://youtu.be/UxvHNs_VDHo I pressed all of those keys in under 1 second, and note that it took several seconds for the characters to appear. The more queries you have in the editor, the worse this gets until each individual keypress takes 10 seconds or more to register.
|
priority
|
query editor exremely laggy when a few dozen or more queries are present sequel ace version version build sequel ace source app store macos version processor type intel apple intel mysql version macos localization english description when i have only a few queries in the editor key presses become sluggish the more queries i have the slower keypresses are registered until it becomes nearly unusable even with just this in the editor window i am typing faster than the editor can keep up live server show variables like version select from dtrpg data d where d dtrpg data key login not logged in or d dtrpg data key login not logged in but was or d dtrpg data key like login hits or d dtrpg data key like login misses delete from dtrpg data where dtrpg data key login not logged in or dtrpg data key login not logged in but was or dtrpg data key like login hits or dtrpg data key like login misses update products attributes pod set lsi setup status lsi setup message where products attributes id in this appears to be caused by slow processing for syntax highlighting steps to reproduce insert above text just type in a bunch of random characters on they keyboard note that the editor does not keep up with your typing turn off syntax highlighting and repeat note that there is no lag now expected behaviour keypresses should register immediately here is a video showing this in action i pressed all of those keys in under second and note that it took several seconds for the characters to appear the more queries you have in the editor the worse this gets until each individual keypress takes seconds or more to register
| 1
|
175,859
| 6,554,899,531
|
IssuesEvent
|
2017-09-06 08:13:39
|
Gulix/geckos
|
https://api.github.com/repos/Gulix/geckos
|
closed
|
Rich Text Box - Special Characters
|
enhancement high-priority
|
Sometimes, a template could have a great use of special characters (boxes, bullets, ...)
It would be useful to add them in a quick access button to the rich text field.
|
1.0
|
Rich Text Box - Special Characters - Sometimes, a template could have a great use of special characters (boxes, bullets, ...)
It would be useful to add them in a quick access button to the rich text field.
|
priority
|
rich text box special characters sometimes a template could have a great use of special characters boxes bullets it would be useful to add them in a quick access button to the rich text field
| 1
|
50,669
| 3,006,546,631
|
IssuesEvent
|
2015-07-27 11:09:11
|
Itseez/opencv
|
https://api.github.com/repos/Itseez/opencv
|
opened
|
Add avfoundation support for normal OSX build, not just iOS
|
affected: master auto-transferred bug category: highgui-video priority: normal
|
Transferred from http://code.opencv.org/issues/4187
```
|| Dustin Spicuzza on 2015-02-10 06:01
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: highgui-video
|| Tracker: Bug
|| Difficulty: Easy
|| PR:
|| Platform: x64 / Mac OSX
```
Add avfoundation support for normal OSX build, not just iOS
-----------
```
When using QTKit, things like exposure settings and such aren't supported. AVFoundation supports doing this, however.
I hacked with the makefiles in a very minimal way, and I found the following:
* Can't enable QTKit and AVFoundation at the same time, otherwise link errors occur
* Have to add some frameworks in CMakeLists.txt in videoio -- here's what my line that worked was (not sure if there's too many frameworks there, I just copy/pasted settings from IOS):
<pre>
list(APPEND VIDEOIO_LIBRARIES "-framework Accelerate" "-framework AVFoundation" "-framework CoreGraphics" "-framework CoreMedia" "-framework CoreVideo" )
</pre>
Once I did this very minimal change, I compiled and was able to set the exposure on the webcam using PROP_IOS_DEVICE_EXPOSURE on my Macbook Pro. I haven't done extensive testing yet, but my understanding is that AVFoundation is mostly identical on iOS and OSX.
```
History
-------
##### Vadim Pisarevsky on 2015-05-13 13:28
```
- Category changed from imgproc, video to highgui-video
```
|
1.0
|
Add avfoundation support for normal OSX build, not just iOS - Transferred from http://code.opencv.org/issues/4187
```
|| Dustin Spicuzza on 2015-02-10 06:01
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: highgui-video
|| Tracker: Bug
|| Difficulty: Easy
|| PR:
|| Platform: x64 / Mac OSX
```
Add avfoundation support for normal OSX build, not just iOS
-----------
```
When using QTKit, things like exposure settings and such aren't supported. AVFoundation supports doing this, however.
I hacked with the makefiles in a very minimal way, and I found the following:
* Can't enable QTKit and AVFoundation at the same time, otherwise link errors occur
* Have to add some frameworks in CMakeLists.txt in videoio -- here's what my line that worked was (not sure if there's too many frameworks there, I just copy/pasted settings from IOS):
<pre>
list(APPEND VIDEOIO_LIBRARIES "-framework Accelerate" "-framework AVFoundation" "-framework CoreGraphics" "-framework CoreMedia" "-framework CoreVideo" )
</pre>
Once I did this very minimal change, I compiled and was able to set the exposure on the webcam using PROP_IOS_DEVICE_EXPOSURE on my Macbook Pro. I haven't done extensive testing yet, but my understanding is that AVFoundation is mostly identical on iOS and OSX.
```
History
-------
##### Vadim Pisarevsky on 2015-05-13 13:28
```
- Category changed from imgproc, video to highgui-video
```
|
priority
|
add avfoundation support for normal osx build not just ios transferred from dustin spicuzza on priority normal affected branch master dev category highgui video tracker bug difficulty easy pr platform mac osx add avfoundation support for normal osx build not just ios when using qtkit things like exposure settings and such aren t supported avfoundation supports doing this however i hacked with the makefiles in a very minimal way and i found the following can t enable qtkit and avfoundation at the same time otherwise link errors occur have to add some frameworks in cmakelists txt in videoio here s what my line that worked was not sure if there s too many frameworks there i just copy pasted settings from ios list append videoio libraries framework accelerate framework avfoundation framework coregraphics framework coremedia framework corevideo once i did this very minimal change i compiled and was able to set the exposure on the webcam using prop ios device exposure on my macbook pro i haven t done extensive testing yet but my understanding is that avfoundation is mostly identical on ios and osx history vadim pisarevsky on category changed from imgproc video to highgui video
| 1
|
677,338
| 23,159,018,875
|
IssuesEvent
|
2022-07-29 15:38:31
|
department-of-veterans-affairs/va.gov-team
|
https://api.github.com/repos/department-of-veterans-affairs/va.gov-team
|
closed
|
AWS access for Kerry Powell
|
operations external-request high priority ops-access-request high-priority
|
### COR Name
Vilay Senthep
### Vendor Onboarding Representative Name
Oddball - Amber Malcolm
### Your Name
Kerry Powell
### Your Email
kerry.powell@adhocteam.us
### Team, Role, and Company of the target individual
Platform SRE, Front-end Engineer, Ad Hoc LLC
### Product Manager (PM) name and email
Mike Chelen, michael.chelen@va.gov
### Product Owner (PO) name and email
Mike Chelen, michael.chelen@va.gov
### Desired AWS Access
vsp-sre group, reference Gino Perlangeli's permissions
Please also grant lambda function/create, dynamoDB access, EC2 instance create/write. SRE wants to investigate options to move the support slackbot to AWS as a lambda or k8 and begin migrating support request data to dynamoDB.
### Access Expiration
Ongoing
### Additional Notes
I need ongoing access to fulfill my role as a SRE.
### User must exist in a roster before AWS access can be granted
- [x] Search for user on the VFS Team Roster: https://docs.google.com/spreadsheets/d/11dpCJjhs007uC6CWJI6djy3OAvjB8rHB65m0Yj8HXIw/edit?folder=0ALlyxurHpUilUk9PVA#gid=2042046665
- [x] Or search for user on the Platform Team Roster: https://vfs.atlassian.net/wiki/spaces/AP/pages/1908834623/Platform+Roster
- [ ] If user is on a VFS team but not in the VFS Team Roster, add the 'NOT YET' label and instruct them to start the Platform orientation process https://depo-platform-documentation.scrollhelp.site/getting-started/Platform-Orientation.1877344532.html
- [ ] If a user is on a Platform team but not on the Platform Team Roster in Confluence, add the 'NOT YET' label and instruct them to reach out to their Product Manager to be added.
- [x] Comment in this issue saying which roster the user is listed in.
|
2.0
|
AWS access for Kerry Powell - ### COR Name
Vilay Senthep
### Vendor Onboarding Representative Name
Oddball - Amber Malcolm
### Your Name
Kerry Powell
### Your Email
kerry.powell@adhocteam.us
### Team, Role, and Company of the target individual
Platform SRE, Front-end Engineer, Ad Hoc LLC
### Product Manager (PM) name and email
Mike Chelen, michael.chelen@va.gov
### Product Owner (PO) name and email
Mike Chelen, michael.chelen@va.gov
### Desired AWS Access
vsp-sre group, reference Gino Perlangeli's permissions
Please also grant lambda function/create, dynamoDB access, EC2 instance create/write. SRE wants to investigate options to move the support slackbot to AWS as a lambda or k8 and begin migrating support request data to dynamoDB.
### Access Expiration
Ongoing
### Additional Notes
I need ongoing access to fulfill my role as a SRE.
### User must exist in a roster before AWS access can be granted
- [x] Search for user on the VFS Team Roster: https://docs.google.com/spreadsheets/d/11dpCJjhs007uC6CWJI6djy3OAvjB8rHB65m0Yj8HXIw/edit?folder=0ALlyxurHpUilUk9PVA#gid=2042046665
- [x] Or search for user on the Platform Team Roster: https://vfs.atlassian.net/wiki/spaces/AP/pages/1908834623/Platform+Roster
- [ ] If user is on a VFS team but not in the VFS Team Roster, add the 'NOT YET' label and instruct them to start the Platform orientation process https://depo-platform-documentation.scrollhelp.site/getting-started/Platform-Orientation.1877344532.html
- [ ] If a user is on a Platform team but not on the Platform Team Roster in Confluence, add the 'NOT YET' label and instruct them to reach out to their Product Manager to be added.
- [x] Comment in this issue saying which roster the user is listed in.
|
priority
|
aws access for kerry powell cor name vilay senthep vendor onboarding representative name oddball amber malcolm your name kerry powell your email kerry powell adhocteam us team role and company of the target individual platform sre front end engineer ad hoc llc product manager pm name and email mike chelen michael chelen va gov product owner po name and email mike chelen michael chelen va gov desired aws access vsp sre group reference gino perlangeli s permissions please also grant lambda function create dynamodb access instance create write sre wants to investigate options to move the support slackbot to aws as a lambda or and begin migrating support request data to dynamodb access expiration ongoing additional notes i need ongoing access to fulfill my role as a sre user must exist in a roster before aws access can be granted search for user on the vfs team roster or search for user on the platform team roster if user is on a vfs team but not in the vfs team roster add the not yet label and instruct them to start the platform orientation process if a user is on a platform team but not on the platform team roster in confluence add the not yet label and instruct them to reach out to their product manager to be added comment in this issue saying which roster the user is listed in
| 1
|
756,968
| 26,491,260,565
|
IssuesEvent
|
2023-01-17 22:58:23
|
ArctosDB/arctos
|
https://api.github.com/repos/ArctosDB/arctos
|
closed
|
verbatim agent attribute needed in flat for label generation
|
Priority-High (Needed for work) Function-Agents function-Reports
|
Another issue has come up that has broader implications for reports. I'm working on a label for the fish collection, and have to parse out a few things from various places to get the information Andrew wants. One of those things is collector, which is fine, except for the first round of work we put all collectors into verbatim_agent with a remark "collector" (we are also including a second verbatim_agent with remark "identified by" for our first round of identifications, with the required id agent set to "unknown"). The Arctos flat file that is used to populate most reports only includes collectors that are actual agents, not the verbatim agent, which is where a ton of the agent data is soon going to reside. Is there a plan in place to modify the flat table so that we can get at either the agent collectors or the verbatim agent collectors?
_Originally posted by @barke042 in https://github.com/ArctosDB/data-migration/issues/1123#issuecomment-1373878588_
|
1.0
|
verbatim agent attribute needed in flat for label generation - Another issue has come up that has broader implications for reports. I'm working on a label for the fish collection, and have to parse out a few things from various places to get the information Andrew wants. One of those things is collector, which is fine, except for the first round of work we put all collectors into verbatim_agent with a remark "collector" (we are also including a second verbatim_agent with remark "identified by" for our first round of identifications, with the required id agent set to "unknown"). The Arctos flat file that is used to populate most reports only includes collectors that are actual agents, not the verbatim agent, which is where a ton of the agent data is soon going to reside. Is there a plan in place to modify the flat table so that we can get at either the agent collectors or the verbatim agent collectors?
_Originally posted by @barke042 in https://github.com/ArctosDB/data-migration/issues/1123#issuecomment-1373878588_
|
priority
|
verbatim agent attribute needed in flat for label generation another issue has come up that has broader implications for reports i m working on a label for the fish collection and have to parse out a few things from various places to get the information andrew wants one of those things is collector which is fine except for the first round of work we put all collectors into verbatim agent with a remark collector we are also including a second verbatim agent with remark identified by for our first round of identifications with the required id agent set to unknown the arctos flat file that is used to populate most reports only includes collectors that are actual agents not the verbatim agent which is where a ton of the agent data is soon going to reside is there a plan in place to modify the flat table so that we can get at either the agent collectors or the verbatim agent collectors originally posted by in
| 1
|
587,113
| 17,604,820,270
|
IssuesEvent
|
2021-08-17 15:45:52
|
OpenNebula/one
|
https://api.github.com/repos/OpenNebula/one
|
opened
|
Privileged containers
|
Type: Feature Sponsored Status: Accepted Priority: High Category: LXD/LXC
|
**Description**
Be able to deploy privileged containers
**Use case**
For scenarios like nested virtualization.
<!--////////////////////////////////////////////-->
<!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM -->
<!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS -->
<!-- PROGRESS WILL BE REFLECTED HERE -->
<!--////////////////////////////////////////////-->
## Progress Status
- [ ] Branch created
- [ ] Code committed to development branch
- [ ] Testing - QA
- [ ] Documentation
- [ ] Release notes - resolved issues, compatibility, known issues
- [ ] Code committed to upstream release/hotfix branches
- [ ] Documentation committed to upstream release/hotfix branches
|
1.0
|
Privileged containers - **Description**
Be able to deploy privileged containers
**Use case**
For scenarios like nested virtualization.
<!--////////////////////////////////////////////-->
<!-- THIS SECTION IS FOR THE DEVELOPMENT TEAM -->
<!-- BOTH FOR BUGS AND ENHANCEMENT REQUESTS -->
<!-- PROGRESS WILL BE REFLECTED HERE -->
<!--////////////////////////////////////////////-->
## Progress Status
- [ ] Branch created
- [ ] Code committed to development branch
- [ ] Testing - QA
- [ ] Documentation
- [ ] Release notes - resolved issues, compatibility, known issues
- [ ] Code committed to upstream release/hotfix branches
- [ ] Documentation committed to upstream release/hotfix branches
|
priority
|
privileged containers description be able to deploy privileged containers use case for scenarios like nested virtualization progress status branch created code committed to development branch testing qa documentation release notes resolved issues compatibility known issues code committed to upstream release hotfix branches documentation committed to upstream release hotfix branches
| 1
|
757,524
| 26,516,474,037
|
IssuesEvent
|
2023-01-18 21:16:12
|
calcom/cal.com
|
https://api.github.com/repos/calcom/cal.com
|
closed
|
[CAL-697] allow date overrides when all availability is off
|
✨ feature 🧹 Improvements linear High priority
|
### Is your proposal related to a problem?
Yes. Cal.com is almost an event booking system. One tweak and it could be. For example, if I want to host 3 different event types, each representing a different cuisine cooking class, I can make an availability matrix for each. Likely, I would turn off all availability, and add date overrides for each scheduled event. This would allow people to book for only specific days.
Currently, if all availability is switched off, turning on an override does nothing last time I checked. Correct me if I'm wrong.
As a user's business grows, it would likely turn into a more permanent recurring calendar, thus allow the user to continue using Cal.com for its intended purpose of booking up a calendar of slots.
One other thing to note, is that it would be nice for each event type to have its own conflict calendar for this same purpose. Otherwise, there's no way to host discrete classes on specific datetimes and not have them battle eachother with multiple global conflict calendars.
### Describe alternatives you've considered
In order to meet this need, we turned to TicketTailor, but ultimately Cal.com could be a good fit for this use case.
<sub>[CAL-697](https://linear.app/calcom/issue/CAL-697/allow-date-overrides-when-all-availability-is-off)</sub>
|
1.0
|
[CAL-697] allow date overrides when all availability is off - ### Is your proposal related to a problem?
Yes. Cal.com is almost an event booking system. One tweak and it could be. For example, if I want to host 3 different event types, each representing a different cuisine cooking class, I can make an availability matrix for each. Likely, I would turn off all availability, and add date overrides for each scheduled event. This would allow people to book for only specific days.
Currently, if all availability is switched off, turning on an override does nothing last time I checked. Correct me if I'm wrong.
As a user's business grows, it would likely turn into a more permanent recurring calendar, thus allow the user to continue using Cal.com for its intended purpose of booking up a calendar of slots.
One other thing to note, is that it would be nice for each event type to have its own conflict calendar for this same purpose. Otherwise, there's no way to host discrete classes on specific datetimes and not have them battle eachother with multiple global conflict calendars.
### Describe alternatives you've considered
In order to meet this need, we turned to TicketTailor, but ultimately Cal.com could be a good fit for this use case.
<sub>[CAL-697](https://linear.app/calcom/issue/CAL-697/allow-date-overrides-when-all-availability-is-off)</sub>
|
priority
|
allow date overrides when all availability is off is your proposal related to a problem yes cal com is almost an event booking system one tweak and it could be for example if i want to host different event types each representing a different cuisine cooking class i can make an availability matrix for each likely i would turn off all availability and add date overrides for each scheduled event this would allow people to book for only specific days currently if all availability is switched off turning on an override does nothing last time i checked correct me if i m wrong as a user s business grows it would likely turn into a more permanent recurring calendar thus allow the user to continue using cal com for its intended purpose of booking up a calendar of slots one other thing to note is that it would be nice for each event type to have its own conflict calendar for this same purpose otherwise there s no way to host discrete classes on specific datetimes and not have them battle eachother with multiple global conflict calendars describe alternatives you ve considered in order to meet this need we turned to tickettailor but ultimately cal com could be a good fit for this use case
| 1
|
508,143
| 14,690,503,362
|
IssuesEvent
|
2021-01-02 15:34:35
|
elementary/wingpanel-indicator-keyboard
|
https://api.github.com/repos/elementary/wingpanel-indicator-keyboard
|
closed
|
No keyboard/language indicator.
|
Priority: High Status: Confirmed
|
There is no keyboard or language indicator on the top panel at the right side corner.
I use US English and Greek keyboard and I have a serious problem in changing languages.
Thank you
<bountysource-plugin>
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/94405770-no-keyboard-language-indicator?utm_campaign=plugin&utm_content=tracker%2F60236121&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F60236121&utm_medium=issues&utm_source=github).
</bountysource-plugin>
|
1.0
|
No keyboard/language indicator. - There is no keyboard or language indicator on the top panel at the right side corner.
I use US English and Greek keyboard and I have a serious problem in changing languages.
Thank you
<bountysource-plugin>
---
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/94405770-no-keyboard-language-indicator?utm_campaign=plugin&utm_content=tracker%2F60236121&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F60236121&utm_medium=issues&utm_source=github).
</bountysource-plugin>
|
priority
|
no keyboard language indicator there is no keyboard or language indicator on the top panel at the right side corner i use us english and greek keyboard and i have a serious problem in changing languages thank you want to back this issue we accept bounties via
| 1
|
269,102
| 8,425,800,489
|
IssuesEvent
|
2018-10-16 04:39:36
|
CS2113-AY1819S1-W12-4/main
|
https://api.github.com/repos/CS2113-AY1819S1-W12-4/main
|
opened
|
View available stock of drinks
|
priority.high type.story
|
**User Story 3:**
As a stock taker, I want to be able to view the quantities of drinks that can be sold so that I can inform the manager when specific types of drinks are sold out or close to being sold out.
|
1.0
|
View available stock of drinks - **User Story 3:**
As a stock taker, I want to be able to view the quantities of drinks that can be sold so that I can inform the manager when specific types of drinks are sold out or close to being sold out.
|
priority
|
view available stock of drinks user story as a stock taker i want to be able to view the quantities of drinks that can be sold so that i can inform the manager when specific types of drinks are sold out or close to being sold out
| 1
|
82,046
| 3,602,302,683
|
IssuesEvent
|
2016-02-03 15:12:40
|
mantidproject/mantid
|
https://api.github.com/repos/mantidproject/mantid
|
closed
|
BigTableData Design.
|
Component: Reflectometry Misc: Archived Priority: High
|
This issue was originally [TRAC 10915](http://trac.mantidproject.org/mantid/ticket/10915)
BigTableData is a runtime accident waiting to happen. We think it would be better to have a formal declared type for this complex and critical data structure.
Create a new design document (markdown) and put it in the existing Documents/Design/quick_nxs directory of the documents repository.
* Outline why this work is important
* Outline what the existing BigTableData does and stores.
* Detail what the new type would be called, what it's structure is, and what module it would live in
* Think about testability of the new structure
* Think about how the BigTableData replacement would be eased in to the codebase
* Share the design with Owen
* Share the design with Peter and Jean
|
1.0
|
BigTableData Design. - This issue was originally [TRAC 10915](http://trac.mantidproject.org/mantid/ticket/10915)
BigTableData is a runtime accident waiting to happen. We think it would be better to have a formal declared type for this complex and critical data structure.
Create a new design document (markdown) and put it in the existing Documents/Design/quick_nxs directory of the documents repository.
* Outline why this work is important
* Outline what the existing BigTableData does and stores.
* Detail what the new type would be called, what it's structure is, and what module it would live in
* Think about testability of the new structure
* Think about how the BigTableData replacement would be eased in to the codebase
* Share the design with Owen
* Share the design with Peter and Jean
|
priority
|
bigtabledata design this issue was originally bigtabledata is a runtime accident waiting to happen we think it would be better to have a formal declared type for this complex and critical data structure create a new design document markdown and put it in the existing documents design quick nxs directory of the documents repository outline why this work is important outline what the existing bigtabledata does and stores detail what the new type would be called what it s structure is and what module it would live in think about testability of the new structure think about how the bigtabledata replacement would be eased in to the codebase share the design with owen share the design with peter and jean
| 1
|
562,732
| 16,668,594,012
|
IssuesEvent
|
2021-06-07 08:08:10
|
kubesphere/console
|
https://api.github.com/repos/kubesphere/console
|
closed
|
Unable to get the node label list of member cluster
|
area/devops kind/bug priority/high
|
**Describe the bug**
Having a multi-cluster environment. The node label list is empty when users try to create a Pipeline with graphic mode. The Pipeline belongs to a member cluster. As you can see below, the API request got a 404 response.

According to my tests. The following API request is ok:
`http://ip:port/kapis/clusters/member/devops.kubesphere.io/v1alpha2/devops/solo-projecthcbrh/jenkins/labelsdashboard/labelsData`
The incorrect API is: `http://ip:port/kapis/devops.kubesphere.io/v1alpha2/devops/solo-projecthcbrh/jenkins/labelsdashboard/labelsData`
/area devops
/priority high
**Versions used(KubeSphere/Kubernetes)**
KubeSphere: `v3.1.0`
The host and member cluster are all `v3.1.0`.
**Environment**
This is not an environmental issue.
**To Reproduce**
Steps to reproduce the behavior:
1. Have two cluster, the host cluster named `host`; the member cluster named `member`
2. Create a Pipeline on a member cluster
3. Select the node label on the Pipeline graphic editing page
4. No label items
**Expected behavior**
The node labels list cannot be empty on the member cluster.
|
1.0
|
Unable to get the node label list of member cluster - **Describe the bug**
Having a multi-cluster environment. The node label list is empty when users try to create a Pipeline with graphic mode. The Pipeline belongs to a member cluster. As you can see below, the API request got a 404 response.

According to my tests. The following API request is ok:
`http://ip:port/kapis/clusters/member/devops.kubesphere.io/v1alpha2/devops/solo-projecthcbrh/jenkins/labelsdashboard/labelsData`
The incorrect API is: `http://ip:port/kapis/devops.kubesphere.io/v1alpha2/devops/solo-projecthcbrh/jenkins/labelsdashboard/labelsData`
/area devops
/priority high
**Versions used(KubeSphere/Kubernetes)**
KubeSphere: `v3.1.0`
The host and member cluster are all `v3.1.0`.
**Environment**
This is not an environmental issue.
**To Reproduce**
Steps to reproduce the behavior:
1. Have two cluster, the host cluster named `host`; the member cluster named `member`
2. Create a Pipeline on a member cluster
3. Select the node label on the Pipeline graphic editing page
4. No label items
**Expected behavior**
The node labels list cannot be empty on the member cluster.
|
priority
|
unable to get the node label list of member cluster describe the bug having a multi cluster environment the node label list is empty when users try to create a pipeline with graphic mode the pipeline belongs to a member cluster as you can see below the api request got a response according to my tests the following api request is ok the incorrect api is area devops priority high versions used kubesphere kubernetes kubesphere the host and member cluster are all environment this is not an environmental issue to reproduce steps to reproduce the behavior have two cluster the host cluster named host the member cluster named member create a pipeline on a member cluster select the node label on the pipeline graphic editing page no label items expected behavior the node labels list cannot be empty on the member cluster
| 1
|
560,497
| 16,598,290,608
|
IssuesEvent
|
2021-06-01 15:51:25
|
EtalumaSupport/LumaViewPro
|
https://api.github.com/repos/EtalumaSupport/LumaViewPro
|
closed
|
Reaction Time
|
High Priority bug
|
The widget are loaded very slowly, in windows and in linux with and without the camera. Perhaps this will help?
https://stackoverflow.com/questions/47535900/is-kivy-widgets-creation-really-so-slow-or-am-i-doing-it-wrong
Much faster as an executable but should be resolved nevertheless.
|
1.0
|
Reaction Time - The widget are loaded very slowly, in windows and in linux with and without the camera. Perhaps this will help?
https://stackoverflow.com/questions/47535900/is-kivy-widgets-creation-really-so-slow-or-am-i-doing-it-wrong
Much faster as an executable but should be resolved nevertheless.
|
priority
|
reaction time the widget are loaded very slowly in windows and in linux with and without the camera perhaps this will help much faster as an executable but should be resolved nevertheless
| 1
|
667,432
| 22,472,910,712
|
IssuesEvent
|
2022-06-22 09:39:31
|
ita-social-projects/OoS-Frontend
|
https://api.github.com/repos/ita-social-projects/OoS-Frontend
|
closed
|
[Provider Personal Cabinet Administration] - display add providerAdmin/deputy button onInit
|
HIGHT priority
|
When you visit the administration page in the provider personal cabinet there is no add new providerAdmin/deputy button

But when you select another tab and then go back - the button is displayed
Goal: display this button initially

|
1.0
|
[Provider Personal Cabinet Administration] - display add providerAdmin/deputy button onInit - When you visit the administration page in the provider personal cabinet there is no add new providerAdmin/deputy button

But when you select another tab and then go back - the button is displayed
Goal: display this button initially

|
priority
|
display add provideradmin deputy button oninit when you visit the administration page in the provider personal cabinet there is no add new provideradmin deputy button but when you select another tab and then go back the button is displayed goal display this button initially
| 1
|
148,526
| 5,684,147,914
|
IssuesEvent
|
2017-04-13 14:24:05
|
python/mypy
|
https://api.github.com/repos/python/mypy
|
closed
|
MyPy doesn't understand types.ModuleType
|
bug priority-0-high
|
I tried doing `# type: (module) -> str` and MyPy was okay with it, but our linter was not. Some discussion in our Slack channel:
> Guido:
> From types import ModuleType?
> Oh wow. Please file a bug. Mypy uses builtins.module but that doesn't exist so can't be used at runtime; types.ModuleType exists but mypy doesn't understand it.
>
> David Fisher:
> oh interesting
> we have a "class module" entry in builtins
> with the comment `# TODO not defined in builtins!`
|
1.0
|
MyPy doesn't understand types.ModuleType - I tried doing `# type: (module) -> str` and MyPy was okay with it, but our linter was not. Some discussion in our Slack channel:
> Guido:
> From types import ModuleType?
> Oh wow. Please file a bug. Mypy uses builtins.module but that doesn't exist so can't be used at runtime; types.ModuleType exists but mypy doesn't understand it.
>
> David Fisher:
> oh interesting
> we have a "class module" entry in builtins
> with the comment `# TODO not defined in builtins!`
|
priority
|
mypy doesn t understand types moduletype i tried doing type module str and mypy was okay with it but our linter was not some discussion in our slack channel guido from types import moduletype oh wow please file a bug mypy uses builtins module but that doesn t exist so can t be used at runtime types moduletype exists but mypy doesn t understand it david fisher oh interesting we have a class module entry in builtins with the comment todo not defined in builtins
| 1
|
71,538
| 3,361,805,217
|
IssuesEvent
|
2015-11-20 00:23:06
|
TheLens/elections
|
https://api.github.com/repos/TheLens/elections
|
closed
|
Place file lock on master.sh
|
High priority Pre-launch TODO
|
Since master.sh is run every 60 seconds, it's possible that it is called while a previous job is still running. This is even more likely than in past elections because the back-end code is churning through more races and precincts, and is also sending data to Google in addition to S3.
|
1.0
|
Place file lock on master.sh - Since master.sh is run every 60 seconds, it's possible that it is called while a previous job is still running. This is even more likely than in past elections because the back-end code is churning through more races and precincts, and is also sending data to Google in addition to S3.
|
priority
|
place file lock on master sh since master sh is run every seconds it s possible that it is called while a previous job is still running this is even more likely than in past elections because the back end code is churning through more races and precincts and is also sending data to google in addition to
| 1
|
481,277
| 13,882,983,835
|
IssuesEvent
|
2020-10-18 09:46:31
|
naipaka/NextSunnyDay-iOS
|
https://api.github.com/repos/naipaka/NextSunnyDay-iOS
|
closed
|
ローディング画面の実装
|
enhancement priority: high type: features
|
# 概要
最新情報を取得中のローディング画面を実装する
「情報を取得しています、そのままお待ちください」とか
# 対応内容
- [x] UI実装
- [ ] ~~取得が開始されたときにホーム画面の上に表示されるようにする~~
- [x] ホーム画面にローディング画面を追加
|
1.0
|
ローディング画面の実装 - # 概要
最新情報を取得中のローディング画面を実装する
「情報を取得しています、そのままお待ちください」とか
# 対応内容
- [x] UI実装
- [ ] ~~取得が開始されたときにホーム画面の上に表示されるようにする~~
- [x] ホーム画面にローディング画面を追加
|
priority
|
ローディング画面の実装 概要 最新情報を取得中のローディング画面を実装する 「情報を取得しています、そのままお待ちください」とか 対応内容 ui実装 取得が開始されたときにホーム画面の上に表示されるようにする ホーム画面にローディング画面を追加
| 1
|
773,481
| 27,159,346,138
|
IssuesEvent
|
2023-02-17 10:31:57
|
WordPress/openverse-frontend
|
https://api.github.com/repos/WordPress/openverse-frontend
|
closed
|
Default layout should not nest `footer` inside `main`
|
🟧 priority: high 🛠 goal: fix ♿️ aspect: a11y
|
## Description
When the footer is nested inside the `main` element, it loses its aria role, and NVDA does not communicate the visitor that the element has `contentinfo` landmark.
## Original description by @alexstine
There is no contentinfo landmark or footer HTML5 tag on the home page. Please add this above the language translate widget as this is footer content.
|
1.0
|
Default layout should not nest `footer` inside `main` - ## Description
When the footer is nested inside the `main` element, it loses its aria role, and NVDA does not communicate the visitor that the element has `contentinfo` landmark.
## Original description by @alexstine
There is no contentinfo landmark or footer HTML5 tag on the home page. Please add this above the language translate widget as this is footer content.
|
priority
|
default layout should not nest footer inside main description when the footer is nested inside the main element it loses its aria role and nvda does not communicate the visitor that the element has contentinfo landmark original description by alexstine there is no contentinfo landmark or footer tag on the home page please add this above the language translate widget as this is footer content
| 1
|
719,547
| 24,763,487,926
|
IssuesEvent
|
2022-10-22 07:41:17
|
bounswe/bounswe2022group7
|
https://api.github.com/repos/bounswe/bounswe2022group7
|
closed
|
[BACKEND] Research on built-in authentication
|
Status: Not Yet Started Priority: High Type: Research Difficulty: Medium Target: Backend
|
@sabrimete mentioned in [meeting 2](https://github.com/bounswe/bounswe2022group7/wiki/BACKEND-Meeting-Notes-%232-20-10-2022) that he realized a library easing the authentication process for Kotlin whilst initializing code for backend. Research on this library and how to implement it in code is to be done.
**Reviewer:** @demet47
**Due:** 22/10/2022 23.59
|
1.0
|
[BACKEND] Research on built-in authentication - @sabrimete mentioned in [meeting 2](https://github.com/bounswe/bounswe2022group7/wiki/BACKEND-Meeting-Notes-%232-20-10-2022) that he realized a library easing the authentication process for Kotlin whilst initializing code for backend. Research on this library and how to implement it in code is to be done.
**Reviewer:** @demet47
**Due:** 22/10/2022 23.59
|
priority
|
research on built in authentication sabrimete mentioned in that he realized a library easing the authentication process for kotlin whilst initializing code for backend research on this library and how to implement it in code is to be done reviewer due
| 1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.