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
503,687
14,596,946,692
IssuesEvent
2020-12-20 17:59:01
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
m.olx.pl - site is not usable
browser-firefox-tablet engine-gecko ml-needsdiagnosis-false ml-probability-high priority-important type-tracking-protection-basic
<!-- @browser: Firefox Mobile (Tablet) 68.0 --> <!-- @ua_header: Mozilla/5.0 (Android 10; Tablet; rv:68.0) Gecko/68.0 Firefox/68.0 --> <!-- @reported_with: mobile-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/63908 --> <!-- @extra_labels: type-tracking-protection-basic --> **URL**: https://m.olx.pl/search/ **Browser / Version**: Firefox Mobile (Tablet) 68.0 **Operating System**: Android **Tested Another Browser**: No **Problem type**: Site is not usable **Description**: Unable to type **Steps to Reproduce**: While typing the characters are suddenly being deleted. <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: 20200827194101</li><li>channel: default</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: true (basic)</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/12/e3da604f-59f9-4c28-b153-a03f8341c25e) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
m.olx.pl - site is not usable - <!-- @browser: Firefox Mobile (Tablet) 68.0 --> <!-- @ua_header: Mozilla/5.0 (Android 10; Tablet; rv:68.0) Gecko/68.0 Firefox/68.0 --> <!-- @reported_with: mobile-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/63908 --> <!-- @extra_labels: type-tracking-protection-basic --> **URL**: https://m.olx.pl/search/ **Browser / Version**: Firefox Mobile (Tablet) 68.0 **Operating System**: Android **Tested Another Browser**: No **Problem type**: Site is not usable **Description**: Unable to type **Steps to Reproduce**: While typing the characters are suddenly being deleted. <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: 20200827194101</li><li>channel: default</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: true (basic)</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2020/12/e3da604f-59f9-4c28-b153-a03f8341c25e) _From [webcompat.com](https://webcompat.com/) with ❤️_
priority
m olx pl site is not usable url browser version firefox mobile tablet operating system android tested another browser no problem type site is not usable description unable to type steps to reproduce while typing the characters are suddenly being deleted browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel default hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked true basic from with ❤️
1
132,374
5,184,881,581
IssuesEvent
2017-01-20 08:24:23
dodoas/lodo
https://api.github.com/repos/dodoas/lodo
closed
Car
HIGH PRIORITY
- [x] You have to punch a number too create a car, it should auto increment the ID - [x] It doesn't create a car on ID 0 which it should - If you have question(s) contact me(@agvald)
1.0
Car - - [x] You have to punch a number too create a car, it should auto increment the ID - [x] It doesn't create a car on ID 0 which it should - If you have question(s) contact me(@agvald)
priority
car you have to punch a number too create a car it should auto increment the id it doesn t create a car on id which it should if you have question s contact me agvald
1
189,128
6,794,442,190
IssuesEvent
2017-11-01 12:11:12
metasfresh/metasfresh-webui-frontend
https://api.github.com/repos/metasfresh/metasfresh-webui-frontend
closed
processes: provide current selected tab and rows
branch:master priority:high type:enhancement
### Is this a bug or feature request? FR ### What is the current behavior? Consider a single document window (e.g. one sales order - https://w101.metasfresh.com:8443/window/143/1000111). When pressing on Actions menu, the actions for current document are queried (see http://w101.metasfresh.com:8081/swagger-ui.html#!/window-rest-controller/getDocumentActionsUsingGET_1 ). Also, the actions for current selected included row from current selected tab where queried, but at the moment of writing this, that feature is broken and shall be fixed by #1279. But that's not in the scope of this task. ![image](https://user-images.githubusercontent.com/1244701/31930714-62b24460-b8a9-11e7-8505-5cf3d7366059.png) ### What is the expected or desired behavior? #### Provide selectedTabId and selectedRowIds when querying for document actions When calling the [/rest/api/window/{windowId}/{documentId}/actions](http://w101.metasfresh.com:8081/swagger-ui.html#!/window-rest-controller/getDocumentActionsUsingGET_1) also provide following query (URL) params: * selectedTabId - which is the currently selected tab Id. e.g. in the case of a Sales order if the Order Line is the selected tab then selectedTabId=1 * selectedRowIds - which are the currently selected row Ids in the "selectedTabId". #### Provide "selectedTab" info when creating a new process instance When creating a new process instrance, i.e. calling [POST /rest/api/process/{processId}](http://w101.metasfresh.com:8081/swagger-ui.html#!/process-rest-controller/createInstanceFromRequestUsingPOST), please also provide currently selected tab and rows informations if available. i.e. the request body shall also contain: ```json "selectedTab": { "tabId": "currently selected tab ID", "rowIds": [ "currently selected rowIds from currently selected tabId" ] ``` ### References The backend was implemented by https://github.com/metasfresh/metasfresh-webui-api/issues/645 Required for https://github.com/metasfresh/metasfresh/issues/2564.
1.0
processes: provide current selected tab and rows - ### Is this a bug or feature request? FR ### What is the current behavior? Consider a single document window (e.g. one sales order - https://w101.metasfresh.com:8443/window/143/1000111). When pressing on Actions menu, the actions for current document are queried (see http://w101.metasfresh.com:8081/swagger-ui.html#!/window-rest-controller/getDocumentActionsUsingGET_1 ). Also, the actions for current selected included row from current selected tab where queried, but at the moment of writing this, that feature is broken and shall be fixed by #1279. But that's not in the scope of this task. ![image](https://user-images.githubusercontent.com/1244701/31930714-62b24460-b8a9-11e7-8505-5cf3d7366059.png) ### What is the expected or desired behavior? #### Provide selectedTabId and selectedRowIds when querying for document actions When calling the [/rest/api/window/{windowId}/{documentId}/actions](http://w101.metasfresh.com:8081/swagger-ui.html#!/window-rest-controller/getDocumentActionsUsingGET_1) also provide following query (URL) params: * selectedTabId - which is the currently selected tab Id. e.g. in the case of a Sales order if the Order Line is the selected tab then selectedTabId=1 * selectedRowIds - which are the currently selected row Ids in the "selectedTabId". #### Provide "selectedTab" info when creating a new process instance When creating a new process instrance, i.e. calling [POST /rest/api/process/{processId}](http://w101.metasfresh.com:8081/swagger-ui.html#!/process-rest-controller/createInstanceFromRequestUsingPOST), please also provide currently selected tab and rows informations if available. i.e. the request body shall also contain: ```json "selectedTab": { "tabId": "currently selected tab ID", "rowIds": [ "currently selected rowIds from currently selected tabId" ] ``` ### References The backend was implemented by https://github.com/metasfresh/metasfresh-webui-api/issues/645 Required for https://github.com/metasfresh/metasfresh/issues/2564.
priority
processes provide current selected tab and rows is this a bug or feature request fr what is the current behavior consider a single document window e g one sales order when pressing on actions menu the actions for current document are queried see also the actions for current selected included row from current selected tab where queried but at the moment of writing this that feature is broken and shall be fixed by but that s not in the scope of this task what is the expected or desired behavior provide selectedtabid and selectedrowids when querying for document actions when calling the also provide following query url params selectedtabid which is the currently selected tab id e g in the case of a sales order if the order line is the selected tab then selectedtabid selectedrowids which are the currently selected row ids in the selectedtabid provide selectedtab info when creating a new process instance when creating a new process instrance i e calling please also provide currently selected tab and rows informations if available i e the request body shall also contain json selectedtab tabid currently selected tab id rowids references the backend was implemented by required for
1
24,426
2,667,574,186
IssuesEvent
2015-03-22 18:52:28
IQSS/dataverse
https://api.github.com/repos/IQSS/dataverse
closed
Only Built-in Users are DvObject Creators
Component: High-level Priority: Medium Status: QA Type: Bug
This appears to be a bug: - A DvObject creator is a BuiltInUser - For the new Auth model, creator should be an AuthenticatedUser. https://github.com/IQSS/dataverse/blob/42692f5681ee65ea982b66656d7683bf0e015725/src/main/java/edu/harvard/iq/dataverse/DvObject.java#L55
1.0
Only Built-in Users are DvObject Creators - This appears to be a bug: - A DvObject creator is a BuiltInUser - For the new Auth model, creator should be an AuthenticatedUser. https://github.com/IQSS/dataverse/blob/42692f5681ee65ea982b66656d7683bf0e015725/src/main/java/edu/harvard/iq/dataverse/DvObject.java#L55
priority
only built in users are dvobject creators this appears to be a bug a dvobject creator is a builtinuser for the new auth model creator should be an authenticateduser
1
414,244
12,101,251,905
IssuesEvent
2020-04-20 14:57:41
goby-lang/goby
https://api.github.com/repos/goby-lang/goby
closed
Equality methods/operators
Feature Priority High VM
Ruby supports 4 equality methods/operators: - `==` - `===` - `eql?` - `equal?` they're traditionally confusing for devs (at least, beginners), although they do have specific semantics. I think the Goby implementation/compatibility should be discussed, in particular, before the new testing framework release, since the testing framework will need to respect all the operator semantics.
1.0
Equality methods/operators - Ruby supports 4 equality methods/operators: - `==` - `===` - `eql?` - `equal?` they're traditionally confusing for devs (at least, beginners), although they do have specific semantics. I think the Goby implementation/compatibility should be discussed, in particular, before the new testing framework release, since the testing framework will need to respect all the operator semantics.
priority
equality methods operators ruby supports equality methods operators eql equal they re traditionally confusing for devs at least beginners although they do have specific semantics i think the goby implementation compatibility should be discussed in particular before the new testing framework release since the testing framework will need to respect all the operator semantics
1
631,780
20,160,091,568
IssuesEvent
2022-02-09 20:30:39
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
opened
Custom function recent change introduces bad refcounting
high priority module: autograd triaged
### 🐛 Describe the bug At least this test triggers an internal assert when running debug python build. ``` test_custom_function_save_for_forward (__main__.TestAutograd) ... /home/alban/local/installs/python3.8/debug/install/include/python3.8d/object.h:541: _Py_NegativeRefcount: Assertion failed: object has negative ref count Enable tracemalloc to get the memory block allocation traceback object address : 0x7ffd894af4b0 object refcount : -1 object type : 0x5555558d3ac0 object type name: tuple object repr : <refcnt -1 at 0x7ffd894af4b0> Fatal Python error: _PyObject_AssertFailed Python runtime state: initialized Thread 0x00007ffd89ccb700 (most recent call first): <no Python frame> ``` ### Versions Master
1.0
Custom function recent change introduces bad refcounting - ### 🐛 Describe the bug At least this test triggers an internal assert when running debug python build. ``` test_custom_function_save_for_forward (__main__.TestAutograd) ... /home/alban/local/installs/python3.8/debug/install/include/python3.8d/object.h:541: _Py_NegativeRefcount: Assertion failed: object has negative ref count Enable tracemalloc to get the memory block allocation traceback object address : 0x7ffd894af4b0 object refcount : -1 object type : 0x5555558d3ac0 object type name: tuple object repr : <refcnt -1 at 0x7ffd894af4b0> Fatal Python error: _PyObject_AssertFailed Python runtime state: initialized Thread 0x00007ffd89ccb700 (most recent call first): <no Python frame> ``` ### Versions Master
priority
custom function recent change introduces bad refcounting 🐛 describe the bug at least this test triggers an internal assert when running debug python build test custom function save for forward main testautograd home alban local installs debug install include object h py negativerefcount assertion failed object has negative ref count enable tracemalloc to get the memory block allocation traceback object address object refcount object type object type name tuple object repr fatal python error pyobject assertfailed python runtime state initialized thread most recent call first versions master
1
106,250
4,266,037,568
IssuesEvent
2016-07-12 13:24:44
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
closed
Feature Info do not correctly calculate coordinates
bug in progress Priority: High
To replicate click on honolulu zooming at resolutions of 18489335. At resolution 9244667 it works instead.
1.0
Feature Info do not correctly calculate coordinates - To replicate click on honolulu zooming at resolutions of 18489335. At resolution 9244667 it works instead.
priority
feature info do not correctly calculate coordinates to replicate click on honolulu zooming at resolutions of at resolution it works instead
1
604,774
18,718,584,162
IssuesEvent
2021-11-03 09:09:24
SAP/xsk
https://api.github.com/repos/SAP/xsk
opened
Algorithm for ready state in dependency chain
core priority-high effort-high
# Background There are artifacts that have dependencies between them and one needs to be created after another (ie 1 procedure is calling another) # Target Design an approach to reconcile resources and reapply them after its dependencies are created. For example, upon parsing a resource, a dependency list is created, then when a synchronizer is triggered, it will check if all dependencies are ready and then it will apply it.
1.0
Algorithm for ready state in dependency chain - # Background There are artifacts that have dependencies between them and one needs to be created after another (ie 1 procedure is calling another) # Target Design an approach to reconcile resources and reapply them after its dependencies are created. For example, upon parsing a resource, a dependency list is created, then when a synchronizer is triggered, it will check if all dependencies are ready and then it will apply it.
priority
algorithm for ready state in dependency chain background there are artifacts that have dependencies between them and one needs to be created after another ie procedure is calling another target design an approach to reconcile resources and reapply them after its dependencies are created for example upon parsing a resource a dependency list is created then when a synchronizer is triggered it will check if all dependencies are ready and then it will apply it
1
491,496
14,165,194,328
IssuesEvent
2020-11-12 06:45:56
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
new.edmodo.com - site is not usable
browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-normal
<!-- @browser: Firefox 83.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:83.0) Gecko/20100101 Firefox/83.0 --> <!-- @reported_with: desktop-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/61626 --> **URL**: https://new.edmodo.com/login **Browser / Version**: Firefox 83.0 **Operating System**: Windows 10 **Tested Another Browser**: Yes Chrome **Problem type**: Site is not usable **Description**: Unable to login **Steps to Reproduce**: I'm unable to log into my classes <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: 20201110140026</li><li>channel: release</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/11/541d42f1-09d7-4d6f-8ce0-a4ee642b8707) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
new.edmodo.com - site is not usable - <!-- @browser: Firefox 83.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:83.0) Gecko/20100101 Firefox/83.0 --> <!-- @reported_with: desktop-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/61626 --> **URL**: https://new.edmodo.com/login **Browser / Version**: Firefox 83.0 **Operating System**: Windows 10 **Tested Another Browser**: Yes Chrome **Problem type**: Site is not usable **Description**: Unable to login **Steps to Reproduce**: I'm unable to log into my classes <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: 20201110140026</li><li>channel: release</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/11/541d42f1-09d7-4d6f-8ce0-a4ee642b8707) _From [webcompat.com](https://webcompat.com/) with ❤️_
priority
new edmodo com site is not usable url browser version firefox operating system windows tested another browser yes chrome problem type site is not usable description unable to login steps to reproduce i m unable to log into my classes browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel release hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
1
703,330
24,153,970,569
IssuesEvent
2022-09-22 05:36:49
FinalProject-AIPARK/JenaPark-BE
https://api.github.com/repos/FinalProject-AIPARK/JenaPark-BE
closed
AudioSample Entity 생성
Priority: High Status: Done Type: Feature/Function
## 설명 AudioSample Entity 생성 오디오 샘플 리스트를 반환하는 로직 구현 ## 할 일 - [x] 오디오 샘플 request/responseDto 생성 - [x] 조건에 따라 오디오 샘플 리스트 조회 ## 기타 참조 및 링크를 첨부하시오.
1.0
AudioSample Entity 생성 - ## 설명 AudioSample Entity 생성 오디오 샘플 리스트를 반환하는 로직 구현 ## 할 일 - [x] 오디오 샘플 request/responseDto 생성 - [x] 조건에 따라 오디오 샘플 리스트 조회 ## 기타 참조 및 링크를 첨부하시오.
priority
audiosample entity 생성 설명 audiosample entity 생성 오디오 샘플 리스트를 반환하는 로직 구현 할 일 오디오 샘플 request responsedto 생성 조건에 따라 오디오 샘플 리스트 조회 기타 참조 및 링크를 첨부하시오
1
249,465
7,962,274,217
IssuesEvent
2018-07-13 13:49:47
JacquesCarette/Drasil
https://api.github.com/repos/JacquesCarette/Drasil
closed
Merging branches in
High Priority
It is becoming very high priority that the work of @halonazhao and @deviprasad135 be merged into master. That means merging master into their branch first, and then doing an orderly merge back. Then we need a process (Pull Requests and smaller branches?) which we can keep on top of.
1.0
Merging branches in - It is becoming very high priority that the work of @halonazhao and @deviprasad135 be merged into master. That means merging master into their branch first, and then doing an orderly merge back. Then we need a process (Pull Requests and smaller branches?) which we can keep on top of.
priority
merging branches in it is becoming very high priority that the work of halonazhao and be merged into master that means merging master into their branch first and then doing an orderly merge back then we need a process pull requests and smaller branches which we can keep on top of
1
346,347
10,411,191,779
IssuesEvent
2019-09-13 13:20:24
gsbelarus/check-and-cash
https://api.github.com/repos/gsbelarus/check-and-cash
closed
Оплата заказа/чека
Priority-High Severity - Critical
``` Private Function TenderWithLog(Name, S, Counter) TenderWithLog = false If S > 0 Then if not Tender(S, Counter) then ... ``` Почему только для сумм, которые больше нуля? Часто закрывают чеки с 0 в Итого (100% скидки, сертификаты, и т.д.)
1.0
Оплата заказа/чека - ``` Private Function TenderWithLog(Name, S, Counter) TenderWithLog = false If S > 0 Then if not Tender(S, Counter) then ... ``` Почему только для сумм, которые больше нуля? Часто закрывают чеки с 0 в Итого (100% скидки, сертификаты, и т.д.)
priority
оплата заказа чека private function tenderwithlog name s counter tenderwithlog false if s then if not tender s counter then почему только для сумм которые больше нуля часто закрывают чеки с в итого скидки сертификаты и т д
1
455,413
13,126,350,493
IssuesEvent
2020-08-06 08:26:10
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
opened
Developer Portal Try out page Get Test Key not working
Priority/High Type/Bug Type/React-UI
### Description: <!-- Describe the issue --> Developer Portal Try out Get Test Key not working ![image](https://user-images.githubusercontent.com/20179540/89508481-9a0c3880-d7eb-11ea-9a70-0435b275a422.png) ### Steps to reproduce: ### Affected Product Version: <!-- Members can use Affected/*** labels --> RC2 ### Environment details (with versions): - OS: - Client: - Env (Docker/K8s): --- ### Optional Fields #### Related Issues: <!-- Any related issues from this/other repositories--> #### Suggested Labels: <!--Only to be used by non-members--> #### Suggested Assignees: <!--Only to be used by non-members-->
1.0
Developer Portal Try out page Get Test Key not working - ### Description: <!-- Describe the issue --> Developer Portal Try out Get Test Key not working ![image](https://user-images.githubusercontent.com/20179540/89508481-9a0c3880-d7eb-11ea-9a70-0435b275a422.png) ### Steps to reproduce: ### Affected Product Version: <!-- Members can use Affected/*** labels --> RC2 ### Environment details (with versions): - OS: - Client: - Env (Docker/K8s): --- ### Optional Fields #### Related Issues: <!-- Any related issues from this/other repositories--> #### Suggested Labels: <!--Only to be used by non-members--> #### Suggested Assignees: <!--Only to be used by non-members-->
priority
developer portal try out page get test key not working description developer portal try out get test key not working steps to reproduce affected product version environment details with versions os client env docker optional fields related issues suggested labels suggested assignees
1
764,365
26,797,379,268
IssuesEvent
2023-02-01 12:53:48
ooni/probe
https://api.github.com/repos/ooni/probe
closed
systemresolver: make sure we emit a canonical CNAME
bug priority/high data quality ooni/probe-engine
Please, consider [this measurement](https://explorer.ooni.org/measurement/20230201T122940Z_webconnectivity_IT_30722_n1_h1njUB45xzy6OSaD?input=https%3A%2F%2Fwww.polito.it). If you only check the `CNAME`s, you see that we have `webvip-01.polito.it` for the system resolver and `webvip-01.polito.it.` (i.e., with a trailing dot) for other resolvers. This is a system resolver bug. We should canonicalize the name returned by `CNAME` lookups.
1.0
systemresolver: make sure we emit a canonical CNAME - Please, consider [this measurement](https://explorer.ooni.org/measurement/20230201T122940Z_webconnectivity_IT_30722_n1_h1njUB45xzy6OSaD?input=https%3A%2F%2Fwww.polito.it). If you only check the `CNAME`s, you see that we have `webvip-01.polito.it` for the system resolver and `webvip-01.polito.it.` (i.e., with a trailing dot) for other resolvers. This is a system resolver bug. We should canonicalize the name returned by `CNAME` lookups.
priority
systemresolver make sure we emit a canonical cname please consider if you only check the cname s you see that we have webvip polito it for the system resolver and webvip polito it i e with a trailing dot for other resolvers this is a system resolver bug we should canonicalize the name returned by cname lookups
1
435,991
12,543,877,962
IssuesEvent
2020-06-05 16:17:05
getting-things-gnome/gtg
https://api.github.com/repos/getting-things-gnome/gtg
opened
Some subtasks that should show up in the "Actionable" view don't show up
bug priority:high reproducible-in-git
Run with the "screenshots" dataset (`./launch.sh -s screenshots`) and look at the "travel" related tasks: ![Screenshot from 2020-06-05 11-37-29](https://user-images.githubusercontent.com/479401/83895684-09e54080-a721-11ea-8aa6-f90b2188fb47.png) You will notice that tasks with a bunch of subtasks sometimes have only a portion of them showing up in the Actionable view mode: ![Screenshot from 2020-06-05 11-37-32](https://user-images.githubusercontent.com/479401/83895695-0fdb2180-a721-11ea-9118-d8e852863654.png) It might "simply" be something wrong in the logic of how GTG asks liblarch to filter those tasks? It seems it often tries to just get the last item(s) in the list of (sub)subtasks instead of getting _all_ the actionable ones. The problem here is that this could lead to people forgetting to accomplish some tasks because they don't show in their actionable/work view at all...
1.0
Some subtasks that should show up in the "Actionable" view don't show up - Run with the "screenshots" dataset (`./launch.sh -s screenshots`) and look at the "travel" related tasks: ![Screenshot from 2020-06-05 11-37-29](https://user-images.githubusercontent.com/479401/83895684-09e54080-a721-11ea-8aa6-f90b2188fb47.png) You will notice that tasks with a bunch of subtasks sometimes have only a portion of them showing up in the Actionable view mode: ![Screenshot from 2020-06-05 11-37-32](https://user-images.githubusercontent.com/479401/83895695-0fdb2180-a721-11ea-9118-d8e852863654.png) It might "simply" be something wrong in the logic of how GTG asks liblarch to filter those tasks? It seems it often tries to just get the last item(s) in the list of (sub)subtasks instead of getting _all_ the actionable ones. The problem here is that this could lead to people forgetting to accomplish some tasks because they don't show in their actionable/work view at all...
priority
some subtasks that should show up in the actionable view don t show up run with the screenshots dataset launch sh s screenshots and look at the travel related tasks you will notice that tasks with a bunch of subtasks sometimes have only a portion of them showing up in the actionable view mode it might simply be something wrong in the logic of how gtg asks liblarch to filter those tasks it seems it often tries to just get the last item s in the list of sub subtasks instead of getting all the actionable ones the problem here is that this could lead to people forgetting to accomplish some tasks because they don t show in their actionable work view at all
1
465,401
13,384,867,724
IssuesEvent
2020-09-02 12:41:03
wso2/docs-ei
https://api.github.com/repos/wso2/docs-ei
closed
Update documentation on the required maven version for Docker build
Priority/Highest micro-integrator
**Description:** With the new Spotify plugin version upgrade in docker and kubernetes projects, we need to have Maven >= 3.5.2 to build those projects. We need to update the documentation accordingly. [1] https://awesomeopensource.com/project/spotify/dockerfile-maven **Suggested Labels:** <!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels--> **Suggested Assignees:** <!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees--> **Affected Product Version:** Integration Studio 7.1.0 **OS, DB, other environment details and versions:** **Steps to reproduce:** **Related Issues:** <!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
1.0
Update documentation on the required maven version for Docker build - **Description:** With the new Spotify plugin version upgrade in docker and kubernetes projects, we need to have Maven >= 3.5.2 to build those projects. We need to update the documentation accordingly. [1] https://awesomeopensource.com/project/spotify/dockerfile-maven **Suggested Labels:** <!-- Optional comma separated list of suggested labels. Non committers can’t assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels--> **Suggested Assignees:** <!--Optional comma separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees--> **Affected Product Version:** Integration Studio 7.1.0 **OS, DB, other environment details and versions:** **Steps to reproduce:** **Related Issues:** <!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
priority
update documentation on the required maven version for docker build description with the new spotify plugin version upgrade in docker and kubernetes projects we need to have maven to build those projects we need to update the documentation accordingly suggested labels suggested assignees affected product version integration studio os db other environment details and versions steps to reproduce related issues
1
132,248
5,173,797,211
IssuesEvent
2017-01-18 16:55:48
Aurorastation/Aurora.3
https://api.github.com/repos/Aurorastation/Aurora.3
closed
Monkeys not being affected by viruses they should be able to get.
bug:confirmed flag:high priority
While doing virology, both today and a few other times since the code update, I've been totally unable to infect monkeys with viruses from blood syringes. Even if the virus lists monkeys as an infected species. This has led to me needing to stick patients with radium.
1.0
Monkeys not being affected by viruses they should be able to get. - While doing virology, both today and a few other times since the code update, I've been totally unable to infect monkeys with viruses from blood syringes. Even if the virus lists monkeys as an infected species. This has led to me needing to stick patients with radium.
priority
monkeys not being affected by viruses they should be able to get while doing virology both today and a few other times since the code update i ve been totally unable to infect monkeys with viruses from blood syringes even if the virus lists monkeys as an infected species this has led to me needing to stick patients with radium
1
266,109
8,363,033,682
IssuesEvent
2018-10-03 18:34:13
cassproject/cass-editor
https://api.github.com/repos/cassproject/cass-editor
closed
Missing data in the JSON-LD competency framework export
High Priority
The following properties that contain data in records are not showing up in JSON-LD export data: ### COMPETENCY FRAMEWORK >audienceLevel dateCreated identifier isVersionOf conceptTerm educationLevel publicationStatusType publisher rightsHolder ### COMPETENCY >isChildOf dateCreated
1.0
Missing data in the JSON-LD competency framework export - The following properties that contain data in records are not showing up in JSON-LD export data: ### COMPETENCY FRAMEWORK >audienceLevel dateCreated identifier isVersionOf conceptTerm educationLevel publicationStatusType publisher rightsHolder ### COMPETENCY >isChildOf dateCreated
priority
missing data in the json ld competency framework export the following properties that contain data in records are not showing up in json ld export data competency framework audiencelevel datecreated identifier isversionof conceptterm educationlevel publicationstatustype publisher rightsholder competency ischildof datecreated
1
586,230
17,573,255,663
IssuesEvent
2021-08-15 05:22:00
woowa-techcamp-2021/store-6
https://api.github.com/repos/woowa-techcamp-2021/store-6
opened
[FE] 공통 API 및 Types 작성
high priority feat
## :hammer: 기능 설명 API 요청 함수들 및 공통적으로 사용되는 Type들에 대해서 정의합니다. ## 📑 완료 조건 - [ ] fetch, axios 등을 사용해서 API 요청 함수들을 작성합니다. - [ ] 로그인하고나서 반환되는 토큰은 Header에 추가되어야 합니다. - [ ] API 요청 함수를 사용하는 측에서 적절한 에러 처리를 할 수 있도록 제공해야 합니다. - [ ] 응답되는 데이터에 대해서 Type으로 정의를 해주고 다른 컴포넌트 등에서 사용할 수 있게 해야 합니다. ## :thought_balloon: 관련 Backlog > [대분류] - [중분류] - [Backlog 이름] [FE] 기타 - API - 공통 API 및 Types 작성
1.0
[FE] 공통 API 및 Types 작성 - ## :hammer: 기능 설명 API 요청 함수들 및 공통적으로 사용되는 Type들에 대해서 정의합니다. ## 📑 완료 조건 - [ ] fetch, axios 등을 사용해서 API 요청 함수들을 작성합니다. - [ ] 로그인하고나서 반환되는 토큰은 Header에 추가되어야 합니다. - [ ] API 요청 함수를 사용하는 측에서 적절한 에러 처리를 할 수 있도록 제공해야 합니다. - [ ] 응답되는 데이터에 대해서 Type으로 정의를 해주고 다른 컴포넌트 등에서 사용할 수 있게 해야 합니다. ## :thought_balloon: 관련 Backlog > [대분류] - [중분류] - [Backlog 이름] [FE] 기타 - API - 공통 API 및 Types 작성
priority
공통 api 및 types 작성 hammer 기능 설명 api 요청 함수들 및 공통적으로 사용되는 type들에 대해서 정의합니다 📑 완료 조건 fetch axios 등을 사용해서 api 요청 함수들을 작성합니다 로그인하고나서 반환되는 토큰은 header에 추가되어야 합니다 api 요청 함수를 사용하는 측에서 적절한 에러 처리를 할 수 있도록 제공해야 합니다 응답되는 데이터에 대해서 type으로 정의를 해주고 다른 컴포넌트 등에서 사용할 수 있게 해야 합니다 thought balloon 관련 backlog 기타 api 공통 api 및 types 작성
1
361,933
10,721,493,085
IssuesEvent
2019-10-27 03:08:04
AY1920S1-CS2103T-F12-2/main
https://api.github.com/repos/AY1920S1-CS2103T-F12-2/main
closed
Follow-Up-System: Implementation
priority.High status.Ongoing type.Epic v1.3
Allow users to create a follow-up entry with a specific patient so they are notified after some time when some time has passed or when the patient's medicine has run out.
1.0
Follow-Up-System: Implementation - Allow users to create a follow-up entry with a specific patient so they are notified after some time when some time has passed or when the patient's medicine has run out.
priority
follow up system implementation allow users to create a follow up entry with a specific patient so they are notified after some time when some time has passed or when the patient s medicine has run out
1
32,159
2,744,233,249
IssuesEvent
2015-04-22 05:18:42
BrainSlugs83/NewBiospheresMod
https://api.github.com/repos/BrainSlugs83/NewBiospheresMod
closed
Mod id for /give purposes contains spaces
Bug Priority: High
As a result you cannot /give any blocks that New Biospheres Mod adds, as /give doesn't have any way to escape spaces. (Well, you sort of can, but you have to do it numerically, which means you have to already know the ID) Not much of a problem for now, but something to keep in mind for if NBM adds any actual blocks.
1.0
Mod id for /give purposes contains spaces - As a result you cannot /give any blocks that New Biospheres Mod adds, as /give doesn't have any way to escape spaces. (Well, you sort of can, but you have to do it numerically, which means you have to already know the ID) Not much of a problem for now, but something to keep in mind for if NBM adds any actual blocks.
priority
mod id for give purposes contains spaces as a result you cannot give any blocks that new biospheres mod adds as give doesn t have any way to escape spaces well you sort of can but you have to do it numerically which means you have to already know the id not much of a problem for now but something to keep in mind for if nbm adds any actual blocks
1
113,658
4,566,601,818
IssuesEvent
2016-09-15 07:53:54
silvanheller/cineast
https://api.github.com/repos/silvanheller/cineast
closed
Presentation: Midterms
help wanted priority: high
- [x] Presentation - [x] NN-Demo (Nuns and penguins) - [x] Art from Data Demo
1.0
Presentation: Midterms - - [x] Presentation - [x] NN-Demo (Nuns and penguins) - [x] Art from Data Demo
priority
presentation midterms presentation nn demo nuns and penguins art from data demo
1
318,437
9,692,367,051
IssuesEvent
2019-05-24 13:39:41
qlcchain/go-qlc
https://api.github.com/repos/qlcchain/go-qlc
closed
Implement POV chain - miner reward contract
Priority: High Type: Enhancement
### Description of the issue create and testing reward contract for PoV miner. ### Issue-Type - [ ] bug report - [x] feature request - [ ] Documentation improvement
1.0
Implement POV chain - miner reward contract - ### Description of the issue create and testing reward contract for PoV miner. ### Issue-Type - [ ] bug report - [x] feature request - [ ] Documentation improvement
priority
implement pov chain miner reward contract description of the issue create and testing reward contract for pov miner issue type bug report feature request documentation improvement
1
597,880
18,214,675,326
IssuesEvent
2021-09-30 01:41:41
WordPress/learn
https://api.github.com/repos/WordPress/learn
opened
New 'Other Contributors' field for workshops
[Type] Enhancement [Type] Good First Issue [Priority] High [Component] Workshops
As per the conclusion of the discussion here: https://make.wordpress.org/training/2021/09/21/should-learn-wordpress-contributors-be-gpl-compliant/#comment-3159 Please add a new field to workshops labelled "Other Contributors" that can take a comma-separated list of WordPress.org usernames. These will be contributors to the workshop who are not seen/heard in the video itself. On the front end, these will be listed directly below the current area where workshop presenters are displayed with the title "Other Contributors". Each contributor must be listed only with their name that links to their WordPress.org profile (no bio, avatar or anything else).
1.0
New 'Other Contributors' field for workshops - As per the conclusion of the discussion here: https://make.wordpress.org/training/2021/09/21/should-learn-wordpress-contributors-be-gpl-compliant/#comment-3159 Please add a new field to workshops labelled "Other Contributors" that can take a comma-separated list of WordPress.org usernames. These will be contributors to the workshop who are not seen/heard in the video itself. On the front end, these will be listed directly below the current area where workshop presenters are displayed with the title "Other Contributors". Each contributor must be listed only with their name that links to their WordPress.org profile (no bio, avatar or anything else).
priority
new other contributors field for workshops as per the conclusion of the discussion here please add a new field to workshops labelled other contributors that can take a comma separated list of wordpress org usernames these will be contributors to the workshop who are not seen heard in the video itself on the front end these will be listed directly below the current area where workshop presenters are displayed with the title other contributors each contributor must be listed only with their name that links to their wordpress org profile no bio avatar or anything else
1
219,138
7,333,418,888
IssuesEvent
2018-03-05 19:20:58
chimano/SOEN341_SA2
https://api.github.com/repos/chimano/SOEN341_SA2
opened
Refactor backend to improve code quality
enhancement priority: high task
Improve readability of code by refactoring (1 hour)
1.0
Refactor backend to improve code quality - Improve readability of code by refactoring (1 hour)
priority
refactor backend to improve code quality improve readability of code by refactoring hour
1
469,587
13,521,546,809
IssuesEvent
2020-09-15 07:12:04
wso2/ansible-apim
https://api.github.com/repos/wso2/ansible-apim
closed
Incorrect documentation for patterns
Priority/High Severity/Critical Type/Docs
**Description:** The following documentation for patterns has incorrect instructions. docs/Pattern_2.md docs/Pattern_3.md docs/Pattern_4.md
1.0
Incorrect documentation for patterns - **Description:** The following documentation for patterns has incorrect instructions. docs/Pattern_2.md docs/Pattern_3.md docs/Pattern_4.md
priority
incorrect documentation for patterns description the following documentation for patterns has incorrect instructions docs pattern md docs pattern md docs pattern md
1
99,327
4,052,885,996
IssuesEvent
2016-05-24 05:59:22
damlaren/ogle
https://api.github.com/repos/damlaren/ogle
opened
look into issue with replacing make_unique
priority:very high
not sure why AllocateUniqueObject doesn't work to construct app
1.0
look into issue with replacing make_unique - not sure why AllocateUniqueObject doesn't work to construct app
priority
look into issue with replacing make unique not sure why allocateuniqueobject doesn t work to construct app
1
477,400
13,761,447,071
IssuesEvent
2020-10-07 07:42:49
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
mail.google.com - desktop site instead of mobile site
browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical
<!-- @browser: Firefox 73.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0 --> <!-- @reported_with: desktop-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/59478 --> **URL**: https://mail.google.com/mail/u/0/?tab=wm&ogbl **Browser / Version**: Firefox 73.0 **Operating System**: Windows 7 **Tested Another Browser**: Yes Chrome **Problem type**: Desktop site instead of mobile site **Description**: Desktop site instead of mobile site **Steps to Reproduce**: <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/10/c483472e-7213-416d-a86c-92b68ec098bf.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: 20200112220634</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/10/96920a88-e3e6-4d66-84fe-9e1f51554b0b) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
mail.google.com - desktop site instead of mobile site - <!-- @browser: Firefox 73.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0 --> <!-- @reported_with: desktop-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/59478 --> **URL**: https://mail.google.com/mail/u/0/?tab=wm&ogbl **Browser / Version**: Firefox 73.0 **Operating System**: Windows 7 **Tested Another Browser**: Yes Chrome **Problem type**: Desktop site instead of mobile site **Description**: Desktop site instead of mobile site **Steps to Reproduce**: <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2020/10/c483472e-7213-416d-a86c-92b68ec098bf.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: 20200112220634</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/10/96920a88-e3e6-4d66-84fe-9e1f51554b0b) _From [webcompat.com](https://webcompat.com/) with ❤️_
priority
mail google com desktop site instead of mobile site url browser version firefox operating system windows tested another browser yes chrome problem type desktop site instead of mobile site description desktop site instead of mobile site steps to reproduce view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
1
435,842
12,542,202,578
IssuesEvent
2020-06-05 13:40:34
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
closed
Switchs become completely independent if you redefine one setting of switch group
Priority: High Type: Bug
**Describe the bug** If you change one setting on a switch, part of a switch group, your switch become completely independent regarding all other settings defined in switch group. **To Reproduce** Steps to reproduce the behavior: 1. Create a switch group with a specific config (settings different than defaults) and a switch attached to this switch group: ``` pfperl-api get -M POST /api/v1/config/switch_groups -c '{"id":"bar","description":"bar","voiceVlan": "500","voiceRole": "voix"}' | python -m json.tool pfperl-api get -M POST /api/v1/config/switches -c '{"id":"10.1.1.1","group":"bar","description":"bar1"}' | python -m json.tool ``` Resulting config: ```ini [group bar] voiceRole=voix uplink_dynamic=0 description=bar voiceVlan=500 [10.1.1.1] group=bar uplink_dynamic=0 description=bar1 ``` 1. Change a setting defined in switch group on **switch** (not switch group): ``` pfperl-api get -M PATCH /api/v1/config/switch/10.1.1.1 -c '{"id":"10.1.1.1","voiceVlan":"501"}' | python -m json.tool ``` Resulting config: ```ini [10.1.1.1] group=bar description=bar1 voiceRole=voix voiceVlan=501 ``` => Now, it means that switch is completely independent from switch group for all settings different than defaults redefined in switch group (example: `voiceRole`) even if we never modified this element on switch. Example: ``` pfperl-api get -M PATCH /api/v1/config/switch_group/bar -c '{"id":"bar","voiceRole":"zammit"}' | python -m json.tool ``` Resulting config: ```ini [10.1.1.1] group=bar description=bar1 voiceRole=voix voiceVlan=501 [group bar] voiceRole=zammit description=bar voiceVlan=50 always_trigger=1 ``` We can see that `voiceRole` is still defined to `voix` on switch. **Expected behavior** Switch should only inherit change on `voiceVlan`, not on `voiceRole`.
1.0
Switchs become completely independent if you redefine one setting of switch group - **Describe the bug** If you change one setting on a switch, part of a switch group, your switch become completely independent regarding all other settings defined in switch group. **To Reproduce** Steps to reproduce the behavior: 1. Create a switch group with a specific config (settings different than defaults) and a switch attached to this switch group: ``` pfperl-api get -M POST /api/v1/config/switch_groups -c '{"id":"bar","description":"bar","voiceVlan": "500","voiceRole": "voix"}' | python -m json.tool pfperl-api get -M POST /api/v1/config/switches -c '{"id":"10.1.1.1","group":"bar","description":"bar1"}' | python -m json.tool ``` Resulting config: ```ini [group bar] voiceRole=voix uplink_dynamic=0 description=bar voiceVlan=500 [10.1.1.1] group=bar uplink_dynamic=0 description=bar1 ``` 1. Change a setting defined in switch group on **switch** (not switch group): ``` pfperl-api get -M PATCH /api/v1/config/switch/10.1.1.1 -c '{"id":"10.1.1.1","voiceVlan":"501"}' | python -m json.tool ``` Resulting config: ```ini [10.1.1.1] group=bar description=bar1 voiceRole=voix voiceVlan=501 ``` => Now, it means that switch is completely independent from switch group for all settings different than defaults redefined in switch group (example: `voiceRole`) even if we never modified this element on switch. Example: ``` pfperl-api get -M PATCH /api/v1/config/switch_group/bar -c '{"id":"bar","voiceRole":"zammit"}' | python -m json.tool ``` Resulting config: ```ini [10.1.1.1] group=bar description=bar1 voiceRole=voix voiceVlan=501 [group bar] voiceRole=zammit description=bar voiceVlan=50 always_trigger=1 ``` We can see that `voiceRole` is still defined to `voix` on switch. **Expected behavior** Switch should only inherit change on `voiceVlan`, not on `voiceRole`.
priority
switchs become completely independent if you redefine one setting of switch group describe the bug if you change one setting on a switch part of a switch group your switch become completely independent regarding all other settings defined in switch group to reproduce steps to reproduce the behavior create a switch group with a specific config settings different than defaults and a switch attached to this switch group pfperl api get m post api config switch groups c id bar description bar voicevlan voicerole voix python m json tool pfperl api get m post api config switches c id group bar description python m json tool resulting config ini voicerole voix uplink dynamic description bar voicevlan group bar uplink dynamic description change a setting defined in switch group on switch not switch group pfperl api get m patch api config switch c id voicevlan python m json tool resulting config ini group bar description voicerole voix voicevlan now it means that switch is completely independent from switch group for all settings different than defaults redefined in switch group example voicerole even if we never modified this element on switch example pfperl api get m patch api config switch group bar c id bar voicerole zammit python m json tool resulting config ini group bar description voicerole voix voicevlan voicerole zammit description bar voicevlan always trigger we can see that voicerole is still defined to voix on switch expected behavior switch should only inherit change on voicevlan not on voicerole
1
395,810
11,696,766,571
IssuesEvent
2020-03-06 10:24:59
ahmedkaludi/accelerated-mobile-pages
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
closed
Custom JavaScript are not allowed issue
NEXT UPDATE [Priority: HIGH] bug
When we enable this two option "Convert AMP to WP theme (Beta)" and "Back to Top link" then validation error will appear - https://monosnap.com/direct/QOsbHmHguymp6w8UJCClcelLfsuXWZ
1.0
Custom JavaScript are not allowed issue - When we enable this two option "Convert AMP to WP theme (Beta)" and "Back to Top link" then validation error will appear - https://monosnap.com/direct/QOsbHmHguymp6w8UJCClcelLfsuXWZ
priority
custom javascript are not allowed issue when we enable this two option convert amp to wp theme beta and back to top link then validation error will appear
1
138,320
5,331,807,678
IssuesEvent
2017-02-15 20:25:37
phetsims/joist
https://api.github.com/repos/phetsims/joist
closed
Deselected homescreen buttons should start grayish
priority:2-high type:bug
@ariel-phet pointed out that the new Joist homescreen buttons all start bright instead of the deselected ones starting out grayish (as they used to). Perhaps this broke in recent refactoring. I'll take a look shortly.
1.0
Deselected homescreen buttons should start grayish - @ariel-phet pointed out that the new Joist homescreen buttons all start bright instead of the deselected ones starting out grayish (as they used to). Perhaps this broke in recent refactoring. I'll take a look shortly.
priority
deselected homescreen buttons should start grayish ariel phet pointed out that the new joist homescreen buttons all start bright instead of the deselected ones starting out grayish as they used to perhaps this broke in recent refactoring i ll take a look shortly
1
779,519
27,355,755,644
IssuesEvent
2023-02-27 12:45:37
snowplow/dbt-snowplow-web
https://api.github.com/repos/snowplow/dbt-snowplow-web
closed
Optional enrichment fields are not correctly prefixed by table alias
priority:high status:has_pr type:bug category:macros
## Describe the bug The `get_context_fields` macro does not correctly process the `table_prefix` argument and instead just writes it directly as a string. ## Steps to reproduce Enable the contexts and run the query on redshift/postgres, the sessions table will fail (page views doesn't use the table prefix argument at the moment). ## Expected results Run will pass ## Actual results Run fails ## Screenshots and log output <!--- If applicable, add screenshots or log output to help explain your problem. ---> ## System information **The contents of your `packages.yml` file:** ```yml # contents goes here ``` **Which database are you using dbt with?** - [ ] postgres - [ ] redshift - [ ] bigquery - [ ] snowflake - [ ] databricks - [ ] other (specify: ____________) **The output of `dbt --version`:** ``` <output goes here> ``` **The operating system you're using:** **The output of `python --version`:** ## Additional context <!--- Add any other context about the problem here. For example, if you think you know which line of code is causing the issue. ---> ## Are you interested in contributing towards the fix? yes
1.0
Optional enrichment fields are not correctly prefixed by table alias - ## Describe the bug The `get_context_fields` macro does not correctly process the `table_prefix` argument and instead just writes it directly as a string. ## Steps to reproduce Enable the contexts and run the query on redshift/postgres, the sessions table will fail (page views doesn't use the table prefix argument at the moment). ## Expected results Run will pass ## Actual results Run fails ## Screenshots and log output <!--- If applicable, add screenshots or log output to help explain your problem. ---> ## System information **The contents of your `packages.yml` file:** ```yml # contents goes here ``` **Which database are you using dbt with?** - [ ] postgres - [ ] redshift - [ ] bigquery - [ ] snowflake - [ ] databricks - [ ] other (specify: ____________) **The output of `dbt --version`:** ``` <output goes here> ``` **The operating system you're using:** **The output of `python --version`:** ## Additional context <!--- Add any other context about the problem here. For example, if you think you know which line of code is causing the issue. ---> ## Are you interested in contributing towards the fix? yes
priority
optional enrichment fields are not correctly prefixed by table alias describe the bug the get context fields macro does not correctly process the table prefix argument and instead just writes it directly as a string steps to reproduce enable the contexts and run the query on redshift postgres the sessions table will fail page views doesn t use the table prefix argument at the moment expected results run will pass actual results run fails screenshots and log output if applicable add screenshots or log output to help explain your problem system information the contents of your packages yml file yml contents goes here which database are you using dbt with postgres redshift bigquery snowflake databricks other specify the output of dbt version the operating system you re using the output of python version additional context add any other context about the problem here for example if you think you know which line of code is causing the issue are you interested in contributing towards the fix yes
1
708,241
24,334,990,200
IssuesEvent
2022-10-01 01:21:52
AMastryukov/LD51
https://api.github.com/repos/AMastryukov/LD51
opened
Game Map Asset(s)
High Priority 3D Asset Art
**Description** The 3D level where the game takes place (will link concept art when available) **References** ![Embedded Image](http link goes here)
1.0
Game Map Asset(s) - **Description** The 3D level where the game takes place (will link concept art when available) **References** ![Embedded Image](http link goes here)
priority
game map asset s description the level where the game takes place will link concept art when available references http link goes here
1
667,938
22,534,324,731
IssuesEvent
2022-06-25 02:05:02
minifemtovalen/LIM017-md-links
https://api.github.com/repos/minifemtovalen/LIM017-md-links
closed
**Story 4**
enhancement high priority
*As a user, I want to read a file, so that the links inside can be extracted* **AC:** - [x] If the path is a directory, recursion must be applied to get to the files - [x] Extract the links and return them in an object with 'href, text and file' properties **Definition of done:** - [x] return `{href: , text: , file: }` - [ ] Pass the unit tests. - [ ] Pull request is approved.
1.0
**Story 4** - *As a user, I want to read a file, so that the links inside can be extracted* **AC:** - [x] If the path is a directory, recursion must be applied to get to the files - [x] Extract the links and return them in an object with 'href, text and file' properties **Definition of done:** - [x] return `{href: , text: , file: }` - [ ] Pass the unit tests. - [ ] Pull request is approved.
priority
story as a user i want to read a file so that the links inside can be extracted ac if the path is a directory recursion must be applied to get to the files extract the links and return them in an object with href text and file properties definition of done return href text file pass the unit tests pull request is approved
1
93,923
3,917,070,175
IssuesEvent
2016-04-21 06:23:34
Solinea/goldstone-server
https://api.github.com/repos/Solinea/goldstone-server
opened
bump_version.sh needs to leave versions of goldstone service containers alone
component: packaging priority 2: high type: bug
Currently it bumps the version of the canary container, which is not acceptable.
1.0
bump_version.sh needs to leave versions of goldstone service containers alone - Currently it bumps the version of the canary container, which is not acceptable.
priority
bump version sh needs to leave versions of goldstone service containers alone currently it bumps the version of the canary container which is not acceptable
1
578,129
17,144,868,685
IssuesEvent
2021-07-13 13:40:15
zowe/vscode-extension-for-zowe
https://api.github.com/repos/zowe/vscode-extension-for-zowe
closed
Support multiple VS Code windows for files opened via Zowe Explorer
21PI2 Priority: High Sprint 2 bug
**Is your feature request related to a problem? Please describe.** How to reproduce: - Open a file such as a data set member in VS Code using Zowe Explorer - In VS Code select File > New Window - Observe that the open editor in the old window shows now `(Deleted)` This is because opening a new Window in VS Code is like starting a new instance of Zowe Explorer that goes through an activation lifecycle. In activation Zowe Explorer cleans up all left-behind temp file such as downloaded mvs files and therefore the files that are opened by other windows are deleted and users might lose their work if they made changes. **Describe the solution you'd like** There could be different ways of solving this: - A setting that disables temp file cleanup in general - Rewrite the cleanup code that searches for all open editors in all open workspaces for files that match the files in the temp folders and do not delete them. Only delete files that are not opened in any other workspace.
1.0
Support multiple VS Code windows for files opened via Zowe Explorer - **Is your feature request related to a problem? Please describe.** How to reproduce: - Open a file such as a data set member in VS Code using Zowe Explorer - In VS Code select File > New Window - Observe that the open editor in the old window shows now `(Deleted)` This is because opening a new Window in VS Code is like starting a new instance of Zowe Explorer that goes through an activation lifecycle. In activation Zowe Explorer cleans up all left-behind temp file such as downloaded mvs files and therefore the files that are opened by other windows are deleted and users might lose their work if they made changes. **Describe the solution you'd like** There could be different ways of solving this: - A setting that disables temp file cleanup in general - Rewrite the cleanup code that searches for all open editors in all open workspaces for files that match the files in the temp folders and do not delete them. Only delete files that are not opened in any other workspace.
priority
support multiple vs code windows for files opened via zowe explorer is your feature request related to a problem please describe how to reproduce open a file such as a data set member in vs code using zowe explorer in vs code select file new window observe that the open editor in the old window shows now deleted this is because opening a new window in vs code is like starting a new instance of zowe explorer that goes through an activation lifecycle in activation zowe explorer cleans up all left behind temp file such as downloaded mvs files and therefore the files that are opened by other windows are deleted and users might lose their work if they made changes describe the solution you d like there could be different ways of solving this a setting that disables temp file cleanup in general rewrite the cleanup code that searches for all open editors in all open workspaces for files that match the files in the temp folders and do not delete them only delete files that are not opened in any other workspace
1
727,310
25,030,966,310
IssuesEvent
2022-11-04 12:20:48
renovatebot/renovate
https://api.github.com/repos/renovatebot/renovate
closed
Support "short" GitHub Actions tag comments
type:feature priority-2-high manager:github-actions status:ready
### What would you like Renovate to be able to do? Support not only our standard GitHub tag pinning syntax of `uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # tag=v3.0.11` but also `uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # v3.0.11`. ### If you have any ideas on how this should be implemented, please tell us here. To avoid false positive matches (e.g. `# cache action`) we should support only these patterns: ``` v?\d+ v?\d+\.\d+ v?\d+\.\d+\.\d+ ``` (I'm sure there's a more efficient regex, that's ok) This check should be done as part of extract if we don't match the `# tag=v` explicit syntax. Ideally we could *prefer* this syntax too, e.g. convert any compliant `tag=v...` comments into `v...` comments. ### Is this a feature you are interested in implementing yourself? No
1.0
Support "short" GitHub Actions tag comments - ### What would you like Renovate to be able to do? Support not only our standard GitHub tag pinning syntax of `uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # tag=v3.0.11` but also `uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # v3.0.11`. ### If you have any ideas on how this should be implemented, please tell us here. To avoid false positive matches (e.g. `# cache action`) we should support only these patterns: ``` v?\d+ v?\d+\.\d+ v?\d+\.\d+\.\d+ ``` (I'm sure there's a more efficient regex, that's ok) This check should be done as part of extract if we don't match the `# tag=v` explicit syntax. Ideally we could *prefer* this syntax too, e.g. convert any compliant `tag=v...` comments into `v...` comments. ### Is this a feature you are interested in implementing yourself? No
priority
support short github actions tag comments what would you like renovate to be able to do support not only our standard github tag pinning syntax of uses actions cache tag but also uses actions cache if you have any ideas on how this should be implemented please tell us here to avoid false positive matches e g cache action we should support only these patterns v d v d d v d d d i m sure there s a more efficient regex that s ok this check should be done as part of extract if we don t match the tag v explicit syntax ideally we could prefer this syntax too e g convert any compliant tag v comments into v comments is this a feature you are interested in implementing yourself no
1
391,102
11,569,171,033
IssuesEvent
2020-02-20 17:04:25
ansible/galaxy-dev
https://api.github.com/repos/ansible/galaxy-dev
closed
Run ansible-test sanity for galaxy-importer in standalone mode
area/backend area/importer priority/high status/in-progress type/enhancement
`galaxy_importer` can be used in standalone mode to run validation and parsing against a collection to see output and check if an import failure may occur before importing to Automation Hub. `ansible-test sanity` should be added to `galaxy_importer` standalone mode, run conditionally via configuration file
1.0
Run ansible-test sanity for galaxy-importer in standalone mode - `galaxy_importer` can be used in standalone mode to run validation and parsing against a collection to see output and check if an import failure may occur before importing to Automation Hub. `ansible-test sanity` should be added to `galaxy_importer` standalone mode, run conditionally via configuration file
priority
run ansible test sanity for galaxy importer in standalone mode galaxy importer can be used in standalone mode to run validation and parsing against a collection to see output and check if an import failure may occur before importing to automation hub ansible test sanity should be added to galaxy importer standalone mode run conditionally via configuration file
1
241,517
7,816,111,171
IssuesEvent
2018-06-13 02:31:00
socialappslab/appcivist-platform
https://api.github.com/repos/socialappslab/appcivist-platform
closed
Only coordinators should be able delete a proposal
Priority: Critical Priority: High
## Describe the problem/story Only coordinators should be able delete a proposal; no one else. -- Currently, anyone can delete a proposal. -- Delete options (cogwheel) should be only be enabled for coordinators; disabled for everyone else. For non-coordinators, cogwheel delete now appears on Card and proposal page. It should be disabled or hidden. -- Proposal delete should only appear to Coordinators ## Expected behavior and actual behavior. Any author can delete proposals, but it should now be only avaialable to coordinators. If authors want their proposal not to be public, they should change the status to `DRAFT`, `ARCHIVED`, or `EXCLUDED`. Changing status only available to `Creators` ## Steps to reproduce the problem Try to delete a contribution ## Specifications for the story - [ ] Change delete endpoint security handler to `OnlyCoordinatorOfAssemblyAndAdmin` (check if this is the correct handler, wording might not be accurate)
2.0
Only coordinators should be able delete a proposal - ## Describe the problem/story Only coordinators should be able delete a proposal; no one else. -- Currently, anyone can delete a proposal. -- Delete options (cogwheel) should be only be enabled for coordinators; disabled for everyone else. For non-coordinators, cogwheel delete now appears on Card and proposal page. It should be disabled or hidden. -- Proposal delete should only appear to Coordinators ## Expected behavior and actual behavior. Any author can delete proposals, but it should now be only avaialable to coordinators. If authors want their proposal not to be public, they should change the status to `DRAFT`, `ARCHIVED`, or `EXCLUDED`. Changing status only available to `Creators` ## Steps to reproduce the problem Try to delete a contribution ## Specifications for the story - [ ] Change delete endpoint security handler to `OnlyCoordinatorOfAssemblyAndAdmin` (check if this is the correct handler, wording might not be accurate)
priority
only coordinators should be able delete a proposal describe the problem story only coordinators should be able delete a proposal no one else currently anyone can delete a proposal delete options cogwheel should be only be enabled for coordinators disabled for everyone else for non coordinators cogwheel delete now appears on card and proposal page it should be disabled or hidden proposal delete should only appear to coordinators expected behavior and actual behavior any author can delete proposals but it should now be only avaialable to coordinators if authors want their proposal not to be public they should change the status to draft archived or excluded changing status only available to creators steps to reproduce the problem try to delete a contribution specifications for the story change delete endpoint security handler to onlycoordinatorofassemblyandadmin check if this is the correct handler wording might not be accurate
1
141,755
5,443,988,047
IssuesEvent
2017-03-07 01:00:15
certificate-helper/Certificate-Inspector
https://api.github.com/repos/certificate-helper/Certificate-Inspector
opened
Rename Application
critical - highest priority
Due to a Cease and Desist order from DigiCert, Certificate Inspector must immediately rename itself to use a different name that does not infringe on their trademark. The new name will be "TLS Inspector". - [ ] Update iTunes Connect - [ ] Update GitHub Repos - [ ] Register new domain - [ ] Forward old domain - [ ] Update Gitter - [ ] Update email alias - [ ] Update beta signup - [ ] Update GTAppLinks
1.0
Rename Application - Due to a Cease and Desist order from DigiCert, Certificate Inspector must immediately rename itself to use a different name that does not infringe on their trademark. The new name will be "TLS Inspector". - [ ] Update iTunes Connect - [ ] Update GitHub Repos - [ ] Register new domain - [ ] Forward old domain - [ ] Update Gitter - [ ] Update email alias - [ ] Update beta signup - [ ] Update GTAppLinks
priority
rename application due to a cease and desist order from digicert certificate inspector must immediately rename itself to use a different name that does not infringe on their trademark the new name will be tls inspector update itunes connect update github repos register new domain forward old domain update gitter update email alias update beta signup update gtapplinks
1
185,116
6,719,107,673
IssuesEvent
2017-10-15 20:25:13
iamareebjamal/zhcet-web
https://api.github.com/repos/iamareebjamal/zhcet-web
closed
Add option to change section of students
high priority
Add multiselect option to change section of students in Dean Panel
1.0
Add option to change section of students - Add multiselect option to change section of students in Dean Panel
priority
add option to change section of students add multiselect option to change section of students in dean panel
1
392,103
11,583,544,452
IssuesEvent
2020-02-22 11:47:15
IntegratedTransportPlanning/gcvt
https://api.github.com/repos/IntegratedTransportPlanning/gcvt
closed
Summary statistics
enhancement high priority
Have a pane which is always shown which presents the summed total for either all links, all zones, or a selected link or zone. Care regarding links is needed because the summary statistics shouldn't be a straight summation of the chosen attribute, in some cases it should be a sum product. e.g. GHGs per km * link distance Ideally it would also present the total for the EAP country the selected link or zone belongs to. And ideally it would also present the difference when comparing between scenarios.
1.0
Summary statistics - Have a pane which is always shown which presents the summed total for either all links, all zones, or a selected link or zone. Care regarding links is needed because the summary statistics shouldn't be a straight summation of the chosen attribute, in some cases it should be a sum product. e.g. GHGs per km * link distance Ideally it would also present the total for the EAP country the selected link or zone belongs to. And ideally it would also present the difference when comparing between scenarios.
priority
summary statistics have a pane which is always shown which presents the summed total for either all links all zones or a selected link or zone care regarding links is needed because the summary statistics shouldn t be a straight summation of the chosen attribute in some cases it should be a sum product e g ghgs per km link distance ideally it would also present the total for the eap country the selected link or zone belongs to and ideally it would also present the difference when comparing between scenarios
1
733,806
25,323,037,077
IssuesEvent
2022-11-18 06:34:03
Rehachoudhary0/hotel_testing
https://api.github.com/repos/Rehachoudhary0/hotel_testing
closed
🐛 Bug Report: Hotel> Food updated is successfully but status not refreshing
bug app back-end front-end (UI/UX) High priority
### 👟 Reproduction steps when i changed the status of food hotel didn't go to backpage and home page or food list page not refreshing the status . ### 👍 Expected behavior Should be working accordingly ### 👎 Actual Behavior . ### ☎️ Log-in number . ### 📲 User Type Hotel ### 🎲 App version Version 22.11.03+01 ### 💻 Operating system Android ### 👀 Have you spent some time to check if this issue has been raised before? - [X] I checked and didn't find similar issue ### 🏢 Have you read the Code of Conduct? - [X] I have read the [Code of Conduct](https://github.com/Rehachoudhary0/hotel_testing/blob/HEAD/CODE_OF_CONDUCT.md)
1.0
🐛 Bug Report: Hotel> Food updated is successfully but status not refreshing - ### 👟 Reproduction steps when i changed the status of food hotel didn't go to backpage and home page or food list page not refreshing the status . ### 👍 Expected behavior Should be working accordingly ### 👎 Actual Behavior . ### ☎️ Log-in number . ### 📲 User Type Hotel ### 🎲 App version Version 22.11.03+01 ### 💻 Operating system Android ### 👀 Have you spent some time to check if this issue has been raised before? - [X] I checked and didn't find similar issue ### 🏢 Have you read the Code of Conduct? - [X] I have read the [Code of Conduct](https://github.com/Rehachoudhary0/hotel_testing/blob/HEAD/CODE_OF_CONDUCT.md)
priority
🐛 bug report hotel food updated is successfully but status not refreshing 👟 reproduction steps when i changed the status of food hotel didn t go to backpage and home page or food list page not refreshing the status 👍 expected behavior should be working accordingly 👎 actual behavior ☎️ log in number 📲 user type hotel 🎲 app version version 💻 operating system android 👀 have you spent some time to check if this issue has been raised before i checked and didn t find similar issue 🏢 have you read the code of conduct i have read the
1
244,412
7,875,046,042
IssuesEvent
2018-06-25 19:03:48
gctools-outilsgc/gcconnex
https://api.github.com/repos/gctools-outilsgc/gcconnex
closed
Search/Sort Colleagues when inviting them to chatroom.
Priority: High Project: Legacy Tools Stack: UX Type: Enhancement [zube]: Done
Better searchability for employees. Analysis
1.0
Search/Sort Colleagues when inviting them to chatroom. - Better searchability for employees. Analysis
priority
search sort colleagues when inviting them to chatroom better searchability for employees analysis
1
766,874
26,902,608,374
IssuesEvent
2023-02-06 16:38:08
edehr/edehr
https://api.github.com/repos/edehr/edehr
closed
Birthdate on demographics does not work
0~Bug Priority - High
**Describe the bug** Editing the birth date or the person age does not trigger the calculation that adjusts the birth year to reflect the person age relative to today.
1.0
Birthdate on demographics does not work - **Describe the bug** Editing the birth date or the person age does not trigger the calculation that adjusts the birth year to reflect the person age relative to today.
priority
birthdate on demographics does not work describe the bug editing the birth date or the person age does not trigger the calculation that adjusts the birth year to reflect the person age relative to today
1
28,544
2,707,682,838
IssuesEvent
2015-04-08 00:47:45
AaronBuxbaum/TomatoTimer
https://api.github.com/repos/AaronBuxbaum/TomatoTimer
closed
Add experience system
enhancement high priority
System should give experience for completing pomodoro tasks (user.level). It should display changes in experience clearly and visually.
1.0
Add experience system - System should give experience for completing pomodoro tasks (user.level). It should display changes in experience clearly and visually.
priority
add experience system system should give experience for completing pomodoro tasks user level it should display changes in experience clearly and visually
1
639,078
20,745,974,727
IssuesEvent
2022-03-14 23:05:32
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio] Rejecting an item doesn't remove its dependencies from the queue
bug priority: high add to QA
## Describe the bug Rejecting an item that's submitted for review doesn't remove its dependencies from the publishing queue. ## To Reproduce Steps to reproduce the behavior: 1. Create a site from Editorial 2. Request publishing of an article 3. See the first dashboard 4. Reject the article 5. Note that its dependencies have not been removed from the dashboard ## Expected behavior Rejecting the parent item should remove its dependencies from the workflow. ## Screenshots {{If applicable, add screenshots to help explain your problem.}} ## Logs {{If applicable, attach the logs/stack trace (use https://gist.github.com).}} ## Specs ### Version 4.0.0-SNAPSHOT 2021-07-23 ### OS Linux ### Browser Chrome ## Additional context {{Add any other context about the problem here.}}
1.0
[studio] Rejecting an item doesn't remove its dependencies from the queue - ## Describe the bug Rejecting an item that's submitted for review doesn't remove its dependencies from the publishing queue. ## To Reproduce Steps to reproduce the behavior: 1. Create a site from Editorial 2. Request publishing of an article 3. See the first dashboard 4. Reject the article 5. Note that its dependencies have not been removed from the dashboard ## Expected behavior Rejecting the parent item should remove its dependencies from the workflow. ## Screenshots {{If applicable, add screenshots to help explain your problem.}} ## Logs {{If applicable, attach the logs/stack trace (use https://gist.github.com).}} ## Specs ### Version 4.0.0-SNAPSHOT 2021-07-23 ### OS Linux ### Browser Chrome ## Additional context {{Add any other context about the problem here.}}
priority
rejecting an item doesn t remove its dependencies from the queue describe the bug rejecting an item that s submitted for review doesn t remove its dependencies from the publishing queue to reproduce steps to reproduce the behavior create a site from editorial request publishing of an article see the first dashboard reject the article note that its dependencies have not been removed from the dashboard expected behavior rejecting the parent item should remove its dependencies from the workflow screenshots if applicable add screenshots to help explain your problem logs if applicable attach the logs stack trace use specs version snapshot os linux browser chrome additional context add any other context about the problem here
1
140,859
5,425,236,648
IssuesEvent
2017-03-03 05:03:36
EFForg/privacybadger
https://api.github.com/repos/EFForg/privacybadger
opened
Compatibility with W3C Tracking Preference Expression specification
High priority
The W3C has been working on a technical specification for the DNT signal and resulting interaction between user agents and publishers. This document has not been adopted as a standard but is in an advanced state and can be read [here](https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html). Many elements of the TPE are addressed in other ways in Privacy Badger, but by extending compatibility with the TPE we expand and simplify the universe of DNT implementation, which is a good thing. To this end we want to initially add support for two features of the TPE: 1. In the W3C specification sites are required to post a [Tracking Status Resource (TSR)](https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html#status-resource), setting out the general tracking policy of the site in machine readable form at /.well-known/dnt/ TSRs should contain a tracking value and a compliance array. The former describes the site's tracking practices, the latter specifies the regulatory regime with which the site complies (EFF DNT, General Data Protection Regulation etc). PB already checks .well-known/dnt-policy.txt and should also look for the url for a TSR to verify if the site supports the EFF's DNT policy. 2. In response to a valid DNT header request for a specific resource the TPE requires a _Tk response header field_. containing a[Tracking Status Value (TSV)](https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html#tracking-status-value). One of the possible TSV responses is 'C', which means that the user is being tracked with their consent. Under the EFF's DNT policy a site can obtain user consent to tracking by acquiring a transparent and unambiguous opt-in. Where consent has been given the Tk header/TSV 'C' can be used to store and signify such consent in the user interface. Currently PB will unblock third parties to sites which have posted the policy (such as Medium.com). Alternately users can 'opt-in' by whitelisting a site or toggle the slider for a given domain to green. Introducing support for the consent signal will be a step towards giving users easier control over these decisions. This is a lot of work and issues to be clarified but there is strong interest in this from the W3C and from our partner @michael-oneill at Baycloud.
1.0
Compatibility with W3C Tracking Preference Expression specification - The W3C has been working on a technical specification for the DNT signal and resulting interaction between user agents and publishers. This document has not been adopted as a standard but is in an advanced state and can be read [here](https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html). Many elements of the TPE are addressed in other ways in Privacy Badger, but by extending compatibility with the TPE we expand and simplify the universe of DNT implementation, which is a good thing. To this end we want to initially add support for two features of the TPE: 1. In the W3C specification sites are required to post a [Tracking Status Resource (TSR)](https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html#status-resource), setting out the general tracking policy of the site in machine readable form at /.well-known/dnt/ TSRs should contain a tracking value and a compliance array. The former describes the site's tracking practices, the latter specifies the regulatory regime with which the site complies (EFF DNT, General Data Protection Regulation etc). PB already checks .well-known/dnt-policy.txt and should also look for the url for a TSR to verify if the site supports the EFF's DNT policy. 2. In response to a valid DNT header request for a specific resource the TPE requires a _Tk response header field_. containing a[Tracking Status Value (TSV)](https://www.w3.org/2011/tracking-protection/drafts/tracking-dnt.html#tracking-status-value). One of the possible TSV responses is 'C', which means that the user is being tracked with their consent. Under the EFF's DNT policy a site can obtain user consent to tracking by acquiring a transparent and unambiguous opt-in. Where consent has been given the Tk header/TSV 'C' can be used to store and signify such consent in the user interface. Currently PB will unblock third parties to sites which have posted the policy (such as Medium.com). Alternately users can 'opt-in' by whitelisting a site or toggle the slider for a given domain to green. Introducing support for the consent signal will be a step towards giving users easier control over these decisions. This is a lot of work and issues to be clarified but there is strong interest in this from the W3C and from our partner @michael-oneill at Baycloud.
priority
compatibility with tracking preference expression specification the has been working on a technical specification for the dnt signal and resulting interaction between user agents and publishers this document has not been adopted as a standard but is in an advanced state and can be read many elements of the tpe are addressed in other ways in privacy badger but by extending compatibility with the tpe we expand and simplify the universe of dnt implementation which is a good thing to this end we want to initially add support for two features of the tpe in the specification sites are required to post a setting out the general tracking policy of the site in machine readable form at well known dnt tsrs should contain a tracking value and a compliance array the former describes the site s tracking practices the latter specifies the regulatory regime with which the site complies eff dnt general data protection regulation etc pb already checks well known dnt policy txt and should also look for the url for a tsr to verify if the site supports the eff s dnt policy in response to a valid dnt header request for a specific resource the tpe requires a tk response header field containing a one of the possible tsv responses is c which means that the user is being tracked with their consent under the eff s dnt policy a site can obtain user consent to tracking by acquiring a transparent and unambiguous opt in where consent has been given the tk header tsv c can be used to store and signify such consent in the user interface currently pb will unblock third parties to sites which have posted the policy such as medium com alternately users can opt in by whitelisting a site or toggle the slider for a given domain to green introducing support for the consent signal will be a step towards giving users easier control over these decisions this is a lot of work and issues to be clarified but there is strong interest in this from the and from our partner michael oneill at baycloud
1
590,304
17,775,856,340
IssuesEvent
2021-08-30 19:07:01
airqo-platform/AirQo-frontend
https://api.github.com/repos/airqo-platform/AirQo-frontend
opened
Automatically refresh all platform (device details) content after device deployment
netmanager priority-high
**Is your feature request related to a problem? Please describe.** It is kinda confusing for the user whenever they finish deployment, go to check the site for site details and do not find the respective device recently added. They have to first refresh to see it. **Describe the solution you'd like** Handle the automatic refreshes whenever one visits the different tables like site registry and device registry. **Describe alternatives you've considered** Can we perhaps inform the user that they have to refresh just like how it is done in Github when a PR has received some new commits?. **Additional context** Feedback gotten from a HW unit user recently. Informed me that some members who are not very aware might think that things are not working.
1.0
Automatically refresh all platform (device details) content after device deployment - **Is your feature request related to a problem? Please describe.** It is kinda confusing for the user whenever they finish deployment, go to check the site for site details and do not find the respective device recently added. They have to first refresh to see it. **Describe the solution you'd like** Handle the automatic refreshes whenever one visits the different tables like site registry and device registry. **Describe alternatives you've considered** Can we perhaps inform the user that they have to refresh just like how it is done in Github when a PR has received some new commits?. **Additional context** Feedback gotten from a HW unit user recently. Informed me that some members who are not very aware might think that things are not working.
priority
automatically refresh all platform device details content after device deployment is your feature request related to a problem please describe it is kinda confusing for the user whenever they finish deployment go to check the site for site details and do not find the respective device recently added they have to first refresh to see it describe the solution you d like handle the automatic refreshes whenever one visits the different tables like site registry and device registry describe alternatives you ve considered can we perhaps inform the user that they have to refresh just like how it is done in github when a pr has received some new commits additional context feedback gotten from a hw unit user recently informed me that some members who are not very aware might think that things are not working
1
167,415
6,337,708,031
IssuesEvent
2017-07-27 01:02:12
syscoin/blockmarket-desktop-public
https://api.github.com/repos/syscoin/blockmarket-desktop-public
closed
Prompt should pop-up when finalizing escrow
enhancement highpriority user experience improvement
When clicking on the "finalize button" under "purchases in escrow", a prompt should appear asking the user the following question. "Clicking "Finalize" on this offer will release the offer to the merchant. Are you sure that you want to complete this transaction now?"
1.0
Prompt should pop-up when finalizing escrow - When clicking on the "finalize button" under "purchases in escrow", a prompt should appear asking the user the following question. "Clicking "Finalize" on this offer will release the offer to the merchant. Are you sure that you want to complete this transaction now?"
priority
prompt should pop up when finalizing escrow when clicking on the finalize button under purchases in escrow a prompt should appear asking the user the following question clicking finalize on this offer will release the offer to the merchant are you sure that you want to complete this transaction now
1
86,275
3,709,842,086
IssuesEvent
2016-03-02 00:28:22
chrisblakley/Nebula
https://api.github.com/repos/chrisblakley/Nebula
opened
If /css directory does not exist in /stylesheets, create it
Backend (Server) Bug High Priority
Sometimes /css doesn't exist in the child theme. When rendering SCSS files, if the ```/css``` directory doesn't exist, create it first with PHP!
1.0
If /css directory does not exist in /stylesheets, create it - Sometimes /css doesn't exist in the child theme. When rendering SCSS files, if the ```/css``` directory doesn't exist, create it first with PHP!
priority
if css directory does not exist in stylesheets create it sometimes css doesn t exist in the child theme when rendering scss files if the css directory doesn t exist create it first with php
1
332,441
10,095,860,293
IssuesEvent
2019-07-27 13:01:35
magiruuvelvet/QAPI-IDE
https://api.github.com/repos/magiruuvelvet/QAPI-IDE
closed
workspace format
WorkspaceFormat priority: high
file format to store and load workspaces standalone module, doesn't depend on Qt and the GUI module ~format is a json file for maximum portability, can be modified with text editors, etc.~\ changed to CBOR format
1.0
workspace format - file format to store and load workspaces standalone module, doesn't depend on Qt and the GUI module ~format is a json file for maximum portability, can be modified with text editors, etc.~\ changed to CBOR format
priority
workspace format file format to store and load workspaces standalone module doesn t depend on qt and the gui module format is a json file for maximum portability can be modified with text editors etc changed to cbor format
1
502,538
14,548,231,515
IssuesEvent
2020-12-16 00:45:13
SpeedCurve-Metrics/SpeedCurve
https://api.github.com/repos/SpeedCurve-Metrics/SpeedCurve
closed
Settings menu item not visible
priority high status accepted type bug
### Issue type - [ ] Feature request - [x] Bug report - [ ] Question (please email questions to support@speedcurve.com) ### Current behaviour Hey. I wanted to report a bug but can't find a better place than this to do it. Hope you can send it to the right people :) After the new "Vitals" menu item has showed up, getting to settings is not possible on my computer. I'm on a 15" macbook and with a full screen browser window with only the bookmarks toolbar open, the settings menu item is not there. Hiding the toolbar displays the settings menu item - well kind of. See attached screenshots. ### Expected behaviour I would imagine that the navigation should scroll when there are too many items to be visible on the screen. ### Any other useful information 15" MacBook Pro OSX Catalina Firefox 82 **Image 1: With toolbar open** <img width="1552" alt="Screenshot 2020-12-14 at 16 08 18" src="https://user-images.githubusercontent.com/3774438/102098304-52e02500-3e27-11eb-8aff-863472b5c24a.png"> **Image 1: With toolbar closed** <img width="1552" alt="Screenshot 2020-12-14 at 16 08 24" src="https://user-images.githubusercontent.com/3774438/102098368-65f2f500-3e27-11eb-981b-f770cfad0735.png">
1.0
Settings menu item not visible - ### Issue type - [ ] Feature request - [x] Bug report - [ ] Question (please email questions to support@speedcurve.com) ### Current behaviour Hey. I wanted to report a bug but can't find a better place than this to do it. Hope you can send it to the right people :) After the new "Vitals" menu item has showed up, getting to settings is not possible on my computer. I'm on a 15" macbook and with a full screen browser window with only the bookmarks toolbar open, the settings menu item is not there. Hiding the toolbar displays the settings menu item - well kind of. See attached screenshots. ### Expected behaviour I would imagine that the navigation should scroll when there are too many items to be visible on the screen. ### Any other useful information 15" MacBook Pro OSX Catalina Firefox 82 **Image 1: With toolbar open** <img width="1552" alt="Screenshot 2020-12-14 at 16 08 18" src="https://user-images.githubusercontent.com/3774438/102098304-52e02500-3e27-11eb-8aff-863472b5c24a.png"> **Image 1: With toolbar closed** <img width="1552" alt="Screenshot 2020-12-14 at 16 08 24" src="https://user-images.githubusercontent.com/3774438/102098368-65f2f500-3e27-11eb-981b-f770cfad0735.png">
priority
settings menu item not visible issue type feature request bug report question please email questions to support speedcurve com current behaviour hey i wanted to report a bug but can t find a better place than this to do it hope you can send it to the right people after the new vitals menu item has showed up getting to settings is not possible on my computer i m on a macbook and with a full screen browser window with only the bookmarks toolbar open the settings menu item is not there hiding the toolbar displays the settings menu item well kind of see attached screenshots expected behaviour i would imagine that the navigation should scroll when there are too many items to be visible on the screen any other useful information macbook pro osx catalina firefox image with toolbar open img width alt screenshot at src image with toolbar closed img width alt screenshot at src
1
798,699
28,292,689,071
IssuesEvent
2023-04-09 12:15:00
bounswe/bounswe2023group8
https://api.github.com/repos/bounswe/bounswe2023group8
closed
Add Project Requirements to Milestone 1 Report Page
status: to-do priority: high effort: low
Milestone 1 report page has already been created. There is a "Software Requirement Specification" section. Take the project requirements from "Requirements" page and add them to corresponding section.
1.0
Add Project Requirements to Milestone 1 Report Page - Milestone 1 report page has already been created. There is a "Software Requirement Specification" section. Take the project requirements from "Requirements" page and add them to corresponding section.
priority
add project requirements to milestone report page milestone report page has already been created there is a software requirement specification section take the project requirements from requirements page and add them to corresponding section
1
208,741
7,157,919,193
IssuesEvent
2018-01-26 21:50:50
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Bow damage is not increased when investing in the Bow Damage Skill
High Priority
The skill node seems to do nothing at the moment and I want to one shot wolves gawd dammit.
1.0
Bow damage is not increased when investing in the Bow Damage Skill - The skill node seems to do nothing at the moment and I want to one shot wolves gawd dammit.
priority
bow damage is not increased when investing in the bow damage skill the skill node seems to do nothing at the moment and i want to one shot wolves gawd dammit
1
408,296
11,944,527,052
IssuesEvent
2020-04-03 02:44:58
AY1920S2-CS2103-W14-2/main
https://api.github.com/repos/AY1920S2-CS2103-W14-2/main
opened
Fix immutability contract breach in supplier
priority.High severity.High
Regarding the problem of removing a good from a supplier being not undoable, I decided not to paranoiacally implement deep copy methods for every object. I find that it makes more sense to enforce the immutability contract of the models. So, the contract of Supplier states that: ![Screen Shot 2020-04-03 at 10 33 32 AM](https://user-images.githubusercontent.com/42194963/78318558-a52e2e00-7597-11ea-8292-4c663bc48648.png) Meanwhile, this method defined in Supplier breaks this contract: ![Screen Shot 2020-04-03 at 10 33 42 AM](https://user-images.githubusercontent.com/42194963/78318591-becf7580-7597-11ea-96d8-c8ee166de0fa.png) I recommend moving this removeGood method to the command in charge of executing the edit, then perform this method on a copy of the offers obtained from getOffers().
1.0
Fix immutability contract breach in supplier - Regarding the problem of removing a good from a supplier being not undoable, I decided not to paranoiacally implement deep copy methods for every object. I find that it makes more sense to enforce the immutability contract of the models. So, the contract of Supplier states that: ![Screen Shot 2020-04-03 at 10 33 32 AM](https://user-images.githubusercontent.com/42194963/78318558-a52e2e00-7597-11ea-8292-4c663bc48648.png) Meanwhile, this method defined in Supplier breaks this contract: ![Screen Shot 2020-04-03 at 10 33 42 AM](https://user-images.githubusercontent.com/42194963/78318591-becf7580-7597-11ea-96d8-c8ee166de0fa.png) I recommend moving this removeGood method to the command in charge of executing the edit, then perform this method on a copy of the offers obtained from getOffers().
priority
fix immutability contract breach in supplier regarding the problem of removing a good from a supplier being not undoable i decided not to paranoiacally implement deep copy methods for every object i find that it makes more sense to enforce the immutability contract of the models so the contract of supplier states that meanwhile this method defined in supplier breaks this contract i recommend moving this removegood method to the command in charge of executing the edit then perform this method on a copy of the offers obtained from getoffers
1
450,732
13,018,771,902
IssuesEvent
2020-07-26 19:02:47
ION28/BLUESPAWN
https://api.github.com/repos/ION28/BLUESPAWN
closed
Software Security Mitigation for V-6755
difficulty/easy lang/c++ mode/mitigate module/file-system priority/high type/enhancement
https://www.stigviewer.com/stig/iis_7.0_web_site/2017-12-21/finding/V-6755 Might be difficult to automatically fix, but should be able to be located with a regex based on this answer: https://serverfault.com/a/395919
1.0
Software Security Mitigation for V-6755 - https://www.stigviewer.com/stig/iis_7.0_web_site/2017-12-21/finding/V-6755 Might be difficult to automatically fix, but should be able to be located with a regex based on this answer: https://serverfault.com/a/395919
priority
software security mitigation for v might be difficult to automatically fix but should be able to be located with a regex based on this answer
1
401,030
11,784,333,306
IssuesEvent
2020-03-17 08:07:43
Longwelwind/swords-and-ravens
https://api.github.com/repos/Longwelwind/swords-and-ravens
closed
Find a SMTP provider for the emails
priority:high type:bug
The 200 mails/day limit of the SendGrid's plan was hit yesterday, which means that no mails are sent. A new provider should be found to support the growth of games.
1.0
Find a SMTP provider for the emails - The 200 mails/day limit of the SendGrid's plan was hit yesterday, which means that no mails are sent. A new provider should be found to support the growth of games.
priority
find a smtp provider for the emails the mails day limit of the sendgrid s plan was hit yesterday which means that no mails are sent a new provider should be found to support the growth of games
1
557,687
16,515,746,538
IssuesEvent
2021-05-26 09:34:20
sopra-fs21-group-09/sopra-fs21-group-09-client
https://api.github.com/repos/sopra-fs21-group-09/sopra-fs21-group-09-client
closed
Leave group signs user out of group
Frontend high priority task
If Group is empty it gets deleted Estimate: 3h, Priority high
1.0
Leave group signs user out of group - If Group is empty it gets deleted Estimate: 3h, Priority high
priority
leave group signs user out of group if group is empty it gets deleted estimate priority high
1
346,101
10,384,224,148
IssuesEvent
2019-09-10 11:29:49
crytic/echidna
https://api.github.com/repos/crytic/echidna
closed
Echidna fails to run code that creates two contracts
bug help wanted high-priority question
Using this example: ```solidity contract A{} contract B{} contract C { bool state = true; function f() public { A a = new A(); B b = new B(); state = false; } function echidna_test() public returns (bool) { return state; } } ``` echidna will never correctly execute `f()`: ``` $ echidna-test bug.sol C Analyzing contract: bug.sol:C echidna_test: passed! 🎉 Seed: 7308541835432373519 ``` Removing one of the contract initializations (either `A` or `B`), allows to execute correctly.
1.0
Echidna fails to run code that creates two contracts - Using this example: ```solidity contract A{} contract B{} contract C { bool state = true; function f() public { A a = new A(); B b = new B(); state = false; } function echidna_test() public returns (bool) { return state; } } ``` echidna will never correctly execute `f()`: ``` $ echidna-test bug.sol C Analyzing contract: bug.sol:C echidna_test: passed! 🎉 Seed: 7308541835432373519 ``` Removing one of the contract initializations (either `A` or `B`), allows to execute correctly.
priority
echidna fails to run code that creates two contracts using this example solidity contract a contract b contract c bool state true function f public a a new a b b new b state false function echidna test public returns bool return state echidna will never correctly execute f echidna test bug sol c analyzing contract bug sol c echidna test passed 🎉 seed removing one of the contract initializations either a or b allows to execute correctly
1
62,177
3,175,699,222
IssuesEvent
2015-09-24 02:06:14
littleweaver/django-brambling
https://api.github.com/repos/littleweaver/django-brambling
closed
CSV Issues
bug high priority
@spilzer mentioned to me the other day that there might be some issues with Excel reading Dancerfly-produced CSVs? Or maybe it was with Google Sheets reading Dancerfly-produced CSVs? I can't remember. Either way, this should be investigated.
1.0
CSV Issues - @spilzer mentioned to me the other day that there might be some issues with Excel reading Dancerfly-produced CSVs? Or maybe it was with Google Sheets reading Dancerfly-produced CSVs? I can't remember. Either way, this should be investigated.
priority
csv issues spilzer mentioned to me the other day that there might be some issues with excel reading dancerfly produced csvs or maybe it was with google sheets reading dancerfly produced csvs i can t remember either way this should be investigated
1
171,575
6,491,156,835
IssuesEvent
2017-08-21 09:19:42
nbnuk/nbnatlas-issues
https://api.github.com/repos/nbnuk/nbnatlas-issues
closed
URGENT - NBN Atlas problems - Maps not loading Monday 21st August
high-priority
I've just had a report of maps not working. I've tried myself and maps either not loading through basic occurrence search or through analyse option message across all the maps saying layer unavailable.
1.0
URGENT - NBN Atlas problems - Maps not loading Monday 21st August - I've just had a report of maps not working. I've tried myself and maps either not loading through basic occurrence search or through analyse option message across all the maps saying layer unavailable.
priority
urgent nbn atlas problems maps not loading monday august i ve just had a report of maps not working i ve tried myself and maps either not loading through basic occurrence search or through analyse option message across all the maps saying layer unavailable
1
527,071
15,308,227,648
IssuesEvent
2021-02-24 22:06:53
prob-ml/bliss
https://api.github.com/repos/prob-ml/bliss
opened
test wake can fail in GPU
not high priority
Example. ``` # check loss went down print("target loss: ", target_loss) print("initial loss: ", init_loss) print("trained loss: ", trained_loss) diff0 = init_loss - target_loss diff1 = trained_loss - target_loss if torch.cuda.is_available(): > assert diff1 < (diff0 * 0.5) E AssertionError: assert tensor(7.4708, device='cuda:0', grad_fn=<SubBackward0>) < (tensor(5.3381, device='cuda:0', grad_fn=<SubBackward0>) * 0.5) test_wake.py:114: AssertionError ```
1.0
test wake can fail in GPU - Example. ``` # check loss went down print("target loss: ", target_loss) print("initial loss: ", init_loss) print("trained loss: ", trained_loss) diff0 = init_loss - target_loss diff1 = trained_loss - target_loss if torch.cuda.is_available(): > assert diff1 < (diff0 * 0.5) E AssertionError: assert tensor(7.4708, device='cuda:0', grad_fn=<SubBackward0>) < (tensor(5.3381, device='cuda:0', grad_fn=<SubBackward0>) * 0.5) test_wake.py:114: AssertionError ```
priority
test wake can fail in gpu example check loss went down print target loss target loss print initial loss init loss print trained loss trained loss init loss target loss trained loss target loss if torch cuda is available assert e assertionerror assert tensor device cuda grad fn test wake py assertionerror
1
579,224
17,185,963,071
IssuesEvent
2021-07-16 01:59:47
kubeapps/kubeapps
https://api.github.com/repos/kubeapps/kubeapps
closed
Add userAgent to requests from kubeops service
component/kubeops kind/feature priority/high size/S
### Description: The `kubeops` service is currently setting an empty user agent. The old `tiller-proxy` service used to include a `version.go` which set a userAgent string to be used in the chart client: https://github.com/kubeapps/kubeapps/blob/v1.11.3/cmd/tiller-proxy/version.go but it seems this was never moved across to the kubeops service. As a result, the [`UserAgent` field of the `Options`](https://github.com/kubeapps/kubeapps/blob/master/cmd/kubeops/internal/handler/handler.go#L43) is not being set during [kubeops startup](https://github.com/kubeapps/kubeapps/blob/master/cmd/kubeops/main.go#L80), and the existing `userAgentComment` which is in the code is left unused. We should add a version.go similar to the old tiller-proxy one or the [current asset-syncer one](https://github.com/kubeapps/kubeapps/blob/master/cmd/asset-syncer/version.go). ### Steps to reproduce the issue: Check the charts.bitnami.com logs and see only `tiller-proxy/v...` from old installations of Kubeapps. I suspect there will also be ones with empty userAgent strings.
1.0
Add userAgent to requests from kubeops service - ### Description: The `kubeops` service is currently setting an empty user agent. The old `tiller-proxy` service used to include a `version.go` which set a userAgent string to be used in the chart client: https://github.com/kubeapps/kubeapps/blob/v1.11.3/cmd/tiller-proxy/version.go but it seems this was never moved across to the kubeops service. As a result, the [`UserAgent` field of the `Options`](https://github.com/kubeapps/kubeapps/blob/master/cmd/kubeops/internal/handler/handler.go#L43) is not being set during [kubeops startup](https://github.com/kubeapps/kubeapps/blob/master/cmd/kubeops/main.go#L80), and the existing `userAgentComment` which is in the code is left unused. We should add a version.go similar to the old tiller-proxy one or the [current asset-syncer one](https://github.com/kubeapps/kubeapps/blob/master/cmd/asset-syncer/version.go). ### Steps to reproduce the issue: Check the charts.bitnami.com logs and see only `tiller-proxy/v...` from old installations of Kubeapps. I suspect there will also be ones with empty userAgent strings.
priority
add useragent to requests from kubeops service description the kubeops service is currently setting an empty user agent the old tiller proxy service used to include a version go which set a useragent string to be used in the chart client but it seems this was never moved across to the kubeops service as a result the is not being set during and the existing useragentcomment which is in the code is left unused we should add a version go similar to the old tiller proxy one or the steps to reproduce the issue check the charts bitnami com logs and see only tiller proxy v from old installations of kubeapps i suspect there will also be ones with empty useragent strings
1
69,175
3,295,874,080
IssuesEvent
2015-11-01 11:06:19
AblionGE/LocPrivLib
https://api.github.com/repos/AblionGE/LocPrivLib
closed
Draw cells only to the current focus
enhancement high priority
In ```Privacy Sensitivity``` just draw grid with the current focus. Just need to set a maximum size
1.0
Draw cells only to the current focus - In ```Privacy Sensitivity``` just draw grid with the current focus. Just need to set a maximum size
priority
draw cells only to the current focus in privacy sensitivity just draw grid with the current focus just need to set a maximum size
1
511,136
14,854,711,125
IssuesEvent
2021-01-18 11:43:10
canonical-web-and-design/jp.ubuntu.com
https://api.github.com/repos/canonical-web-and-design/jp.ubuntu.com
closed
Cannot download ISO image
Priority: High
Google Chrome v87.0.4280.88 (Official Build) 64bit Following error was displayed in DevTools console. ``` Mixed Content: The site at 'https://jp.ubuntu.com/' was loaded over a secure connection, but the file at 'http://jp.releases.ubuntu.com/20.04.1/ubuntu-20.04.1-desktop-amd64.iso' was redirected through an insecure connection. This file should be served over HTTPS. This download has been blocked. See https://blog.chromium.org/2020/02/protecting-users-from-insecure.html for more details. ``` --- *Reported from: https://jp.ubuntu.com/download/thank-you?version=20.04.1
1.0
Cannot download ISO image - Google Chrome v87.0.4280.88 (Official Build) 64bit Following error was displayed in DevTools console. ``` Mixed Content: The site at 'https://jp.ubuntu.com/' was loaded over a secure connection, but the file at 'http://jp.releases.ubuntu.com/20.04.1/ubuntu-20.04.1-desktop-amd64.iso' was redirected through an insecure connection. This file should be served over HTTPS. This download has been blocked. See https://blog.chromium.org/2020/02/protecting-users-from-insecure.html for more details. ``` --- *Reported from: https://jp.ubuntu.com/download/thank-you?version=20.04.1
priority
cannot download iso image google chrome official build following error was displayed in devtools console mixed content the site at was loaded over a secure connection but the file at was redirected through an insecure connection this file should be served over https this download has been blocked see for more details reported from
1
164,689
6,246,332,906
IssuesEvent
2017-07-13 03:38:34
CS2103JUN2017-T3/main
https://api.github.com/repos/CS2103JUN2017-T3/main
closed
As a user I can edit tasks
priority.high type.story
So that I can update my tasks’ details for unforeseen circumstances, such as postponing a deadline
1.0
As a user I can edit tasks - So that I can update my tasks’ details for unforeseen circumstances, such as postponing a deadline
priority
as a user i can edit tasks so that i can update my tasks’ details for unforeseen circumstances such as postponing a deadline
1
761,926
26,703,171,851
IssuesEvent
2023-01-27 15:56:23
IAmTamal/Milan
https://api.github.com/repos/IAmTamal/Milan
closed
[BUGS] Exclamation Mark misplaced
🟧 priority: high 🛠 goal: fix 🛠 status : under development hacktoberfest
### Description In the "Events" page, the 'Events Happening Now !' heading has it's exclamation mark in the next line, which makes it look odd. ### Screenshots ![image](https://user-images.githubusercontent.com/82112540/209363892-47898a6c-5f76-4cdd-acb5-f072105aed03.png) ### Additional information _No response_ ### 🥦 Browser Google Chrome ### 👀 Have you checked for similar open issues? - [X] I checked and didn't find similar issue ### 🏢 Have you read the Contributing Guidelines? - [X] I have read the [Contributing Guidelines](https://github.com/IAmTamal/Milan/blob/main/CONTRIBUTING.md) ### Are you willing to work on this issue ? Yes I am willing to submit a PR!
1.0
[BUGS] Exclamation Mark misplaced - ### Description In the "Events" page, the 'Events Happening Now !' heading has it's exclamation mark in the next line, which makes it look odd. ### Screenshots ![image](https://user-images.githubusercontent.com/82112540/209363892-47898a6c-5f76-4cdd-acb5-f072105aed03.png) ### Additional information _No response_ ### 🥦 Browser Google Chrome ### 👀 Have you checked for similar open issues? - [X] I checked and didn't find similar issue ### 🏢 Have you read the Contributing Guidelines? - [X] I have read the [Contributing Guidelines](https://github.com/IAmTamal/Milan/blob/main/CONTRIBUTING.md) ### Are you willing to work on this issue ? Yes I am willing to submit a PR!
priority
exclamation mark misplaced description in the events page the events happening now heading has it s exclamation mark in the next line which makes it look odd screenshots additional information no response 🥦 browser google chrome 👀 have you checked for similar open issues i checked and didn t find similar issue 🏢 have you read the contributing guidelines i have read the are you willing to work on this issue yes i am willing to submit a pr
1
353,779
10,558,664,576
IssuesEvent
2019-10-04 09:37:32
OkunaOrg/okuna-api
https://api.github.com/repos/OkunaOrg/okuna-api
closed
Support username in allocate_invites mngmt command
priority:high
We should be able to allocate invites through the existing command to a specific user.
1.0
Support username in allocate_invites mngmt command - We should be able to allocate invites through the existing command to a specific user.
priority
support username in allocate invites mngmt command we should be able to allocate invites through the existing command to a specific user
1
152,983
5,872,669,678
IssuesEvent
2017-05-15 12:12:26
yarnpkg/yarn
https://api.github.com/repos/yarnpkg/yarn
closed
Some offline-cache dependancies are not being tarballed, and are being inserted into the yarn.lock as remote urls
bug bug-high-priority
<!-- *Before creating an issue please make sure you are using the latest version of yarn.* --> **Do you want to request a *feature* or report a *bug*?** <!-- Is the feature a substantial feature request? Please use https://github.com/yarnpkg/rfcs --> Report a potential bug **What is the current behavior?** After walking through the steps from [this guide](https://yarnpkg.com/blog/2016/11/24/offline-mirror/), it seems that some dependancies are being stored into the lock file as the remote urls instead of saving them as tarballs. **If the current behavior is a bug, please provide the steps to reproduce.** <!-- If you can, provide a link to a public repository which contains the files necessary to reproduce this. --> ``` > yarn config set yarn-offline-mirror ./npm-packages-offline-cache > mv ~/.yarnrc ./ > rm -rf node_modules/ yarn.lock > yarn install ``` **What is the expected behavior?** All dependancies, including the dependancies dependancies, should be stored in tarball form in the specified offline-cache folder. **Please mention your node.js, yarn and operating system version.** ``` nodejs: 4.5.0 yarn: 0.19.1 OS: MacOS 10.12.3 ```
1.0
Some offline-cache dependancies are not being tarballed, and are being inserted into the yarn.lock as remote urls - <!-- *Before creating an issue please make sure you are using the latest version of yarn.* --> **Do you want to request a *feature* or report a *bug*?** <!-- Is the feature a substantial feature request? Please use https://github.com/yarnpkg/rfcs --> Report a potential bug **What is the current behavior?** After walking through the steps from [this guide](https://yarnpkg.com/blog/2016/11/24/offline-mirror/), it seems that some dependancies are being stored into the lock file as the remote urls instead of saving them as tarballs. **If the current behavior is a bug, please provide the steps to reproduce.** <!-- If you can, provide a link to a public repository which contains the files necessary to reproduce this. --> ``` > yarn config set yarn-offline-mirror ./npm-packages-offline-cache > mv ~/.yarnrc ./ > rm -rf node_modules/ yarn.lock > yarn install ``` **What is the expected behavior?** All dependancies, including the dependancies dependancies, should be stored in tarball form in the specified offline-cache folder. **Please mention your node.js, yarn and operating system version.** ``` nodejs: 4.5.0 yarn: 0.19.1 OS: MacOS 10.12.3 ```
priority
some offline cache dependancies are not being tarballed and are being inserted into the yarn lock as remote urls do you want to request a feature or report a bug report a potential bug what is the current behavior after walking through the steps from it seems that some dependancies are being stored into the lock file as the remote urls instead of saving them as tarballs if the current behavior is a bug please provide the steps to reproduce yarn config set yarn offline mirror npm packages offline cache mv yarnrc rm rf node modules yarn lock yarn install what is the expected behavior all dependancies including the dependancies dependancies should be stored in tarball form in the specified offline cache folder please mention your node js yarn and operating system version nodejs yarn os macos
1
143,217
5,511,954,696
IssuesEvent
2017-03-17 07:39:13
ajency/Listr
https://api.github.com/repos/ajency/Listr
opened
Admin |Add company | Add (*) for required feilds
bug High priority
The following are the required fields : - BTID - Company Name - Is Active: - Is Enterprise: - Is IMEI Active: - Is Agency: -
1.0
Admin |Add company | Add (*) for required feilds - The following are the required fields : - BTID - Company Name - Is Active: - Is Enterprise: - Is IMEI Active: - Is Agency: -
priority
admin add company add for required feilds the following are the required fields btid company name is active is enterprise is imei active is agency
1
492,112
14,177,141,084
IssuesEvent
2020-11-13 01:21:08
woocommerce/woocommerce-admin
https://api.github.com/repos/woocommerce/woocommerce-admin
closed
Setup Checklist: Snackbar Notif & Setup Activity Panel Missing after Product Creation
Setup Checklist [Priority] High [Type] Bug
**Describe the bug** When performing the Product setup task, I encountered some JS errors on Safari 14: <img width="2221" alt="1 7 0-beta-safari-14 0" src="https://user-images.githubusercontent.com/22080/98419962-0260f500-203b-11eb-8115-ffe5ac41162c.png"> **To Reproduce** I hit this while testing a build from `main` before the release of the beta, but it should be reproducible in the beta release. This was done on a new JN site running Woo 4.6.2 and the test zip. 1. After the OBW, visit the Product Setup step 2. Manually create a product, save it 3. On the screen refresh, note that the SnackBar notification to send me back to the home screen is not shown, and the Activity Panels for store setup is missing 4. See error in the JS console **Expected behavior** I expected to see the SnackBar notice to take me back to the Setup checklist, and the Activity Panel for Store Setup too. **Other Details** I did have the latest Gutenberg plugin installed, not sure if that impacts this or not.
1.0
Setup Checklist: Snackbar Notif & Setup Activity Panel Missing after Product Creation - **Describe the bug** When performing the Product setup task, I encountered some JS errors on Safari 14: <img width="2221" alt="1 7 0-beta-safari-14 0" src="https://user-images.githubusercontent.com/22080/98419962-0260f500-203b-11eb-8115-ffe5ac41162c.png"> **To Reproduce** I hit this while testing a build from `main` before the release of the beta, but it should be reproducible in the beta release. This was done on a new JN site running Woo 4.6.2 and the test zip. 1. After the OBW, visit the Product Setup step 2. Manually create a product, save it 3. On the screen refresh, note that the SnackBar notification to send me back to the home screen is not shown, and the Activity Panels for store setup is missing 4. See error in the JS console **Expected behavior** I expected to see the SnackBar notice to take me back to the Setup checklist, and the Activity Panel for Store Setup too. **Other Details** I did have the latest Gutenberg plugin installed, not sure if that impacts this or not.
priority
setup checklist snackbar notif setup activity panel missing after product creation describe the bug when performing the product setup task i encountered some js errors on safari img width alt beta safari src to reproduce i hit this while testing a build from main before the release of the beta but it should be reproducible in the beta release this was done on a new jn site running woo and the test zip after the obw visit the product setup step manually create a product save it on the screen refresh note that the snackbar notification to send me back to the home screen is not shown and the activity panels for store setup is missing see error in the js console expected behavior i expected to see the snackbar notice to take me back to the setup checklist and the activity panel for store setup too other details i did have the latest gutenberg plugin installed not sure if that impacts this or not
1
300,968
9,214,339,688
IssuesEvent
2019-03-10 19:05:58
hannesschulze/optimizer
https://api.github.com/repos/hannesschulze/optimizer
closed
Doesn't work on wayland
In Progress Priority: High
When launching on wayland, optimizer segfaults: ``` Thread 1 "com.github.hann" received signal SIGSEGV, Segmentation fault. 0x00007ffff6be603d in XQueryExtension (dpy=dpy@entry=0x484040, name=name@entry=0x7ffff653b000 "X-Resource", major_opcode=major_opcode@entry=0x7ffffffebbd4, first_event=first_event@entry=0x7ffffffebbd8, first_error=first_error@entry=0x7ffffffebbdc) at QuExt.c:43 43 LockDisplay(dpy); ```
1.0
Doesn't work on wayland - When launching on wayland, optimizer segfaults: ``` Thread 1 "com.github.hann" received signal SIGSEGV, Segmentation fault. 0x00007ffff6be603d in XQueryExtension (dpy=dpy@entry=0x484040, name=name@entry=0x7ffff653b000 "X-Resource", major_opcode=major_opcode@entry=0x7ffffffebbd4, first_event=first_event@entry=0x7ffffffebbd8, first_error=first_error@entry=0x7ffffffebbdc) at QuExt.c:43 43 LockDisplay(dpy); ```
priority
doesn t work on wayland when launching on wayland optimizer segfaults thread com github hann received signal sigsegv segmentation fault in xqueryextension dpy dpy entry name name entry x resource major opcode major opcode entry first event first event entry first error first error entry at quext c lockdisplay dpy
1
408,234
11,943,660,294
IssuesEvent
2020-04-02 23:57:28
wc-work/why
https://api.github.com/repos/wc-work/why
closed
Contact Form
High Priority
- [x] Add Contact Form - [x] Set up form to automatically send W.H.Y. email notification
1.0
Contact Form - - [x] Add Contact Form - [x] Set up form to automatically send W.H.Y. email notification
priority
contact form add contact form set up form to automatically send w h y email notification
1
238,715
7,782,574,935
IssuesEvent
2018-06-06 07:05:27
robinagist/ezo
https://api.github.com/repos/robinagist/ezo
opened
proper logging
enhancement high priority
logging is a mess and practically non-existent + remote all rogue print statements + replace with proper log and level statements + decide how to log things going on inside of lib Classes
1.0
proper logging - logging is a mess and practically non-existent + remote all rogue print statements + replace with proper log and level statements + decide how to log things going on inside of lib Classes
priority
proper logging logging is a mess and practically non existent remote all rogue print statements replace with proper log and level statements decide how to log things going on inside of lib classes
1
409,882
11,969,334,488
IssuesEvent
2020-04-06 10:08:12
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
reopened
API Manager try it UI shows http url with https port.
3.1.0 3.x.x Affected/3.0.0 Priority/High Type/Bug Type/React-UI Type/UX
When you create API with both http and https transports enabled users can use tryout UI to invoke API with both http and https. URL is selectable on the top of API store page. But when you select http url its appear with 8243 port. And invocation get failed. If someone need to use API developer portal over http then they can switch to http URL. And in that case users should be able to invoke http url as it do not cause mixed content issues which we get when trying to access 2 transports from same page. If we do not allow http access for developer portal then we need to mention that and disable same in tryit too.
1.0
API Manager try it UI shows http url with https port. - When you create API with both http and https transports enabled users can use tryout UI to invoke API with both http and https. URL is selectable on the top of API store page. But when you select http url its appear with 8243 port. And invocation get failed. If someone need to use API developer portal over http then they can switch to http URL. And in that case users should be able to invoke http url as it do not cause mixed content issues which we get when trying to access 2 transports from same page. If we do not allow http access for developer portal then we need to mention that and disable same in tryit too.
priority
api manager try it ui shows http url with https port when you create api with both http and https transports enabled users can use tryout ui to invoke api with both http and https url is selectable on the top of api store page but when you select http url its appear with port and invocation get failed if someone need to use api developer portal over http then they can switch to http url and in that case users should be able to invoke http url as it do not cause mixed content issues which we get when trying to access transports from same page if we do not allow http access for developer portal then we need to mention that and disable same in tryit too
1
366,040
10,816,828,957
IssuesEvent
2019-11-08 08:16:19
input-output-hk/jormungandr
https://api.github.com/repos/input-output-hk/jormungandr
opened
Allow setting multiple stake pool for delegation
Priority - High enhancement jcli
Since the latest update it is possible to set multiple stake pools at a time. JCLI could handle that case and allow for creating delegation certificate with multiple stake pools.
1.0
Allow setting multiple stake pool for delegation - Since the latest update it is possible to set multiple stake pools at a time. JCLI could handle that case and allow for creating delegation certificate with multiple stake pools.
priority
allow setting multiple stake pool for delegation since the latest update it is possible to set multiple stake pools at a time jcli could handle that case and allow for creating delegation certificate with multiple stake pools
1
499,539
14,449,538,814
IssuesEvent
2020-12-08 08:16:24
schemathesis/schemathesis
https://api.github.com/repos/schemathesis/schemathesis
closed
CLI: Rate limiting
Priority: High Type: Feature
It might be helpful, so we avoid spamming the application under test too much
1.0
CLI: Rate limiting - It might be helpful, so we avoid spamming the application under test too much
priority
cli rate limiting it might be helpful so we avoid spamming the application under test too much
1
460,691
13,216,856,612
IssuesEvent
2020-08-17 05:16:52
ahmedkaludi/accelerated-mobile-pages
https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages
closed
Need to make the table fromat look like same as amp by automatic's table output
[Priority: HIGH] bug
Need to make the table look like same amp by automatic such as responsiveness, images, and the colums need to fix with in the screens in mobile large screens at 425px like the same as amp by atuomatic Amp by automatic ouput in mobile large screens at 425px: https://monosnap.com/file/Sgw9GJfqmOwkTaB07NmdcFXgwo56B6 Amp by automatic ouput in mobile small screens at 320px: https://monosnap.com/file/AP4M0dVugjZ55cpZmWs56hYhg30M5y Amp by automatic ouput Desktop view: https://monosnap.com/file/LJV9yCtkIMiu0eXZguNl7vLIIbvxPv But when comes to ampforwp output: There are some design issues,like mentioned below. as the output of the ampforwp should be the same amp by auotmaic AMPfroWP ouput in mobile large screens at 425px: In Desing 3: https://monosnap.com/file/9ZX8dVJ28PsLAKDYvBPfKxR6pGS7NG Issue1#: image is getting displyed small. AMPfroWP ouput in mobile large screens at 320px and 375px as well: In Desing 3:https://monosnap.com/file/RM2OHs3xYlLd6cK8GhYzbzUbbfSPv9 Issue2#: Images are not getting displyed and the coulmn headings are misalligned at 375px mobile medium screens: https://monosnap.com/file/VdQrLdQPHXeJfaEP11oGTiCI91mSNL In swift design at 425px: issue#3: https://monosnap.com/file/kTFFMExNOcMZ3X9P1iWiO0axhmDXeY Image is looking small and image alignment is at the top and need to be in center. https://monosnap.com/file/LqSSRy7qN23wO2PZilrAJ3wQriUsDL https://secure.helpscout.net/conversation/1147125447/125033/
1.0
Need to make the table fromat look like same as amp by automatic's table output - Need to make the table look like same amp by automatic such as responsiveness, images, and the colums need to fix with in the screens in mobile large screens at 425px like the same as amp by atuomatic Amp by automatic ouput in mobile large screens at 425px: https://monosnap.com/file/Sgw9GJfqmOwkTaB07NmdcFXgwo56B6 Amp by automatic ouput in mobile small screens at 320px: https://monosnap.com/file/AP4M0dVugjZ55cpZmWs56hYhg30M5y Amp by automatic ouput Desktop view: https://monosnap.com/file/LJV9yCtkIMiu0eXZguNl7vLIIbvxPv But when comes to ampforwp output: There are some design issues,like mentioned below. as the output of the ampforwp should be the same amp by auotmaic AMPfroWP ouput in mobile large screens at 425px: In Desing 3: https://monosnap.com/file/9ZX8dVJ28PsLAKDYvBPfKxR6pGS7NG Issue1#: image is getting displyed small. AMPfroWP ouput in mobile large screens at 320px and 375px as well: In Desing 3:https://monosnap.com/file/RM2OHs3xYlLd6cK8GhYzbzUbbfSPv9 Issue2#: Images are not getting displyed and the coulmn headings are misalligned at 375px mobile medium screens: https://monosnap.com/file/VdQrLdQPHXeJfaEP11oGTiCI91mSNL In swift design at 425px: issue#3: https://monosnap.com/file/kTFFMExNOcMZ3X9P1iWiO0axhmDXeY Image is looking small and image alignment is at the top and need to be in center. https://monosnap.com/file/LqSSRy7qN23wO2PZilrAJ3wQriUsDL https://secure.helpscout.net/conversation/1147125447/125033/
priority
need to make the table fromat look like same as amp by automatic s table output need to make the table look like same amp by automatic such as responsiveness images and the colums need to fix with in the screens in mobile large screens at like the same as amp by atuomatic amp by automatic ouput in mobile large screens at amp by automatic ouput in mobile small screens at amp by automatic ouput desktop view but when comes to ampforwp output there are some design issues like mentioned below as the output of the ampforwp should be the same amp by auotmaic ampfrowp ouput in mobile large screens at in desing image is getting displyed small ampfrowp ouput in mobile large screens at and as well in desing images are not getting displyed and the coulmn headings are misalligned at mobile medium screens in swift design at issue image is looking small and image alignment is at the top and need to be in center
1
350,900
10,510,360,737
IssuesEvent
2019-09-27 13:17:12
conan-io/conan
https://api.github.com/repos/conan-io/conan
closed
`ERROR: Cannot get the latest package without RREV` from `conan graph build-order` when all packages are cached
complex: medium component: graph priority: high stage: in-progress type: bug
Conan version: **1.18.2** I'm designing our new CI buid process based on lockfiles and revisions. If I have all packages built in the local cache and rerun the build, I'm getting the error mentioned in the the title. This is the invocation: ``` ❯ ./conan-bin graph build-order --build cascade --build outdated conan.lock Using lockfile: '/home/tamas/work/conan/conan.lock' bzip2/1.0.6: Package is up to date iconv/1.15: Package is up to date zlib/1.2.8: Package is up to date boost/1.69.0: Package is up to date ERROR: Cannot get the latest package without RREV. [Remote: toolchain] ``` If I remove at least one of the packages that were built (via `conan remove`) I'm not getting an error. I have no idea what this means, any clues? What can I do to avoid it? Also, I think `CONAN_VERBOSE_TRACEBACK` is broken as I'm not able to get a traceback for this error. EDIT: I created a minimal(-ish) repro [here](https://github.com/sztomi/cannot_get_latest_package). See the README in that repo for instructions.
1.0
`ERROR: Cannot get the latest package without RREV` from `conan graph build-order` when all packages are cached - Conan version: **1.18.2** I'm designing our new CI buid process based on lockfiles and revisions. If I have all packages built in the local cache and rerun the build, I'm getting the error mentioned in the the title. This is the invocation: ``` ❯ ./conan-bin graph build-order --build cascade --build outdated conan.lock Using lockfile: '/home/tamas/work/conan/conan.lock' bzip2/1.0.6: Package is up to date iconv/1.15: Package is up to date zlib/1.2.8: Package is up to date boost/1.69.0: Package is up to date ERROR: Cannot get the latest package without RREV. [Remote: toolchain] ``` If I remove at least one of the packages that were built (via `conan remove`) I'm not getting an error. I have no idea what this means, any clues? What can I do to avoid it? Also, I think `CONAN_VERBOSE_TRACEBACK` is broken as I'm not able to get a traceback for this error. EDIT: I created a minimal(-ish) repro [here](https://github.com/sztomi/cannot_get_latest_package). See the README in that repo for instructions.
priority
error cannot get the latest package without rrev from conan graph build order when all packages are cached conan version i m designing our new ci buid process based on lockfiles and revisions if i have all packages built in the local cache and rerun the build i m getting the error mentioned in the the title this is the invocation ❯ conan bin graph build order build cascade build outdated conan lock using lockfile home tamas work conan conan lock package is up to date iconv package is up to date zlib package is up to date boost package is up to date error cannot get the latest package without rrev if i remove at least one of the packages that were built via conan remove i m not getting an error i have no idea what this means any clues what can i do to avoid it also i think conan verbose traceback is broken as i m not able to get a traceback for this error edit i created a minimal ish repro see the readme in that repo for instructions
1
600,670
18,350,081,415
IssuesEvent
2021-10-08 11:25:03
AY2122S1-CS2113T-W11-3/tp
https://api.github.com/repos/AY2122S1-CS2113T-W11-3/tp
closed
Filter by keyword
type.Story priority.High
As a user I want to find tasks and lessons by keyword, so that I can quickly locate relevant information about tasks or lessons.
1.0
Filter by keyword - As a user I want to find tasks and lessons by keyword, so that I can quickly locate relevant information about tasks or lessons.
priority
filter by keyword as a user i want to find tasks and lessons by keyword so that i can quickly locate relevant information about tasks or lessons
1
818,572
30,694,985,705
IssuesEvent
2023-07-26 17:51:43
ESCOMP/CTSM
https://api.github.com/repos/ESCOMP/CTSM
opened
Change names on ctsm5.2 datasets to include context for "_78_" to "_78pfts"
priority: high
Names for landuse.timeseries on the ctsm5.2 branch currently is: lnd/clm2/surfdata_esmf/ctsm5.2.0/landuse.timeseries_0.9x1.25_hist_78_CMIP6_1850-2015_c230601.nc The _78_ part should become _78pfts_
1.0
Change names on ctsm5.2 datasets to include context for "_78_" to "_78pfts" - Names for landuse.timeseries on the ctsm5.2 branch currently is: lnd/clm2/surfdata_esmf/ctsm5.2.0/landuse.timeseries_0.9x1.25_hist_78_CMIP6_1850-2015_c230601.nc The _78_ part should become _78pfts_
priority
change names on datasets to include context for to names for landuse timeseries on the branch currently is lnd surfdata esmf landuse timeseries hist nc the part should become
1
406,343
11,890,319,455
IssuesEvent
2020-03-28 17:48:17
ballerina-platform/ballerina-lang
https://api.github.com/repos/ballerina-platform/ballerina-lang
closed
Create Local variable code action generates keyword as a variable name
Area/Tooling Component/LanguageServer Points/0.5 Priority/High Type/Bug
**Description:** Please consider the following snippet, ``` import ballerina/http; function name() { (int|http:Client) union = getUnion(); if (union is int) { } else { <invoke code action here>union.config; } } function getUnion() returns int|http:Client { return 12; } ``` When the **create local variable** code action is invoked, following variable is generated causing a syntax error. `http:ClientConfiguration client = union.config;` **Affected Versions:** v1.2.0-SNAPSHOT at least
1.0
Create Local variable code action generates keyword as a variable name - **Description:** Please consider the following snippet, ``` import ballerina/http; function name() { (int|http:Client) union = getUnion(); if (union is int) { } else { <invoke code action here>union.config; } } function getUnion() returns int|http:Client { return 12; } ``` When the **create local variable** code action is invoked, following variable is generated causing a syntax error. `http:ClientConfiguration client = union.config;` **Affected Versions:** v1.2.0-SNAPSHOT at least
priority
create local variable code action generates keyword as a variable name description please consider the following snippet import ballerina http function name int http client union getunion if union is int else union config function getunion returns int http client return when the create local variable code action is invoked following variable is generated causing a syntax error http clientconfiguration client union config affected versions snapshot at least
1
545,938
15,978,036,593
IssuesEvent
2021-04-17 08:04:31
dragonfruitnetwork/onionfruit
https://api.github.com/repos/dragonfruitnetwork/onionfruit
closed
autostart toggle bug
area:autostart is:high-priority state:cuttingedge type:bug
noticed this in the latest cutting-edge release, that if you enable autostart and proceed to disable it, it won't actually remove the entry from windows, so it'll still autostart
1.0
autostart toggle bug - noticed this in the latest cutting-edge release, that if you enable autostart and proceed to disable it, it won't actually remove the entry from windows, so it'll still autostart
priority
autostart toggle bug noticed this in the latest cutting edge release that if you enable autostart and proceed to disable it it won t actually remove the entry from windows so it ll still autostart
1
556,252
16,479,622,258
IssuesEvent
2021-05-24 09:53:18
DIT112-V21/group-16
https://api.github.com/repos/DIT112-V21/group-16
closed
Not being able to call pattern method
High priority Sprint 4 bug enhancement
We're trying to call a pattern method inside an if statement based on the condition that a certain message arrvies through a mqtt topic subscribtion. The mqtt messages seems to going to the broker, but the pattern never gets executed. The problem in this issue is the only blockage for completing #44
1.0
Not being able to call pattern method - We're trying to call a pattern method inside an if statement based on the condition that a certain message arrvies through a mqtt topic subscribtion. The mqtt messages seems to going to the broker, but the pattern never gets executed. The problem in this issue is the only blockage for completing #44
priority
not being able to call pattern method we re trying to call a pattern method inside an if statement based on the condition that a certain message arrvies through a mqtt topic subscribtion the mqtt messages seems to going to the broker but the pattern never gets executed the problem in this issue is the only blockage for completing
1
353,319
10,551,478,829
IssuesEvent
2019-10-03 13:25:35
code4romania/mon-vot-android-kotlin
https://api.github.com/repos/code4romania/mon-vot-android-kotlin
closed
Integrate Room db
db enhancement help wanted high-priority kotlin
Integrate the [Room Persistence Lib](https://developer.android.com/topic/libraries/architecture/room) in the app. The basic data model entities are in the /src/.../data/model package.
1.0
Integrate Room db - Integrate the [Room Persistence Lib](https://developer.android.com/topic/libraries/architecture/room) in the app. The basic data model entities are in the /src/.../data/model package.
priority
integrate room db integrate the in the app the basic data model entities are in the src data model package
1
640,901
20,811,613,648
IssuesEvent
2022-03-18 03:49:30
twisted/pydoctor
https://api.github.com/repos/twisted/pydoctor
closed
Only first value of multi-value parameter tilde-expanded
Triaged High priority Trivial to fix
Originally reported as Twisted issue 2623: > This is due to the fact that the config file parsing code invokes os.expanduser before splitting on commas. --- Imported from Launchpad using lp2gh. - date created: 2009-08-06T18:50:01Z - owner: exarkun - the launchpad url was https://bugs.launchpad.net/bugs/410004
1.0
Only first value of multi-value parameter tilde-expanded - Originally reported as Twisted issue 2623: > This is due to the fact that the config file parsing code invokes os.expanduser before splitting on commas. --- Imported from Launchpad using lp2gh. - date created: 2009-08-06T18:50:01Z - owner: exarkun - the launchpad url was https://bugs.launchpad.net/bugs/410004
priority
only first value of multi value parameter tilde expanded originally reported as twisted issue this is due to the fact that the config file parsing code invokes os expanduser before splitting on commas imported from launchpad using date created owner exarkun the launchpad url was
1
606,458
18,762,826,770
IssuesEvent
2021-11-05 18:40:37
numpy/numpy
https://api.github.com/repos/numpy/numpy
closed
Performance of asarray() when input is already an array
priority: high component: numpy.core
I have noticed that `np.asarray(x)` and `np.asarray(x, float)` have pretty big overheads when the input, `x`, is already a float array. One could perhaps check whether that is already the case, immediately returning `x` if possible. The additional check would have a negligible cost in the case where a conversion is needed (because the conversion e.g. from a `x` that's a list is much slower than anything else). ### Reproducing code example: ``` In [1]: x = np.random.rand(10, 10) In [2]: %timeit np.asarray(x) 345 ns ± 0.53 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) In [3]: %timeit np.asarray(x, float) 613 ns ± 0.274 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) # Check for fast path. In [4]: %timeit x if type(x) is np.ndarray and x.dtype == float else np.asarray(x, float) 214 ns ± 0.894 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) In [5]: x = np.random.rand(10, 10).tolist() In [6]: %timeit np.asarray(x) 6.77 µs ± 6.7 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) In [7]: %timeit np.asarray(x, float) 6.78 µs ± 14.8 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) # The additional check is a bit slower but not so much, relatively speaking. In [8]: %timeit x if type(x) is np.ndarray and x.dtype == float else np.asarray(x, float) 6.93 µs ± 10.1 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) ``` ### Numpy/Python version information: <!-- Output from 'import sys, numpy; print(numpy.__version__, sys.version)' --> ``` 1.16.3 3.7.3 (default, Mar 26 2019, 21:43:19) [GCC 8.2.1 20181127] ```
1.0
Performance of asarray() when input is already an array - I have noticed that `np.asarray(x)` and `np.asarray(x, float)` have pretty big overheads when the input, `x`, is already a float array. One could perhaps check whether that is already the case, immediately returning `x` if possible. The additional check would have a negligible cost in the case where a conversion is needed (because the conversion e.g. from a `x` that's a list is much slower than anything else). ### Reproducing code example: ``` In [1]: x = np.random.rand(10, 10) In [2]: %timeit np.asarray(x) 345 ns ± 0.53 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) In [3]: %timeit np.asarray(x, float) 613 ns ± 0.274 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) # Check for fast path. In [4]: %timeit x if type(x) is np.ndarray and x.dtype == float else np.asarray(x, float) 214 ns ± 0.894 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each) In [5]: x = np.random.rand(10, 10).tolist() In [6]: %timeit np.asarray(x) 6.77 µs ± 6.7 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) In [7]: %timeit np.asarray(x, float) 6.78 µs ± 14.8 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) # The additional check is a bit slower but not so much, relatively speaking. In [8]: %timeit x if type(x) is np.ndarray and x.dtype == float else np.asarray(x, float) 6.93 µs ± 10.1 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each) ``` ### Numpy/Python version information: <!-- Output from 'import sys, numpy; print(numpy.__version__, sys.version)' --> ``` 1.16.3 3.7.3 (default, Mar 26 2019, 21:43:19) [GCC 8.2.1 20181127] ```
priority
performance of asarray when input is already an array i have noticed that np asarray x and np asarray x float have pretty big overheads when the input x is already a float array one could perhaps check whether that is already the case immediately returning x if possible the additional check would have a negligible cost in the case where a conversion is needed because the conversion e g from a x that s a list is much slower than anything else reproducing code example in x np random rand in timeit np asarray x ns ± ns per loop mean ± std dev of runs loops each in timeit np asarray x float ns ± ns per loop mean ± std dev of runs loops each check for fast path in timeit x if type x is np ndarray and x dtype float else np asarray x float ns ± ns per loop mean ± std dev of runs loops each in x np random rand tolist in timeit np asarray x µs ± ns per loop mean ± std dev of runs loops each in timeit np asarray x float µs ± ns per loop mean ± std dev of runs loops each the additional check is a bit slower but not so much relatively speaking in timeit x if type x is np ndarray and x dtype float else np asarray x float µs ± ns per loop mean ± std dev of runs loops each numpy python version information default mar
1
2,290
2,525,012,395
IssuesEvent
2015-01-20 21:36:17
graybeal/ont
https://api.github.com/repos/graybeal/ont
closed
Unwanted characters in uploaded ontology
2–5 stars bug imported portal Priority-High
_From [steph_wa...@consolidated.net](https://code.google.com/u/112846428158176258467/) on December 30, 2009 14:22:23_ What steps will reproduce the problem? 1.upload rdi.owl file (attached) 2.review file. See "Â" character distributed throughout the uploaded file. These characters are not apparent in the file before uploading. 3. What is the expected output? no "Â" characters What do you see instead? see above What version of the product are you using? Please provide any additional information below (particular ontology/ies, text contents of vocabulary (voc2rdf), operating system, browser/version (Firefox, Safari, Chrome, IE, etc.), screenshot, etc.) **Attachment:** [rdi.owl.txt](http://code.google.com/p/mmisw/issues/detail?id=236) _Original issue: http://code.google.com/p/mmisw/issues/detail?id=236_
1.0
Unwanted characters in uploaded ontology - _From [steph_wa...@consolidated.net](https://code.google.com/u/112846428158176258467/) on December 30, 2009 14:22:23_ What steps will reproduce the problem? 1.upload rdi.owl file (attached) 2.review file. See "Â" character distributed throughout the uploaded file. These characters are not apparent in the file before uploading. 3. What is the expected output? no "Â" characters What do you see instead? see above What version of the product are you using? Please provide any additional information below (particular ontology/ies, text contents of vocabulary (voc2rdf), operating system, browser/version (Firefox, Safari, Chrome, IE, etc.), screenshot, etc.) **Attachment:** [rdi.owl.txt](http://code.google.com/p/mmisw/issues/detail?id=236) _Original issue: http://code.google.com/p/mmisw/issues/detail?id=236_
priority
unwanted characters in uploaded ontology from on december what steps will reproduce the problem upload rdi owl file attached review file see â character distributed throughout the uploaded file these characters are not apparent in the file before uploading what is the expected output no â characters what do you see instead see above what version of the product are you using please provide any additional information below particular ontology ies text contents of vocabulary operating system browser version firefox safari chrome ie etc screenshot etc attachment original issue
1
2,760
2,533,193,301
IssuesEvent
2015-01-23 21:25:01
WeAreAthlon/silla.io
https://api.github.com/repos/WeAreAthlon/silla.io
closed
CMS UI entity filtering for a type multi-select field is not working.
bug high priority
The fix is amending the `cms/views/_shared/entities/types/multiselect/filter.html.tpl`: From this: ```Smarty <select name="filtering[{$field}]" id="filter-attribute-{$field}[]" ... ... ``` to this: ```Smarty <select name="filtering[{$field}][]" id="filter-attribute-{$field}" ... ```
1.0
CMS UI entity filtering for a type multi-select field is not working. - The fix is amending the `cms/views/_shared/entities/types/multiselect/filter.html.tpl`: From this: ```Smarty <select name="filtering[{$field}]" id="filter-attribute-{$field}[]" ... ... ``` to this: ```Smarty <select name="filtering[{$field}][]" id="filter-attribute-{$field}" ... ```
priority
cms ui entity filtering for a type multi select field is not working the fix is amending the cms views shared entities types multiselect filter html tpl from this smarty select name filtering id filter attribute field to this smarty select name filtering id filter attribute field
1
137,173
5,294,981,914
IssuesEvent
2017-02-09 12:32:50
NostraliaWoW/mangoszero
https://api.github.com/repos/NostraliaWoW/mangoszero
opened
Rogue trainer not working
Priority - High Spell System
Rogue trainers are not working right now, when you try and learn the skill the NPC takes your gold but you don't learn the skill. All rogue trainers are affected. Gutrot and I have tested it and the report is true, we have removed the NPC and spawned it back to see if that will fix the problem but it did not. We will test other class NPCs to see if this also effects them to. Reported by Thetabop 12g will be given back to the player Skill sap was given to the player by Gutrot rank2
1.0
Rogue trainer not working - Rogue trainers are not working right now, when you try and learn the skill the NPC takes your gold but you don't learn the skill. All rogue trainers are affected. Gutrot and I have tested it and the report is true, we have removed the NPC and spawned it back to see if that will fix the problem but it did not. We will test other class NPCs to see if this also effects them to. Reported by Thetabop 12g will be given back to the player Skill sap was given to the player by Gutrot rank2
priority
rogue trainer not working rogue trainers are not working right now when you try and learn the skill the npc takes your gold but you don t learn the skill all rogue trainers are affected gutrot and i have tested it and the report is true we have removed the npc and spawned it back to see if that will fix the problem but it did not we will test other class npcs to see if this also effects them to reported by thetabop will be given back to the player skill sap was given to the player by gutrot
1
224,389
7,469,672,740
IssuesEvent
2018-04-03 00:11:45
SparkDevNetwork/Rock
https://api.github.com/repos/SparkDevNetwork/Rock
closed
Gmail iOS font fix broken on V7 email templates
Fixed in v7.4 Priority: High Topic: Communications Type: Bug
### Prerequisites * [x] Put an X between the brackets on this line if you have done all of the following: * Can you reproduce the problem on a fresh install or the [demo site](http://rock.rocksolidchurchdemo.com/)? * Did you include your Rock version number and [client culture](https://github.com/SparkDevNetwork/Rock/wiki/Environment-and-Diagnostics-Information) setting? * Did you [perform a cursory search](https://github.com/issues?q=is%3Aissue+user%3ASparkDevNetwork+-repo%3ASparkDevNetwork%2FSlack) to see if your bug or enhancement is already reported? ### Description V7 templates include a fix for iOS on V7 that's broken because `&nbsp;` is encoded as `&amp;nbsp;` ``` <!-- prevent Gmail on iOS font size manipulation --> <div style="display:none; white-space:nowrap; font:15px courier; line-height:0;"> &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; </div> ``` ### Steps to Reproduce 1. Search Rock migrations for `&amp;nbsp;` or send the default template **Expected behavior:** `&nbsp;` **Actual behavior:** `&amp;nbsp;` ### Versions * **Rock Version:** 7.2 * **Client Culture Setting:** en-US
1.0
Gmail iOS font fix broken on V7 email templates - ### Prerequisites * [x] Put an X between the brackets on this line if you have done all of the following: * Can you reproduce the problem on a fresh install or the [demo site](http://rock.rocksolidchurchdemo.com/)? * Did you include your Rock version number and [client culture](https://github.com/SparkDevNetwork/Rock/wiki/Environment-and-Diagnostics-Information) setting? * Did you [perform a cursory search](https://github.com/issues?q=is%3Aissue+user%3ASparkDevNetwork+-repo%3ASparkDevNetwork%2FSlack) to see if your bug or enhancement is already reported? ### Description V7 templates include a fix for iOS on V7 that's broken because `&nbsp;` is encoded as `&amp;nbsp;` ``` <!-- prevent Gmail on iOS font size manipulation --> <div style="display:none; white-space:nowrap; font:15px courier; line-height:0;"> &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; </div> ``` ### Steps to Reproduce 1. Search Rock migrations for `&amp;nbsp;` or send the default template **Expected behavior:** `&nbsp;` **Actual behavior:** `&amp;nbsp;` ### Versions * **Rock Version:** 7.2 * **Client Culture Setting:** en-US
priority
gmail ios font fix broken on email templates prerequisites put an x between the brackets on this line if you have done all of the following can you reproduce the problem on a fresh install or the did you include your rock version number and setting did you to see if your bug or enhancement is already reported description templates include a fix for ios on that s broken because nbsp is encoded as amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp amp nbsp steps to reproduce search rock migrations for amp nbsp or send the default template expected behavior nbsp actual behavior amp nbsp versions rock version client culture setting en us
1
117,653
4,726,176,990
IssuesEvent
2016-10-18 09:23:13
CS2103AUG2016-F10-C1/main
https://api.github.com/repos/CS2103AUG2016-F10-C1/main
closed
Add information header
priority.high type.enhancement
Refer to below for example <img width="941" alt="screen shot 2016-10-12 at 6 11 32 pm" src="https://cloud.githubusercontent.com/assets/12406588/19392513/a4c23e86-9263-11e6-9044-c4f744530fe1.png">
1.0
Add information header - Refer to below for example <img width="941" alt="screen shot 2016-10-12 at 6 11 32 pm" src="https://cloud.githubusercontent.com/assets/12406588/19392513/a4c23e86-9263-11e6-9044-c4f744530fe1.png">
priority
add information header refer to below for example img width alt screen shot at pm src
1
163,041
6,188,858,234
IssuesEvent
2017-07-04 11:20:40
handsontable/handsontable
https://api.github.com/repos/handsontable/handsontable
opened
ESlint rules update
Core: handsontable Guess: few hours Priority: high Status: In development Type: Bug
### Description <!--- Tell us what happens and what should happen --> To [prevent this bug](https://github.com/handsontable/handsontable/pull/4359) I suggest adding a rule to the ESLint. This rule will be responsible for checking if any of commits does not contain code which directly touches a `Handsontable` variable. ### Steps to reproduce <!--- Provide steps to reproduce this issue --> 1. Build Handsontable example using browserify (or webpack etc.). 2. Open a `dropdown` editor. 3. There will be an error about trying to access to `Handsontable` variable which does not exist. ### Your environment * Handsontable version: 0.32.0
1.0
ESlint rules update - ### Description <!--- Tell us what happens and what should happen --> To [prevent this bug](https://github.com/handsontable/handsontable/pull/4359) I suggest adding a rule to the ESLint. This rule will be responsible for checking if any of commits does not contain code which directly touches a `Handsontable` variable. ### Steps to reproduce <!--- Provide steps to reproduce this issue --> 1. Build Handsontable example using browserify (or webpack etc.). 2. Open a `dropdown` editor. 3. There will be an error about trying to access to `Handsontable` variable which does not exist. ### Your environment * Handsontable version: 0.32.0
priority
eslint rules update description to i suggest adding a rule to the eslint this rule will be responsible for checking if any of commits does not contain code which directly touches a handsontable variable steps to reproduce build handsontable example using browserify or webpack etc open a dropdown editor there will be an error about trying to access to handsontable variable which does not exist your environment handsontable version
1
811,067
30,273,443,473
IssuesEvent
2023-07-07 17:20:13
KinsonDigital/CASL
https://api.github.com/repos/KinsonDigital/CASL
opened
🚧Improve workflows
♻️cicd high priority preview
### Complete The Item Below - [X] I have updated the title without removing the 🚧 emoji. ### Description Update the preview release workflow to use the latest version of the reusable release workflow from the infrastructure repository. Also, create a production release workflow that utilizes the new release system. ### Acceptance Criteria - [ ] Preview release workflow updated for infrastructure changes _**v7.0.3**_ - [ ] Production release workflow created for production releases. - [ ] This uses infrastructure version _**v7.0.3**_ - [ ] Update the _**sync-bot-status-check.yml**_ workflow to be like Velaptors version. ### ToDo Items - [X] Change type labels added to this issue. Refer to the _**Change Type Labels**_ section below. - [X] Priority label added to this issue. Refer to the _**Priority Type Labels**_ section below. - [X] Issue linked to the correct project _(if applicable)_. - [X] Issue linked to the correct milestone _(if applicable)_. - [ ] Draft pull request created and linked to this issue _(only required with code changes)_. ### Issue Dependencies _No response_ ### Related Work _No response_ ### Additional Information: **_<details closed><summary>Change Type Labels</summary>_** | Change Type | Label | |---------------------|----------------------| | Bug Fixes | `🐛bug` | | Breaking Changes | `🧨breaking changes` | | New Feature | `✨new feature` | | CICD Changes | `♻️cicd` | | Code Doc Changes | `🗒️documentation/code` | | Product Doc Changes | `📝documentation/product` | </details> **_<details closed><summary>Priority Type Labels</summary>_** | Priority Type | Label | |---------------------|-------------------| | Low Priority | `low priority` | | Medium Priority | `medium priority` | | High Priority | `high priority` | </details> ### Code of Conduct - [X] I agree to follow this project's Code of Conduct.
1.0
🚧Improve workflows - ### Complete The Item Below - [X] I have updated the title without removing the 🚧 emoji. ### Description Update the preview release workflow to use the latest version of the reusable release workflow from the infrastructure repository. Also, create a production release workflow that utilizes the new release system. ### Acceptance Criteria - [ ] Preview release workflow updated for infrastructure changes _**v7.0.3**_ - [ ] Production release workflow created for production releases. - [ ] This uses infrastructure version _**v7.0.3**_ - [ ] Update the _**sync-bot-status-check.yml**_ workflow to be like Velaptors version. ### ToDo Items - [X] Change type labels added to this issue. Refer to the _**Change Type Labels**_ section below. - [X] Priority label added to this issue. Refer to the _**Priority Type Labels**_ section below. - [X] Issue linked to the correct project _(if applicable)_. - [X] Issue linked to the correct milestone _(if applicable)_. - [ ] Draft pull request created and linked to this issue _(only required with code changes)_. ### Issue Dependencies _No response_ ### Related Work _No response_ ### Additional Information: **_<details closed><summary>Change Type Labels</summary>_** | Change Type | Label | |---------------------|----------------------| | Bug Fixes | `🐛bug` | | Breaking Changes | `🧨breaking changes` | | New Feature | `✨new feature` | | CICD Changes | `♻️cicd` | | Code Doc Changes | `🗒️documentation/code` | | Product Doc Changes | `📝documentation/product` | </details> **_<details closed><summary>Priority Type Labels</summary>_** | Priority Type | Label | |---------------------|-------------------| | Low Priority | `low priority` | | Medium Priority | `medium priority` | | High Priority | `high priority` | </details> ### Code of Conduct - [X] I agree to follow this project's Code of Conduct.
priority
🚧improve workflows complete the item below i have updated the title without removing the 🚧 emoji description update the preview release workflow to use the latest version of the reusable release workflow from the infrastructure repository also create a production release workflow that utilizes the new release system acceptance criteria preview release workflow updated for infrastructure changes production release workflow created for production releases this uses infrastructure version update the sync bot status check yml workflow to be like velaptors version todo items change type labels added to this issue refer to the change type labels section below priority label added to this issue refer to the priority type labels section below issue linked to the correct project if applicable issue linked to the correct milestone if applicable draft pull request created and linked to this issue only required with code changes issue dependencies no response related work no response additional information change type labels change type label bug fixes 🐛bug breaking changes 🧨breaking changes new feature ✨new feature cicd changes ♻️cicd code doc changes 🗒️documentation code product doc changes 📝documentation product priority type labels priority type label low priority low priority medium priority medium priority high priority high priority code of conduct i agree to follow this project s code of conduct
1
693,545
23,780,974,867
IssuesEvent
2022-09-02 04:44:45
ballerina-platform/ballerina-dev-website
https://api.github.com/repos/ballerina-platform/ballerina-dev-website
closed
Link for more download options is broken on website
Priority/Highest Type/Bug Area/LearnPages Reason/Regression WebsiteRewrite
## Description > The download link after "For more download options, see" on https://ballerina.io/learn/install-ballerina/set-up-ballerina/ page is broken/ wrong it points to https://ballerina.io/download/ which results in 404 error while the actual link should be https://ballerina.io/downloads/ ## Steps to reproduce > Go to https://ballerina.io/learn/install-ballerina/set-up-ballerina/ page and click on the Download link after "For more download options, see" ## Affected version(s) > ballerina.io website ## Related website/documentation area https://ballerina.io/learn/install-ballerina/set-up-ballerina/
1.0
Link for more download options is broken on website - ## Description > The download link after "For more download options, see" on https://ballerina.io/learn/install-ballerina/set-up-ballerina/ page is broken/ wrong it points to https://ballerina.io/download/ which results in 404 error while the actual link should be https://ballerina.io/downloads/ ## Steps to reproduce > Go to https://ballerina.io/learn/install-ballerina/set-up-ballerina/ page and click on the Download link after "For more download options, see" ## Affected version(s) > ballerina.io website ## Related website/documentation area https://ballerina.io/learn/install-ballerina/set-up-ballerina/
priority
link for more download options is broken on website description the download link after for more download options see on page is broken wrong it points to which results in error while the actual link should be steps to reproduce go to page and click on the download link after for more download options see affected version s ballerina io website related website documentation area
1
725,522
24,964,626,538
IssuesEvent
2022-11-01 18:17:46
InstituteforDiseaseModeling/idmtools
https://api.github.com/repos/InstituteforDiseaseModeling/idmtools
closed
Performance issue with DownloadWorkItem
bug High priority Core Research COMPS Exclude from Changelog
Following code take 740 mins to download stuff from that experiment https://comps.idmod.org/#explore/WorkItems?filters=Owner=shchen&offset=0&mode=list&orderby=DateCreated+desc&count=80&selectedId=b2accc68-6abb-ec11-a9f6-9440c9be2c51 ``` import os import sys from idmtools.core.platform_factory import Platform from idmtools_platform_comps.utils.download.download import DownloadWorkItem platform = Platform("CALCULON") dl_wi = DownloadWorkItem(name=os.path.split(sys.argv[0])[1], related_experiments=['7315ec4e-7880-ec11-a9f3-9440c9be2c51'], file_patterns=["output/ReportStrainTracking01.csv"], delete_after_download=False, verbose=True, output_path=os.path.join(os.getcwd(), "output_dir"), #compress_type='lzma' ) dl_wi.run(wait_on_done=True, platform=platform) ``` This seems way too long. Local download with multiple threading only took few mins for same experiment. we have a research partner (Jillian for example) who is affected by this bug, although she currently has a workaround.
1.0
Performance issue with DownloadWorkItem - Following code take 740 mins to download stuff from that experiment https://comps.idmod.org/#explore/WorkItems?filters=Owner=shchen&offset=0&mode=list&orderby=DateCreated+desc&count=80&selectedId=b2accc68-6abb-ec11-a9f6-9440c9be2c51 ``` import os import sys from idmtools.core.platform_factory import Platform from idmtools_platform_comps.utils.download.download import DownloadWorkItem platform = Platform("CALCULON") dl_wi = DownloadWorkItem(name=os.path.split(sys.argv[0])[1], related_experiments=['7315ec4e-7880-ec11-a9f3-9440c9be2c51'], file_patterns=["output/ReportStrainTracking01.csv"], delete_after_download=False, verbose=True, output_path=os.path.join(os.getcwd(), "output_dir"), #compress_type='lzma' ) dl_wi.run(wait_on_done=True, platform=platform) ``` This seems way too long. Local download with multiple threading only took few mins for same experiment. we have a research partner (Jillian for example) who is affected by this bug, although she currently has a workaround.
priority
performance issue with downloadworkitem following code take mins to download stuff from that experiment import os import sys from idmtools core platform factory import platform from idmtools platform comps utils download download import downloadworkitem platform platform calculon dl wi downloadworkitem name os path split sys argv related experiments file patterns delete after download false verbose true output path os path join os getcwd output dir compress type lzma dl wi run wait on done true platform platform this seems way too long local download with multiple threading only took few mins for same experiment we have a research partner jillian for example who is affected by this bug although she currently has a workaround
1
617,341
19,348,735,884
IssuesEvent
2021-12-15 13:39:52
Esri/solutions-widget-utility-network-trace
https://api.github.com/repos/Esri/solutions-widget-utility-network-trace
closed
Use networkAttributeName as label for Function
enhancement JSAPI widget Priority - High
![image](https://user-images.githubusercontent.com/50338557/145870641-28d1ecfa-4b7c-4fc3-9230-57c145deeef8.png) instead of functionType ![image](https://user-images.githubusercontent.com/50338557/145870792-63f0e9a6-4277-476e-a460-453f3ecc9b33.png) This needs to be added to the trace API first.
1.0
Use networkAttributeName as label for Function - ![image](https://user-images.githubusercontent.com/50338557/145870641-28d1ecfa-4b7c-4fc3-9230-57c145deeef8.png) instead of functionType ![image](https://user-images.githubusercontent.com/50338557/145870792-63f0e9a6-4277-476e-a460-453f3ecc9b33.png) This needs to be added to the trace API first.
priority
use networkattributename as label for function instead of functiontype this needs to be added to the trace api first
1
802,776
29,045,854,087
IssuesEvent
2023-05-13 14:50:06
polyphony-chat/chorus
https://api.github.com/repos/polyphony-chat/chorus
closed
Fix failing build
Priority: High Status: Accepted Difficulty: Easy
The build is currently failing. This is, because the server likely does not have the correct/up-to-date schemas. Should be fixed.
1.0
Fix failing build - The build is currently failing. This is, because the server likely does not have the correct/up-to-date schemas. Should be fixed.
priority
fix failing build the build is currently failing this is because the server likely does not have the correct up to date schemas should be fixed
1
294,590
9,037,267,977
IssuesEvent
2019-02-09 08:42:12
cs2113-ay1819s2-m11-1/main
https://api.github.com/repos/cs2113-ay1819s2-m11-1/main
opened
As a soccer player, i can update my current goals in the league.
priority.High type.Story
So that other teams will recruit me for my skills
1.0
As a soccer player, i can update my current goals in the league. - So that other teams will recruit me for my skills
priority
as a soccer player i can update my current goals in the league so that other teams will recruit me for my skills
1