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
158,612
6,032,695,932
IssuesEvent
2017-06-09 05:26:00
CAGoodman/CareWheelsCorp
https://api.github.com/repos/CAGoodman/CareWheelsCorp
opened
Making Call using ionic serve errors out but payment happens although intermittently
bug High Priority
Bug1: In an ionic serve run, when you tap the Call button the $http() call fails saying bad local network error. Bug2: However the server says the payment went through Bug3: However not all the call is recorded by the server so some of them do miss. Out of 5 calls 3 went through. When I used the mobile every time it went through and I was using the same network(wifi). There is a cordova call which connects the app to the local call function. ionic serve does not support cordova and that is the reason it fails. Need more investigation.
1.0
Making Call using ionic serve errors out but payment happens although intermittently - Bug1: In an ionic serve run, when you tap the Call button the $http() call fails saying bad local network error. Bug2: However the server says the payment went through Bug3: However not all the call is recorded by the server so some of them do miss. Out of 5 calls 3 went through. When I used the mobile every time it went through and I was using the same network(wifi). There is a cordova call which connects the app to the local call function. ionic serve does not support cordova and that is the reason it fails. Need more investigation.
priority
making call using ionic serve errors out but payment happens although intermittently in an ionic serve run when you tap the call button the http call fails saying bad local network error however the server says the payment went through however not all the call is recorded by the server so some of them do miss out of calls went through when i used the mobile every time it went through and i was using the same network wifi there is a cordova call which connects the app to the local call function ionic serve does not support cordova and that is the reason it fails need more investigation
1
730,436
25,172,738,501
IssuesEvent
2022-11-11 05:54:12
dsc-project-mr/mr-fe-external
https://api.github.com/repos/dsc-project-mr/mr-fe-external
closed
Create layout
enhancement priority.high
<!-- Issue title: [brief description of feature/enhancement] --> **Description of feature/enhancement** Create the layout of the website - navbar and footer. Refer to the figma for the layout. Colours are still tbc so just make the layout. The 4 links on the nav bar can follow the ones that MR currently uses on their website. But because we do not have as much layering we only need one layer of route params - About us: /about-us - impact: /impact - events & news: /events - join: /join - donate:/ donate For the footer content is not confirmed yet so can just follow the layout given first. https://www.figma.com/file/9bUuKvk2xG359ru4sPY5US/Workspace?node-id=5568%3A46710
1.0
Create layout - <!-- Issue title: [brief description of feature/enhancement] --> **Description of feature/enhancement** Create the layout of the website - navbar and footer. Refer to the figma for the layout. Colours are still tbc so just make the layout. The 4 links on the nav bar can follow the ones that MR currently uses on their website. But because we do not have as much layering we only need one layer of route params - About us: /about-us - impact: /impact - events & news: /events - join: /join - donate:/ donate For the footer content is not confirmed yet so can just follow the layout given first. https://www.figma.com/file/9bUuKvk2xG359ru4sPY5US/Workspace?node-id=5568%3A46710
priority
create layout description of feature enhancement create the layout of the website navbar and footer refer to the figma for the layout colours are still tbc so just make the layout the links on the nav bar can follow the ones that mr currently uses on their website but because we do not have as much layering we only need one layer of route params about us about us impact impact events news events join join donate donate for the footer content is not confirmed yet so can just follow the layout given first
1
651,669
21,484,745,126
IssuesEvent
2022-04-26 21:40:25
okta/terraform-provider-okta
https://api.github.com/repos/okta/terraform-provider-okta
closed
compound_search_operator argument missing from data.okta_users
bug priority-high
<!--- Please note the following potential times when an issue might be in Terraform core: * [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues * [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues * [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues * [Registry](https://registry.terraform.io/) issues * Spans resources across multiple providers If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead. ---> <!--- Please keep this note for the community ---> ### Community Note - Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request - Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request - If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Terraform Version <!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). ---> ``` Terraform v1.0.4 on darwin_amd64 + provider registry.terraform.io/okta/okta v3.25.0 ``` ### Affected Resource(s) <!--- Please list the affected resources and data sources. ---> - data.okta_users ### Terraform Configuration Files <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> ```hcl data "okta_users" "example" { search { name = "status" value = "DECOMISSIONED" comparison = "eq" } search { name = "status" value = "STAGED" comparison = "eq" } compound_search_operator = "or" } ``` ### Debug Output <!--- Please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist. To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html). ---> ### Panic Output <!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. ---> ### Expected Behavior <!--- What should have happened? ---> Join the search blocks with an `or` operator ### Actual Behavior <!--- What actually happened? ---> ```terraform │ Error: Unsupported argument │ │ on main.tf line 29, in data "okta_users" "example": │ 29: compound_search_operator = "or" │ │ An argument named "compound_search_operator" is not expected here. ``` ### Steps to Reproduce <!--- Please list the steps required to reproduce the issue. ---> 1. `terraform plan` ### Important Factoids <!--- Are there anything atypical about your accounts that we should know? For example: Running in EC2 Classic? ---> ### References <!--- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor documentation? For example: ---> - #1027
1.0
compound_search_operator argument missing from data.okta_users - <!--- Please note the following potential times when an issue might be in Terraform core: * [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues * [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues * [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues * [Registry](https://registry.terraform.io/) issues * Spans resources across multiple providers If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead. ---> <!--- Please keep this note for the community ---> ### Community Note - Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request - Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request - If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Terraform Version <!--- Please run `terraform -v` to show the Terraform core version and provider version(s). If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). ---> ``` Terraform v1.0.4 on darwin_amd64 + provider registry.terraform.io/okta/okta v3.25.0 ``` ### Affected Resource(s) <!--- Please list the affected resources and data sources. ---> - data.okta_users ### Terraform Configuration Files <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> ```hcl data "okta_users" "example" { search { name = "status" value = "DECOMISSIONED" comparison = "eq" } search { name = "status" value = "STAGED" comparison = "eq" } compound_search_operator = "or" } ``` ### Debug Output <!--- Please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist. To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html). ---> ### Panic Output <!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. ---> ### Expected Behavior <!--- What should have happened? ---> Join the search blocks with an `or` operator ### Actual Behavior <!--- What actually happened? ---> ```terraform │ Error: Unsupported argument │ │ on main.tf line 29, in data "okta_users" "example": │ 29: compound_search_operator = "or" │ │ An argument named "compound_search_operator" is not expected here. ``` ### Steps to Reproduce <!--- Please list the steps required to reproduce the issue. ---> 1. `terraform plan` ### Important Factoids <!--- Are there anything atypical about your accounts that we should know? For example: Running in EC2 Classic? ---> ### References <!--- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor documentation? For example: ---> - #1027
priority
compound search operator argument missing from data okta users please note the following potential times when an issue might be in terraform core or resource ordering issues and issues issues issues spans resources across multiple providers if you are running into one of these scenarios we recommend opening an issue in the instead community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or other comments that do not add relevant new information or questions they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform version terraform on darwin provider registry terraform io okta okta affected resource s data okta users terraform configuration files hcl data okta users example search name status value decomissioned comparison eq search name status value staged comparison eq compound search operator or debug output please provide a link to a github gist containing the complete debug output please do not paste the debug output in the issue just paste a link to the gist to obtain the debug output see the panic output expected behavior join the search blocks with an or operator actual behavior terraform │ error unsupported argument │ │ on main tf line in data okta users example │ compound search operator or │ │ an argument named compound search operator is not expected here steps to reproduce terraform plan important factoids references information about referencing github issues are there any other github issues open or closed or pull requests that should be linked here vendor documentation for example
1
646,663
21,055,473,275
IssuesEvent
2022-04-01 02:27:14
AgnostiqHQ/covalent
https://api.github.com/repos/AgnostiqHQ/covalent
closed
Supervisord dispatcher queue consumer integration
priority / high
When `covalent start --refactor` is called, we want it to automatically start the queue consumer.
1.0
Supervisord dispatcher queue consumer integration - When `covalent start --refactor` is called, we want it to automatically start the queue consumer.
priority
supervisord dispatcher queue consumer integration when covalent start refactor is called we want it to automatically start the queue consumer
1
821,115
30,805,545,268
IssuesEvent
2023-08-01 06:51:49
WordPress/gutenberg
https://api.github.com/repos/WordPress/gutenberg
closed
Tracking: Library & Pattern Management Issues
[Priority] High [Type] Tracking Issue [Feature] Patterns Blessed for major release
The following lists cover known bugs and issues for the current state of the Library and pattern management features. Ideally, we'll get as many of these done as possible before the 6.3 beta 1; however, some work is likely to flow into the beta period, as enabled by the [_Introducing the Library_ blessed ticket](https://core.trac.wordpress.org/ticket/58579). **Note: When adding a PR to this tracking issue, make sure it has the `Backport to WP Beta/RC` label on it if it should be included in the WP beta, thanks** ## Todo - [ ] https://github.com/WordPress/gutenberg/issues/52005 - [ ] https://github.com/WordPress/gutenberg/issues/52421 - (Possible duplicate: [51937](https://github.com/WordPress/gutenberg/issues/51937)) - actually just displaying padding as specified by the theme - I think [we might have to live with this](https://github.com/WordPress/gutenberg/pull/52776#issuecomment-1642872876) ## In Progress - [ ] https://github.com/WordPress/gutenberg/issues/52227 - [PR](https://github.com/WordPress/gutenberg/pull/52548) - [ ] https://github.com/WordPress/gutenberg/pull/52476 ## Completed - [x] [Rename "Library" to just "Patterns"](https://github.com/WordPress/gutenberg/issues/52042#top) - [PR](https://github.com/WordPress/gutenberg/pull/52102) - @aaronrobertshaw - [x] [Where’s the template part table view gone?](https://github.com/WordPress/gutenberg/pull/51078#issuecomment-1607488515) - [PR](https://github.com/WordPress/gutenberg/pull/51961) - @aaronrobertshaw - [x] [Library: synced pattern shows as "standard" and unsynced](https://github.com/WordPress/gutenberg/issues/51923#top) - [PR](https://github.com/WordPress/gutenberg/pull/51952) - @aaronrobertshaw - [x] https://github.com/WordPress/gutenberg/issues/52003 - [PR](https://github.com/WordPress/gutenberg/pull/52021) - @kevin940726 - [x] [Patterns: when editing in the Site Editor, sidebar lists "Template" rather than "Pattern"](https://github.com/WordPress/gutenberg/issues/51925#top) - [PR](https://github.com/WordPress/gutenberg/pull/51953) - @aaronrobertshaw~ - [x] [Patterns: Detail page doesn't reference sync state](https://github.com/WordPress/gutenberg/issues/51926#top) - [PR](https://github.com/WordPress/gutenberg/pull/51954) - @aaronrobertshaw - [x] [My Patterns vs. Custom Patterns](https://github.com/WordPress/gutenberg/issues/51939) - [PR](https://github.com/WordPress/gutenberg/pull/51949) @SaxonF - [x] [Library: Set custom patterns as the initial state](https://github.com/WordPress/gutenberg/issues/51943) - [PR](https://github.com/WordPress/gutenberg/pull/51946) @SaxonF - [x] [Normalize template parts and pattern icons in "new" dropdown](https://github.com/WordPress/gutenberg/issues/52043#top) - [PR](https://github.com/WordPress/gutenberg/pull/52108) - @jameskoster - [x] [Inconsistent pattern creation modals](https://github.com/WordPress/gutenberg/issues/51941) - [PR](https://github.com/WordPress/gutenberg/pull/51946) @SaxonF - [x] [Custom Patterns not displayed in Pattern Modal](https://github.com/WordPress/gutenberg/issues/51844#top) - [PR](https://github.com/WordPress/gutenberg/pull/51889) - [x] [Switching from editing page to pattern causes incorrect editing template notification](https://github.com/WordPress/gutenberg/issues/51927#top) - Was already fixed in [51880](https://github.com/WordPress/gutenberg/pull/51880) - [x] [Library: In the mosaic of entries template parts do not display the correct icon](https://github.com/WordPress/gutenberg/issues/51905#top) - [PR](https://github.com/WordPress/gutenberg/pull/51963) - @carolinan - [x] https://github.com/WordPress/gutenberg/issues/51992. - [x] https://github.com/WordPress/gutenberg/pull/51897 - [x] [Make library's default category fallback to header template parts if user has no custom patterns](https://github.com/WordPress/gutenberg/pull/51949#pullrequestreview-1500638083) - [x] https://github.com/WordPress/gutenberg/issues/52023 - [PR](https://github.com/WordPress/gutenberg/pull/52034) - @t-hamano - [x] https://github.com/WordPress/gutenberg/pull/52112~ - @kevin940726 - [x] #52151 - [x] https://github.com/WordPress/gutenberg/issues/51969 - [x] https://github.com/WordPress/gutenberg/issues/51295 - [x] https://github.com/WordPress/gutenberg/pull/51990 - @kevin940726 - [x] https://github.com/WordPress/gutenberg/issues/52101 - [PR](https://github.com/WordPress/gutenberg/pull/52159) - @aaronrobertshaw - [x] [In 16.1 synced patterns added in the library have incorrect sync status set](https://github.com/WordPress/gutenberg/pull/52229) - @glendaviesnz - [x] https://github.com/WordPress/gutenberg/pull/52230 - [x] [Fix site editor animation when moving from "edit" to "view" mode](https://github.com/WordPress/gutenberg/issues/51903) - [PR](https://github.com/WordPress/gutenberg/pull/51956) - (status: looking for volunteers to take this over) - [x] https://github.com/WordPress/gutenberg/issues/52253 - [x] https://github.com/WordPress/gutenberg/pull/52273 - @aaronrobertshaw - [x] https://github.com/WordPress/gutenberg/pull/52263 - @kevin940726 - [x] https://github.com/WordPress/gutenberg/pull/52340 - [x] https://github.com/WordPress/gutenberg/pull/52382 - [x] https://github.com/WordPress/gutenberg/pull/52395 - [x] https://github.com/WordPress/gutenberg/pull/52355 - [x] ["Manage Patterns" to open the Library > Custom patterns](https://github.com/WordPress/gutenberg/issues/51944) - [PR](https://github.com/WordPress/gutenberg/pull/52403) - @aaronrobertshaw - [x] [Custom Patterns: Allow renaming and duplication within the Site Editor](https://github.com/WordPress/gutenberg/issues/51919#top) (particularly renaming for 6.3) - [PR](https://github.com/WordPress/gutenberg/pull/52270) - @aaronrobertshaw - [x] https://core.trac.wordpress.org/ticket/58716 - [x] https://github.com/WordPress/gutenberg/issues/52006 - [x] https://github.com/WordPress/gutenberg/issues/52009 - [x] https://github.com/WordPress/gutenberg/issues/52435 - [x] https://github.com/WordPress/gutenberg/issues/51310 - [x] [Add client side pagination to improve performance of list page](https://github.com/WordPress/gutenberg/pull/52538) - [x] [Add pagination to the 'My Patterns' view & switch sync status to toggle group filter](https://github.com/WordPress/gutenberg/pull/52303) - [Alt approach](https://github.com/WordPress/gutenberg/pull/52396) - @kevin940726 - [x] https://github.com/WordPress/gutenberg/pull/51898 - @getdave - [x] https://github.com/WordPress/gutenberg/pull/52599 - [x] https://github.com/WordPress/gutenberg/issues/52419 - [PR](https://github.com/WordPress/gutenberg/pull/52449) @t-hamano - [x] https://github.com/WordPress/gutenberg/pull/52458 - [x] https://github.com/WordPress/gutenberg/pull/52656 - [x] [Snackbar notices don't stay anchored to bottom of Patterns page](https://github.com/WordPress/gutenberg/pull/52270#issuecomment-1623647731) - [x] [Block Inserter: Error displayed in browser console when opening custom pattern categories](https://github.com/WordPress/gutenberg/issues/51873#top) - [PR](https://github.com/WordPress/gutenberg/pull/51947) @glendaviesnz @talldan - [x] [Custom Pattern: Each time you switch pattern categories, the number of custom patterns increases](https://github.com/WordPress/gutenberg/issues/51872#top) - [PR](https://github.com/WordPress/gutenberg/pull/51947) @glendaviesnz @talldan - [x] [Patterns: remove ability to change sync state in UI with a classic theme](https://github.com/WordPress/gutenberg/issues/51920#top) - [PR](https://github.com/WordPress/gutenberg/pull/51998) - @glendaviesnz - [x] [Pattern block: Rename "Convert to regular block" to "Unsync"](https://github.com/WordPress/gutenberg/issues/51940) - [PR](https://github.com/WordPress/gutenberg/pull/51993) @richtabor - [x] [Move the sync_status field to top level post field](https://github.com/WordPress/gutenberg/pull/52146) - [x] Should we rename `sync_status` to `wp_sync_status`? - [question asked here](https://wordpress.slack.com/archives/C02QB2JS7/p1688091498250399). Looks like we are too late to consider this as 16.1 already out with existing naming. - [x] [Unsynced patterns created in site editor not appearing in post inserter] - [x] https://github.com/WordPress/gutenberg/pull/52346 - [x] [ Import and export of patterns does not take into account sync status](https://github.com/WordPress/gutenberg/issues/52333) - [PR](https://github.com/WordPress/gutenberg/pull/52346) - @glendaviesnz - [x] [ Import notice is incorrect](https://github.com/WordPress/gutenberg/issues/52331) - [PR](https://github.com/WordPress/gutenberg/pull/52346) - @glendaviesnz - [x] https://github.com/WordPress/gutenberg/pull/52012 - [x] [Patterns: update block description based on sync status/optionality](https://github.com/WordPress/gutenberg/issues/51922#top) - [PR](https://github.com/WordPress/gutenberg/pull/52010) - @glendaviesnz - [x] https://github.com/WordPress/gutenberg/issues/52139 - [PR](https://github.com/WordPress/gutenberg/pull/52160) - [x] https://github.com/WordPress/gutenberg/issues/52194 - [x] https://github.com/WordPress/gutenberg/issues/52614 - [x] https://github.com/WordPress/gutenberg/pull/51771 - [x] [Adding pattern from wp-admin page gives no option to add sync status ](https://github.com/WordPress/gutenberg/issues/52329) - [PR](https://github.com/WordPress/gutenberg/pull/52352) - @glendaviesnz - This might be something that has to wait until post 6.4, the PoC proved we could rely on the summary panel to present the modal. - [x] https://github.com/WordPress/gutenberg/pull/52497 - [x] https://github.com/WordPress/gutenberg/pull/52663 - [x] https://github.com/WordPress/gutenberg/pull/52747 - [x] https://github.com/WordPress/gutenberg/pull/52742 - [x] https://github.com/WordPress/gutenberg/pull/52780 - [x] [Library: Browser scrollbar blinks at certain browser width](https://github.com/WordPress/gutenberg/issues/52027#top) - [x] https://github.com/WordPress/gutenberg/issues/52491 - [PR](https://github.com/WordPress/gutenberg/pull/52817) - [x] https://github.com/WordPress/gutenberg/pull/52764 - [x] https://github.com/WordPress/gutenberg/pull/52933 - [x] https://github.com/WordPress/gutenberg/pull/52961 ## Closed - [x] https://github.com/WordPress/gutenberg/pull/51985 ## Future Follow-ups - [ ] [Make lock icons more consistent between theme patterns in the site editor page and the "Lock" menu item from the block toolbar's more menu](https://github.com/WordPress/gutenberg/issues/51948#issuecomment-1631540891) - [ ] [Add nicely designed empty state explaining how to use patterns for when default category is empty](https://github.com/WordPress/gutenberg/pull/51949#issuecomment-1609240546) - [ ] [Custom patterns: Library and Inserter 1:1](https://github.com/WordPress/gutenberg/issues/51945) - Needs design / Pending feedback - We could still get a draft PR together that includes synced patterns alongside unsynced patterns - [ ] Add import/export for patterns to the Patterns library - [ ] https://github.com/WordPress/gutenberg/issues/52360 - [ ] https://github.com/WordPress/gutenberg/issues/52150 - [ ] https://github.com/WordPress/gutenberg/issues/51099 - [ ] https://github.com/WordPress/gutenberg/issues/52137 - [ ] https://github.com/WordPress/gutenberg/issues/52107 - Different to 51919 by adding to pattern/template sidebar nav screen - [ ] [Patterns: use correct icon when searching with the slash inserter](https://github.com/WordPress/gutenberg/issues/51921#top) have suggested we push this to post 6.3. The current behaviour is by design so an enhancement and not a bug - should be reviewed but not critical enough to prioritise for 6.3 - [ ] https://github.com/WordPress/gutenberg/issues/52132 - [ ] https://github.com/WordPress/gutenberg/issues/53209 - [PR](https://github.com/WordPress/gutenberg/pull/53205)
1.0
Tracking: Library & Pattern Management Issues - The following lists cover known bugs and issues for the current state of the Library and pattern management features. Ideally, we'll get as many of these done as possible before the 6.3 beta 1; however, some work is likely to flow into the beta period, as enabled by the [_Introducing the Library_ blessed ticket](https://core.trac.wordpress.org/ticket/58579). **Note: When adding a PR to this tracking issue, make sure it has the `Backport to WP Beta/RC` label on it if it should be included in the WP beta, thanks** ## Todo - [ ] https://github.com/WordPress/gutenberg/issues/52005 - [ ] https://github.com/WordPress/gutenberg/issues/52421 - (Possible duplicate: [51937](https://github.com/WordPress/gutenberg/issues/51937)) - actually just displaying padding as specified by the theme - I think [we might have to live with this](https://github.com/WordPress/gutenberg/pull/52776#issuecomment-1642872876) ## In Progress - [ ] https://github.com/WordPress/gutenberg/issues/52227 - [PR](https://github.com/WordPress/gutenberg/pull/52548) - [ ] https://github.com/WordPress/gutenberg/pull/52476 ## Completed - [x] [Rename "Library" to just "Patterns"](https://github.com/WordPress/gutenberg/issues/52042#top) - [PR](https://github.com/WordPress/gutenberg/pull/52102) - @aaronrobertshaw - [x] [Where’s the template part table view gone?](https://github.com/WordPress/gutenberg/pull/51078#issuecomment-1607488515) - [PR](https://github.com/WordPress/gutenberg/pull/51961) - @aaronrobertshaw - [x] [Library: synced pattern shows as "standard" and unsynced](https://github.com/WordPress/gutenberg/issues/51923#top) - [PR](https://github.com/WordPress/gutenberg/pull/51952) - @aaronrobertshaw - [x] https://github.com/WordPress/gutenberg/issues/52003 - [PR](https://github.com/WordPress/gutenberg/pull/52021) - @kevin940726 - [x] [Patterns: when editing in the Site Editor, sidebar lists "Template" rather than "Pattern"](https://github.com/WordPress/gutenberg/issues/51925#top) - [PR](https://github.com/WordPress/gutenberg/pull/51953) - @aaronrobertshaw~ - [x] [Patterns: Detail page doesn't reference sync state](https://github.com/WordPress/gutenberg/issues/51926#top) - [PR](https://github.com/WordPress/gutenberg/pull/51954) - @aaronrobertshaw - [x] [My Patterns vs. Custom Patterns](https://github.com/WordPress/gutenberg/issues/51939) - [PR](https://github.com/WordPress/gutenberg/pull/51949) @SaxonF - [x] [Library: Set custom patterns as the initial state](https://github.com/WordPress/gutenberg/issues/51943) - [PR](https://github.com/WordPress/gutenberg/pull/51946) @SaxonF - [x] [Normalize template parts and pattern icons in "new" dropdown](https://github.com/WordPress/gutenberg/issues/52043#top) - [PR](https://github.com/WordPress/gutenberg/pull/52108) - @jameskoster - [x] [Inconsistent pattern creation modals](https://github.com/WordPress/gutenberg/issues/51941) - [PR](https://github.com/WordPress/gutenberg/pull/51946) @SaxonF - [x] [Custom Patterns not displayed in Pattern Modal](https://github.com/WordPress/gutenberg/issues/51844#top) - [PR](https://github.com/WordPress/gutenberg/pull/51889) - [x] [Switching from editing page to pattern causes incorrect editing template notification](https://github.com/WordPress/gutenberg/issues/51927#top) - Was already fixed in [51880](https://github.com/WordPress/gutenberg/pull/51880) - [x] [Library: In the mosaic of entries template parts do not display the correct icon](https://github.com/WordPress/gutenberg/issues/51905#top) - [PR](https://github.com/WordPress/gutenberg/pull/51963) - @carolinan - [x] https://github.com/WordPress/gutenberg/issues/51992. - [x] https://github.com/WordPress/gutenberg/pull/51897 - [x] [Make library's default category fallback to header template parts if user has no custom patterns](https://github.com/WordPress/gutenberg/pull/51949#pullrequestreview-1500638083) - [x] https://github.com/WordPress/gutenberg/issues/52023 - [PR](https://github.com/WordPress/gutenberg/pull/52034) - @t-hamano - [x] https://github.com/WordPress/gutenberg/pull/52112~ - @kevin940726 - [x] #52151 - [x] https://github.com/WordPress/gutenberg/issues/51969 - [x] https://github.com/WordPress/gutenberg/issues/51295 - [x] https://github.com/WordPress/gutenberg/pull/51990 - @kevin940726 - [x] https://github.com/WordPress/gutenberg/issues/52101 - [PR](https://github.com/WordPress/gutenberg/pull/52159) - @aaronrobertshaw - [x] [In 16.1 synced patterns added in the library have incorrect sync status set](https://github.com/WordPress/gutenberg/pull/52229) - @glendaviesnz - [x] https://github.com/WordPress/gutenberg/pull/52230 - [x] [Fix site editor animation when moving from "edit" to "view" mode](https://github.com/WordPress/gutenberg/issues/51903) - [PR](https://github.com/WordPress/gutenberg/pull/51956) - (status: looking for volunteers to take this over) - [x] https://github.com/WordPress/gutenberg/issues/52253 - [x] https://github.com/WordPress/gutenberg/pull/52273 - @aaronrobertshaw - [x] https://github.com/WordPress/gutenberg/pull/52263 - @kevin940726 - [x] https://github.com/WordPress/gutenberg/pull/52340 - [x] https://github.com/WordPress/gutenberg/pull/52382 - [x] https://github.com/WordPress/gutenberg/pull/52395 - [x] https://github.com/WordPress/gutenberg/pull/52355 - [x] ["Manage Patterns" to open the Library > Custom patterns](https://github.com/WordPress/gutenberg/issues/51944) - [PR](https://github.com/WordPress/gutenberg/pull/52403) - @aaronrobertshaw - [x] [Custom Patterns: Allow renaming and duplication within the Site Editor](https://github.com/WordPress/gutenberg/issues/51919#top) (particularly renaming for 6.3) - [PR](https://github.com/WordPress/gutenberg/pull/52270) - @aaronrobertshaw - [x] https://core.trac.wordpress.org/ticket/58716 - [x] https://github.com/WordPress/gutenberg/issues/52006 - [x] https://github.com/WordPress/gutenberg/issues/52009 - [x] https://github.com/WordPress/gutenberg/issues/52435 - [x] https://github.com/WordPress/gutenberg/issues/51310 - [x] [Add client side pagination to improve performance of list page](https://github.com/WordPress/gutenberg/pull/52538) - [x] [Add pagination to the 'My Patterns' view & switch sync status to toggle group filter](https://github.com/WordPress/gutenberg/pull/52303) - [Alt approach](https://github.com/WordPress/gutenberg/pull/52396) - @kevin940726 - [x] https://github.com/WordPress/gutenberg/pull/51898 - @getdave - [x] https://github.com/WordPress/gutenberg/pull/52599 - [x] https://github.com/WordPress/gutenberg/issues/52419 - [PR](https://github.com/WordPress/gutenberg/pull/52449) @t-hamano - [x] https://github.com/WordPress/gutenberg/pull/52458 - [x] https://github.com/WordPress/gutenberg/pull/52656 - [x] [Snackbar notices don't stay anchored to bottom of Patterns page](https://github.com/WordPress/gutenberg/pull/52270#issuecomment-1623647731) - [x] [Block Inserter: Error displayed in browser console when opening custom pattern categories](https://github.com/WordPress/gutenberg/issues/51873#top) - [PR](https://github.com/WordPress/gutenberg/pull/51947) @glendaviesnz @talldan - [x] [Custom Pattern: Each time you switch pattern categories, the number of custom patterns increases](https://github.com/WordPress/gutenberg/issues/51872#top) - [PR](https://github.com/WordPress/gutenberg/pull/51947) @glendaviesnz @talldan - [x] [Patterns: remove ability to change sync state in UI with a classic theme](https://github.com/WordPress/gutenberg/issues/51920#top) - [PR](https://github.com/WordPress/gutenberg/pull/51998) - @glendaviesnz - [x] [Pattern block: Rename "Convert to regular block" to "Unsync"](https://github.com/WordPress/gutenberg/issues/51940) - [PR](https://github.com/WordPress/gutenberg/pull/51993) @richtabor - [x] [Move the sync_status field to top level post field](https://github.com/WordPress/gutenberg/pull/52146) - [x] Should we rename `sync_status` to `wp_sync_status`? - [question asked here](https://wordpress.slack.com/archives/C02QB2JS7/p1688091498250399). Looks like we are too late to consider this as 16.1 already out with existing naming. - [x] [Unsynced patterns created in site editor not appearing in post inserter] - [x] https://github.com/WordPress/gutenberg/pull/52346 - [x] [ Import and export of patterns does not take into account sync status](https://github.com/WordPress/gutenberg/issues/52333) - [PR](https://github.com/WordPress/gutenberg/pull/52346) - @glendaviesnz - [x] [ Import notice is incorrect](https://github.com/WordPress/gutenberg/issues/52331) - [PR](https://github.com/WordPress/gutenberg/pull/52346) - @glendaviesnz - [x] https://github.com/WordPress/gutenberg/pull/52012 - [x] [Patterns: update block description based on sync status/optionality](https://github.com/WordPress/gutenberg/issues/51922#top) - [PR](https://github.com/WordPress/gutenberg/pull/52010) - @glendaviesnz - [x] https://github.com/WordPress/gutenberg/issues/52139 - [PR](https://github.com/WordPress/gutenberg/pull/52160) - [x] https://github.com/WordPress/gutenberg/issues/52194 - [x] https://github.com/WordPress/gutenberg/issues/52614 - [x] https://github.com/WordPress/gutenberg/pull/51771 - [x] [Adding pattern from wp-admin page gives no option to add sync status ](https://github.com/WordPress/gutenberg/issues/52329) - [PR](https://github.com/WordPress/gutenberg/pull/52352) - @glendaviesnz - This might be something that has to wait until post 6.4, the PoC proved we could rely on the summary panel to present the modal. - [x] https://github.com/WordPress/gutenberg/pull/52497 - [x] https://github.com/WordPress/gutenberg/pull/52663 - [x] https://github.com/WordPress/gutenberg/pull/52747 - [x] https://github.com/WordPress/gutenberg/pull/52742 - [x] https://github.com/WordPress/gutenberg/pull/52780 - [x] [Library: Browser scrollbar blinks at certain browser width](https://github.com/WordPress/gutenberg/issues/52027#top) - [x] https://github.com/WordPress/gutenberg/issues/52491 - [PR](https://github.com/WordPress/gutenberg/pull/52817) - [x] https://github.com/WordPress/gutenberg/pull/52764 - [x] https://github.com/WordPress/gutenberg/pull/52933 - [x] https://github.com/WordPress/gutenberg/pull/52961 ## Closed - [x] https://github.com/WordPress/gutenberg/pull/51985 ## Future Follow-ups - [ ] [Make lock icons more consistent between theme patterns in the site editor page and the "Lock" menu item from the block toolbar's more menu](https://github.com/WordPress/gutenberg/issues/51948#issuecomment-1631540891) - [ ] [Add nicely designed empty state explaining how to use patterns for when default category is empty](https://github.com/WordPress/gutenberg/pull/51949#issuecomment-1609240546) - [ ] [Custom patterns: Library and Inserter 1:1](https://github.com/WordPress/gutenberg/issues/51945) - Needs design / Pending feedback - We could still get a draft PR together that includes synced patterns alongside unsynced patterns - [ ] Add import/export for patterns to the Patterns library - [ ] https://github.com/WordPress/gutenberg/issues/52360 - [ ] https://github.com/WordPress/gutenberg/issues/52150 - [ ] https://github.com/WordPress/gutenberg/issues/51099 - [ ] https://github.com/WordPress/gutenberg/issues/52137 - [ ] https://github.com/WordPress/gutenberg/issues/52107 - Different to 51919 by adding to pattern/template sidebar nav screen - [ ] [Patterns: use correct icon when searching with the slash inserter](https://github.com/WordPress/gutenberg/issues/51921#top) have suggested we push this to post 6.3. The current behaviour is by design so an enhancement and not a bug - should be reviewed but not critical enough to prioritise for 6.3 - [ ] https://github.com/WordPress/gutenberg/issues/52132 - [ ] https://github.com/WordPress/gutenberg/issues/53209 - [PR](https://github.com/WordPress/gutenberg/pull/53205)
priority
tracking library pattern management issues the following lists cover known bugs and issues for the current state of the library and pattern management features ideally we ll get as many of these done as possible before the beta however some work is likely to flow into the beta period as enabled by the note when adding a pr to this tracking issue make sure it has the backport to wp beta rc label on it if it should be included in the wp beta thanks todo possible duplicate actually just displaying padding as specified by the theme i think in progress completed aaronrobertshaw aaronrobertshaw aaronrobertshaw aaronrobertshaw aaronrobertshaw saxonf saxonf jameskoster saxonf was already fixed in carolinan t hamano aaronrobertshaw glendaviesnz status looking for volunteers to take this over aaronrobertshaw aaronrobertshaw particularly renaming for aaronrobertshaw getdave t hamano glendaviesnz talldan glendaviesnz talldan glendaviesnz richtabor should we rename sync status to wp sync status looks like we are too late to consider this as already out with existing naming glendaviesnz glendaviesnz glendaviesnz glendaviesnz this might be something that has to wait until post the poc proved we could rely on the summary panel to present the modal closed future follow ups needs design pending feedback we could still get a draft pr together that includes synced patterns alongside unsynced patterns add import export for patterns to the patterns library different to by adding to pattern template sidebar nav screen have suggested we push this to post the current behaviour is by design so an enhancement and not a bug should be reviewed but not critical enough to prioritise for
1
616,113
19,294,146,843
IssuesEvent
2021-12-12 09:49:55
OpenTreeHole/backend
https://api.github.com/repos/OpenTreeHole/backend
closed
API KEY 生成机制
dev request high priority
**Is your feature request related to a problem? Please describe.** API KEY 的生成机制迟迟没有提交,这是 APP 端认证用户的手段,属于最基本的功能,应当被优先解决。 **Describe the solution you'd like** 等待能否获得学校的oauth,在找到更好的认证方式之前,正式版将暂缓发布 **Describe alternatives you've considered** 1. 目前提到的基于时间生成令牌 理由:由于种子需要被写进前端,无论算法是否开源,都有被反编译的可能 2. 将uis学号和密码发给后端,后端完成验证即可 理由:后端可能被黑客植入后门截取所有凭据,可能触发UIS风控
1.0
API KEY 生成机制 - **Is your feature request related to a problem? Please describe.** API KEY 的生成机制迟迟没有提交,这是 APP 端认证用户的手段,属于最基本的功能,应当被优先解决。 **Describe the solution you'd like** 等待能否获得学校的oauth,在找到更好的认证方式之前,正式版将暂缓发布 **Describe alternatives you've considered** 1. 目前提到的基于时间生成令牌 理由:由于种子需要被写进前端,无论算法是否开源,都有被反编译的可能 2. 将uis学号和密码发给后端,后端完成验证即可 理由:后端可能被黑客植入后门截取所有凭据,可能触发UIS风控
priority
api key 生成机制 is your feature request related to a problem please describe api key 的生成机制迟迟没有提交,这是 app 端认证用户的手段,属于最基本的功能,应当被优先解决。 describe the solution you d like 等待能否获得学校的oauth,在找到更好的认证方式之前,正式版将暂缓发布 describe alternatives you ve considered 目前提到的基于时间生成令牌 理由:由于种子需要被写进前端,无论算法是否开源,都有被反编译的可能 将uis学号和密码发给后端,后端完成验证即可 理由:后端可能被黑客植入后门截取所有凭据,可能触发uis风控
1
149,170
5,713,006,868
IssuesEvent
2017-04-19 06:16:20
ro9ues/ro9ues.github.io
https://api.github.com/repos/ro9ues/ro9ues.github.io
closed
Enable CI
[priority] high [status] completed [type] feature
### Description Enable Continuous Integration. --- ### Issue Checklist - [x] Enable project to implement Continuous Integration. - [x] Configure `Travis CI`. --- ### Assignees - [x] Final assign @ro9ues
1.0
Enable CI - ### Description Enable Continuous Integration. --- ### Issue Checklist - [x] Enable project to implement Continuous Integration. - [x] Configure `Travis CI`. --- ### Assignees - [x] Final assign @ro9ues
priority
enable ci description enable continuous integration issue checklist enable project to implement continuous integration configure travis ci assignees final assign
1
54,775
3,071,267,393
IssuesEvent
2015-08-19 10:55:16
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
opened
r500 Не скачивается весь каталог, если использован частичный просмотр шары (показать список файлов)
bug imported Priority-High Usability
_From [tret2...@gmail.com](https://code.google.com/u/116508191076211387118/) on August 11, 2010 13:02:48_ При использовании функции просмотреть список файлов если ставить каталог на скачку, то он ставит тольно подгруженные подкаталоги. Сделайть так, чтоб он подгружал автоматически подкаталоги и ставил на скачивание папку полностью. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=105_
1.0
r500 Не скачивается весь каталог, если использован частичный просмотр шары (показать список файлов) - _From [tret2...@gmail.com](https://code.google.com/u/116508191076211387118/) on August 11, 2010 13:02:48_ При использовании функции просмотреть список файлов если ставить каталог на скачку, то он ставит тольно подгруженные подкаталоги. Сделайть так, чтоб он подгружал автоматически подкаталоги и ставил на скачивание папку полностью. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=105_
priority
не скачивается весь каталог если использован частичный просмотр шары показать список файлов from on august при использовании функции просмотреть список файлов если ставить каталог на скачку то он ставит тольно подгруженные подкаталоги сделайть так чтоб он подгружал автоматически подкаталоги и ставил на скачивание папку полностью original issue
1
589,058
17,688,791,033
IssuesEvent
2021-08-24 07:19:02
woowa-techcamp-2021/store-6
https://api.github.com/repos/woowa-techcamp-2021/store-6
closed
[FE] No Resource Component 개발
high priority feat
## :hammer: 기능 설명 ### No Resource Component 개발 ## 📑 완료 조건 - [x] 디자인 시안대로 No Resource 컴포넌트를 개발합니다. - [x] 상품 목록 페이지에서 No Resource 컴포넌트를 연결합니다. ## :thought_balloon: 관련 Backlog > [대분류] - [중분류] - [Backlog 이름] [FE] 기타 - 공통 컴포넌트 - NoResourceComponent
1.0
[FE] No Resource Component 개발 - ## :hammer: 기능 설명 ### No Resource Component 개발 ## 📑 완료 조건 - [x] 디자인 시안대로 No Resource 컴포넌트를 개발합니다. - [x] 상품 목록 페이지에서 No Resource 컴포넌트를 연결합니다. ## :thought_balloon: 관련 Backlog > [대분류] - [중분류] - [Backlog 이름] [FE] 기타 - 공통 컴포넌트 - NoResourceComponent
priority
no resource component 개발 hammer 기능 설명 no resource component 개발 📑 완료 조건 디자인 시안대로 no resource 컴포넌트를 개발합니다 상품 목록 페이지에서 no resource 컴포넌트를 연결합니다 thought balloon 관련 backlog 기타 공통 컴포넌트 noresourcecomponent
1
525,867
15,267,691,919
IssuesEvent
2021-02-22 10:24:45
RasaHQ/rasa
https://api.github.com/repos/RasaHQ/rasa
closed
Enforce annotating unit tests that train a model
area:rasa-oss :ferris_wheel: effort:enable-squad/2 priority:high type:maintenance :wrench:
**Description of Problem**: Following on from #7740 we would like to enforce that in the future tests that train a model are annotated using a pytest mark. **Overview of the Solution**: Determine if there is a way to enforce annotating unit tests that train. This might be a mix of looking at usage of fixtures and calling of certain methods. **Definition of Done**: Either: - Implement the solution if manageable. Or - A new issue containing the proposed approach. Or - A reason why it is not possible.
1.0
Enforce annotating unit tests that train a model - **Description of Problem**: Following on from #7740 we would like to enforce that in the future tests that train a model are annotated using a pytest mark. **Overview of the Solution**: Determine if there is a way to enforce annotating unit tests that train. This might be a mix of looking at usage of fixtures and calling of certain methods. **Definition of Done**: Either: - Implement the solution if manageable. Or - A new issue containing the proposed approach. Or - A reason why it is not possible.
priority
enforce annotating unit tests that train a model description of problem following on from we would like to enforce that in the future tests that train a model are annotated using a pytest mark overview of the solution determine if there is a way to enforce annotating unit tests that train this might be a mix of looking at usage of fixtures and calling of certain methods definition of done either implement the solution if manageable or a new issue containing the proposed approach or a reason why it is not possible
1
330,051
10,028,640,806
IssuesEvent
2019-07-17 12:12:37
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
closed
Problem between FeatureGrid, TOC and FeatureInfo bx
Accepted Priority: High bug
### Description I think I have found a mismatch between TOC, FI and FG. ### In case of Bug (otherwise remove this paragraph) *Browser Affected* (use this site: https://www.whatsmybrowser.org/ for non expert users) - [x] Internet Explorer - [x] Chrome - [x] Firefox - [x] Safari *Browser Version Affected* - Indicate the browser version in which the issue has been found *Steps to reproduce* See GIF below, for [this](https://dev.mapstore2.geo-solutions.it/mapstore/#/viewer/openlayers/191) map. ![ms1](https://user-images.githubusercontent.com/693880/58138068-0b86b800-7c35-11e9-820f-f8c207f534a1.gif) *Expected Result* The FG should not bump again once I close the FI, right? *Current Result* The FG bump again once I close the FI, this is unepxted. However, if I start interacting again, things become normal. ### Other useful information (optional):
1.0
Problem between FeatureGrid, TOC and FeatureInfo bx - ### Description I think I have found a mismatch between TOC, FI and FG. ### In case of Bug (otherwise remove this paragraph) *Browser Affected* (use this site: https://www.whatsmybrowser.org/ for non expert users) - [x] Internet Explorer - [x] Chrome - [x] Firefox - [x] Safari *Browser Version Affected* - Indicate the browser version in which the issue has been found *Steps to reproduce* See GIF below, for [this](https://dev.mapstore2.geo-solutions.it/mapstore/#/viewer/openlayers/191) map. ![ms1](https://user-images.githubusercontent.com/693880/58138068-0b86b800-7c35-11e9-820f-f8c207f534a1.gif) *Expected Result* The FG should not bump again once I close the FI, right? *Current Result* The FG bump again once I close the FI, this is unepxted. However, if I start interacting again, things become normal. ### Other useful information (optional):
priority
problem between featuregrid toc and featureinfo bx description i think i have found a mismatch between toc fi and fg in case of bug otherwise remove this paragraph browser affected use this site for non expert users internet explorer chrome firefox safari browser version affected indicate the browser version in which the issue has been found steps to reproduce see gif below for map expected result the fg should not bump again once i close the fi right current result the fg bump again once i close the fi this is unepxted however if i start interacting again things become normal other useful information optional
1
196,089
6,924,352,524
IssuesEvent
2017-11-30 12:26:16
fgpv-vpgf/fgpa-apgf
https://api.github.com/repos/fgpv-vpgf/fgpa-apgf
opened
Make preview works with real config from authoringtool
addition: feature priority: high v0.1.0
In the current version, preview works with a pre made configuration file. Make it work with the real config file from the authoring tool. We will first try to use what Mile's sent me: Try copying the entire config to a window variable like window.myConfig = { ... config }; then make rv-config="myConfig". Just make sure myConfig is defined before rv-main.js is executed.
1.0
Make preview works with real config from authoringtool - In the current version, preview works with a pre made configuration file. Make it work with the real config file from the authoring tool. We will first try to use what Mile's sent me: Try copying the entire config to a window variable like window.myConfig = { ... config }; then make rv-config="myConfig". Just make sure myConfig is defined before rv-main.js is executed.
priority
make preview works with real config from authoringtool in the current version preview works with a pre made configuration file make it work with the real config file from the authoring tool we will first try to use what mile s sent me try copying the entire config to a window variable like window myconfig config then make rv config myconfig just make sure myconfig is defined before rv main js is executed
1
715,129
24,587,891,902
IssuesEvent
2022-10-13 21:37:40
Automattic/syndication
https://api.github.com/repos/Automattic/syndication
closed
Customized PermaLink Values are Dropped
needs-investigation Priority::High
For the PermaLinks, when syndicating a post it appears to always base the Permalink on the Title of the article which has gone through the "sanitize_title" function that wordpress has. A customized permalink, where an editor has modified the value, is not kept and syndicated.
1.0
Customized PermaLink Values are Dropped - For the PermaLinks, when syndicating a post it appears to always base the Permalink on the Title of the article which has gone through the "sanitize_title" function that wordpress has. A customized permalink, where an editor has modified the value, is not kept and syndicated.
priority
customized permalink values are dropped for the permalinks when syndicating a post it appears to always base the permalink on the title of the article which has gone through the sanitize title function that wordpress has a customized permalink where an editor has modified the value is not kept and syndicated
1
72,099
3,372,010,220
IssuesEvent
2015-11-23 21:36:00
websharks/comment-mail
https://api.github.com/repos/websharks/comment-mail
opened
StCR Import Bug: "All Replies" subscriptions treated as "Replies Only To Self"
bug high priority
## Steps to reproduce this bug 1. Install StCR 1. Leave a comment on a post and select "All" to receive notifications for all new comments on the post 1. Install, activate, and enable Comment Mail Lite (confirmed with v150709) 1. Run the StCR → Comment Mail import process to import the StCR subscription 1. Disable StCR 1 Leave a new comment on the post that contained the subscription you imported ## Expected behavior Comment Mail should send a notification to the imported subscription. ## Observed behavior No email is sent. --- ### What appears to be happening If you edit the imported StCR subscription inside **Comment Mail → Subscriptions**, you'll notice how it appears to have been imported as a "replies only" subscription (because a Comment ID is selected). However, what's really strange is that the comment selected _is itself_. In the screenshot below you can see that the comment selected in "Comment ID" is the same as the subscription being edited! ![2015-11-23_16-31-33](https://cloud.githubusercontent.com/assets/53005/11350586/4144ad80-9200-11e5-9f0f-7cebb012a6d9.png)
1.0
StCR Import Bug: "All Replies" subscriptions treated as "Replies Only To Self" - ## Steps to reproduce this bug 1. Install StCR 1. Leave a comment on a post and select "All" to receive notifications for all new comments on the post 1. Install, activate, and enable Comment Mail Lite (confirmed with v150709) 1. Run the StCR → Comment Mail import process to import the StCR subscription 1. Disable StCR 1 Leave a new comment on the post that contained the subscription you imported ## Expected behavior Comment Mail should send a notification to the imported subscription. ## Observed behavior No email is sent. --- ### What appears to be happening If you edit the imported StCR subscription inside **Comment Mail → Subscriptions**, you'll notice how it appears to have been imported as a "replies only" subscription (because a Comment ID is selected). However, what's really strange is that the comment selected _is itself_. In the screenshot below you can see that the comment selected in "Comment ID" is the same as the subscription being edited! ![2015-11-23_16-31-33](https://cloud.githubusercontent.com/assets/53005/11350586/4144ad80-9200-11e5-9f0f-7cebb012a6d9.png)
priority
stcr import bug all replies subscriptions treated as replies only to self steps to reproduce this bug install stcr leave a comment on a post and select all to receive notifications for all new comments on the post install activate and enable comment mail lite confirmed with run the stcr → comment mail import process to import the stcr subscription disable stcr leave a new comment on the post that contained the subscription you imported expected behavior comment mail should send a notification to the imported subscription observed behavior no email is sent what appears to be happening if you edit the imported stcr subscription inside comment mail → subscriptions you ll notice how it appears to have been imported as a replies only subscription because a comment id is selected however what s really strange is that the comment selected is itself in the screenshot below you can see that the comment selected in comment id is the same as the subscription being edited
1
148,381
5,680,830,104
IssuesEvent
2017-04-13 03:08:27
elixir-lang/vim-elixir
https://api.github.com/repos/elixir-lang/vim-elixir
closed
indent: receive block comments
bug HIGH-PRIORITY indent
# Actual ```ex receive do {{:lock_ready, ^key}, ^pid} -> after # NOTE: @jbodah 2017-03-28: we should do some math to adjust the timeout timeout -> {:error, :timed_out_waiting_for_lock} end ``` # Expected ```ex receive do {{:lock_ready, ^key}, ^pid} -> after # NOTE: @jbodah 2017-03-28: we should do some math to adjust the timeout timeout -> {:error, :timed_out_waiting_for_lock} end ```
1.0
indent: receive block comments - # Actual ```ex receive do {{:lock_ready, ^key}, ^pid} -> after # NOTE: @jbodah 2017-03-28: we should do some math to adjust the timeout timeout -> {:error, :timed_out_waiting_for_lock} end ``` # Expected ```ex receive do {{:lock_ready, ^key}, ^pid} -> after # NOTE: @jbodah 2017-03-28: we should do some math to adjust the timeout timeout -> {:error, :timed_out_waiting_for_lock} end ```
priority
indent receive block comments actual ex receive do lock ready key pid after note jbodah we should do some math to adjust the timeout timeout error timed out waiting for lock end expected ex receive do lock ready key pid after note jbodah we should do some math to adjust the timeout timeout error timed out waiting for lock end
1
141,932
5,447,106,193
IssuesEvent
2017-03-07 12:37:55
fossasia/open-event-orga-server
https://api.github.com/repos/fossasia/open-event-orga-server
closed
Change sessions min time from 15 minutes to 3 minutes
bug enhancement Priority: High Priority: URGENT
The session time in the scheduler is minimum 15 minutes. Actually we have sessions that are shorter. Please give organizers the option to scale down the time up to 3 minutes in the scheduler.
2.0
Change sessions min time from 15 minutes to 3 minutes - The session time in the scheduler is minimum 15 minutes. Actually we have sessions that are shorter. Please give organizers the option to scale down the time up to 3 minutes in the scheduler.
priority
change sessions min time from minutes to minutes the session time in the scheduler is minimum minutes actually we have sessions that are shorter please give organizers the option to scale down the time up to minutes in the scheduler
1
107,108
4,289,122,557
IssuesEvent
2016-07-17 22:14:10
rdunlop/unicycling-registration
https://api.github.com/repos/rdunlop/unicycling-registration
closed
Fix Best times
enhancement High Priority
There should be a way to easily/quickly fix the user's entered best times. Perhaps we can have a page which shows them all, and allows easy correction of things like "they specified minutes instead of seconds)
1.0
Fix Best times - There should be a way to easily/quickly fix the user's entered best times. Perhaps we can have a page which shows them all, and allows easy correction of things like "they specified minutes instead of seconds)
priority
fix best times there should be a way to easily quickly fix the user s entered best times perhaps we can have a page which shows them all and allows easy correction of things like they specified minutes instead of seconds
1
365,066
10,775,214,474
IssuesEvent
2019-11-03 12:52:00
code4romania/monitorizare-vot-ios
https://api.github.com/repos/code4romania/monitorizare-vot-ios
closed
[Core] Implement Push Notifications
enhancement hacktoberfest help wanted high priority ios
- [ ] Use Firebase to send messages. - [ ] Minimal implementation (ask for push permissions immediately after log in, if they're not determined, send them to Firebase) - [ ] See if there's anything to do when a push is received while the app is open or if Firebase handles this
1.0
[Core] Implement Push Notifications - - [ ] Use Firebase to send messages. - [ ] Minimal implementation (ask for push permissions immediately after log in, if they're not determined, send them to Firebase) - [ ] See if there's anything to do when a push is received while the app is open or if Firebase handles this
priority
implement push notifications use firebase to send messages minimal implementation ask for push permissions immediately after log in if they re not determined send them to firebase see if there s anything to do when a push is received while the app is open or if firebase handles this
1
819,797
30,751,358,619
IssuesEvent
2023-07-28 19:35:23
ggerganov/llama.cpp
https://api.github.com/repos/ggerganov/llama.cpp
closed
Improve Alpaca integration to match it's trained prompt syntax
enhancement help wanted high priority
Alpaca LoRA model was trained on the same dataset as original [Stanford Alpaca](https://crfm.stanford.edu/2023/03/13/alpaca.html). However, this dataset contains two types of instructions, namely: - instructions with input - instructions without input For more details about the instructions format see details [here.](https://github.com/tatsu-lab/stanford_alpaca#data-release) In case of instructions such as text summarization, instruction alone only "explain" the task, while the text to be summarized is inserted into the "input" part of the prompt. Current integration of alpaca in `llama.cpp` mimics the current integration in [alpaca.cpp](https://github.com/antimatter15/alpaca.cpp) which completely omits the "instructions with input" type of instructions. This may have significant impact on the model performance using task which were trained to be used in "instruction with input" prompt syntax when using just ordinary "instruction without input" prompt syntax instead. I suggest to build some small tutorial with example usage in order for users to be able to know which type of instruction should be used in input mode and which not. Then I suggest to integrate this "input" mode somehow into the current implementation. Easiest way would be to let user type text prompt like: ``` Summarize following text.***input***Text to be summarized ``` which will be transformed into: ``` ### Instruction: Summarize following text. ### Input: Text to be summarized ### Response: ``` While when user don't specify `***input***` tag, the instruction will be transformed into "standard" (currently implemented) format: ``` ### Instruction: Instruction text from user ### Response: ```
1.0
Improve Alpaca integration to match it's trained prompt syntax - Alpaca LoRA model was trained on the same dataset as original [Stanford Alpaca](https://crfm.stanford.edu/2023/03/13/alpaca.html). However, this dataset contains two types of instructions, namely: - instructions with input - instructions without input For more details about the instructions format see details [here.](https://github.com/tatsu-lab/stanford_alpaca#data-release) In case of instructions such as text summarization, instruction alone only "explain" the task, while the text to be summarized is inserted into the "input" part of the prompt. Current integration of alpaca in `llama.cpp` mimics the current integration in [alpaca.cpp](https://github.com/antimatter15/alpaca.cpp) which completely omits the "instructions with input" type of instructions. This may have significant impact on the model performance using task which were trained to be used in "instruction with input" prompt syntax when using just ordinary "instruction without input" prompt syntax instead. I suggest to build some small tutorial with example usage in order for users to be able to know which type of instruction should be used in input mode and which not. Then I suggest to integrate this "input" mode somehow into the current implementation. Easiest way would be to let user type text prompt like: ``` Summarize following text.***input***Text to be summarized ``` which will be transformed into: ``` ### Instruction: Summarize following text. ### Input: Text to be summarized ### Response: ``` While when user don't specify `***input***` tag, the instruction will be transformed into "standard" (currently implemented) format: ``` ### Instruction: Instruction text from user ### Response: ```
priority
improve alpaca integration to match it s trained prompt syntax alpaca lora model was trained on the same dataset as original however this dataset contains two types of instructions namely instructions with input instructions without input for more details about the instructions format see details in case of instructions such as text summarization instruction alone only explain the task while the text to be summarized is inserted into the input part of the prompt current integration of alpaca in llama cpp mimics the current integration in which completely omits the instructions with input type of instructions this may have significant impact on the model performance using task which were trained to be used in instruction with input prompt syntax when using just ordinary instruction without input prompt syntax instead i suggest to build some small tutorial with example usage in order for users to be able to know which type of instruction should be used in input mode and which not then i suggest to integrate this input mode somehow into the current implementation easiest way would be to let user type text prompt like summarize following text input text to be summarized which will be transformed into instruction summarize following text input text to be summarized response while when user don t specify input tag the instruction will be transformed into standard currently implemented format instruction instruction text from user response
1
289,474
8,871,289,880
IssuesEvent
2019-01-11 12:07:45
ballerina-platform/ballerina-lang
https://api.github.com/repos/ballerina-platform/ballerina-lang
closed
[Streams Join] Window length should default to 1 when it is not explicitly defined
Component/Streams Priority/Highest Type/Improvement
**Description:** $subject **Steps to reproduce:** Please consider the below streaming query. ``` forever { from stockStream join twitterStream window length(1) on stockStream.symbol == twitterStream.company select stockStream.symbol as symbol, twitterStream.tweet as tweet, stockStream.price as price => (StockWithPrice[] emp) { foreach e in emp { stockWithPriceStream.publish(e); } } } ``` If below events are pushed to above streaming query then we expect there should be 2 events as output. But, in this case, since there is no any window is defined for stockStream there is no any events kept in memory to join. Then, we should default the window as length window (and size as 1) if there is no any windows are explicitly defined. ``` Stock s1 = {symbol:"WSO2", price:55.6, volume:100}; Stock s2 = {symbol:"MBI", price:74.6, volume:100}; Stock s3 = {symbol:"WSO2", price:58.6, volume:100}; Twitter t1 = {user:"User1", tweet:"Hello WSO2, happy to be a user.", company:"WSO2"}; stockWithPriceStream.subscribe(printCompanyStockPrice); stockStream.publish(s1); twitterStream.publish(t1); stockStream.publish(s2); stockStream.publish(s3); ``` **Affected Versions:** 0.982.1 **Suggested Assignees (optional):** @mohanvive @gimantha @grainier
1.0
[Streams Join] Window length should default to 1 when it is not explicitly defined - **Description:** $subject **Steps to reproduce:** Please consider the below streaming query. ``` forever { from stockStream join twitterStream window length(1) on stockStream.symbol == twitterStream.company select stockStream.symbol as symbol, twitterStream.tweet as tweet, stockStream.price as price => (StockWithPrice[] emp) { foreach e in emp { stockWithPriceStream.publish(e); } } } ``` If below events are pushed to above streaming query then we expect there should be 2 events as output. But, in this case, since there is no any window is defined for stockStream there is no any events kept in memory to join. Then, we should default the window as length window (and size as 1) if there is no any windows are explicitly defined. ``` Stock s1 = {symbol:"WSO2", price:55.6, volume:100}; Stock s2 = {symbol:"MBI", price:74.6, volume:100}; Stock s3 = {symbol:"WSO2", price:58.6, volume:100}; Twitter t1 = {user:"User1", tweet:"Hello WSO2, happy to be a user.", company:"WSO2"}; stockWithPriceStream.subscribe(printCompanyStockPrice); stockStream.publish(s1); twitterStream.publish(t1); stockStream.publish(s2); stockStream.publish(s3); ``` **Affected Versions:** 0.982.1 **Suggested Assignees (optional):** @mohanvive @gimantha @grainier
priority
window length should default to when it is not explicitly defined description subject steps to reproduce please consider the below streaming query forever from stockstream join twitterstream window length on stockstream symbol twitterstream company select stockstream symbol as symbol twitterstream tweet as tweet stockstream price as price stockwithprice emp foreach e in emp stockwithpricestream publish e if below events are pushed to above streaming query then we expect there should be events as output but in this case since there is no any window is defined for stockstream there is no any events kept in memory to join then we should default the window as length window and size as if there is no any windows are explicitly defined stock symbol price volume stock symbol mbi price volume stock symbol price volume twitter user tweet hello happy to be a user company stockwithpricestream subscribe printcompanystockprice stockstream publish twitterstream publish stockstream publish stockstream publish affected versions suggested assignees optional mohanvive gimantha grainier
1
82,679
3,618,080,188
IssuesEvent
2016-02-08 09:44:13
nus-fboa2016-PL/PowerPointLabs
https://api.github.com/repos/nus-fboa2016-PL/PowerPointLabs
closed
Implement UI class that separates from logic
Feature.ResizeLab Priority.High Type.To-Do
Create a new class for UI related methods (e.g. messagebox).
1.0
Implement UI class that separates from logic - Create a new class for UI related methods (e.g. messagebox).
priority
implement ui class that separates from logic create a new class for ui related methods e g messagebox
1
49,681
3,003,878,751
IssuesEvent
2015-07-25 10:35:24
Piwigo/Piwigo
https://api.github.com/repos/Piwigo/Piwigo
closed
[upload] no picture extension allowed for picture upload
high priority trivial
**Reported by plg on 7 Oct 2004 21:04** **Version:** 1.3.3 when trying to upload a picture, PhpWebGallery always rejects it saying the extension is not correct, while obviously it is ! **Steps to reproduce:** once parse error on line 39 of upload.php corrected, try to upload a picture [Piwigo Bugtracker #54](http://piwigo.org/bugs/view.php?id=54)
1.0
[upload] no picture extension allowed for picture upload - **Reported by plg on 7 Oct 2004 21:04** **Version:** 1.3.3 when trying to upload a picture, PhpWebGallery always rejects it saying the extension is not correct, while obviously it is ! **Steps to reproduce:** once parse error on line 39 of upload.php corrected, try to upload a picture [Piwigo Bugtracker #54](http://piwigo.org/bugs/view.php?id=54)
priority
no picture extension allowed for picture upload reported by plg on oct version when trying to upload a picture phpwebgallery always rejects it saying the extension is not correct while obviously it is steps to reproduce once parse error on line of upload php corrected try to upload a picture
1
706,051
24,258,409,002
IssuesEvent
2022-09-27 19:59:17
airbytehq/airbyte
https://api.github.com/repos/airbytehq/airbyte
closed
communicate to the user in the UI about what tables to expect
type/enhancement area/frontend priority/high team/workflow autoteam team/frontend ui/connection
If a first-time user syncs data from a source into a warehouse destination, the first thing they'll do is check the destination for the tables they created. If they use a SQL client or the BigQuery UI (for example) they'll likely see an ocean of `_airbyte_raw` tables that are first alphabetically before their actual tables. This is especially confusing if they specified a prefix. I'm a bit torn on how to actually communicate this information. Maybe this can be where we configure normalization.
1.0
communicate to the user in the UI about what tables to expect - If a first-time user syncs data from a source into a warehouse destination, the first thing they'll do is check the destination for the tables they created. If they use a SQL client or the BigQuery UI (for example) they'll likely see an ocean of `_airbyte_raw` tables that are first alphabetically before their actual tables. This is especially confusing if they specified a prefix. I'm a bit torn on how to actually communicate this information. Maybe this can be where we configure normalization.
priority
communicate to the user in the ui about what tables to expect if a first time user syncs data from a source into a warehouse destination the first thing they ll do is check the destination for the tables they created if they use a sql client or the bigquery ui for example they ll likely see an ocean of airbyte raw tables that are first alphabetically before their actual tables this is especially confusing if they specified a prefix i m a bit torn on how to actually communicate this information maybe this can be where we configure normalization
1
103,819
4,186,131,603
IssuesEvent
2016-06-23 13:37:47
navacohen90/Click-a-Table
https://api.github.com/repos/navacohen90/Click-a-Table
closed
manager page - server side - query all open calls and orders
3 - Done points: 15 priority1 - HIGH
add function that return all open calls and orders: invoice call with status open waiter call with status open course order with minimal details with status open order by create call time <!--- @huboard:{"order":4.402361810207367e-06,"milestone_order":0.03125,"custom_state":""} -->
1.0
manager page - server side - query all open calls and orders - add function that return all open calls and orders: invoice call with status open waiter call with status open course order with minimal details with status open order by create call time <!--- @huboard:{"order":4.402361810207367e-06,"milestone_order":0.03125,"custom_state":""} -->
priority
manager page server side query all open calls and orders add function that return all open calls and orders invoice call with status open waiter call with status open course order with minimal details with status open order by create call time huboard order milestone order custom state
1
707,177
24,297,960,992
IssuesEvent
2022-09-29 11:42:35
Jexactyl/Jexactyl
https://api.github.com/repos/Jexactyl/Jexactyl
closed
Sub-users are sent through approval system even if disabled
bug High priority
### Current Behavior When creating a sub-user on a server, they are automatically set to false as their approval status - meaning they have to be approved to use the Panel even if the approval system is disabled. ### Expected Behavior Sub-users should not have to be approved if the system is disabled ### Steps to Reproduce - Add a sub-user - See error: User must be approved ### Panel Version canary ### Wings Version canary ### Games and/or Eggs Affected _No response_ ### Docker Image _No response_ ### Error Logs _No response_ ### Is there an existing issue for this? - [X] I have searched the existing issues before opening this issue. - [X] I have provided all relevant details, including the specific game and Docker images I am using if this issue is related to running a server. - [X] I have checked in the Discord server and believe this is a bug with the software, and not a configuration issue with my specific system.
1.0
Sub-users are sent through approval system even if disabled - ### Current Behavior When creating a sub-user on a server, they are automatically set to false as their approval status - meaning they have to be approved to use the Panel even if the approval system is disabled. ### Expected Behavior Sub-users should not have to be approved if the system is disabled ### Steps to Reproduce - Add a sub-user - See error: User must be approved ### Panel Version canary ### Wings Version canary ### Games and/or Eggs Affected _No response_ ### Docker Image _No response_ ### Error Logs _No response_ ### Is there an existing issue for this? - [X] I have searched the existing issues before opening this issue. - [X] I have provided all relevant details, including the specific game and Docker images I am using if this issue is related to running a server. - [X] I have checked in the Discord server and believe this is a bug with the software, and not a configuration issue with my specific system.
priority
sub users are sent through approval system even if disabled current behavior when creating a sub user on a server they are automatically set to false as their approval status meaning they have to be approved to use the panel even if the approval system is disabled expected behavior sub users should not have to be approved if the system is disabled steps to reproduce add a sub user see error user must be approved panel version canary wings version canary games and or eggs affected no response docker image no response error logs no response is there an existing issue for this i have searched the existing issues before opening this issue i have provided all relevant details including the specific game and docker images i am using if this issue is related to running a server i have checked in the discord server and believe this is a bug with the software and not a configuration issue with my specific system
1
511,465
14,860,943,117
IssuesEvent
2021-01-18 21:37:30
layer5io/meshery
https://api.github.com/repos/layer5io/meshery
closed
[MeshSync] runtime error: index out of range [0] with length 0
component/meshsync kind/bug priority/high
#### Description Meshery crashing and reporting error in MeshSync #### Screenshots/Logs ``` make run-local cd cmd; go clean; rm meshery; go mod tidy; \ go build -ldflags="-w -s -X main.version=v0.4.27 -X main.commitsha=8c8f95a2a9952d2700187212b6e3abea37170e8f" -tags draft -a -o meshery; \ PROVIDER_BASE_URLS="https://meshery.layer5.io" \ PORT=9081 \ DEBUG=true \ ADAPTER_URLS="mesherylocal.layer5.io:10000 mesherylocal.layer5.io:10001 mesherylocal.layer5.io:10002 mesherylocal.layer5.io:10003 mesherylocal.layer5.io:10004 mesherylocal.layer5.io:10006 mesherylocal.layer5.io:10008 mesherylocal.layer5.io:10009" \ ./meshery; \ cd .. panic: runtime error: index out of range [0] with length 0 goroutine 1 [running]: github.com/layer5io/meshsync/internal/cache.init.0() /Users/lee/code/go/pkg/mod/github.com/layer5io/meshsync@v0.1.0/internal/cache/cache.go:32 +0x3ae ```
1.0
[MeshSync] runtime error: index out of range [0] with length 0 - #### Description Meshery crashing and reporting error in MeshSync #### Screenshots/Logs ``` make run-local cd cmd; go clean; rm meshery; go mod tidy; \ go build -ldflags="-w -s -X main.version=v0.4.27 -X main.commitsha=8c8f95a2a9952d2700187212b6e3abea37170e8f" -tags draft -a -o meshery; \ PROVIDER_BASE_URLS="https://meshery.layer5.io" \ PORT=9081 \ DEBUG=true \ ADAPTER_URLS="mesherylocal.layer5.io:10000 mesherylocal.layer5.io:10001 mesherylocal.layer5.io:10002 mesherylocal.layer5.io:10003 mesherylocal.layer5.io:10004 mesherylocal.layer5.io:10006 mesherylocal.layer5.io:10008 mesherylocal.layer5.io:10009" \ ./meshery; \ cd .. panic: runtime error: index out of range [0] with length 0 goroutine 1 [running]: github.com/layer5io/meshsync/internal/cache.init.0() /Users/lee/code/go/pkg/mod/github.com/layer5io/meshsync@v0.1.0/internal/cache/cache.go:32 +0x3ae ```
priority
runtime error index out of range with length description meshery crashing and reporting error in meshsync screenshots logs make run local cd cmd go clean rm meshery go mod tidy go build ldflags w s x main version x main commitsha tags draft a o meshery provider base urls port debug true adapter urls mesherylocal io mesherylocal io mesherylocal io mesherylocal io mesherylocal io mesherylocal io mesherylocal io mesherylocal io meshery cd panic runtime error index out of range with length goroutine github com meshsync internal cache init users lee code go pkg mod github com meshsync internal cache cache go
1
666,637
22,362,451,207
IssuesEvent
2022-06-15 22:07:48
MarketSquare/robotframework-browser
https://api.github.com/repos/MarketSquare/robotframework-browser
closed
Get Element States keyword in presenter mode
bug priority: high
**Describe the bug** When in presenter mode, the keyword **Get Element States** does not return state **detached** for element, which is detached. It will raise timeout error instead. **To Reproduce** Steps to reproduce the behavior: ``` *** Settings *** Library Browser enable_presenter_mode=False *** Test Cases *** Test New Browser headless=False New Page Go To https://robotframework.org/ ${state_visible_element} Get Element States //h1[@class='title'] evaluate visible in value ${state_detached_element} Get Element States //h1[@class='wrong_title'] evaluate detached in value ``` **Expected behavior** When presenter mode is not active, the code works just fine. When I set presenter mode as active, the first Get Element State works (the element is there), but the second one doesn't. The element is not there, but it should return detached instead of the error message. **Desktop (please complete the following information):** - OS: Windows 10, build 19044.1706 - Browser: Chromium - Version: 102.0.5005.40 (Developer Build) (64-bit)
1.0
Get Element States keyword in presenter mode - **Describe the bug** When in presenter mode, the keyword **Get Element States** does not return state **detached** for element, which is detached. It will raise timeout error instead. **To Reproduce** Steps to reproduce the behavior: ``` *** Settings *** Library Browser enable_presenter_mode=False *** Test Cases *** Test New Browser headless=False New Page Go To https://robotframework.org/ ${state_visible_element} Get Element States //h1[@class='title'] evaluate visible in value ${state_detached_element} Get Element States //h1[@class='wrong_title'] evaluate detached in value ``` **Expected behavior** When presenter mode is not active, the code works just fine. When I set presenter mode as active, the first Get Element State works (the element is there), but the second one doesn't. The element is not there, but it should return detached instead of the error message. **Desktop (please complete the following information):** - OS: Windows 10, build 19044.1706 - Browser: Chromium - Version: 102.0.5005.40 (Developer Build) (64-bit)
priority
get element states keyword in presenter mode describe the bug when in presenter mode the keyword get element states does not return state detached for element which is detached it will raise timeout error instead to reproduce steps to reproduce the behavior settings library browser enable presenter mode false test cases test new browser headless false new page go to state visible element get element states evaluate visible in value state detached element get element states evaluate detached in value expected behavior when presenter mode is not active the code works just fine when i set presenter mode as active the first get element state works the element is there but the second one doesn t the element is not there but it should return detached instead of the error message desktop please complete the following information os windows build browser chromium version developer build bit
1
481,029
13,879,606,353
IssuesEvent
2020-10-17 15:11:08
iv-org/invidious
https://api.github.com/repos/iv-org/invidious
closed
syntax error at or near "ON"
bug priority:high type:backend
I am trying to selfhost invidious on CentOS 7. I followed the instructions from the README.md and was able to successfully build and run invidious. When I open the startpage it is blank, but clicking on "TRENDING" or searching for a video yields some videos that I can click on. Upon clicking on a video, only the message `syntax error at or near "ON"` is displayed without a video. In the console output of invidious the same message is printed, preceded by the video ID. Is there any possibility to increase the verbosity of the log? The version that I tested is: 0.20.1-30a2c28 @ master
1.0
syntax error at or near "ON" - I am trying to selfhost invidious on CentOS 7. I followed the instructions from the README.md and was able to successfully build and run invidious. When I open the startpage it is blank, but clicking on "TRENDING" or searching for a video yields some videos that I can click on. Upon clicking on a video, only the message `syntax error at or near "ON"` is displayed without a video. In the console output of invidious the same message is printed, preceded by the video ID. Is there any possibility to increase the verbosity of the log? The version that I tested is: 0.20.1-30a2c28 @ master
priority
syntax error at or near on i am trying to selfhost invidious on centos i followed the instructions from the readme md and was able to successfully build and run invidious when i open the startpage it is blank but clicking on trending or searching for a video yields some videos that i can click on upon clicking on a video only the message syntax error at or near on is displayed without a video in the console output of invidious the same message is printed preceded by the video id is there any possibility to increase the verbosity of the log the version that i tested is master
1
207,416
7,128,162,942
IssuesEvent
2018-01-21 08:20:17
marbl/MetagenomeScope
https://api.github.com/repos/marbl/MetagenomeScope
closed
Add assembly finishing tools to the control panel
highpriorityfeature
_From @fedarko on August 12, 2016 20:49_ And, presumably, exporting the result to a FASTA file (or modified .db file, maybe?). _Copied from original issue: fedarko/MetagenomeScope#72_
1.0
Add assembly finishing tools to the control panel - _From @fedarko on August 12, 2016 20:49_ And, presumably, exporting the result to a FASTA file (or modified .db file, maybe?). _Copied from original issue: fedarko/MetagenomeScope#72_
priority
add assembly finishing tools to the control panel from fedarko on august and presumably exporting the result to a fasta file or modified db file maybe copied from original issue fedarko metagenomescope
1
215,495
7,294,575,580
IssuesEvent
2018-02-26 00:58:45
compodoc/compodoc
https://api.github.com/repos/compodoc/compodoc
closed
[FEATURE] Configuration Option to Disable Routes
1. Type: Enhancement Priority: High Status: Completed Time: ~1 hour
The creation of documentation around routes is very cool. However, the implementation appears to be very sensitive to how those routes are defined. For example, the usage to ENUMS or variables in the route definitions causes known errors. I am sure these scenarios and fixes will all come in the future as the product continues to grow and evolve. However, the rest of the documentation is also extremely useful and nice. It would be great if we could disable the route generation via a configuration parameter so that we can continue to use the tool until these things are ironed out. Thanks!
1.0
[FEATURE] Configuration Option to Disable Routes - The creation of documentation around routes is very cool. However, the implementation appears to be very sensitive to how those routes are defined. For example, the usage to ENUMS or variables in the route definitions causes known errors. I am sure these scenarios and fixes will all come in the future as the product continues to grow and evolve. However, the rest of the documentation is also extremely useful and nice. It would be great if we could disable the route generation via a configuration parameter so that we can continue to use the tool until these things are ironed out. Thanks!
priority
configuration option to disable routes the creation of documentation around routes is very cool however the implementation appears to be very sensitive to how those routes are defined for example the usage to enums or variables in the route definitions causes known errors i am sure these scenarios and fixes will all come in the future as the product continues to grow and evolve however the rest of the documentation is also extremely useful and nice it would be great if we could disable the route generation via a configuration parameter so that we can continue to use the tool until these things are ironed out thanks
1
174,462
6,540,299,165
IssuesEvent
2017-09-01 14:55:40
modxcms/revolution
https://api.github.com/repos/modxcms/revolution
closed
Snippets and Plugins saved within MODX no longer strip the opening PHP tag
area-core bug priority-2-high
### Summary Since the merge of #13523, Snippets (and Plugins) saved **within MODX** no longer strip the opening php tag: `<?php` The resulting cached snippet starts throwing this error: > NOTICE: PHP message: PHP Parse error: syntax error, unexpected '<' This happens due to this invalid syntax at the top: ```php <?php <?php // ... ``` ### Step to reproduce 1. Open a Snippet in MODX `2.5.8-dev` (or `2.6.x`) 2. Save the snippet 3. Browse to site Resource calling Snippet in question 4. See 500 error ### Observed behavior 500 error is thrown: > NOTICE: PHP message: PHP Parse error: syntax error, unexpected '<' ### Expected behavior Opening PHP tag(s) should be stripped as before. ### Environment MODX 2.5.8-dev
1.0
Snippets and Plugins saved within MODX no longer strip the opening PHP tag - ### Summary Since the merge of #13523, Snippets (and Plugins) saved **within MODX** no longer strip the opening php tag: `<?php` The resulting cached snippet starts throwing this error: > NOTICE: PHP message: PHP Parse error: syntax error, unexpected '<' This happens due to this invalid syntax at the top: ```php <?php <?php // ... ``` ### Step to reproduce 1. Open a Snippet in MODX `2.5.8-dev` (or `2.6.x`) 2. Save the snippet 3. Browse to site Resource calling Snippet in question 4. See 500 error ### Observed behavior 500 error is thrown: > NOTICE: PHP message: PHP Parse error: syntax error, unexpected '<' ### Expected behavior Opening PHP tag(s) should be stripped as before. ### Environment MODX 2.5.8-dev
priority
snippets and plugins saved within modx no longer strip the opening php tag summary since the merge of snippets and plugins saved within modx no longer strip the opening php tag php the resulting cached snippet starts throwing this error notice php message php parse error syntax error unexpected this happens due to this invalid syntax at the top php php php step to reproduce open a snippet in modx dev or x save the snippet browse to site resource calling snippet in question see error observed behavior error is thrown notice php message php parse error syntax error unexpected expected behavior opening php tag s should be stripped as before environment modx dev
1
809,496
30,195,480,808
IssuesEvent
2023-07-04 20:22:52
cidgoh/COVID-MVP
https://api.github.com/repos/cidgoh/COVID-MVP
closed
Encode mutations at consistent positions in cols
enhancement high priority
Unique heterogenous mutations within a column should be encoded at consistent positions.
1.0
Encode mutations at consistent positions in cols - Unique heterogenous mutations within a column should be encoded at consistent positions.
priority
encode mutations at consistent positions in cols unique heterogenous mutations within a column should be encoded at consistent positions
1
25,112
2,676,353,470
IssuesEvent
2015-03-25 17:16:17
drvinceknight/Axelrod
https://api.github.com/repos/drvinceknight/Axelrod
opened
Parallelisation hangs
bug High priority
As far as I can tell this is something to do with #122 but I have no idea.
1.0
Parallelisation hangs - As far as I can tell this is something to do with #122 but I have no idea.
priority
parallelisation hangs as far as i can tell this is something to do with but i have no idea
1
237,870
7,767,655,126
IssuesEvent
2018-06-03 09:10:13
cdnjs/cdnjs
https://api.github.com/repos/cdnjs/cdnjs
closed
[Request] Add day.js [author]
:label: Library Request :rotating_light: High Priority in progress
**Library name:** day.js **Library description:** 2KB immutable date library alternative to Moment.js with the same modern API **Git repository url:** https://github.com/xx45/dayjs **npm package name or url** (if there is one): https://www.npmjs.com/package/dayjs **License (List them all if it's multiple):** MIT **Official homepage:** https://github.com/xx45/dayjs **Wanna say something? Leave message here:** Stars 9000. New date library. Day.js is a minimalist JavaScript library for modern browsers with a largely Moment.js-compatible API. If you use Moment.js, you already know how to use Day.js. ===================== Notes from cdnjs maintainer(please remove this section after you read it): 1. Please read the [README.md](https://github.com/cdnjs/cdnjs#cdnjs-library-repository) and [CONTRIBUTING.md](https://github.com/cdnjs/cdnjs/blob/master/CONTRIBUTING.md) document first. 2. For the new library request issue, please make sure it's not a personal project, we have a basic requirement for the popularity, like 200 stars on GitHub or 800 downloads/month on npm registry. We encourage you to add a library via sending pull request, it'll be faster than just opening a request issue, since there are tons of issues, please wait with patience, and please don't forget to read the guidelines for contributing, thanks!!
1.0
[Request] Add day.js [author] - **Library name:** day.js **Library description:** 2KB immutable date library alternative to Moment.js with the same modern API **Git repository url:** https://github.com/xx45/dayjs **npm package name or url** (if there is one): https://www.npmjs.com/package/dayjs **License (List them all if it's multiple):** MIT **Official homepage:** https://github.com/xx45/dayjs **Wanna say something? Leave message here:** Stars 9000. New date library. Day.js is a minimalist JavaScript library for modern browsers with a largely Moment.js-compatible API. If you use Moment.js, you already know how to use Day.js. ===================== Notes from cdnjs maintainer(please remove this section after you read it): 1. Please read the [README.md](https://github.com/cdnjs/cdnjs#cdnjs-library-repository) and [CONTRIBUTING.md](https://github.com/cdnjs/cdnjs/blob/master/CONTRIBUTING.md) document first. 2. For the new library request issue, please make sure it's not a personal project, we have a basic requirement for the popularity, like 200 stars on GitHub or 800 downloads/month on npm registry. We encourage you to add a library via sending pull request, it'll be faster than just opening a request issue, since there are tons of issues, please wait with patience, and please don't forget to read the guidelines for contributing, thanks!!
priority
add day js library name day js library description immutable date library alternative to moment js with the same modern api git repository url npm package name or url if there is one license list them all if it s multiple mit official homepage wanna say something leave message here stars new date library day js is a minimalist javascript library for modern browsers with a largely moment js compatible api if you use moment js you already know how to use day js notes from cdnjs maintainer please remove this section after you read it please read the and document first for the new library request issue please make sure it s not a personal project we have a basic requirement for the popularity like stars on github or downloads month on npm registry we encourage you to add a library via sending pull request it ll be faster than just opening a request issue since there are tons of issues please wait with patience and please don t forget to read the guidelines for contributing thanks
1
803,502
29,179,816,217
IssuesEvent
2023-05-19 10:55:13
lucia2007/tennis_buddies
https://api.github.com/repos/lucia2007/tennis_buddies
opened
User Story #5 Set Up Buddy Profile
Must Have User Story US Points: 3 High Priority Epic #3
As a **signed in user with an active profile** I can **create a buddy profile** so that **I can use the search functionality to find the best tennis partner** ### Acceptance Criteria 1. User can fill in a simple form, add a profile picture and indicate their preferences for type of play, skill level, availability etc. 2. Created buddy profile is successfully saved into the database. 3. User with a complete buddy profile can avail of the search functionality (this will constitute a separate user story later on). ### Tasks - [ ] Create Buddy profile set-up page - [ ] Create form for the user to fill in - [ ] Set up Buddy profile in views.py and save into database - [ ] Add url path to urls.py
1.0
User Story #5 Set Up Buddy Profile - As a **signed in user with an active profile** I can **create a buddy profile** so that **I can use the search functionality to find the best tennis partner** ### Acceptance Criteria 1. User can fill in a simple form, add a profile picture and indicate their preferences for type of play, skill level, availability etc. 2. Created buddy profile is successfully saved into the database. 3. User with a complete buddy profile can avail of the search functionality (this will constitute a separate user story later on). ### Tasks - [ ] Create Buddy profile set-up page - [ ] Create form for the user to fill in - [ ] Set up Buddy profile in views.py and save into database - [ ] Add url path to urls.py
priority
user story set up buddy profile as a signed in user with an active profile i can create a buddy profile so that i can use the search functionality to find the best tennis partner acceptance criteria user can fill in a simple form add a profile picture and indicate their preferences for type of play skill level availability etc created buddy profile is successfully saved into the database user with a complete buddy profile can avail of the search functionality this will constitute a separate user story later on tasks create buddy profile set up page create form for the user to fill in set up buddy profile in views py and save into database add url path to urls py
1
327,690
9,979,036,878
IssuesEvent
2019-07-09 21:30:09
ESGF/esgf-compute-wps
https://api.github.com/repos/ESGF/esgf-compute-wps
opened
Update helm documentation
area/kubernetes kind/task priority/high size/medium
Helm chart needs a little more details and needs to be updated for the new development changes.
1.0
Update helm documentation - Helm chart needs a little more details and needs to be updated for the new development changes.
priority
update helm documentation helm chart needs a little more details and needs to be updated for the new development changes
1
499,490
14,448,646,032
IssuesEvent
2020-12-08 06:40:14
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.google.com - video or audio doesn't play
browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical
<!-- @browser: Firefox 84.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; rv:84.0) Gecko/20100101 Firefox/84.0 --> <!-- @reported_with: desktop-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/63290 --> **URL**: https://www.google.com/search?newwindow=1&safe=strict&client=firefox-b-d&sxsrf=ALeKk02RDReFL9phor56Mbqyf1uA6kn4Lg%3A1607388657908&ei=8c3OX8WHN-nWz7sP7qWy-A0&q=youtube&oq=yautube&gs_lcp=CgZwc3ktYWIQARgAMgoIABCxAxCDARBDMgQIABAKMgcIABCxAxAKMgoIABCxAxCDARBDMgcIABCxAxAKMgcIABCxAxAKMgQIABBDMgQIABBDMgcIABCxAxAKMgcIABCxAxAKOgQIABBHOggIABCxAxCDAToFCAAQsQM6AggAOgUILhCxAzoECC4QQzoHCAAQsQMQQ1COwhtY3NMbYOjiG2gCcAJ4AYABlQ2IAYZGkgEFNy02LjGYAQCgAQGqAQdnd3Mtd2l6sAEAyAEIwAEB&sclient=psy-ab **Browser / Version**: Firefox 84.0 **Operating System**: Windows 7 **Tested Another Browser**: Yes Chrome **Problem type**: Video or audio doesn't play **Description**: There is no audio **Steps to Reproduce**: <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/a79a7f6d-1ef7-46de-ad70-a81cd5966f6a.jpeg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20201203211213</li><li>channel: beta</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/12/a69d664a-9070-45bd-b54c-9deed2457158) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
www.google.com - video or audio doesn't play - <!-- @browser: Firefox 84.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; rv:84.0) Gecko/20100101 Firefox/84.0 --> <!-- @reported_with: desktop-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/63290 --> **URL**: https://www.google.com/search?newwindow=1&safe=strict&client=firefox-b-d&sxsrf=ALeKk02RDReFL9phor56Mbqyf1uA6kn4Lg%3A1607388657908&ei=8c3OX8WHN-nWz7sP7qWy-A0&q=youtube&oq=yautube&gs_lcp=CgZwc3ktYWIQARgAMgoIABCxAxCDARBDMgQIABAKMgcIABCxAxAKMgoIABCxAxCDARBDMgcIABCxAxAKMgcIABCxAxAKMgQIABBDMgQIABBDMgcIABCxAxAKMgcIABCxAxAKOgQIABBHOggIABCxAxCDAToFCAAQsQM6AggAOgUILhCxAzoECC4QQzoHCAAQsQMQQ1COwhtY3NMbYOjiG2gCcAJ4AYABlQ2IAYZGkgEFNy02LjGYAQCgAQGqAQdnd3Mtd2l6sAEAyAEIwAEB&sclient=psy-ab **Browser / Version**: Firefox 84.0 **Operating System**: Windows 7 **Tested Another Browser**: Yes Chrome **Problem type**: Video or audio doesn't play **Description**: There is no audio **Steps to Reproduce**: <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/a79a7f6d-1ef7-46de-ad70-a81cd5966f6a.jpeg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20201203211213</li><li>channel: beta</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/12/a69d664a-9070-45bd-b54c-9deed2457158) _From [webcompat.com](https://webcompat.com/) with ❤️_
priority
video or audio doesn t play url browser version firefox operating system windows tested another browser yes chrome problem type video or audio doesn t play description there is no audio steps to reproduce view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
1
385,980
11,429,361,262
IssuesEvent
2020-02-04 07:44:26
openmsupply/mobile
https://api.github.com/repos/openmsupply/mobile
closed
Incorrect Prescription fields
Docs: not needed Effort: small Module: dispensary Priority: high
## Describe the bug Fields that are incorrect for a prescription: - `confirm_date` - seems to be a day behind, some timezone thing. - `date_order_written` - is this needed? - `entry_date` - same as `confirm_date` it's incorrect What to do with tax 🤷‍♂ ### To reproduce N/A ### Expected behaviour N/A ### Proposed Solution N/A ### Version and device info - App version: - Tablet model: - OS version: ### Additional context Add any other context about the problem here.
1.0
Incorrect Prescription fields - ## Describe the bug Fields that are incorrect for a prescription: - `confirm_date` - seems to be a day behind, some timezone thing. - `date_order_written` - is this needed? - `entry_date` - same as `confirm_date` it's incorrect What to do with tax 🤷‍♂ ### To reproduce N/A ### Expected behaviour N/A ### Proposed Solution N/A ### Version and device info - App version: - Tablet model: - OS version: ### Additional context Add any other context about the problem here.
priority
incorrect prescription fields describe the bug fields that are incorrect for a prescription confirm date seems to be a day behind some timezone thing date order written is this needed entry date same as confirm date it s incorrect what to do with tax 🤷‍♂ to reproduce n a expected behaviour n a proposed solution n a version and device info app version tablet model os version additional context add any other context about the problem here
1
671,499
22,763,884,486
IssuesEvent
2022-07-08 00:55:59
okTurtles/group-income
https://api.github.com/repos/okTurtles/group-income
opened
Do not allow punctuation in usernames
Kind:Enhancement Note:Up-for-grabs App:Frontend Level:Starter Priority:High Note:Contracts
### Problem When mentioning users in chat, it would be weird if someone were named `@bob?` instead of `@bob` Because then you'd have mentions that looked like this: ``` @bob? are you there? ``` Instead of: ``` @bob are you there? ``` ### Solution Create a validation function that returns `true` or `false` and is used to validate the username in both `SignupForm.vue` as part of the vuelidate validations, and in `contracts/identity.js` as part of the validation for `'gi.contracts/identity'`. I recommend using regex's `\b` for this: https://www.regular-expressions.info/wordboundaries.html And for the contract validation you'll need to create a function. Have a look at how this validation in `group.js` is written: ```js 'gi.contracts/group/inviteRevoke': { validate: (data, { state, meta }) => { objectOf({ inviteSecret: string // NOTE: simulate the OP_KEY_* stuff for now })(data) if (!state.invites[data.inviteSecret]) { throw new TypeError(L('The link does not exist.')) } }, ``` You'll need to create a similar type of validation. See also related issue: #1189 - Make usernames case insensitive
1.0
Do not allow punctuation in usernames - ### Problem When mentioning users in chat, it would be weird if someone were named `@bob?` instead of `@bob` Because then you'd have mentions that looked like this: ``` @bob? are you there? ``` Instead of: ``` @bob are you there? ``` ### Solution Create a validation function that returns `true` or `false` and is used to validate the username in both `SignupForm.vue` as part of the vuelidate validations, and in `contracts/identity.js` as part of the validation for `'gi.contracts/identity'`. I recommend using regex's `\b` for this: https://www.regular-expressions.info/wordboundaries.html And for the contract validation you'll need to create a function. Have a look at how this validation in `group.js` is written: ```js 'gi.contracts/group/inviteRevoke': { validate: (data, { state, meta }) => { objectOf({ inviteSecret: string // NOTE: simulate the OP_KEY_* stuff for now })(data) if (!state.invites[data.inviteSecret]) { throw new TypeError(L('The link does not exist.')) } }, ``` You'll need to create a similar type of validation. See also related issue: #1189 - Make usernames case insensitive
priority
do not allow punctuation in usernames problem when mentioning users in chat it would be weird if someone were named bob instead of bob because then you d have mentions that looked like this bob are you there instead of bob are you there solution create a validation function that returns true or false and is used to validate the username in both signupform vue as part of the vuelidate validations and in contracts identity js as part of the validation for gi contracts identity i recommend using regex s b for this and for the contract validation you ll need to create a function have a look at how this validation in group js is written js gi contracts group inviterevoke validate data state meta objectof invitesecret string note simulate the op key stuff for now data if state invites throw new typeerror l the link does not exist you ll need to create a similar type of validation see also related issue make usernames case insensitive
1
267,057
8,378,711,931
IssuesEvent
2018-10-06 17:03:54
GCE-NEIIST/GCE-NEIIST-webapp
https://api.github.com/repos/GCE-NEIIST/GCE-NEIIST-webapp
closed
Navbar Hamburguer doesn't work on mobile
Category: Coding Category: User Interface Priority: High Type: Bug help wanted
This makes the users unable to navigate the site through their phones.
1.0
Navbar Hamburguer doesn't work on mobile - This makes the users unable to navigate the site through their phones.
priority
navbar hamburguer doesn t work on mobile this makes the users unable to navigate the site through their phones
1
84,328
3,663,358,914
IssuesEvent
2016-02-19 05:20:48
ClothAppProject/ClothAppAndroid
https://api.github.com/repos/ClothAppProject/ClothAppAndroid
closed
loading images from database (update on scroll down)
High priority
- Description: A photo gallery to show the pictures that have already been uploaded - Requires: downloading images from server, showing the images on the UI of the client - Due: Milestone 2 (BETA) - Status: server side ready, upload photos client side ready, fetching pics and adding on the interface missing - Time Estimation: 3 days
1.0
loading images from database (update on scroll down) - - Description: A photo gallery to show the pictures that have already been uploaded - Requires: downloading images from server, showing the images on the UI of the client - Due: Milestone 2 (BETA) - Status: server side ready, upload photos client side ready, fetching pics and adding on the interface missing - Time Estimation: 3 days
priority
loading images from database update on scroll down description a photo gallery to show the pictures that have already been uploaded requires downloading images from server showing the images on the ui of the client due milestone beta status server side ready upload photos client side ready fetching pics and adding on the interface missing time estimation days
1
208,125
7,136,044,973
IssuesEvent
2018-01-23 04:39:14
DroidKaigi/conference-app-2018
https://api.github.com/repos/DroidKaigi/conference-app-2018
closed
[Assigned] Add paging for contributor page
assigned high priority welcome contribute
## Overview (Required) - Currently, Fortunately over 100 contributors participated. 🎉 - Probably, GitHub API max count is 100 https://developer.github.com/v3/#pagination - But, we show contributors only 100. - So, We should add paging
1.0
[Assigned] Add paging for contributor page - ## Overview (Required) - Currently, Fortunately over 100 contributors participated. 🎉 - Probably, GitHub API max count is 100 https://developer.github.com/v3/#pagination - But, we show contributors only 100. - So, We should add paging
priority
add paging for contributor page overview required currently fortunately over contributors participated 🎉 probably github api max count is but we show contributors only so we should add paging
1
143,722
5,522,433,985
IssuesEvent
2017-03-19 23:20:18
GoogleCloudPlatform/google-cloud-eclipse
https://api.github.com/repos/GoogleCloudPlatform/google-cloud-eclipse
closed
Verify Javadoc URLs
bug high priority
A number of our URLs for Javadoc in libraries/plugin.xml don't actually point to Javadoc E.g. ```xml <libraryFile javadocUri="http://docs.oracle.com/cd/E17802_01/products/products/jsp/2.1/docs/jsp-2_1-pfd2/"> <mavenCoordinates artifactId="jsp-api" groupId="javax.servlet.jsp" version="2.1" /> </libraryFile> ```
1.0
Verify Javadoc URLs - A number of our URLs for Javadoc in libraries/plugin.xml don't actually point to Javadoc E.g. ```xml <libraryFile javadocUri="http://docs.oracle.com/cd/E17802_01/products/products/jsp/2.1/docs/jsp-2_1-pfd2/"> <mavenCoordinates artifactId="jsp-api" groupId="javax.servlet.jsp" version="2.1" /> </libraryFile> ```
priority
verify javadoc urls a number of our urls for javadoc in libraries plugin xml don t actually point to javadoc e g xml libraryfile javadocuri mavencoordinates artifactid jsp api groupid javax servlet jsp version
1
565,036
16,747,579,346
IssuesEvent
2021-06-11 17:38:06
DFS-Servers/BugReportsAndSuggestions
https://api.github.com/repos/DFS-Servers/BugReportsAndSuggestions
closed
Smash Fortress timer functioning at double the speed
:bug: Bug :exclamation: High Priority
**Steam Profile** https://steamcommunity.com/id/Welzhum/ **Describe the bug** The Smash Fortress round timer progresses at twice its intended speed, causing rounds to last half as long as they would. This has been happening during 8 player mode, and I can't verify if this will be the case under "normal rounds". **Expected behavior** The timer, and consequently each round should last the expected time. This does not affect, however, the round preparation time. **To Reproduce** Does not apply. **Screenshots or error logs** https://user-images.githubusercontent.com/43702452/119416073-217f5580-bcf3-11eb-8f6e-5cfa483ee7cf.mp4 **Server Info (please complete the following information):** EU, 89.35.29.11:27145
1.0
Smash Fortress timer functioning at double the speed - **Steam Profile** https://steamcommunity.com/id/Welzhum/ **Describe the bug** The Smash Fortress round timer progresses at twice its intended speed, causing rounds to last half as long as they would. This has been happening during 8 player mode, and I can't verify if this will be the case under "normal rounds". **Expected behavior** The timer, and consequently each round should last the expected time. This does not affect, however, the round preparation time. **To Reproduce** Does not apply. **Screenshots or error logs** https://user-images.githubusercontent.com/43702452/119416073-217f5580-bcf3-11eb-8f6e-5cfa483ee7cf.mp4 **Server Info (please complete the following information):** EU, 89.35.29.11:27145
priority
smash fortress timer functioning at double the speed steam profile describe the bug the smash fortress round timer progresses at twice its intended speed causing rounds to last half as long as they would this has been happening during player mode and i can t verify if this will be the case under normal rounds expected behavior the timer and consequently each round should last the expected time this does not affect however the round preparation time to reproduce does not apply screenshots or error logs server info please complete the following information eu
1
744,450
25,943,447,114
IssuesEvent
2022-12-16 21:04:04
octokit/octokit.rb
https://api.github.com/repos/octokit/octokit.rb
closed
[MAINT]: bundle install fails on Ruby head (3.2.0-dev)
Priority: High Type: Maintenance
### Describe the need Currently, innocent PRs such as #1513 are seeing failing checks. The cause of this is a build on Ruby head, which at the time of writing is 3.2.0-dev. I am able to reproduce this locally by installing that version of Ruby using `rbenv` and using it to run `./script/bootstrap`: the error occurs upon `bundle install`ing. ### SDK Version head of this repo, currently b0f062e90b2f38c6c08fd8797454e7ac90bed2b4 ### API Version N/A ### Relevant log output ```shell sh$ ./script/bootstrap Could not find compatible versions Because rubocop >= 1.39.0, < 1.40.0 depends on json ~> 2.3 and json ~> 2.3 could not be found in rubygems repository https://rubygems.org/ or installed locally for any resolution platforms (), rubocop >= 1.39.0, < 1.40.0 is forbidden. So, because Gemfile depends on rubocop = 1.39.0, version solving has failed. The source contains the following gems matching 'json (~> 2.3)': * json-2.3.0-java * json-2.3.0 * json-2.3.1-java * json-2.3.1 * json-2.4.0-java * json-2.4.0 * json-2.4.1-java * json-2.4.1 * json-2.5.0-java * json-2.5.0 * json-2.5.1-java * json-2.5.1 * json-2.6.0-java * json-2.6.0 * json-2.6.1-java * json-2.6.1 * json-2.6.2-java * json-2.6.2 * json-2.6.3-java * json-2.6.3 ``` ### Code of Conduct - [X] I agree to follow this project's Code of Conduct
1.0
[MAINT]: bundle install fails on Ruby head (3.2.0-dev) - ### Describe the need Currently, innocent PRs such as #1513 are seeing failing checks. The cause of this is a build on Ruby head, which at the time of writing is 3.2.0-dev. I am able to reproduce this locally by installing that version of Ruby using `rbenv` and using it to run `./script/bootstrap`: the error occurs upon `bundle install`ing. ### SDK Version head of this repo, currently b0f062e90b2f38c6c08fd8797454e7ac90bed2b4 ### API Version N/A ### Relevant log output ```shell sh$ ./script/bootstrap Could not find compatible versions Because rubocop >= 1.39.0, < 1.40.0 depends on json ~> 2.3 and json ~> 2.3 could not be found in rubygems repository https://rubygems.org/ or installed locally for any resolution platforms (), rubocop >= 1.39.0, < 1.40.0 is forbidden. So, because Gemfile depends on rubocop = 1.39.0, version solving has failed. The source contains the following gems matching 'json (~> 2.3)': * json-2.3.0-java * json-2.3.0 * json-2.3.1-java * json-2.3.1 * json-2.4.0-java * json-2.4.0 * json-2.4.1-java * json-2.4.1 * json-2.5.0-java * json-2.5.0 * json-2.5.1-java * json-2.5.1 * json-2.6.0-java * json-2.6.0 * json-2.6.1-java * json-2.6.1 * json-2.6.2-java * json-2.6.2 * json-2.6.3-java * json-2.6.3 ``` ### Code of Conduct - [X] I agree to follow this project's Code of Conduct
priority
bundle install fails on ruby head dev describe the need currently innocent prs such as are seeing failing checks the cause of this is a build on ruby head which at the time of writing is dev i am able to reproduce this locally by installing that version of ruby using rbenv and using it to run script bootstrap the error occurs upon bundle install ing sdk version head of this repo currently api version n a relevant log output shell sh script bootstrap could not find compatible versions because rubocop and json could not be found in rubygems repository or installed locally for any resolution platforms rubocop is forbidden so because gemfile depends on rubocop version solving has failed the source contains the following gems matching json json java json json java json json java json json java json json java json json java json json java json json java json json java json json java json code of conduct i agree to follow this project s code of conduct
1
123,199
4,858,717,787
IssuesEvent
2016-11-13 08:46:47
vnaskos/lajarus
https://api.github.com/repos/vnaskos/lajarus
opened
Create the item service
point: 2 priority: high type: feature
Item service should be able to - get item by id - get item by type - create item - delete item
1.0
Create the item service - Item service should be able to - get item by id - get item by type - create item - delete item
priority
create the item service item service should be able to get item by id get item by type create item delete item
1
185,820
6,730,868,139
IssuesEvent
2017-10-18 03:54:45
TheValarProject/AwakenDreamsClient
https://api.github.com/repos/TheValarProject/AwakenDreamsClient
opened
Water wheel crash
bug priority-high
Under some circumstances, the new water wheel crashes the system when placed. This requires more testing to determine what causes the crash and why. I suspect it only occurs when there is an opaque block in one of the corners.
1.0
Water wheel crash - Under some circumstances, the new water wheel crashes the system when placed. This requires more testing to determine what causes the crash and why. I suspect it only occurs when there is an opaque block in one of the corners.
priority
water wheel crash under some circumstances the new water wheel crashes the system when placed this requires more testing to determine what causes the crash and why i suspect it only occurs when there is an opaque block in one of the corners
1
702,774
24,135,306,227
IssuesEvent
2022-09-21 10:46:18
thesaurus-linguae-aegyptiae/tla-web
https://api.github.com/repos/thesaurus-linguae-aegyptiae/tla-web
closed
Laden der Belegstellenseite bricht mit Fehler ab / hängt
bug high priority
LP > Das Laden der Belegstellenseiten dauert sehr lang und funktioniert teilweise nicht. Ein System kann ich nach ersten Tests nicht so richtig feststellen. Die 46 Belege für den Namen der Teje (WCN 708799) werden gar nicht geladen, ebenso wenig wie die 14 Belege für den Namen des Cheruef. Dagegen werden die über 2000 Belege für nswt: „König“ angezeigt, wenn auch mit erheblichen Verzögerungen. Bei jmH.t, WCN 26410 kommt man an die ersten beiden Seiten mit Belegstellen, aber bei der dritten bleibt man beim schwarzen Bildschirm mit der rotierenden eckigen Sanduhr(?) stehen. Fehler beim laden von (Datenstant 17.8.): http://localhost:8080/search/sentence?tokens[0].lemma.id=96600 ``` could not extract bibliography from text GUQCFYATNRDLRLBK6XEYY6NQKQ Fields 0 0 19. Dynastie Fields 1 0 20. Dynastie Extracted ObjectReference(id=PFJ4POQ5VBFU3EHNXP4MRDLXBA, _class=null, eclass=BTSThsEntry, type=date, name=19. Dynastie, pos=null, variants=null, ranges=null) ```
1.0
Laden der Belegstellenseite bricht mit Fehler ab / hängt - LP > Das Laden der Belegstellenseiten dauert sehr lang und funktioniert teilweise nicht. Ein System kann ich nach ersten Tests nicht so richtig feststellen. Die 46 Belege für den Namen der Teje (WCN 708799) werden gar nicht geladen, ebenso wenig wie die 14 Belege für den Namen des Cheruef. Dagegen werden die über 2000 Belege für nswt: „König“ angezeigt, wenn auch mit erheblichen Verzögerungen. Bei jmH.t, WCN 26410 kommt man an die ersten beiden Seiten mit Belegstellen, aber bei der dritten bleibt man beim schwarzen Bildschirm mit der rotierenden eckigen Sanduhr(?) stehen. Fehler beim laden von (Datenstant 17.8.): http://localhost:8080/search/sentence?tokens[0].lemma.id=96600 ``` could not extract bibliography from text GUQCFYATNRDLRLBK6XEYY6NQKQ Fields 0 0 19. Dynastie Fields 1 0 20. Dynastie Extracted ObjectReference(id=PFJ4POQ5VBFU3EHNXP4MRDLXBA, _class=null, eclass=BTSThsEntry, type=date, name=19. Dynastie, pos=null, variants=null, ranges=null) ```
priority
laden der belegstellenseite bricht mit fehler ab hängt lp das laden der belegstellenseiten dauert sehr lang und funktioniert teilweise nicht ein system kann ich nach ersten tests nicht so richtig feststellen die belege für den namen der teje wcn werden gar nicht geladen ebenso wenig wie die belege für den namen des cheruef dagegen werden die über belege für nswt „könig“ angezeigt wenn auch mit erheblichen verzögerungen bei jmh t wcn kommt man an die ersten beiden seiten mit belegstellen aber bei der dritten bleibt man beim schwarzen bildschirm mit der rotierenden eckigen sanduhr stehen fehler beim laden von datenstant lemma id could not extract bibliography from text fields dynastie fields dynastie extracted objectreference id class null eclass btsthsentry type date name dynastie pos null variants null ranges null
1
676,672
23,133,745,705
IssuesEvent
2022-07-28 12:45:46
ASSETS-Conference/assets2022
https://api.github.com/repos/ASSETS-Conference/assets2022
opened
Registration page
high priority
This is a relatively urgent request. We need to put in a registration page linked in the menu bar `Attending -> Registration` like on the ASSETS'19 page: ![image](https://user-images.githubusercontent.com/1621749/181507827-159d36a6-05ac-48f9-b009-68e752b23701.png) For the content, we've been using this [Google Doc](https://docs.google.com/document/d/1DeMRPst988zRxPV9hXo_1mDkdTwyJfVJ5COWIHhXCeI/edit#). @jayhersk, for the registration tables, perhaps you can use that pretty format you came up with for the attending page?
1.0
Registration page - This is a relatively urgent request. We need to put in a registration page linked in the menu bar `Attending -> Registration` like on the ASSETS'19 page: ![image](https://user-images.githubusercontent.com/1621749/181507827-159d36a6-05ac-48f9-b009-68e752b23701.png) For the content, we've been using this [Google Doc](https://docs.google.com/document/d/1DeMRPst988zRxPV9hXo_1mDkdTwyJfVJ5COWIHhXCeI/edit#). @jayhersk, for the registration tables, perhaps you can use that pretty format you came up with for the attending page?
priority
registration page this is a relatively urgent request we need to put in a registration page linked in the menu bar attending registration like on the assets page for the content we ve been using this jayhersk for the registration tables perhaps you can use that pretty format you came up with for the attending page
1
636,748
20,607,869,984
IssuesEvent
2022-03-07 04:02:26
vignetteapp/vignette
https://api.github.com/repos/vignetteapp/vignette
closed
Extension System
priority:high
### Discussed in https://github.com/vignetteapp/vignette/discussions/216 <div type='discussions-op-text'> <sup>Originally posted by **sr229** May 9, 2021</sup> This has been requested by the community; however, this is kinda low priority as we focus most on the core components. The way this works is the following: - Extensions can expose their settings in `MainMenu`. - They will be strictly be conformant to the o!f model to properly load. This is considered "bare minimum" for what people requires to make an extension. - They will be packaged as either a `.dll` or a `.nupkg` which the program can "extract" or "compile" into a DLL, something we can do once we have a better idea with how to dynamically load assemblies. Anyone can propose a better design here since this is a RFC, we appreciate alternative approaches for this.</div>
1.0
Extension System - ### Discussed in https://github.com/vignetteapp/vignette/discussions/216 <div type='discussions-op-text'> <sup>Originally posted by **sr229** May 9, 2021</sup> This has been requested by the community; however, this is kinda low priority as we focus most on the core components. The way this works is the following: - Extensions can expose their settings in `MainMenu`. - They will be strictly be conformant to the o!f model to properly load. This is considered "bare minimum" for what people requires to make an extension. - They will be packaged as either a `.dll` or a `.nupkg` which the program can "extract" or "compile" into a DLL, something we can do once we have a better idea with how to dynamically load assemblies. Anyone can propose a better design here since this is a RFC, we appreciate alternative approaches for this.</div>
priority
extension system discussed in originally posted by may this has been requested by the community however this is kinda low priority as we focus most on the core components the way this works is the following extensions can expose their settings in mainmenu they will be strictly be conformant to the o f model to properly load this is considered bare minimum for what people requires to make an extension they will be packaged as either a dll or a nupkg which the program can extract or compile into a dll something we can do once we have a better idea with how to dynamically load assemblies anyone can propose a better design here since this is a rfc we appreciate alternative approaches for this
1
98,251
4,019,114,277
IssuesEvent
2016-05-16 13:49:54
mantidproject/mantid
https://api.github.com/repos/mantidproject/mantid
closed
Generalise ReflTableViewPresenter
Component: GUI Component: Reflectometry Priority: High
Blocked by: - [x] #14921 Implement steps 4, 5 and 6 in the [design document](https://github.com/mantidproject/documents/blob/master/Design/DataProcessorAlgorithmUI/DataProcessingUserInterface.md#implemenation-steps): 4. Refactor `ReflTableViewPresenter` so that it creates and configures the DataProcessingAlgorithm completely via it's arguments. Then rename it to `GeneralDataProcessorPresenter`. The `GeneralDataProcessorPresenter` should contain nothing that is relfectometry specific. This will also mean abstracting the post processing and pre processing steps. 5. Make `GeneralDataprocessorPresenter` take all arguments as abstract behaviours. 6. Move `GeneralDataProcessorPresenter`, the views and the behaviours into the MantidQtAPI package.
1.0
Generalise ReflTableViewPresenter - Blocked by: - [x] #14921 Implement steps 4, 5 and 6 in the [design document](https://github.com/mantidproject/documents/blob/master/Design/DataProcessorAlgorithmUI/DataProcessingUserInterface.md#implemenation-steps): 4. Refactor `ReflTableViewPresenter` so that it creates and configures the DataProcessingAlgorithm completely via it's arguments. Then rename it to `GeneralDataProcessorPresenter`. The `GeneralDataProcessorPresenter` should contain nothing that is relfectometry specific. This will also mean abstracting the post processing and pre processing steps. 5. Make `GeneralDataprocessorPresenter` take all arguments as abstract behaviours. 6. Move `GeneralDataProcessorPresenter`, the views and the behaviours into the MantidQtAPI package.
priority
generalise refltableviewpresenter blocked by implement steps and in the refactor refltableviewpresenter so that it creates and configures the dataprocessingalgorithm completely via it s arguments then rename it to generaldataprocessorpresenter the generaldataprocessorpresenter should contain nothing that is relfectometry specific this will also mean abstracting the post processing and pre processing steps make generaldataprocessorpresenter take all arguments as abstract behaviours move generaldataprocessorpresenter the views and the behaviours into the mantidqtapi package
1
518,988
15,038,379,714
IssuesEvent
2021-02-02 17:22:45
Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2
https://api.github.com/repos/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2
closed
Horde First-Second War Storyline
:books: lore :books: :exclamation: priority high :question: suggestion :question: :star: new feature :new:
<!-- DO NOT REMOVE PRE-EXISTING LINES IF YOU WANT TO SUGGEST A FEW THINGS, OPEN A NEW ISSUE PER EVERY SUGGESTION ---------------------------------------------------------------------------------------------------------- --> **Describe your suggestion in full detail below:** The Horde should get free CBs and its AI should be forced to conquer Stormwind, Shadowforge and then Ironforge. The active PR is https://github.com/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2/pull/20.
1.0
Horde First-Second War Storyline - <!-- DO NOT REMOVE PRE-EXISTING LINES IF YOU WANT TO SUGGEST A FEW THINGS, OPEN A NEW ISSUE PER EVERY SUGGESTION ---------------------------------------------------------------------------------------------------------- --> **Describe your suggestion in full detail below:** The Horde should get free CBs and its AI should be forced to conquer Stormwind, Shadowforge and then Ironforge. The active PR is https://github.com/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2/pull/20.
priority
horde first second war storyline do not remove pre existing lines if you want to suggest a few things open a new issue per every suggestion describe your suggestion in full detail below the horde should get free cbs and its ai should be forced to conquer stormwind shadowforge and then ironforge the active pr is
1
269,037
8,419,282,741
IssuesEvent
2018-10-15 06:05:59
CS2113-AY1819S1-W13-3/main
https://api.github.com/repos/CS2113-AY1819S1-W13-3/main
opened
As a student, I want to add milestones for my task
priority.high type.story
So that I can break up a task into more manageable portions
1.0
As a student, I want to add milestones for my task - So that I can break up a task into more manageable portions
priority
as a student i want to add milestones for my task so that i can break up a task into more manageable portions
1
354,066
10,562,557,859
IssuesEvent
2019-10-04 18:38:11
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio-ui] Add validation messages to Create User dialog
bug priority: high
## Describe the bug The create user dialog allows entering fields of any length which causes DB errors ## To Reproduce Steps to reproduce the behavior: 1. Go to Users menu 2. Click on New User 3. Fill in the First Name, Last Name or Username with values longer than 32 chars, fill the remaining values 4. Click Save 5. See error ## Expected behavior `First Name` `Last Name` and `Username` should have validations. When a value is longer than the 32 chars a message error should be displayed under each input and the form can not be saved until those values are fixed. ## Screenshots ![image (2)](https://user-images.githubusercontent.com/6722074/66061818-67bfe980-e4fd-11e9-895d-8bee2c18c8e6.png) N/A ## Specs ### Version `3.1.4-SNAPSHOT` ### OS Any ### Browser Any ## Additional context N/A
1.0
[studio-ui] Add validation messages to Create User dialog - ## Describe the bug The create user dialog allows entering fields of any length which causes DB errors ## To Reproduce Steps to reproduce the behavior: 1. Go to Users menu 2. Click on New User 3. Fill in the First Name, Last Name or Username with values longer than 32 chars, fill the remaining values 4. Click Save 5. See error ## Expected behavior `First Name` `Last Name` and `Username` should have validations. When a value is longer than the 32 chars a message error should be displayed under each input and the form can not be saved until those values are fixed. ## Screenshots ![image (2)](https://user-images.githubusercontent.com/6722074/66061818-67bfe980-e4fd-11e9-895d-8bee2c18c8e6.png) N/A ## Specs ### Version `3.1.4-SNAPSHOT` ### OS Any ### Browser Any ## Additional context N/A
priority
add validation messages to create user dialog describe the bug the create user dialog allows entering fields of any length which causes db errors to reproduce steps to reproduce the behavior go to users menu click on new user fill in the first name last name or username with values longer than chars fill the remaining values click save see error expected behavior first name last name and username should have validations when a value is longer than the chars a message error should be displayed under each input and the form can not be saved until those values are fixed screenshots n a specs version snapshot os any browser any additional context n a
1
35,716
2,792,969,466
IssuesEvent
2015-05-11 07:38:47
TypeStrong/atom-typescript
https://api.github.com/repos/TypeStrong/atom-typescript
closed
Support TODO in the grammar
priority:high
I created an issue over here: https://github.com/atom/language-todo/issues/22 Evidently the way atom-typescript is inserting its grammar (via tokenization) is circumventing the standard convention. Can you confirm/deny this?
1.0
Support TODO in the grammar - I created an issue over here: https://github.com/atom/language-todo/issues/22 Evidently the way atom-typescript is inserting its grammar (via tokenization) is circumventing the standard convention. Can you confirm/deny this?
priority
support todo in the grammar i created an issue over here evidently the way atom typescript is inserting its grammar via tokenization is circumventing the standard convention can you confirm deny this
1
546,639
16,016,467,821
IssuesEvent
2021-04-20 16:37:18
sunpy/sunkit-image
https://api.github.com/repos/sunpy/sunkit-image
reopened
Declass ASDA
Effort High Feature Request Package Novice Priority Low
When pull request #40 is merged in, it would be worthwhile to declass the code into a series of functions.
1.0
Declass ASDA - When pull request #40 is merged in, it would be worthwhile to declass the code into a series of functions.
priority
declass asda when pull request is merged in it would be worthwhile to declass the code into a series of functions
1
5,258
2,573,369,807
IssuesEvent
2015-02-11 09:18:04
calblueprint/PHC
https://api.github.com/repos/calblueprint/PHC
closed
Backing Out of Search
bug high priority
this bug happens when step 1) an EXISTING client is searched and found. the form is populated with the client's existing information. step 2) the user realizes that the client is not correct and tries to BACK OUT. step 3) user is trapped. the form is stuck populated w/ the information of the old client.
1.0
Backing Out of Search - this bug happens when step 1) an EXISTING client is searched and found. the form is populated with the client's existing information. step 2) the user realizes that the client is not correct and tries to BACK OUT. step 3) user is trapped. the form is stuck populated w/ the information of the old client.
priority
backing out of search this bug happens when step an existing client is searched and found the form is populated with the client s existing information step the user realizes that the client is not correct and tries to back out step user is trapped the form is stuck populated w the information of the old client
1
680,280
23,264,961,563
IssuesEvent
2022-08-04 16:28:34
alexa/ask-cli
https://api.github.com/repos/alexa/ask-cli
closed
Feature Request: Skill Events Endpoint Automated Deployment Support
Feature Request Priority: High
## I'm submitting a... <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [x] Feature request [ ] Documentation issue or request [ ] Other... Please describe: </code></pre> ## Expected Behavior At minimum, the [skills events](https://developer.amazon.com/en-US/docs/alexa/smapi/skill-manifest.html#events) manifest endpoint URI should default to the skill Lambda function ARN if it is not defined, the same way than standard endpoints. Ideally, a CloudFormation outputs key (e.g. `EventsEndpoint`) could be used in the event of separate Lambda functions being deployed. ## Current Behavior Currently with ask-cli v1 or v2, the deployment fails because the SMAPI requires the actual skill events endpoint URI to be configured in the manifest. Therefore, the Lambda function handling these events needs to be deployed prior to deploying the skill with ask-cli. **Skill Manifest** ``` [...] "events": { "endpoint": {}, "subscriptions": [ { "eventName": "SKILL_ENABLED" }, { "eventName": "SKILL_DISABLED" } ] }, [...] ``` **Error** ``` $ askx deploy ==================== Deploy Skill Metadata ==================== [Error]: { "skill": { "resources": [ { "action": "CREATE", "errors": [ { "message": "Object instance at property path \"$.manifest.events.endpoint\" has missing required property: \"uri\"." } ], "name": "Manifest", "status": "FAILED" } ] }, "status": "FAILED" } ```
1.0
Feature Request: Skill Events Endpoint Automated Deployment Support - ## I'm submitting a... <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [x] Feature request [ ] Documentation issue or request [ ] Other... Please describe: </code></pre> ## Expected Behavior At minimum, the [skills events](https://developer.amazon.com/en-US/docs/alexa/smapi/skill-manifest.html#events) manifest endpoint URI should default to the skill Lambda function ARN if it is not defined, the same way than standard endpoints. Ideally, a CloudFormation outputs key (e.g. `EventsEndpoint`) could be used in the event of separate Lambda functions being deployed. ## Current Behavior Currently with ask-cli v1 or v2, the deployment fails because the SMAPI requires the actual skill events endpoint URI to be configured in the manifest. Therefore, the Lambda function handling these events needs to be deployed prior to deploying the skill with ask-cli. **Skill Manifest** ``` [...] "events": { "endpoint": {}, "subscriptions": [ { "eventName": "SKILL_ENABLED" }, { "eventName": "SKILL_DISABLED" } ] }, [...] ``` **Error** ``` $ askx deploy ==================== Deploy Skill Metadata ==================== [Error]: { "skill": { "resources": [ { "action": "CREATE", "errors": [ { "message": "Object instance at property path \"$.manifest.events.endpoint\" has missing required property: \"uri\"." } ], "name": "Manifest", "status": "FAILED" } ] }, "status": "FAILED" } ```
priority
feature request skill events endpoint automated deployment support i m submitting a regression a behavior that used to work and stopped working in a new release bug report performance issue feature request documentation issue or request other please describe expected behavior at minimum the manifest endpoint uri should default to the skill lambda function arn if it is not defined the same way than standard endpoints ideally a cloudformation outputs key e g eventsendpoint could be used in the event of separate lambda functions being deployed current behavior currently with ask cli or the deployment fails because the smapi requires the actual skill events endpoint uri to be configured in the manifest therefore the lambda function handling these events needs to be deployed prior to deploying the skill with ask cli skill manifest events endpoint subscriptions eventname skill enabled eventname skill disabled error askx deploy deploy skill metadata skill resources action create errors message object instance at property path manifest events endpoint has missing required property uri name manifest status failed status failed
1
560,576
16,599,842,009
IssuesEvent
2021-06-01 17:48:43
ahmedkaludi/accelerated-mobile-pages
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
closed
Getting Aq_resize.process() error in error logs
[Priority: HIGH] bug
Getting Aq_resize.process() error in error logs. (Using string locator plugin to find the Aq_resize string) helpscout link - https://secure.helpscout.net/conversation/1515583304/196611?folderId=4459751
1.0
Getting Aq_resize.process() error in error logs - Getting Aq_resize.process() error in error logs. (Using string locator plugin to find the Aq_resize string) helpscout link - https://secure.helpscout.net/conversation/1515583304/196611?folderId=4459751
priority
getting aq resize process error in error logs getting aq resize process error in error logs using string locator plugin to find the aq resize string helpscout link
1
549,318
16,090,430,396
IssuesEvent
2021-04-26 16:02:04
kubesphere/ks-installer
https://api.github.com/repos/kubesphere/ks-installer
closed
s2ibuildertemplates was loaded incorrectly by recent ks-installer
area/devops kind/bug priority/high
# Description s2ibuildertemplates was loaded incorrectly by recent ks-installer. # Reproduce Recently, I installed kubesphere with [kubekey](https://github.com/kubesphere/kubekey/releases/tag/v1.1.0-alpha.2) with the following steps: - Download kubeky and decompress it ```bash wget -c https://github.com/kubesphere/kubekey/releases/download/v1.1.0-alpha.2/kubekey-v1.1.0-alpha.2-linux-amd64.tar.gz tar xzvf kubekey-v1.1.0-alpha.2-linux-amd64.tar.gz ``` - Up kubernetes and kubesphere ```bash ./kk create cluster --with-kubesphere nightly-20210418 ``` - Enable DevOps component ```bash kubectl -nkubesphere-system edit cc ks-installer ``` Turn `spec.devops.enabled` into `true`. > More powerful tool to enable ks component if you are interested: <https://github.com/LinuxSuRen/ks> - Waiting for kubesphere up or use the below command to check up status: ```bash kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items[0].metadata.name}') -f ``` # Check Now we can check if s2ibuildertemplates were loaded correctly. ```bash kubectl get s2ibuildertemplates.devops.kubesphere.io -A ``` You would find that the si2buildertemplates were missing. - Result ```bash No resources found ``` - Expected ```bash NAME FRAMEWORK DEFAULTBASEIMAGE VERSION binary binary kubesphere/s2i-binary:v2.1.0 0.0.1 java java kubesphere/java-8-centos7:v2.1.0 0.0.1 nodejs nodejs kubesphere/nodejs-8-centos7:v2.1.0 0.0.1 python python kubesphere/python-36-centos7:v2.1.0 0.0.1 tomcat java kubesphere/tomcat85-java8-centos7:v2.1.0 0.0.1 ``` # Influence ![image](https://user-images.githubusercontent.com/16865714/115331416-6b42c080-a1c8-11eb-82bc-3f65e189fe7c.png) By the way, kubesphere 3.0.0 has no problem.
1.0
s2ibuildertemplates was loaded incorrectly by recent ks-installer - # Description s2ibuildertemplates was loaded incorrectly by recent ks-installer. # Reproduce Recently, I installed kubesphere with [kubekey](https://github.com/kubesphere/kubekey/releases/tag/v1.1.0-alpha.2) with the following steps: - Download kubeky and decompress it ```bash wget -c https://github.com/kubesphere/kubekey/releases/download/v1.1.0-alpha.2/kubekey-v1.1.0-alpha.2-linux-amd64.tar.gz tar xzvf kubekey-v1.1.0-alpha.2-linux-amd64.tar.gz ``` - Up kubernetes and kubesphere ```bash ./kk create cluster --with-kubesphere nightly-20210418 ``` - Enable DevOps component ```bash kubectl -nkubesphere-system edit cc ks-installer ``` Turn `spec.devops.enabled` into `true`. > More powerful tool to enable ks component if you are interested: <https://github.com/LinuxSuRen/ks> - Waiting for kubesphere up or use the below command to check up status: ```bash kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items[0].metadata.name}') -f ``` # Check Now we can check if s2ibuildertemplates were loaded correctly. ```bash kubectl get s2ibuildertemplates.devops.kubesphere.io -A ``` You would find that the si2buildertemplates were missing. - Result ```bash No resources found ``` - Expected ```bash NAME FRAMEWORK DEFAULTBASEIMAGE VERSION binary binary kubesphere/s2i-binary:v2.1.0 0.0.1 java java kubesphere/java-8-centos7:v2.1.0 0.0.1 nodejs nodejs kubesphere/nodejs-8-centos7:v2.1.0 0.0.1 python python kubesphere/python-36-centos7:v2.1.0 0.0.1 tomcat java kubesphere/tomcat85-java8-centos7:v2.1.0 0.0.1 ``` # Influence ![image](https://user-images.githubusercontent.com/16865714/115331416-6b42c080-a1c8-11eb-82bc-3f65e189fe7c.png) By the way, kubesphere 3.0.0 has no problem.
priority
was loaded incorrectly by recent ks installer description was loaded incorrectly by recent ks installer reproduce recently i installed kubesphere with with the following steps download kubeky and decompress it bash wget c tar xzvf kubekey alpha linux tar gz up kubernetes and kubesphere bash kk create cluster with kubesphere nightly enable devops component bash kubectl nkubesphere system edit cc ks installer turn spec devops enabled into true more powerful tool to enable ks component if you are interested waiting for kubesphere up or use the below command to check up status bash kubectl logs n kubesphere system kubectl get pod n kubesphere system l app ks install o jsonpath items metadata name f check now we can check if were loaded correctly bash kubectl get devops kubesphere io a you would find that the were missing result bash no resources found expected bash name framework defaultbaseimage version binary binary kubesphere binary java java kubesphere java nodejs nodejs kubesphere nodejs python python kubesphere python tomcat java kubesphere influence by the way kubesphere has no problem
1
445,808
12,836,277,919
IssuesEvent
2020-07-07 14:07:58
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
closed
web admin: missing RADIUS tab on switches/switch groups
Priority: High Type: Bug
**Describe the bug** When you try to create a new switch or switch group, all tabs are present except `RADIUS`. On switches, it seems to work when I toggle Advanced button. **To Reproduce** Steps to reproduce the behavior: 1. Create a new switch group => RADIUS tab is missing ![Capture d’écran de 2020-07-06 15-52-47](https://user-images.githubusercontent.com/10830260/86600801-d5bfa280-bfa0-11ea-93d8-d5037bb12f61.png) **Expected behavior** RADIUS tab should be display by default when creating new switch or switch group.
1.0
web admin: missing RADIUS tab on switches/switch groups - **Describe the bug** When you try to create a new switch or switch group, all tabs are present except `RADIUS`. On switches, it seems to work when I toggle Advanced button. **To Reproduce** Steps to reproduce the behavior: 1. Create a new switch group => RADIUS tab is missing ![Capture d’écran de 2020-07-06 15-52-47](https://user-images.githubusercontent.com/10830260/86600801-d5bfa280-bfa0-11ea-93d8-d5037bb12f61.png) **Expected behavior** RADIUS tab should be display by default when creating new switch or switch group.
priority
web admin missing radius tab on switches switch groups describe the bug when you try to create a new switch or switch group all tabs are present except radius on switches it seems to work when i toggle advanced button to reproduce steps to reproduce the behavior create a new switch group radius tab is missing expected behavior radius tab should be display by default when creating new switch or switch group
1
622,221
19,618,000,829
IssuesEvent
2022-01-07 00:19:00
oncokb/oncokb
https://api.github.com/repos/oncokb/oncokb
closed
GN query improvement
high priority
With the large volume the GN annotation, we should only annotate the variants that overlap with the genes we curated. Todo: - [x] Record the gene location for both 37/38 - [x] Annotate genomic changes that have overlap with genes we curated - [x] Check the GC tests are passing in the oncokb-annotator
1.0
GN query improvement - With the large volume the GN annotation, we should only annotate the variants that overlap with the genes we curated. Todo: - [x] Record the gene location for both 37/38 - [x] Annotate genomic changes that have overlap with genes we curated - [x] Check the GC tests are passing in the oncokb-annotator
priority
gn query improvement with the large volume the gn annotation we should only annotate the variants that overlap with the genes we curated todo record the gene location for both annotate genomic changes that have overlap with genes we curated check the gc tests are passing in the oncokb annotator
1
620,985
19,575,120,983
IssuesEvent
2022-01-04 14:38:56
CDCgov/prime-reportstream
https://api.github.com/repos/CDCgov/prime-reportstream
reopened
IL - OBX-23.1 Org Name truncate to 50 chars
onboarding-ops blocked receiver High Priority support
Illinois is having a problem with the length of the organization name in OBX 23.1. The maximum character sizing limit for this subfield is 50, and quite often more than 50 characters are being sent. ![image.png](https://images.zenhubusercontent.com/60d1eba7caf0775fd79203f8/19c24e5d-a744-461b-917a-7df14402fc25)
1.0
IL - OBX-23.1 Org Name truncate to 50 chars - Illinois is having a problem with the length of the organization name in OBX 23.1. The maximum character sizing limit for this subfield is 50, and quite often more than 50 characters are being sent. ![image.png](https://images.zenhubusercontent.com/60d1eba7caf0775fd79203f8/19c24e5d-a744-461b-917a-7df14402fc25)
priority
il obx org name truncate to chars illinois is having a problem with the length of the organization name in obx the maximum character sizing limit for this subfield is and quite often more than characters are being sent
1
505,324
14,631,487,610
IssuesEvent
2020-12-23 20:01:30
bounswe/bounswe2020group1
https://api.github.com/repos/bounswe/bounswe2020group1
opened
User type is set as "admin" while it should be set as "customer" when sign up parameter 'is_vendor' is set to empty string.
backend priority:high status:new type:bug
# Prerequisites - [ ] I am running the latest version - [ ] I checked the documentation and found no answer - [ ] I checked to make sure that this issue has not already been filed # Expected Behavior When a new user is created with a request where the 'is_vendor' parameter is an empty string, the user type should be set as "customer". (As stated in the endpoint documentation) # Current Behavior When a new user is created with a request where the 'is_vendor' parameter is an empty string, the user type is set as "admin". # Failure Information (for bugs) ## Steps to Reproduce Please provide detailed steps for reproducing the issue. 1. Create a user where the is_vendor parameter is given as an empty string. 2. Sign in and check the response data of the sign in request. ## Context * Request sent with: Axios * Operating System: Windows
1.0
User type is set as "admin" while it should be set as "customer" when sign up parameter 'is_vendor' is set to empty string. - # Prerequisites - [ ] I am running the latest version - [ ] I checked the documentation and found no answer - [ ] I checked to make sure that this issue has not already been filed # Expected Behavior When a new user is created with a request where the 'is_vendor' parameter is an empty string, the user type should be set as "customer". (As stated in the endpoint documentation) # Current Behavior When a new user is created with a request where the 'is_vendor' parameter is an empty string, the user type is set as "admin". # Failure Information (for bugs) ## Steps to Reproduce Please provide detailed steps for reproducing the issue. 1. Create a user where the is_vendor parameter is given as an empty string. 2. Sign in and check the response data of the sign in request. ## Context * Request sent with: Axios * Operating System: Windows
priority
user type is set as admin while it should be set as customer when sign up parameter is vendor is set to empty string prerequisites i am running the latest version i checked the documentation and found no answer i checked to make sure that this issue has not already been filed expected behavior when a new user is created with a request where the is vendor parameter is an empty string the user type should be set as customer as stated in the endpoint documentation current behavior when a new user is created with a request where the is vendor parameter is an empty string the user type is set as admin failure information for bugs steps to reproduce please provide detailed steps for reproducing the issue create a user where the is vendor parameter is given as an empty string sign in and check the response data of the sign in request context request sent with axios operating system windows
1
716,587
24,640,069,522
IssuesEvent
2022-10-17 10:54:46
EPFL-ENAC/CCFatiguePlatform
https://api.github.com/repos/EPFL-ENAC/CCFatiguePlatform
closed
(TST Preprocessing)
high priority
Preprocessing pipeline - [x] tst_data_quality_control.py - [x] delete TST_data_harmonization.py if obsolete - [x] Validate/convert new TST datasets (pull requests) - [x] TST_Khalooei_2021-10_FA - [x] TST_Srinivasan_2021-10_FA - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/45 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/46 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/47 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/48 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/49 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/50 ➡️ impossible as is - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/51 ➡️ impossible as is - [x] implement constraint checks on xls/json files - [x] Code review
1.0
(TST Preprocessing) - Preprocessing pipeline - [x] tst_data_quality_control.py - [x] delete TST_data_harmonization.py if obsolete - [x] Validate/convert new TST datasets (pull requests) - [x] TST_Khalooei_2021-10_FA - [x] TST_Srinivasan_2021-10_FA - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/45 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/46 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/47 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/48 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/49 - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/50 ➡️ impossible as is - [x] https://github.com/EPFL-ENAC/CCFatiguePlatform/pull/51 ➡️ impossible as is - [x] implement constraint checks on xls/json files - [x] Code review
priority
tst preprocessing preprocessing pipeline tst data quality control py delete tst data harmonization py if obsolete validate convert new tst datasets pull requests tst khalooei fa tst srinivasan fa ➡️ impossible as is ➡️ impossible as is implement constraint checks on xls json files code review
1
415,905
12,136,833,591
IssuesEvent
2020-04-23 14:54:54
isawnyu/isaw.web
https://api.github.com/repos/isawnyu/isaw.web
opened
captioned images do not resize for narrow browser/mobile widths
bug high priority
It would appear that CSS modifications like: ```css span.captioned { max-width: 100%; max-height: auto; } ``` would resolve the problem.
1.0
captioned images do not resize for narrow browser/mobile widths - It would appear that CSS modifications like: ```css span.captioned { max-width: 100%; max-height: auto; } ``` would resolve the problem.
priority
captioned images do not resize for narrow browser mobile widths it would appear that css modifications like css span captioned max width max height auto would resolve the problem
1
724,827
24,942,906,114
IssuesEvent
2022-10-31 20:35:09
bounswe/bounswe2022group7
https://api.github.com/repos/bounswe/bounswe2022group7
closed
Add tests for the Event Page
Status: Pending Review Priority: High Difficulty: Medium Type: Implementation Target: Mobile
To finalize the implementation of the Event Page, I should add tests. - [x] Add unit tests - [x] Add widget tests for the UI For unit tests, I can test the `string_helpers.dart` file. For widget tests, I will test the user interface of the Event Page. **Reviewer: @atillaturkmen** **Deadline: 31/10/2022, 23:00**
1.0
Add tests for the Event Page - To finalize the implementation of the Event Page, I should add tests. - [x] Add unit tests - [x] Add widget tests for the UI For unit tests, I can test the `string_helpers.dart` file. For widget tests, I will test the user interface of the Event Page. **Reviewer: @atillaturkmen** **Deadline: 31/10/2022, 23:00**
priority
add tests for the event page to finalize the implementation of the event page i should add tests add unit tests add widget tests for the ui for unit tests i can test the string helpers dart file for widget tests i will test the user interface of the event page reviewer atillaturkmen deadline
1
315,691
9,631,049,995
IssuesEvent
2019-05-15 13:28:17
FundacionParaguaya/MentorApp
https://api.github.com/repos/FundacionParaguaya/MentorApp
closed
Whole text of indicator doesn't appear
bug high priority
The text in indicators that are longer is not appearing completely, It doesn't even scroll down to show the rest of the text. ![Screenshot_2019-05-07-09-25-20.png](https://images.zenhubusercontent.com/5c48c8dbf883486cde30d849/b7bed9ae-b562-45b4-8e27-29df2a9aca17)
1.0
Whole text of indicator doesn't appear - The text in indicators that are longer is not appearing completely, It doesn't even scroll down to show the rest of the text. ![Screenshot_2019-05-07-09-25-20.png](https://images.zenhubusercontent.com/5c48c8dbf883486cde30d849/b7bed9ae-b562-45b4-8e27-29df2a9aca17)
priority
whole text of indicator doesn t appear the text in indicators that are longer is not appearing completely it doesn t even scroll down to show the rest of the text
1
533,315
15,588,543,695
IssuesEvent
2021-03-18 06:35:44
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
Need tenant validation for Internal APIs that are used to retrieve individual subscription related data
Priority/Highest Severity/Blocker Type/Improvement
### Describe your problem(s) Cross tenant data retrieval should be restricted from internal service individual APIs.
1.0
Need tenant validation for Internal APIs that are used to retrieve individual subscription related data - ### Describe your problem(s) Cross tenant data retrieval should be restricted from internal service individual APIs.
priority
need tenant validation for internal apis that are used to retrieve individual subscription related data describe your problem s cross tenant data retrieval should be restricted from internal service individual apis
1
585,768
17,533,489,846
IssuesEvent
2021-08-12 02:13:50
TerriaJS/catalog-converter
https://api.github.com/repos/TerriaJS/catalog-converter
closed
Investigate missing warnings and errors for nested configuration
high priority catalog-member
Start with: - [x] Warnings for unconverted tableStyle properties - [x] Legends - [x] Look at other Also need next steps for people. The CLI could print out URLs for migration guide, v8 docs, our GitHub discussions, etc.
1.0
Investigate missing warnings and errors for nested configuration - Start with: - [x] Warnings for unconverted tableStyle properties - [x] Legends - [x] Look at other Also need next steps for people. The CLI could print out URLs for migration guide, v8 docs, our GitHub discussions, etc.
priority
investigate missing warnings and errors for nested configuration start with warnings for unconverted tablestyle properties legends look at other also need next steps for people the cli could print out urls for migration guide docs our github discussions etc
1
719,248
24,752,825,016
IssuesEvent
2022-10-21 15:01:31
rmlockwood/FLExTrans
https://api.github.com/repos/rmlockwood/FLExTrans
closed
[Live Rule Tester] Allow the transfer to run even with all rules unchecked
enhancement high priority
It's a pain to uncheck all the rules and then to have to check one rule if you just want to see what happens when no rules are processed. Allow the transfer to run without any rules checked. This probably means inserting a dummy rule somehow.
1.0
[Live Rule Tester] Allow the transfer to run even with all rules unchecked - It's a pain to uncheck all the rules and then to have to check one rule if you just want to see what happens when no rules are processed. Allow the transfer to run without any rules checked. This probably means inserting a dummy rule somehow.
priority
allow the transfer to run even with all rules unchecked it s a pain to uncheck all the rules and then to have to check one rule if you just want to see what happens when no rules are processed allow the transfer to run without any rules checked this probably means inserting a dummy rule somehow
1
204,757
7,090,611,844
IssuesEvent
2018-01-12 09:41:41
wso2/product-is
https://api.github.com/repos/wso2/product-is
closed
[DOCS]EmailOTP configs in application-authentication.xml
Affected/5.4.0 Priority/High Type/Docs
Document: [Configuring Email OTP](https://docs.wso2.com/display/IS530/Configuring+Email+OTP) Section: Step 1 - Deploy the EmailOTP artifacts Step 3 In IS5.4.0 pack -> application-authentication.xml file, there is already EmailOTP config which is as below. ` <AuthenticatorConfig name="EmailOTP" enabled="true"> <Parameter name="GmailClientId">gmailClientIdValue</Parameter> <Parameter name="GmailClientSecret">gmailClientSecretValue</Parameter> <Parameter name="SendgridAPIKey">sendgridAPIKeyValue</Parameter> <Parameter name="GmailRefreshToken">gmailRefreshTokenValue</Parameter> <Parameter name="GmailEmailEndpoint">https://www.googleapis.com/gmail/v1/users/[userId]/messages/send</Parameter> <Parameter name="SendgridEmailEndpoint">https://api.sendgrid.com/api/mail.send.json</Parameter> <Parameter name="accessTokenRequiredAPIs">Gmail</Parameter> <Parameter name="apiKeyHeaderRequiredAPIs">Sendgrid</Parameter> <Parameter name="SendgridFormData">sendgridFormDataValue</Parameter> <Parameter name="SendgridURLParams">sendgridURLParamsValue</Parameter> <Parameter name="GmailAuthTokenType">Bearer</Parameter> <Parameter name="GmailTokenEndpoint">https://www.googleapis.com/oauth2/v3/token</Parameter> <Parameter name="SendgridAuthTokenType">Bearer</Parameter> <Parameter name="redirectToMultiOptionPageOnFailure">false</Parameter> </AuthenticatorConfig> ` Please mention if this configuration needs to be replaced by given configuration in the doc.
1.0
[DOCS]EmailOTP configs in application-authentication.xml - Document: [Configuring Email OTP](https://docs.wso2.com/display/IS530/Configuring+Email+OTP) Section: Step 1 - Deploy the EmailOTP artifacts Step 3 In IS5.4.0 pack -> application-authentication.xml file, there is already EmailOTP config which is as below. ` <AuthenticatorConfig name="EmailOTP" enabled="true"> <Parameter name="GmailClientId">gmailClientIdValue</Parameter> <Parameter name="GmailClientSecret">gmailClientSecretValue</Parameter> <Parameter name="SendgridAPIKey">sendgridAPIKeyValue</Parameter> <Parameter name="GmailRefreshToken">gmailRefreshTokenValue</Parameter> <Parameter name="GmailEmailEndpoint">https://www.googleapis.com/gmail/v1/users/[userId]/messages/send</Parameter> <Parameter name="SendgridEmailEndpoint">https://api.sendgrid.com/api/mail.send.json</Parameter> <Parameter name="accessTokenRequiredAPIs">Gmail</Parameter> <Parameter name="apiKeyHeaderRequiredAPIs">Sendgrid</Parameter> <Parameter name="SendgridFormData">sendgridFormDataValue</Parameter> <Parameter name="SendgridURLParams">sendgridURLParamsValue</Parameter> <Parameter name="GmailAuthTokenType">Bearer</Parameter> <Parameter name="GmailTokenEndpoint">https://www.googleapis.com/oauth2/v3/token</Parameter> <Parameter name="SendgridAuthTokenType">Bearer</Parameter> <Parameter name="redirectToMultiOptionPageOnFailure">false</Parameter> </AuthenticatorConfig> ` Please mention if this configuration needs to be replaced by given configuration in the doc.
priority
emailotp configs in application authentication xml document section step deploy the emailotp artifacts step in pack application authentication xml file there is already emailotp config which is as below gmailclientidvalue gmailclientsecretvalue sendgridapikeyvalue gmailrefreshtokenvalue messages send gmail sendgrid sendgridformdatavalue sendgridurlparamsvalue bearer bearer false please mention if this configuration needs to be replaced by given configuration in the doc
1
486,006
14,002,802,097
IssuesEvent
2020-10-28 15:11:05
AY2021S1-CS2113-T13-1/tp
https://api.github.com/repos/AY2021S1-CS2113-T13-1/tp
closed
Developer Guide
priority.High type.Task
1. Each member should describe the implementation of at least one enhancement she has added (or planning to add). 2. Describing the design at a multiple-levels (e.g., first, describe at architecture-level, then describe at component-level) i2. s optional. 3. It is also acceptable to have one Design & Implementation section in which you describe the entire thing at the class- and object-level. 4. The description can contain things such as, - How the feature is implemented (or is going to be implemented). - Why it is implemented that way. - Alternatives considered. 5. Add sequence diagrams to enhance your DG wherever they can be useful. Note that diagrams you add in this week will receive feedback while diagrams added later will not. Can use [PlantUML](https://se-education.org/guides/tutorials/plantUml.html) for diagrams
1.0
Developer Guide - 1. Each member should describe the implementation of at least one enhancement she has added (or planning to add). 2. Describing the design at a multiple-levels (e.g., first, describe at architecture-level, then describe at component-level) i2. s optional. 3. It is also acceptable to have one Design & Implementation section in which you describe the entire thing at the class- and object-level. 4. The description can contain things such as, - How the feature is implemented (or is going to be implemented). - Why it is implemented that way. - Alternatives considered. 5. Add sequence diagrams to enhance your DG wherever they can be useful. Note that diagrams you add in this week will receive feedback while diagrams added later will not. Can use [PlantUML](https://se-education.org/guides/tutorials/plantUml.html) for diagrams
priority
developer guide each member should describe the implementation of at least one enhancement she has added or planning to add describing the design at a multiple levels e g first describe at architecture level then describe at component level s optional it is also acceptable to have one design implementation section in which you describe the entire thing at the class and object level the description can contain things such as how the feature is implemented or is going to be implemented why it is implemented that way alternatives considered add sequence diagrams to enhance your dg wherever they can be useful note that diagrams you add in this week will receive feedback while diagrams added later will not can use for diagrams
1
229,944
7,601,431,660
IssuesEvent
2018-04-28 13:25:39
esaude/esaude-emr-poc
https://api.github.com/repos/esaude/esaude-emr-poc
closed
[Clinical Services] Edit SOCIAL INFO is not persisting all the inserted data
High Priority bug
Actual Results -- When SOCIAL INFO is edited not all the new information provided is being persisted Expected results -- Should persist and display the last updated data Steps to reproduce -- Login > Clinical services > click to edit > fill the new information > Confirm, Click details to see the information ![image](https://user-images.githubusercontent.com/3810265/39395201-fd001e6a-4adb-11e8-8a96-9373820d929e.png)
1.0
[Clinical Services] Edit SOCIAL INFO is not persisting all the inserted data - Actual Results -- When SOCIAL INFO is edited not all the new information provided is being persisted Expected results -- Should persist and display the last updated data Steps to reproduce -- Login > Clinical services > click to edit > fill the new information > Confirm, Click details to see the information ![image](https://user-images.githubusercontent.com/3810265/39395201-fd001e6a-4adb-11e8-8a96-9373820d929e.png)
priority
edit social info is not persisting all the inserted data actual results when social info is edited not all the new information provided is being persisted expected results should persist and display the last updated data steps to reproduce login clinical services click to edit fill the new information confirm click details to see the information
1
410,741
11,996,182,722
IssuesEvent
2020-04-08 16:20:03
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
opened
Web admin: Can't display the Configuration section
Priority: Critical Priority: High Type: Bug
```` [root@cluster1 pf]# rpm -qa packetfence packetfence-9.3.9-20200408145539.134100125.0007.devel.el7.x86_64 ```` ![image](https://user-images.githubusercontent.com/5261214/78808280-31bf5e80-7993-11ea-9800-225b9b1159bf.png)
2.0
Web admin: Can't display the Configuration section - ```` [root@cluster1 pf]# rpm -qa packetfence packetfence-9.3.9-20200408145539.134100125.0007.devel.el7.x86_64 ```` ![image](https://user-images.githubusercontent.com/5261214/78808280-31bf5e80-7993-11ea-9800-225b9b1159bf.png)
priority
web admin can t display the configuration section rpm qa packetfence packetfence devel
1
437,106
12,560,796,195
IssuesEvent
2020-06-07 23:23:53
openmsupply/msupply-dashboard
https://api.github.com/repos/openmsupply/msupply-dashboard
closed
Syntax error in db-init.sql
Bug Priority: High
Script throws an error at line 607 when run in pgAdmin. ![Screen Shot 2020-05-22 at 11 43 46 AM](https://user-images.githubusercontent.com/5456533/82616714-1eeea980-9c22-11ea-9932-c245ae10a38b.png) Looks like the previous line (604) should be: `END $$ ;` rather than `END; $$`
1.0
Syntax error in db-init.sql - Script throws an error at line 607 when run in pgAdmin. ![Screen Shot 2020-05-22 at 11 43 46 AM](https://user-images.githubusercontent.com/5456533/82616714-1eeea980-9c22-11ea-9932-c245ae10a38b.png) Looks like the previous line (604) should be: `END $$ ;` rather than `END; $$`
priority
syntax error in db init sql script throws an error at line when run in pgadmin looks like the previous line should be end rather than end
1
597,695
18,169,250,701
IssuesEvent
2021-09-27 17:56:08
26F-Studio/Techmino
https://api.github.com/repos/26F-Studio/Techmino
closed
Replay pauses after adjusting the playback speed frequently
bug high priority
As in the video below. 1. Enter Replays. 2. Replay any recorded game. 3. Press the ← and → keys several times. 4. The replay stops and the tetrominoes fall and lock until the game tops out. https://user-images.githubusercontent.com/87485746/134849300-2538094b-934b-4726-8323-53fa4319e29f.MOV
1.0
Replay pauses after adjusting the playback speed frequently - As in the video below. 1. Enter Replays. 2. Replay any recorded game. 3. Press the ← and → keys several times. 4. The replay stops and the tetrominoes fall and lock until the game tops out. https://user-images.githubusercontent.com/87485746/134849300-2538094b-934b-4726-8323-53fa4319e29f.MOV
priority
replay pauses after adjusting the playback speed frequently as in the video below enter replays replay any recorded game press the ← and → keys several times the replay stops and the tetrominoes fall and lock until the game tops out
1
672,437
22,826,131,706
IssuesEvent
2022-07-12 08:45:04
fluxnet/ONEFlux
https://api.github.com/repos/fluxnet/ONEFlux
opened
Gapfilling meteo data where MDS is not applied (P, PA, WS...) - use original data if ERA are not available in aggregations
enhancement Priority:High
Currently, in case ERA are not available and original data are available, in the halfhourly final file there is P (with original data) and P_F is all -9999. This happens even for the days where P is always present. It is ok because in fact the variable is not fully gapfilled. However this creates a problem in the daily files where the P is always entirely missing even for days where there are measurements. Let's consider the possibility to provide P_F from daily to yearly in case we have the periods fully covered by measurements (so only for the days->years where there are no gaps)
1.0
Gapfilling meteo data where MDS is not applied (P, PA, WS...) - use original data if ERA are not available in aggregations - Currently, in case ERA are not available and original data are available, in the halfhourly final file there is P (with original data) and P_F is all -9999. This happens even for the days where P is always present. It is ok because in fact the variable is not fully gapfilled. However this creates a problem in the daily files where the P is always entirely missing even for days where there are measurements. Let's consider the possibility to provide P_F from daily to yearly in case we have the periods fully covered by measurements (so only for the days->years where there are no gaps)
priority
gapfilling meteo data where mds is not applied p pa ws use original data if era are not available in aggregations currently in case era are not available and original data are available in the halfhourly final file there is p with original data and p f is all this happens even for the days where p is always present it is ok because in fact the variable is not fully gapfilled however this creates a problem in the daily files where the p is always entirely missing even for days where there are measurements let s consider the possibility to provide p f from daily to yearly in case we have the periods fully covered by measurements so only for the days years where there are no gaps
1
707,627
24,312,497,352
IssuesEvent
2022-09-30 00:49:03
mattybojo/renoir
https://api.github.com/repos/mattybojo/renoir
closed
[TodoList] Add new "priority" property and display on the list item
enhancement high priority
Add a new "priority" property. It needs to be displayed on the list item. Possible solutions: colored numbers, icons (arrow up for 1, arrow down for 3, dash for 2. Allowed values: 1, 2, 3
1.0
[TodoList] Add new "priority" property and display on the list item - Add a new "priority" property. It needs to be displayed on the list item. Possible solutions: colored numbers, icons (arrow up for 1, arrow down for 3, dash for 2. Allowed values: 1, 2, 3
priority
add new priority property and display on the list item add a new priority property it needs to be displayed on the list item possible solutions colored numbers icons arrow up for arrow down for dash for allowed values
1
582,796
17,370,852,979
IssuesEvent
2021-07-30 13:49:51
guardicore/monkey
https://api.github.com/repos/guardicore/monkey
opened
Windows package gathering fails
Bug Complexity: Low Priority: High
<!-- Thank you for reporting a bug to make Infection Monkey better. Please fill in as much of the template below as you're able. --> ## Describe the bug Windows package gathering fails on unpriviledged monkey: ``` 2021-07-30 16:41:52,627 [39232:30808:INFO] windows_info_collector.get_installed_packages.51: Getting installed packages 2021-07-30 16:41:55,897 [39232:30808:ERROR] monkey.collect_system_info_if_configured.288: Exception encountered during system info collection: Command '['dism', '/online', '/get-packages']' returned non-zero exit status 740. Traceback (most recent call last): File "C:\Users\Vakaris\Desktop\infection_monkey\monkey\infection_monkey\monkey.py", line 285, in collect_system_info_if_configured system_info = system_info_collector.get_info() File "C:\Users\Vakaris\Desktop\infection_monkey\monkey\infection_monkey\system_info\__init__.py", line 46, in get_info return self.collector.get_info() File "C:\Users\Vakaris\Desktop\infection_monkey\monkey\infection_monkey\system_info\windows_info_collector.py", line 42, in get_info self.get_installed_packages() File "C:\Users\Vakaris\Desktop\infection_monkey\monkey\infection_monkey\system_info\windows_info_collector.py", line 53, in get_installed_packages packages = subprocess.check_output(shlex.split("dism /online /get-packages")) File "C:\Users\Vakaris\AppData\Local\Programs\Python\Python37\lib\subprocess.py", line 411, in check_output **kwargs).stdout File "C:\Users\Vakaris\AppData\Local\Programs\Python\Python37\lib\subprocess.py", line 512, in run output=stdout, stderr=stderr) subprocess.CalledProcessError: Command '['dism', '/online', '/get-packages']' returned non-zero exit status 740. ``` This results in `system_info` telemetry not being sent. ## To Reproduce Steps to reproduce the behavior: 1. Configure the Monkey to run system info collection 2. Run monkey as unpriviledged user 3. See error ## Expected behavior System info collection should expect monkey not always running as a privileged user. The package collection shouldn't kill system info collection, because that info is not even used in the reporting. ## Screenshots If applicable, add screenshots to help explain your problem. ## Machine version (please complete the following information): - OS: Windows
1.0
Windows package gathering fails - <!-- Thank you for reporting a bug to make Infection Monkey better. Please fill in as much of the template below as you're able. --> ## Describe the bug Windows package gathering fails on unpriviledged monkey: ``` 2021-07-30 16:41:52,627 [39232:30808:INFO] windows_info_collector.get_installed_packages.51: Getting installed packages 2021-07-30 16:41:55,897 [39232:30808:ERROR] monkey.collect_system_info_if_configured.288: Exception encountered during system info collection: Command '['dism', '/online', '/get-packages']' returned non-zero exit status 740. Traceback (most recent call last): File "C:\Users\Vakaris\Desktop\infection_monkey\monkey\infection_monkey\monkey.py", line 285, in collect_system_info_if_configured system_info = system_info_collector.get_info() File "C:\Users\Vakaris\Desktop\infection_monkey\monkey\infection_monkey\system_info\__init__.py", line 46, in get_info return self.collector.get_info() File "C:\Users\Vakaris\Desktop\infection_monkey\monkey\infection_monkey\system_info\windows_info_collector.py", line 42, in get_info self.get_installed_packages() File "C:\Users\Vakaris\Desktop\infection_monkey\monkey\infection_monkey\system_info\windows_info_collector.py", line 53, in get_installed_packages packages = subprocess.check_output(shlex.split("dism /online /get-packages")) File "C:\Users\Vakaris\AppData\Local\Programs\Python\Python37\lib\subprocess.py", line 411, in check_output **kwargs).stdout File "C:\Users\Vakaris\AppData\Local\Programs\Python\Python37\lib\subprocess.py", line 512, in run output=stdout, stderr=stderr) subprocess.CalledProcessError: Command '['dism', '/online', '/get-packages']' returned non-zero exit status 740. ``` This results in `system_info` telemetry not being sent. ## To Reproduce Steps to reproduce the behavior: 1. Configure the Monkey to run system info collection 2. Run monkey as unpriviledged user 3. See error ## Expected behavior System info collection should expect monkey not always running as a privileged user. The package collection shouldn't kill system info collection, because that info is not even used in the reporting. ## Screenshots If applicable, add screenshots to help explain your problem. ## Machine version (please complete the following information): - OS: Windows
priority
windows package gathering fails thank you for reporting a bug to make infection monkey better please fill in as much of the template below as you re able describe the bug windows package gathering fails on unpriviledged monkey windows info collector get installed packages getting installed packages monkey collect system info if configured exception encountered during system info collection command returned non zero exit status traceback most recent call last file c users vakaris desktop infection monkey monkey infection monkey monkey py line in collect system info if configured system info system info collector get info file c users vakaris desktop infection monkey monkey infection monkey system info init py line in get info return self collector get info file c users vakaris desktop infection monkey monkey infection monkey system info windows info collector py line in get info self get installed packages file c users vakaris desktop infection monkey monkey infection monkey system info windows info collector py line in get installed packages packages subprocess check output shlex split dism online get packages file c users vakaris appdata local programs python lib subprocess py line in check output kwargs stdout file c users vakaris appdata local programs python lib subprocess py line in run output stdout stderr stderr subprocess calledprocesserror command returned non zero exit status this results in system info telemetry not being sent to reproduce steps to reproduce the behavior configure the monkey to run system info collection run monkey as unpriviledged user see error expected behavior system info collection should expect monkey not always running as a privileged user the package collection shouldn t kill system info collection because that info is not even used in the reporting screenshots if applicable add screenshots to help explain your problem machine version please complete the following information os windows
1
446,600
12,867,579,545
IssuesEvent
2020-07-10 07:11:55
harmony-one/harmony-dashboard
https://api.github.com/repos/harmony-one/harmony-dashboard
closed
use systemd service for both FE/BE of explorer
enhancement high priority
We need to use systemd service to manage both the Frontend and Backend of explorer itself. Both of them are running using tmux session right now. I remember I had created a script for @denniswon to use `nohup` on the explorer on OSTN for easy restart. Anyway, we should use systemd to manage them.
1.0
use systemd service for both FE/BE of explorer - We need to use systemd service to manage both the Frontend and Backend of explorer itself. Both of them are running using tmux session right now. I remember I had created a script for @denniswon to use `nohup` on the explorer on OSTN for easy restart. Anyway, we should use systemd to manage them.
priority
use systemd service for both fe be of explorer we need to use systemd service to manage both the frontend and backend of explorer itself both of them are running using tmux session right now i remember i had created a script for denniswon to use nohup on the explorer on ostn for easy restart anyway we should use systemd to manage them
1
144,814
5,546,241,559
IssuesEvent
2017-03-23 00:07:00
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
closed
tensor.random_(0) cause `core dumped`
bug high priority
I was using IPython to debug, but when I type below it causes exception and exit ipython directly. ```ipython In [1]: import torch In [2]: a = torch.Tensor(3) In [3]: a.random_(0) [1] 29993 floating point exception (core dumped) ipython2 ``` I think it would be better if pytorch could raise error like below rather than exit directly. ``` RuntimeError: upper bound must be greater or equal than lower bound ```
1.0
tensor.random_(0) cause `core dumped` - I was using IPython to debug, but when I type below it causes exception and exit ipython directly. ```ipython In [1]: import torch In [2]: a = torch.Tensor(3) In [3]: a.random_(0) [1] 29993 floating point exception (core dumped) ipython2 ``` I think it would be better if pytorch could raise error like below rather than exit directly. ``` RuntimeError: upper bound must be greater or equal than lower bound ```
priority
tensor random cause core dumped i was using ipython to debug but when i type below it causes exception and exit ipython directly ipython in import torch in a torch tensor in a random floating point exception core dumped i think it would be better if pytorch could raise error like below rather than exit directly runtimeerror upper bound must be greater or equal than lower bound
1
248,390
7,930,032,398
IssuesEvent
2018-07-06 17:10:38
MyCryptoHQ/MyCrypto
https://api.github.com/repos/MyCryptoHQ/MyCrypto
closed
Add SEO Stuff to Website
blocking next release high priority
There may be some considerations or stuff we have to do now that it's React? --- Reference view-source:https://legacy.mycrypto.com/ --- ### Schema Information - Organization ``` <script type="application/ld+json"> { "@context": "http://schema.org", "@type" : "Organization", "name" : "MyCrypto", "legalName" : "MyCrypto, Inc.", "url" : "https://mycrypto.com/", "contactPoint" : [{ "@type" : "ContactPoint", "email" : "support@mycrypto.com", "url" : "https://support.mycrypto.com", "contactType" : "customer service" }], "logo" : "https://mycrypto.com/images/mycrypto-logo.png", "description": "MyCrypto is a free, open-source interface for interacting with the blockchain more easily.", "sameAs" : [ "https://mycrypto.com/", "https://www.facebook.com/MyCryptoHQ/", "https://twitter.com/mycrypto", "https://medium.com/@mycrypto", "https://support.mycrypto.com/", "https://github.com/MyCryptoHQ", "https://www.reddit.com/r/MyCrypto/", "https://www.linkedin.com/company/mycrypto/" ] } </script> ``` --- ### Google Search Console Verification `<meta name="google-site-verification" content="dRWkvANAUNAhNyMnTyc7M7S3lnucotMY8j8R-gsZhbo" />` --- ### Create & add a sitemap ---
1.0
Add SEO Stuff to Website - There may be some considerations or stuff we have to do now that it's React? --- Reference view-source:https://legacy.mycrypto.com/ --- ### Schema Information - Organization ``` <script type="application/ld+json"> { "@context": "http://schema.org", "@type" : "Organization", "name" : "MyCrypto", "legalName" : "MyCrypto, Inc.", "url" : "https://mycrypto.com/", "contactPoint" : [{ "@type" : "ContactPoint", "email" : "support@mycrypto.com", "url" : "https://support.mycrypto.com", "contactType" : "customer service" }], "logo" : "https://mycrypto.com/images/mycrypto-logo.png", "description": "MyCrypto is a free, open-source interface for interacting with the blockchain more easily.", "sameAs" : [ "https://mycrypto.com/", "https://www.facebook.com/MyCryptoHQ/", "https://twitter.com/mycrypto", "https://medium.com/@mycrypto", "https://support.mycrypto.com/", "https://github.com/MyCryptoHQ", "https://www.reddit.com/r/MyCrypto/", "https://www.linkedin.com/company/mycrypto/" ] } </script> ``` --- ### Google Search Console Verification `<meta name="google-site-verification" content="dRWkvANAUNAhNyMnTyc7M7S3lnucotMY8j8R-gsZhbo" />` --- ### Create & add a sitemap ---
priority
add seo stuff to website there may be some considerations or stuff we have to do now that it s react reference view source schema information organization context type organization name mycrypto legalname mycrypto inc url contactpoint type contactpoint email support mycrypto com url contacttype customer service logo description mycrypto is a free open source interface for interacting with the blockchain more easily sameas google search console verification create add a sitemap
1
365,437
10,781,331,605
IssuesEvent
2019-11-04 14:43:33
gammapy/gammapy
https://api.github.com/repos/gammapy/gammapy
opened
Gammapy validation: joint Crab analysis
effort-medium package-intermediate priority-high
As part of the Gammapy validation effort while preparing v1.0, we should try to reproduce the joint likelihood spectral analysis for the Crab nebula that we did with Gammapy v0.9 a wile ago. This is a good use case for the high-level joint dataset and fitting API we are currently developing in Gammapy (see e.g. #2505), and to test parameter error and 2D error contour computations. This would also be a good check for the safe energy mask handling and energy dispersion apply for 1D spectral analysis, topics that were checked in detail when doing the joint Crab analysis. A task description and references are here: - https://github.com/gammapy/gammapy-benchmarks - https://github.com/gammapy/gammapy-benchmarks/blob/master/validation https://github.com/open-gamma-ray-astro/joint-crab This is on a best-effort basis, the starting point should be to try to load the reduced OGIP data and reproduce the joint log parabola fit. Then one could continue and either reproduce the analysis including the modified likelihood that includes systematics (see if that is possible or even easy with the current dataset API), and / or look at the parameter errors and correlations in detail. For this, you don't have to be a Gammapy expert, what's required is some Python & Gammapy & gamma-ray experience, and a few days of free time in Nov 2019. We're looking for help! If you're interested in this task, please leave a comment here, or contact me on Slack. cc @cosimoNigro @kbruegge @Bultako @TarekHC @QRemy
1.0
Gammapy validation: joint Crab analysis - As part of the Gammapy validation effort while preparing v1.0, we should try to reproduce the joint likelihood spectral analysis for the Crab nebula that we did with Gammapy v0.9 a wile ago. This is a good use case for the high-level joint dataset and fitting API we are currently developing in Gammapy (see e.g. #2505), and to test parameter error and 2D error contour computations. This would also be a good check for the safe energy mask handling and energy dispersion apply for 1D spectral analysis, topics that were checked in detail when doing the joint Crab analysis. A task description and references are here: - https://github.com/gammapy/gammapy-benchmarks - https://github.com/gammapy/gammapy-benchmarks/blob/master/validation https://github.com/open-gamma-ray-astro/joint-crab This is on a best-effort basis, the starting point should be to try to load the reduced OGIP data and reproduce the joint log parabola fit. Then one could continue and either reproduce the analysis including the modified likelihood that includes systematics (see if that is possible or even easy with the current dataset API), and / or look at the parameter errors and correlations in detail. For this, you don't have to be a Gammapy expert, what's required is some Python & Gammapy & gamma-ray experience, and a few days of free time in Nov 2019. We're looking for help! If you're interested in this task, please leave a comment here, or contact me on Slack. cc @cosimoNigro @kbruegge @Bultako @TarekHC @QRemy
priority
gammapy validation joint crab analysis as part of the gammapy validation effort while preparing we should try to reproduce the joint likelihood spectral analysis for the crab nebula that we did with gammapy a wile ago this is a good use case for the high level joint dataset and fitting api we are currently developing in gammapy see e g and to test parameter error and error contour computations this would also be a good check for the safe energy mask handling and energy dispersion apply for spectral analysis topics that were checked in detail when doing the joint crab analysis a task description and references are here this is on a best effort basis the starting point should be to try to load the reduced ogip data and reproduce the joint log parabola fit then one could continue and either reproduce the analysis including the modified likelihood that includes systematics see if that is possible or even easy with the current dataset api and or look at the parameter errors and correlations in detail for this you don t have to be a gammapy expert what s required is some python gammapy gamma ray experience and a few days of free time in nov we re looking for help if you re interested in this task please leave a comment here or contact me on slack cc cosimonigro kbruegge bultako tarekhc qremy
1
616,432
19,302,442,086
IssuesEvent
2021-12-13 07:52:26
lenra-io/create-or-update-pr-action
https://api.github.com/repos/lenra-io/create-or-update-pr-action
closed
Prepare the #actionshackathon21 journey documentation
type | docs priority | high
This issue is to prepare the #actionshackathon21 blog post about this project. I'll list here some points I'll talk in it, if you have some suggestion, feel free to tell me.
1.0
Prepare the #actionshackathon21 journey documentation - This issue is to prepare the #actionshackathon21 blog post about this project. I'll list here some points I'll talk in it, if you have some suggestion, feel free to tell me.
priority
prepare the journey documentation this issue is to prepare the blog post about this project i ll list here some points i ll talk in it if you have some suggestion feel free to tell me
1
100,447
4,088,006,533
IssuesEvent
2016-06-01 12:23:06
bedita/bedita
https://api.github.com/repos/bedita/bedita
opened
Behaviors attached to object model should be able to change tree structure
Priority - High Topic - Core
When a behavior is attached to an object model (say Document), it should be able to change tree structure in `beforeSave`. Currently, any change is overridden by controller's `$this->data` array, that can't be accessed from behavior. In order to achieve this, data returned by `$Document->save($this->data)` should be trusted.
1.0
Behaviors attached to object model should be able to change tree structure - When a behavior is attached to an object model (say Document), it should be able to change tree structure in `beforeSave`. Currently, any change is overridden by controller's `$this->data` array, that can't be accessed from behavior. In order to achieve this, data returned by `$Document->save($this->data)` should be trusted.
priority
behaviors attached to object model should be able to change tree structure when a behavior is attached to an object model say document it should be able to change tree structure in beforesave currently any change is overridden by controller s this data array that can t be accessed from behavior in order to achieve this data returned by document save this data should be trusted
1
468,105
13,461,658,268
IssuesEvent
2020-09-09 15:04:33
hubmapconsortium/ccf-ui
https://api.github.com/repos/hubmapconsortium/ccf-ui
closed
As a researcher I need to, when in the GitHub version of the app, see a logo so that I know that the app is part of HuBMAP
Priority: Medium High SP:1 user-story
Ensure the researcher knows they are in a HuBMAP app by: * Placing a persistant HuBMAP logo in the top left of the Logo Bar in the UI that has strong contrast with the background * The native tooltip that appears on hover should show the title text: HuBMAP (Human Body Molecular Atlas Project) * Linking the logo to the default, aside panels open and torso active with organs overlaid, view * Showing the logo is clickable by having the logo have an animated change to blue on hover with a pointer that is a finger to indicate a link * Providing a click action that refreshes the app, returning it to the state when the user started their session Original ID: 1
1.0
As a researcher I need to, when in the GitHub version of the app, see a logo so that I know that the app is part of HuBMAP - Ensure the researcher knows they are in a HuBMAP app by: * Placing a persistant HuBMAP logo in the top left of the Logo Bar in the UI that has strong contrast with the background * The native tooltip that appears on hover should show the title text: HuBMAP (Human Body Molecular Atlas Project) * Linking the logo to the default, aside panels open and torso active with organs overlaid, view * Showing the logo is clickable by having the logo have an animated change to blue on hover with a pointer that is a finger to indicate a link * Providing a click action that refreshes the app, returning it to the state when the user started their session Original ID: 1
priority
as a researcher i need to when in the github version of the app see a logo so that i know that the app is part of hubmap ensure the researcher knows they are in a hubmap app by placing a persistant hubmap logo in the top left of the logo bar in the ui that has strong contrast with the background the native tooltip that appears on hover should show the title text hubmap human body molecular atlas project linking the logo to the default aside panels open and torso active with organs overlaid view showing the logo is clickable by having the logo have an animated change to blue on hover with a pointer that is a finger to indicate a link providing a click action that refreshes the app returning it to the state when the user started their session original id
1
185,611
6,725,863,286
IssuesEvent
2017-10-17 07:46:36
BilalZaib/AutoGrader
https://api.github.com/repos/BilalZaib/AutoGrader
closed
Course student stats
enhancement high priority
This is another report that we need. This one is much more important so has the highest priority among reports at the moment. Whoever is doing reports needs to do this one first (or next if already working on one). We need a report for each course. There should be a link in the course admin page (similar to "show report" in the assignments admin page) called "Student Stats". This opens up a new page similar to assign report view. In this, we need to do the following: For all students registered in this course, we need the following fields: `No.` `Student` (comes from student.__str__) `Roll number` `Assignments completed` (total number -- a completed assignment is one with at least one submission) `Late days remaining` `Average marks` (in percentage since scores might be different for each assignment) `Average number of submissions` (so, total number of submissions / assignments completed) `Average time taken` (time taken for an assignment is last submission time - open date time .. then we average over the whole course) If you can think of another field, please comment so we can discuss. **Has to be done with a separate views file and not in the main `views.py` file.** @soachishti Please assign forward to whoever is relevant.
1.0
Course student stats - This is another report that we need. This one is much more important so has the highest priority among reports at the moment. Whoever is doing reports needs to do this one first (or next if already working on one). We need a report for each course. There should be a link in the course admin page (similar to "show report" in the assignments admin page) called "Student Stats". This opens up a new page similar to assign report view. In this, we need to do the following: For all students registered in this course, we need the following fields: `No.` `Student` (comes from student.__str__) `Roll number` `Assignments completed` (total number -- a completed assignment is one with at least one submission) `Late days remaining` `Average marks` (in percentage since scores might be different for each assignment) `Average number of submissions` (so, total number of submissions / assignments completed) `Average time taken` (time taken for an assignment is last submission time - open date time .. then we average over the whole course) If you can think of another field, please comment so we can discuss. **Has to be done with a separate views file and not in the main `views.py` file.** @soachishti Please assign forward to whoever is relevant.
priority
course student stats this is another report that we need this one is much more important so has the highest priority among reports at the moment whoever is doing reports needs to do this one first or next if already working on one we need a report for each course there should be a link in the course admin page similar to show report in the assignments admin page called student stats this opens up a new page similar to assign report view in this we need to do the following for all students registered in this course we need the following fields no student comes from student str roll number assignments completed total number a completed assignment is one with at least one submission late days remaining average marks in percentage since scores might be different for each assignment average number of submissions so total number of submissions assignments completed average time taken time taken for an assignment is last submission time open date time then we average over the whole course if you can think of another field please comment so we can discuss has to be done with a separate views file and not in the main views py file soachishti please assign forward to whoever is relevant
1
579,312
17,188,638,156
IssuesEvent
2021-07-16 07:44:56
GEWIS/gewisweb
https://api.github.com/repos/GEWIS/gewisweb
closed
Measure page views or other useful statistics for web admins and content admins
For: Backend Priority: High Type: Feature
This is a request from Jealy/C4, but I think that we can implement this for the whole website. It should also be useful for us and/or the board in general.
1.0
Measure page views or other useful statistics for web admins and content admins - This is a request from Jealy/C4, but I think that we can implement this for the whole website. It should also be useful for us and/or the board in general.
priority
measure page views or other useful statistics for web admins and content admins this is a request from jealy but i think that we can implement this for the whole website it should also be useful for us and or the board in general
1
461,996
13,239,498,859
IssuesEvent
2020-08-19 03:38:03
sillsdev/webonary
https://api.github.com/repos/sillsdev/webonary
closed
Vowels with diacritics displayed incorrectly
high priority
Vowels with diacritics show as a question mark in a diamond. This may mean that the font is missing or that Unicode rendering is not happening correctly. ![Diacritics](https://user-images.githubusercontent.com/53490028/85876280-19ddc680-b79b-11ea-8193-9268175e6840.JPG)
1.0
Vowels with diacritics displayed incorrectly - Vowels with diacritics show as a question mark in a diamond. This may mean that the font is missing or that Unicode rendering is not happening correctly. ![Diacritics](https://user-images.githubusercontent.com/53490028/85876280-19ddc680-b79b-11ea-8193-9268175e6840.JPG)
priority
vowels with diacritics displayed incorrectly vowels with diacritics show as a question mark in a diamond this may mean that the font is missing or that unicode rendering is not happening correctly
1
278,704
8,649,303,941
IssuesEvent
2018-11-26 19:00:38
Sage-Bionetworks/Agora
https://api.github.com/repos/Sage-Bionetworks/Agora
closed
new summary box for druggability information
Nov 2018 SFN Milestone enhancement high priority
See figma designs here: https://www.figma.com/file/RAV7geFcRz1qvNjk4XFxRKk6/Agora?node-id=1911%3A0 "Small Molecule Druggability Information"
1.0
new summary box for druggability information - See figma designs here: https://www.figma.com/file/RAV7geFcRz1qvNjk4XFxRKk6/Agora?node-id=1911%3A0 "Small Molecule Druggability Information"
priority
new summary box for druggability information see figma designs here small molecule druggability information
1
675,427
23,093,977,908
IssuesEvent
2022-07-26 17:38:33
airbytehq/airbyte
https://api.github.com/repos/airbytehq/airbyte
closed
Facebook marketing API "You are calling a deprecated version of the Ads API. Please update to the latest version: v14.0"
type/bug priority/high community connectors/source/facebook-marketing team/connectors-python zendesk
## Environment - **Airbyte version**: example is 0.35.10-alpha - **OS Version / Instance**: AWS EC2 - **Deployment**: example are Docker or Kubernetes deploy env - **Source Connector and version**: 0.2.50 Facebook Marketing - **Destination Connector and version**: 0.3.1 S3 - - When Syncing or testing I get this error message "You are calling a deprecated version of the Ads API. Please update to the latest version: v14.0" ## Current Behavior *When Syncing or testing I get this error message "You are calling a deprecated version of the Ads API. Please update to the latest version: v14.0"* ## Expected Behavior I expect there should be no errors and data retrieved from API.
1.0
Facebook marketing API "You are calling a deprecated version of the Ads API. Please update to the latest version: v14.0" - ## Environment - **Airbyte version**: example is 0.35.10-alpha - **OS Version / Instance**: AWS EC2 - **Deployment**: example are Docker or Kubernetes deploy env - **Source Connector and version**: 0.2.50 Facebook Marketing - **Destination Connector and version**: 0.3.1 S3 - - When Syncing or testing I get this error message "You are calling a deprecated version of the Ads API. Please update to the latest version: v14.0" ## Current Behavior *When Syncing or testing I get this error message "You are calling a deprecated version of the Ads API. Please update to the latest version: v14.0"* ## Expected Behavior I expect there should be no errors and data retrieved from API.
priority
facebook marketing api you are calling a deprecated version of the ads api please update to the latest version environment airbyte version example is alpha os version instance aws deployment example are docker or kubernetes deploy env source connector and version facebook marketing destination connector and version when syncing or testing i get this error message you are calling a deprecated version of the ads api please update to the latest version current behavior when syncing or testing i get this error message you are calling a deprecated version of the ads api please update to the latest version expected behavior i expect there should be no errors and data retrieved from api
1
454,635
13,105,275,852
IssuesEvent
2020-08-04 11:53:49
FAIRsharing/fairsharing.github.io
https://api.github.com/repos/FAIRsharing/fairsharing.github.io
closed
Adding user Defined Tags in Record page
High priority
Please add userDefinedTags for the record page by creating its query in getRecord.json as well as its HTML tags
1.0
Adding user Defined Tags in Record page - Please add userDefinedTags for the record page by creating its query in getRecord.json as well as its HTML tags
priority
adding user defined tags in record page please add userdefinedtags for the record page by creating its query in getrecord json as well as its html tags
1
420,194
12,234,488,586
IssuesEvent
2020-05-04 13:30:31
OpenNebula/one
https://api.github.com/repos/OpenNebula/one
closed
LogDB purge process can break Federation replication
Category: Core & System Priority: High Sponsored Status: Accepted Type: Bug
**Description** OpenNebula replication process (for both HA an Federation) ensure that the previous record is applied before applying a new one. Currently the previous record is not being properly selected for federated records. **To Reproduce** In a federation environment, the purge process have to delete the `LAST_FED_RECORD_IDX - 1` record, so when the `LAST_FED_RECORD_IDX` is going to be applied the previous one cannot be found. Which breaks the replication process. Note that for this to happen `LAST_FED_RECORD_IDX` must correspond with a federated record while `LAST_FED_RECORD_IDX - 1` should be a not federated record **Expected behavior** `oned` should be smarter when taking the previous record of a federated record instead of just taking `LAST_FED_RECORD_IDX - 1` **Details** - Affected Component: Federation <!--////////////////////////////////////////////--> <!-- 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
LogDB purge process can break Federation replication - **Description** OpenNebula replication process (for both HA an Federation) ensure that the previous record is applied before applying a new one. Currently the previous record is not being properly selected for federated records. **To Reproduce** In a federation environment, the purge process have to delete the `LAST_FED_RECORD_IDX - 1` record, so when the `LAST_FED_RECORD_IDX` is going to be applied the previous one cannot be found. Which breaks the replication process. Note that for this to happen `LAST_FED_RECORD_IDX` must correspond with a federated record while `LAST_FED_RECORD_IDX - 1` should be a not federated record **Expected behavior** `oned` should be smarter when taking the previous record of a federated record instead of just taking `LAST_FED_RECORD_IDX - 1` **Details** - Affected Component: Federation <!--////////////////////////////////////////////--> <!-- 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
logdb purge process can break federation replication description opennebula replication process for both ha an federation ensure that the previous record is applied before applying a new one currently the previous record is not being properly selected for federated records to reproduce in a federation environment the purge process have to delete the last fed record idx record so when the last fed record idx is going to be applied the previous one cannot be found which breaks the replication process note that for this to happen last fed record idx must correspond with a federated record while last fed record idx should be a not federated record expected behavior oned should be smarter when taking the previous record of a federated record instead of just taking last fed record idx details affected component federation 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
177,119
6,574,554,646
IssuesEvent
2017-09-11 13:19:07
OpenWebslides/OpenWebslides
https://api.github.com/repos/OpenWebslides/OpenWebslides
closed
Fix file upload in containers
backend bug high priority operations
Due to the Docker containerization, uploading files will always fail (files are in the NGINX container, not the sidekiq or app container).
1.0
Fix file upload in containers - Due to the Docker containerization, uploading files will always fail (files are in the NGINX container, not the sidekiq or app container).
priority
fix file upload in containers due to the docker containerization uploading files will always fail files are in the nginx container not the sidekiq or app container
1
165,274
6,266,519,544
IssuesEvent
2017-07-17 02:34:28
jessesquires/JSQMessagesViewController
https://api.github.com/repos/jessesquires/JSQMessagesViewController
closed
Double-tap on textViews shows "copy/define" menu if selectable == YES
bug duplicate priority: high
double tap cell, show menu,choose "copy" will crash
1.0
Double-tap on textViews shows "copy/define" menu if selectable == YES - double tap cell, show menu,choose "copy" will crash
priority
double tap on textviews shows copy define menu if selectable yes double tap cell show menu choose copy will crash
1
346,000
10,382,860,975
IssuesEvent
2019-09-10 08:26:38
OpenSRP/opensrp-client-chw
https://api.github.com/repos/OpenSRP/opensrp-client-chw
closed
Reformat the exported preview data
high priority
To make it easy for the client to review and mark the household records that should be deleted. This is blocked until @manutarus shares the data export. He should be sharing this this morning.
1.0
Reformat the exported preview data - To make it easy for the client to review and mark the household records that should be deleted. This is blocked until @manutarus shares the data export. He should be sharing this this morning.
priority
reformat the exported preview data to make it easy for the client to review and mark the household records that should be deleted this is blocked until manutarus shares the data export he should be sharing this this morning
1
227,151
7,527,496,971
IssuesEvent
2018-04-13 17:16:15
trellis-ldp/trellis
https://api.github.com/repos/trellis-ldp/trellis
closed
Generalize trellis-app components
area/app priority/high
The `trellis-app` module has a hard dependency on `trellis-triplestore`, so re-using the `trellis-app` code for a different persistence layer isn't ideal. It would be better to factor all common elements into a `trellis-app-common` module -- one that has very few dependencies and then wire those together. For example, much of what makes up the current `TrellisApplication` could be made into an abstract base class with some functions that need to be overridden, such as: ```java abstract public Optional<ResourceService> getResourceService(); abstract public Optional<AuditService> getAuditService(); abstract public Optional<EventService> getEventService(); ``` By using `Optional<T>` types, the base implementation code can select a no-op version in the absence of a wired-in service. For instance: ```java final EventService eventService = getEventService.orElseGet(NoopEventService::new); ```
1.0
Generalize trellis-app components - The `trellis-app` module has a hard dependency on `trellis-triplestore`, so re-using the `trellis-app` code for a different persistence layer isn't ideal. It would be better to factor all common elements into a `trellis-app-common` module -- one that has very few dependencies and then wire those together. For example, much of what makes up the current `TrellisApplication` could be made into an abstract base class with some functions that need to be overridden, such as: ```java abstract public Optional<ResourceService> getResourceService(); abstract public Optional<AuditService> getAuditService(); abstract public Optional<EventService> getEventService(); ``` By using `Optional<T>` types, the base implementation code can select a no-op version in the absence of a wired-in service. For instance: ```java final EventService eventService = getEventService.orElseGet(NoopEventService::new); ```
priority
generalize trellis app components the trellis app module has a hard dependency on trellis triplestore so re using the trellis app code for a different persistence layer isn t ideal it would be better to factor all common elements into a trellis app common module one that has very few dependencies and then wire those together for example much of what makes up the current trellisapplication could be made into an abstract base class with some functions that need to be overridden such as java abstract public optional getresourceservice abstract public optional getauditservice abstract public optional geteventservice by using optional types the base implementation code can select a no op version in the absence of a wired in service for instance java final eventservice eventservice geteventservice orelseget noopeventservice new
1
590,863
17,789,795,316
IssuesEvent
2021-08-31 14:59:37
wp-media/wp-rocket
https://api.github.com/repos/wp-media/wp-rocket
closed
Compatibility with new Divi update (4.10)
type: bug 3rd party compatibility priority: high effort: [S] severity: moderate module: defer JS module: delay JS
**Before submitting an issue please check that you’ve completed the following steps:** - Made sure you’re on the latest version - Used the search feature to ensure that the bug hasn’t been reported before **Describe the bug** In 4.10 version of Divi, they introduced a couple of enhancements and new features: https://www.elegantthemes.com/blog/theme-releases/divi-performance For now, the only feature that seems to be causing problems is `Enqueue jQuery Compatibility Script` (enabled by default). They're adding the following inline script to the top of the source: http://snippi.com/s/cke9uvo It causes problems with DelayJS and DeferJS. We need to exclude it to avoid errors in JS console (I haven't observed any problems with the functionalities of the site, but it's possible). **To Reproduce** Steps to reproduce the behavior: 1. Install newest Divi 2. Create a page in their page builder 3. Enable DelayJS and DeferJS in WPR settings 4. See error **Expected behavior** We shouldn't cause any JS console errors **Screenshots** Errors when Delay and Defer are enabled: ![image](https://user-images.githubusercontent.com/26767037/130083906-805dddcc-78e9-4e92-a1e0-e4d04c508fb1.png) Errors when only Delay is enabled: ![image](https://user-images.githubusercontent.com/26767037/130084135-e6276eb4-a44f-4c9f-88cc-fad4ff5f5a0a.png) Errors when only Defer is enabled: ![image](https://user-images.githubusercontent.com/26767037/130084289-b752b1b3-e46f-460e-adb4-ee04efa0dea5.png) **Additional context** We can exclude them from Delay and Defer using the following pattern `jQuery,customHeadScripts` but we should make sure it doesn't cause any issues. In Mai's case on local it also excluded jQuery files. **Backlog Grooming (for WP Media dev team use only)** - [ ] Reproduce the problem - [ ] Identify the root cause - [ ] Scope a solution - [ ] Estimate the effort
1.0
Compatibility with new Divi update (4.10) - **Before submitting an issue please check that you’ve completed the following steps:** - Made sure you’re on the latest version - Used the search feature to ensure that the bug hasn’t been reported before **Describe the bug** In 4.10 version of Divi, they introduced a couple of enhancements and new features: https://www.elegantthemes.com/blog/theme-releases/divi-performance For now, the only feature that seems to be causing problems is `Enqueue jQuery Compatibility Script` (enabled by default). They're adding the following inline script to the top of the source: http://snippi.com/s/cke9uvo It causes problems with DelayJS and DeferJS. We need to exclude it to avoid errors in JS console (I haven't observed any problems with the functionalities of the site, but it's possible). **To Reproduce** Steps to reproduce the behavior: 1. Install newest Divi 2. Create a page in their page builder 3. Enable DelayJS and DeferJS in WPR settings 4. See error **Expected behavior** We shouldn't cause any JS console errors **Screenshots** Errors when Delay and Defer are enabled: ![image](https://user-images.githubusercontent.com/26767037/130083906-805dddcc-78e9-4e92-a1e0-e4d04c508fb1.png) Errors when only Delay is enabled: ![image](https://user-images.githubusercontent.com/26767037/130084135-e6276eb4-a44f-4c9f-88cc-fad4ff5f5a0a.png) Errors when only Defer is enabled: ![image](https://user-images.githubusercontent.com/26767037/130084289-b752b1b3-e46f-460e-adb4-ee04efa0dea5.png) **Additional context** We can exclude them from Delay and Defer using the following pattern `jQuery,customHeadScripts` but we should make sure it doesn't cause any issues. In Mai's case on local it also excluded jQuery files. **Backlog Grooming (for WP Media dev team use only)** - [ ] Reproduce the problem - [ ] Identify the root cause - [ ] Scope a solution - [ ] Estimate the effort
priority
compatibility with new divi update before submitting an issue please check that you’ve completed the following steps made sure you’re on the latest version used the search feature to ensure that the bug hasn’t been reported before describe the bug in version of divi they introduced a couple of enhancements and new features for now the only feature that seems to be causing problems is enqueue jquery compatibility script enabled by default they re adding the following inline script to the top of the source it causes problems with delayjs and deferjs we need to exclude it to avoid errors in js console i haven t observed any problems with the functionalities of the site but it s possible to reproduce steps to reproduce the behavior install newest divi create a page in their page builder enable delayjs and deferjs in wpr settings see error expected behavior we shouldn t cause any js console errors screenshots errors when delay and defer are enabled errors when only delay is enabled errors when only defer is enabled additional context we can exclude them from delay and defer using the following pattern jquery customheadscripts but we should make sure it doesn t cause any issues in mai s case on local it also excluded jquery files backlog grooming for wp media dev team use only reproduce the problem identify the root cause scope a solution estimate the effort
1
333,896
10,133,058,640
IssuesEvent
2019-08-02 01:26:41
nhn/tui.date-picker
https://api.github.com/repos/nhn/tui.date-picker
closed
jQuery unneeded in bundle
Priority: High Type: Enhancement
Hi there, look at this: ![image](https://user-images.githubusercontent.com/4762399/42979009-f3cc85fc-8c0a-11e8-89b6-6cd404dbd659.png) This shows that your date-picker (and time-picker) are pulling in TWO EXTRA versions of jquery that I do not need. Can you please make them a peer-dependency so that we can manage it ourselves in the NPM bundle. This will make my angular app considerably lighter.
1.0
jQuery unneeded in bundle - Hi there, look at this: ![image](https://user-images.githubusercontent.com/4762399/42979009-f3cc85fc-8c0a-11e8-89b6-6cd404dbd659.png) This shows that your date-picker (and time-picker) are pulling in TWO EXTRA versions of jquery that I do not need. Can you please make them a peer-dependency so that we can manage it ourselves in the NPM bundle. This will make my angular app considerably lighter.
priority
jquery unneeded in bundle hi there look at this this shows that your date picker and time picker are pulling in two extra versions of jquery that i do not need can you please make them a peer dependency so that we can manage it ourselves in the npm bundle this will make my angular app considerably lighter
1