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
957
labels
stringlengths
4
795
body
stringlengths
1
259k
index
stringclasses
12 values
text_combine
stringlengths
96
259k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
286,791
8,793,242,635
IssuesEvent
2018-12-21 19:08:52
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
closed
Create local account: Ability to specify password length
Priority: Medium Type: Feature / Enhancement
Right now, its preset to 10 characters or so which creates long passwords to remember. We should allow the user to specify the length of the password in the source.
1.0
Create local account: Ability to specify password length - Right now, its preset to 10 characters or so which creates long passwords to remember. We should allow the user to specify the length of the password in the source.
priority
create local account ability to specify password length right now its preset to characters or so which creates long passwords to remember we should allow the user to specify the length of the password in the source
1
24,827
2,673,679,883
IssuesEvent
2015-03-24 20:37:14
nilsbraden/ttrss-reader-fork
https://api.github.com/repos/nilsbraden/ttrss-reader-fork
closed
disable media loading
auto-migrated Priority-Medium Type-Enhancement
``` There is a feature to disable image loading in the android client but not yet to disable other external media (audio and video). Today the audio seems to load by itself without clicking on the play bouton. It would be usefull if we can disable it to not use a lot of data. ``` Original issue reported on code.google.com by `va...@hotmail.fr` on 5 Feb 2015 at 9:32
1.0
disable media loading - ``` There is a feature to disable image loading in the android client but not yet to disable other external media (audio and video). Today the audio seems to load by itself without clicking on the play bouton. It would be usefull if we can disable it to not use a lot of data. ``` Original issue reported on code.google.com by `va...@hotmail.fr` on 5 Feb 2015 at 9:32
priority
disable media loading there is a feature to disable image loading in the android client but not yet to disable other external media audio and video today the audio seems to load by itself without clicking on the play bouton it would be usefull if we can disable it to not use a lot of data original issue reported on code google com by va hotmail fr on feb at
1
460,411
13,209,322,801
IssuesEvent
2020-08-15 10:36:31
hjk789/NXEnhancer
https://api.github.com/repos/hjk789/NXEnhancer
closed
Replace Allow/Deny Domain IFRAME With REST Request
Medium priority Rework enhancement
I have not tested this yet, but has this been attempted? Currently when you add a domain to the allow/deny lists using the buttons in the Logs tab it opens up an IFRAME, which does not always display correctly depending your screen zoom, font settings, addons that may alter layout, etc. This also requires the user to have to hit the spacebar to submit the domain. An alternative is to emulate the action of adding a domain by submitting the same requests that would otherwise be sent from the allow/deny list tabs. When you add a domain for the allow list it sends two requests to the server. The hex value is the domain hex-encoded. Adding `example.com` would do the following: **Request 1** ``` Method: OPTIONS URL: https://api.nextdns.io/configurations/YOUR_CONFIG/allowlist/hex:6578616d706c652e636f6d ``` **Request 2** ``` Method: PUT URL: https://api.nextdns.io/configurations/YOUR_CONFIG/allowlist/hex:6578616d706c652e636f6d JSON Payload: {"domain":"example.com","active":true} ``` The same could be done for the deny list. This would allow seamless integration that does not require an IFRAME and is a one click action. Thoughts?
1.0
Replace Allow/Deny Domain IFRAME With REST Request - I have not tested this yet, but has this been attempted? Currently when you add a domain to the allow/deny lists using the buttons in the Logs tab it opens up an IFRAME, which does not always display correctly depending your screen zoom, font settings, addons that may alter layout, etc. This also requires the user to have to hit the spacebar to submit the domain. An alternative is to emulate the action of adding a domain by submitting the same requests that would otherwise be sent from the allow/deny list tabs. When you add a domain for the allow list it sends two requests to the server. The hex value is the domain hex-encoded. Adding `example.com` would do the following: **Request 1** ``` Method: OPTIONS URL: https://api.nextdns.io/configurations/YOUR_CONFIG/allowlist/hex:6578616d706c652e636f6d ``` **Request 2** ``` Method: PUT URL: https://api.nextdns.io/configurations/YOUR_CONFIG/allowlist/hex:6578616d706c652e636f6d JSON Payload: {"domain":"example.com","active":true} ``` The same could be done for the deny list. This would allow seamless integration that does not require an IFRAME and is a one click action. Thoughts?
priority
replace allow deny domain iframe with rest request i have not tested this yet but has this been attempted currently when you add a domain to the allow deny lists using the buttons in the logs tab it opens up an iframe which does not always display correctly depending your screen zoom font settings addons that may alter layout etc this also requires the user to have to hit the spacebar to submit the domain an alternative is to emulate the action of adding a domain by submitting the same requests that would otherwise be sent from the allow deny list tabs when you add a domain for the allow list it sends two requests to the server the hex value is the domain hex encoded adding example com would do the following request method options url request method put url json payload domain example com active true the same could be done for the deny list this would allow seamless integration that does not require an iframe and is a one click action thoughts
1
383,784
11,362,371,296
IssuesEvent
2020-01-26 20:51:01
RobotLocomotion/drake
https://api.github.com/repos/RobotLocomotion/drake
opened
pybind fails to convert an ndarray of shape (0, 2) to eigen?
configuration: python priority: medium team: manipulation type: bug
The symptom is truly strage. This code ``` import numpy as np from pydrake.systems.primitives import LinearSystem A=np.zeros((0,0)) B=np.zeros((0,2)) C=np.zeros((2,0)) D=np.eye(2) sys = LinearSystem(A=A,B=B,C=C,D=D) ``` fails with ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-111-9166b2860e4e> in <module>() 6 C=np.zeros((2,0)) 7 D=np.eye(2) ----> 8 sys = LinearSystem(A=A,B=B,C=C,D=D) TypeError: __init__(): incompatible constructor arguments. The following argument types are supported: 1. pydrake.systems.primitives.LinearSystem_[float](A: numpy.ndarray[float64[m, n], flags.f_contiguous], B: numpy.ndarray[float64[m, n], flags.f_contiguous], C: numpy.ndarray[float64[m, n], flags.f_contiguous], D: numpy.ndarray[float64[m, n], flags.f_contiguous], time_period: float = 0.0) Invoked with: kwargs: A=array([], shape=(0, 0), dtype=float64), B=array([], shape=(0, 2), dtype=float64), C=array([], shape=(2, 0), dtype=float64), D=array([[ 1., 0.], [ 0., 1.]]) ``` But this works... ``` import numpy as np from pydrake.systems.primitives import LinearSystem A=np.zeros((0,0)) B=np.zeros((0,1)) C=np.zeros((1,0)) D=np.eye(1) sys = LinearSystem(A=A,B=B,C=C,D=D) ``` Similarly, taking the original code, but using `B = np.zeros((0,1))` or `B=np.zeros(1,2)` results in the expected behavior -- it calls to the bound constructor and then complains about the size mismatch. `B=np.zeros(0,3)` or higher also fail unexpectedly. I'm stumped.
1.0
pybind fails to convert an ndarray of shape (0, 2) to eigen? - The symptom is truly strage. This code ``` import numpy as np from pydrake.systems.primitives import LinearSystem A=np.zeros((0,0)) B=np.zeros((0,2)) C=np.zeros((2,0)) D=np.eye(2) sys = LinearSystem(A=A,B=B,C=C,D=D) ``` fails with ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-111-9166b2860e4e> in <module>() 6 C=np.zeros((2,0)) 7 D=np.eye(2) ----> 8 sys = LinearSystem(A=A,B=B,C=C,D=D) TypeError: __init__(): incompatible constructor arguments. The following argument types are supported: 1. pydrake.systems.primitives.LinearSystem_[float](A: numpy.ndarray[float64[m, n], flags.f_contiguous], B: numpy.ndarray[float64[m, n], flags.f_contiguous], C: numpy.ndarray[float64[m, n], flags.f_contiguous], D: numpy.ndarray[float64[m, n], flags.f_contiguous], time_period: float = 0.0) Invoked with: kwargs: A=array([], shape=(0, 0), dtype=float64), B=array([], shape=(0, 2), dtype=float64), C=array([], shape=(2, 0), dtype=float64), D=array([[ 1., 0.], [ 0., 1.]]) ``` But this works... ``` import numpy as np from pydrake.systems.primitives import LinearSystem A=np.zeros((0,0)) B=np.zeros((0,1)) C=np.zeros((1,0)) D=np.eye(1) sys = LinearSystem(A=A,B=B,C=C,D=D) ``` Similarly, taking the original code, but using `B = np.zeros((0,1))` or `B=np.zeros(1,2)` results in the expected behavior -- it calls to the bound constructor and then complains about the size mismatch. `B=np.zeros(0,3)` or higher also fail unexpectedly. I'm stumped.
priority
pybind fails to convert an ndarray of shape to eigen the symptom is truly strage this code import numpy as np from pydrake systems primitives import linearsystem a np zeros b np zeros c np zeros d np eye sys linearsystem a a b b c c d d fails with typeerror traceback most recent call last in c np zeros d np eye sys linearsystem a a b b c c d d typeerror init incompatible constructor arguments the following argument types are supported pydrake systems primitives linearsystem a numpy ndarray flags f contiguous b numpy ndarray flags f contiguous c numpy ndarray flags f contiguous d numpy ndarray flags f contiguous time period float invoked with kwargs a array shape dtype b array shape dtype c array shape dtype d array but this works import numpy as np from pydrake systems primitives import linearsystem a np zeros b np zeros c np zeros d np eye sys linearsystem a a b b c c d d similarly taking the original code but using b np zeros or b np zeros results in the expected behavior it calls to the bound constructor and then complains about the size mismatch b np zeros or higher also fail unexpectedly i m stumped
1
112,956
4,540,773,336
IssuesEvent
2016-09-09 15:37:03
DoSomething/phoenix
https://api.github.com/repos/DoSomething/phoenix
closed
Query: Attempt to get registrations against custom social link
#voter-registration priority-medium
_FEATURE OVERVIEW_ ------------------- #### User Story As an impact admin, I want to be able to see who has registered via a custom social link. I will use this to drive competitions. #### Additional Information (optional) Brief recap of what (i think) we talked about: - file 1 of alpha (email, name), their custom social link, and the betas (email, name) that come in through that custom social link and sign-up - file 2 from RTV of number of completed registrations do a comparison of betas emails on file 1 and file 2 -- that would be the true # of people the alpha got to successfully register #### Why This Matters so we can have a competition around registrations #### Steps for Testing (my notes) 1. make gladiator competition 2. manually opt-in "Yes" 3. save the custom social link 4. use the custom social link multiple times w/ different email addresses 5. some tests will be 18+ and completing the registration form and some will be under 18 and doing social
1.0
Query: Attempt to get registrations against custom social link - _FEATURE OVERVIEW_ ------------------- #### User Story As an impact admin, I want to be able to see who has registered via a custom social link. I will use this to drive competitions. #### Additional Information (optional) Brief recap of what (i think) we talked about: - file 1 of alpha (email, name), their custom social link, and the betas (email, name) that come in through that custom social link and sign-up - file 2 from RTV of number of completed registrations do a comparison of betas emails on file 1 and file 2 -- that would be the true # of people the alpha got to successfully register #### Why This Matters so we can have a competition around registrations #### Steps for Testing (my notes) 1. make gladiator competition 2. manually opt-in "Yes" 3. save the custom social link 4. use the custom social link multiple times w/ different email addresses 5. some tests will be 18+ and completing the registration form and some will be under 18 and doing social
priority
query attempt to get registrations against custom social link feature overview user story as an impact admin i want to be able to see who has registered via a custom social link i will use this to drive competitions additional information optional brief recap of what i think we talked about file of alpha email name their custom social link and the betas email name that come in through that custom social link and sign up file from rtv of number of completed registrations do a comparison of betas emails on file and file that would be the true of people the alpha got to successfully register why this matters so we can have a competition around registrations steps for testing my notes make gladiator competition manually opt in yes save the custom social link use the custom social link multiple times w different email addresses some tests will be and completing the registration form and some will be under and doing social
1
720,461
24,793,660,453
IssuesEvent
2022-10-24 15:29:28
AY2223S1-CS2103T-W17-3/tp
https://api.github.com/repos/AY2223S1-CS2103T-W17-3/tp
closed
As a TA, I can assign priority to a reminder
priority.Medium
So that I can separate reminders based on their importance.
1.0
As a TA, I can assign priority to a reminder - So that I can separate reminders based on their importance.
priority
as a ta i can assign priority to a reminder so that i can separate reminders based on their importance
1
687,459
23,527,104,602
IssuesEvent
2022-08-19 11:59:39
ChainSafe/sygma-ui
https://api.github.com/repos/ChainSafe/sygma-ui
closed
UI Health-checks
Type: Enhancement Type: Feature Priority: P2 Medium
<!--- Provide a general summary of the issue in the Title above --> In order to receive actually information about UI status we need to have a health-checks ## Implementation details <!-- Enter description of implementation that may help dev team --> Research what are the best approaches in order to come up with health checks for our UI. Communicate with back-end team since Relayers needs health-checks as well. And we already have OpenTelemtry metrics implemented in relayer so probably it could be used for health checks as well. ## Testing details <!-- Enter description of special test-cases--> ## Acceptance Criteria <!-- Enter the conditions of satisfaction here. That is, the conditions that will satisfy the user/persona that the goal/benefit/value has been achieved --> [] Make the conclusion about the best approach to add health checks for UI [] Create issues for its implementations
1.0
UI Health-checks - <!--- Provide a general summary of the issue in the Title above --> In order to receive actually information about UI status we need to have a health-checks ## Implementation details <!-- Enter description of implementation that may help dev team --> Research what are the best approaches in order to come up with health checks for our UI. Communicate with back-end team since Relayers needs health-checks as well. And we already have OpenTelemtry metrics implemented in relayer so probably it could be used for health checks as well. ## Testing details <!-- Enter description of special test-cases--> ## Acceptance Criteria <!-- Enter the conditions of satisfaction here. That is, the conditions that will satisfy the user/persona that the goal/benefit/value has been achieved --> [] Make the conclusion about the best approach to add health checks for UI [] Create issues for its implementations
priority
ui health checks in order to receive actually information about ui status we need to have a health checks implementation details research what are the best approaches in order to come up with health checks for our ui communicate with back end team since relayers needs health checks as well and we already have opentelemtry metrics implemented in relayer so probably it could be used for health checks as well testing details acceptance criteria make the conclusion about the best approach to add health checks for ui create issues for its implementations
1
352,514
10,543,081,336
IssuesEvent
2019-10-02 14:22:15
garden-io/garden
https://api.github.com/repos/garden-io/garden
closed
Get task|test result commands don't return correct results
bug priority:medium regression
## Bug ### Current Behavior We've changed the shape of the outputs of `getTestResutl` and `getTaskResult` actions but the command still expects the old shape. This means that the `output` field is always null when the command is called. These results won't load in the dashboard either.
1.0
Get task|test result commands don't return correct results - ## Bug ### Current Behavior We've changed the shape of the outputs of `getTestResutl` and `getTaskResult` actions but the command still expects the old shape. This means that the `output` field is always null when the command is called. These results won't load in the dashboard either.
priority
get task test result commands don t return correct results bug current behavior we ve changed the shape of the outputs of gettestresutl and gettaskresult actions but the command still expects the old shape this means that the output field is always null when the command is called these results won t load in the dashboard either
1
830,174
31,992,938,067
IssuesEvent
2023-09-21 07:22:04
sora-xor/sora-docs
https://api.github.com/repos/sora-xor/sora-docs
opened
Add a Wiki page on best practices for mnemonic security
Priority: Medium
Tarmo-san has raised that we should add a page where we provide best practices for securely storing seed phrases and account information for users in the wiki, maybe make a page covering security overall. Assigning myself to this, but maybe we can get support from devops.
1.0
Add a Wiki page on best practices for mnemonic security - Tarmo-san has raised that we should add a page where we provide best practices for securely storing seed phrases and account information for users in the wiki, maybe make a page covering security overall. Assigning myself to this, but maybe we can get support from devops.
priority
add a wiki page on best practices for mnemonic security tarmo san has raised that we should add a page where we provide best practices for securely storing seed phrases and account information for users in the wiki maybe make a page covering security overall assigning myself to this but maybe we can get support from devops
1
143,934
5,532,932,770
IssuesEvent
2017-03-21 12:00:40
EyeSeeTea/pictureapp
https://api.github.com/repos/EyeSeeTea/pictureapp
closed
Check order inversion of drugs_dose_of_drug_review_title works
complexity - low (1hr) in progress Myanmar priority - medium type - content
Translation into birman of that term needs to invert the terms so maybe the translation injection won't work in that case. Check and use strings in case different types is more difficult
1.0
Check order inversion of drugs_dose_of_drug_review_title works - Translation into birman of that term needs to invert the terms so maybe the translation injection won't work in that case. Check and use strings in case different types is more difficult
priority
check order inversion of drugs dose of drug review title works translation into birman of that term needs to invert the terms so maybe the translation injection won t work in that case check and use strings in case different types is more difficult
1
387,957
11,472,682,379
IssuesEvent
2020-02-09 18:42:13
synackray/vcenter-netbox-sync
https://api.github.com/repos/synackray/vcenter-netbox-sync
closed
Improve handling of serial numbers and asset tags
Priority: Medium Status: Accepted Type: Bug
2020-02-07 08:48:05,796 [DEBUG] Received HTTP Status 400. 2020-02-07 08:48:05,797 [WARNING] NetBox failed to create devices object. A duplicate record may exist or the data sent is not acceptable. 2020-02-07 08:48:05,797 [DEBUG] NetBox 400 status reason: {"serial":["This field may not be null."]} 2020-02-07 08:48:05,798 [DEBUG] Unaccepted request data: {'name': 'esxvmware205', 'device_type': {'model': 'PowerEdge R810'}, 'device_role': {'name': 'Server'}, 'platform': {'name': 'VMware ESXi'}, 'site': {'name': 'vCenter'}, 'serial': None, 'asset_tag': None, 'cluster': {'name': 'CL01-GF-DEV'}, 'status': 'active', 'tags': ['Synced', 'vCenter', 'p-114-288-001']}
1.0
Improve handling of serial numbers and asset tags - 2020-02-07 08:48:05,796 [DEBUG] Received HTTP Status 400. 2020-02-07 08:48:05,797 [WARNING] NetBox failed to create devices object. A duplicate record may exist or the data sent is not acceptable. 2020-02-07 08:48:05,797 [DEBUG] NetBox 400 status reason: {"serial":["This field may not be null."]} 2020-02-07 08:48:05,798 [DEBUG] Unaccepted request data: {'name': 'esxvmware205', 'device_type': {'model': 'PowerEdge R810'}, 'device_role': {'name': 'Server'}, 'platform': {'name': 'VMware ESXi'}, 'site': {'name': 'vCenter'}, 'serial': None, 'asset_tag': None, 'cluster': {'name': 'CL01-GF-DEV'}, 'status': 'active', 'tags': ['Synced', 'vCenter', 'p-114-288-001']}
priority
improve handling of serial numbers and asset tags received http status netbox failed to create devices object a duplicate record may exist or the data sent is not acceptable netbox status reason serial unaccepted request data name device type model poweredge device role name server platform name vmware esxi site name vcenter serial none asset tag none cluster name gf dev status active tags
1
309,679
9,478,177,666
IssuesEvent
2019-04-19 21:32:53
delaford/game
https://api.github.com/repos/delaford/game
closed
Chat log does not clear upon re-login
bug easy good first issue help wanted medium priority user interface
<!-- Please don't delete this template or we'll close your issue --> <!-- Before creating an issue please make sure you are using the latest version of the game. --> **What is the current behavior?** Examine the world, items or do other stuff. When you logout, and then login again, the chat stays the same. **If the current behavior is a bug, please provide the exact steps to reproduce.** 1. Examine an object or NPC. 2. Verify the text in the chatbox. 3. Logout. 4. Login. 5. Verify the same text still in the chatbox. **What is the expected behavior?** To clear the chatbox every time upon logout. When you log back in, it should just say `Welcome to Delaford.` **Additional context** Add any other context about the problem here.
1.0
Chat log does not clear upon re-login - <!-- Please don't delete this template or we'll close your issue --> <!-- Before creating an issue please make sure you are using the latest version of the game. --> **What is the current behavior?** Examine the world, items or do other stuff. When you logout, and then login again, the chat stays the same. **If the current behavior is a bug, please provide the exact steps to reproduce.** 1. Examine an object or NPC. 2. Verify the text in the chatbox. 3. Logout. 4. Login. 5. Verify the same text still in the chatbox. **What is the expected behavior?** To clear the chatbox every time upon logout. When you log back in, it should just say `Welcome to Delaford.` **Additional context** Add any other context about the problem here.
priority
chat log does not clear upon re login what is the current behavior examine the world items or do other stuff when you logout and then login again the chat stays the same if the current behavior is a bug please provide the exact steps to reproduce examine an object or npc verify the text in the chatbox logout login verify the same text still in the chatbox what is the expected behavior to clear the chatbox every time upon logout when you log back in it should just say welcome to delaford additional context add any other context about the problem here
1
803,466
29,178,200,422
IssuesEvent
2023-05-19 09:39:56
harvester/harvester
https://api.github.com/repos/harvester/harvester
closed
[ENHANCEMENT] Support updating VM networks and vlanconfigs
require/doc kind/enhancement area/ui area/network priority/1 require-ui/medium backport-needed/1.1.2
**Is your feature request related to a problem? Please describe.** <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> - As for v1.1.1, Harvester doesn't support updating VM networks. If users want to change the VM network, they need to delete it and create a new one. However, the old VM network usually has been used by some VMs and could not be deleted. - As for v1.1.1, it's not allowed to change the cluster network of vlanconfigs. In some cases, our customs wants to migrate vlanconfigs into a new cluster network. We'd better support cluster network migration for vlanconfigs. **Describe the solution you'd like** <!-- A clear and concise description of what you want to happen. --> **Describe alternatives you've considered** <!-- A clear and concise description of any alternative solutions or features you've considered. --> **Additional context** <!-- Add any other context or screenshots about the feature request here. -->
1.0
[ENHANCEMENT] Support updating VM networks and vlanconfigs - **Is your feature request related to a problem? Please describe.** <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> - As for v1.1.1, Harvester doesn't support updating VM networks. If users want to change the VM network, they need to delete it and create a new one. However, the old VM network usually has been used by some VMs and could not be deleted. - As for v1.1.1, it's not allowed to change the cluster network of vlanconfigs. In some cases, our customs wants to migrate vlanconfigs into a new cluster network. We'd better support cluster network migration for vlanconfigs. **Describe the solution you'd like** <!-- A clear and concise description of what you want to happen. --> **Describe alternatives you've considered** <!-- A clear and concise description of any alternative solutions or features you've considered. --> **Additional context** <!-- Add any other context or screenshots about the feature request here. -->
priority
support updating vm networks and vlanconfigs is your feature request related to a problem please describe as for harvester doesn t support updating vm networks if users want to change the vm network they need to delete it and create a new one however the old vm network usually has been used by some vms and could not be deleted as for it s not allowed to change the cluster network of vlanconfigs in some cases our customs wants to migrate vlanconfigs into a new cluster network we d better support cluster network migration for vlanconfigs describe the solution you d like describe alternatives you ve considered additional context
1
511,881
14,884,129,538
IssuesEvent
2021-01-20 14:13:21
wazuh/wazuh-documentation
https://api.github.com/repos/wazuh/wazuh-documentation
opened
NDEX - Compliance section rephrase
priority: medium type: refactor
Hi! This issue aims to change the text in the Wazuh documentation - Compliance Regards, Pilar
1.0
NDEX - Compliance section rephrase - Hi! This issue aims to change the text in the Wazuh documentation - Compliance Regards, Pilar
priority
ndex compliance section rephrase hi this issue aims to change the text in the wazuh documentation compliance regards pilar
1
717,457
24,676,069,192
IssuesEvent
2022-10-18 17:06:11
cds-snc/notification-planning
https://api.github.com/repos/cds-snc/notification-planning
closed
Scope the SLA
Medium Priority | PrioritΓ© moyenne SPIKE
Using a service design approach, we will determine: - who reads the SLA (audience) - what needs the SLA meets (business needs and user needs) - at what point in the journey, a user would read the SLA (when) - where the SLA should live (page location in service) - whether we need a signature for the SLA, what kind of signature, from whom and any corollary accessibility issues (signature and/or digital alternatives) - differences between SLA and Terms of use. Then we will design a draft SLA. Yael and Sharly have corrected the Notify Alpha SLA as a starting point for these questions.
1.0
Scope the SLA - Using a service design approach, we will determine: - who reads the SLA (audience) - what needs the SLA meets (business needs and user needs) - at what point in the journey, a user would read the SLA (when) - where the SLA should live (page location in service) - whether we need a signature for the SLA, what kind of signature, from whom and any corollary accessibility issues (signature and/or digital alternatives) - differences between SLA and Terms of use. Then we will design a draft SLA. Yael and Sharly have corrected the Notify Alpha SLA as a starting point for these questions.
priority
scope the sla using a service design approach we will determine who reads the sla audience what needs the sla meets business needs and user needs at what point in the journey a user would read the sla when where the sla should live page location in service whether we need a signature for the sla what kind of signature from whom and any corollary accessibility issues signature and or digital alternatives differences between sla and terms of use then we will design a draft sla yael and sharly have corrected the notify alpha sla as a starting point for these questions
1
489,915
14,113,691,224
IssuesEvent
2020-11-07 12:33:59
AY2021S1-CS2103T-W12-3/tp
https://api.github.com/repos/AY2021S1-CS2103T-W12-3/tp
closed
[MISC] Help Command: Show a summary of commands (in a list)
priority.Medium
The end product should be similar to the following screenshot: <img width="695" alt="Screenshot 2020-10-26 at 3 27 43 PM" src="https://user-images.githubusercontent.com/59337195/97144654-cc508500-179f-11eb-9e69-87bc99c07520.png">
1.0
[MISC] Help Command: Show a summary of commands (in a list) - The end product should be similar to the following screenshot: <img width="695" alt="Screenshot 2020-10-26 at 3 27 43 PM" src="https://user-images.githubusercontent.com/59337195/97144654-cc508500-179f-11eb-9e69-87bc99c07520.png">
priority
help command show a summary of commands in a list the end product should be similar to the following screenshot img width alt screenshot at pm src
1
784,902
27,588,971,834
IssuesEvent
2023-03-08 22:18:55
conan-io/conan
https://api.github.com/repos/conan-io/conan
closed
ActionRecorder refactor
priority: low type: engineering stage: queue complex: medium
- Managing the revisions with an additional full ref is ugly. - The data structure used is error prone. .... to complete
1.0
ActionRecorder refactor - - Managing the revisions with an additional full ref is ugly. - The data structure used is error prone. .... to complete
priority
actionrecorder refactor managing the revisions with an additional full ref is ugly the data structure used is error prone to complete
1
86,421
3,711,675,590
IssuesEvent
2016-03-02 11:22:22
emoncms/MyHomeEnergyPlanner
https://api.github.com/repos/emoncms/MyHomeEnergyPlanner
closed
Adjustment to the mean internal temperature
Medium priority query
*Worksheet (93m): Adjustment to the mean internal temperature from table 4e* is not implemented carlos
1.0
Adjustment to the mean internal temperature - *Worksheet (93m): Adjustment to the mean internal temperature from table 4e* is not implemented carlos
priority
adjustment to the mean internal temperature worksheet adjustment to the mean internal temperature from table is not implemented carlos
1
363,469
10,741,506,761
IssuesEvent
2019-10-29 20:23:23
inspec/inspec
https://api.github.com/repos/inspec/inspec
closed
Get BK caching artifacts
Component: Continuous Delivery Priority: Medium Type: Enhancement
We now have tentative access to cache our stuff to aws: > Hello folks -- this morning I set up a dedicated s3 bucket in the public-cd aws account that is (at this point) intended to support buildkite caches. Since I know y'all were keen on getting some caching put in place I want to open up that bucket to y'all to start playing around with what exactly that might look like. > Right now I don't have any configuration or abstractions built in to the expeditor/buildkite DSL, so anything y'all do will need to be done with commands, sorta like this: ``` aws s3 sync "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/bundler" your-vendor-directory # run your commands aws s3 sync your-vendor-directory "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/bundler" ``` > what I'd like to do is invite you to play around a little bit and find what works for you. We'll discuss what that looks like and then the releng team can introduce the necessary abstractions and configurations into the Expeditor Buildkite DSL. I will note that we're considering this alpha access. Don't depend on that bucket staying around. The public-cd account is administrated under the assumption that we can pave and rebuild at any moment. (edited) Also, please don't upload anything other than cache stuff to that bucket. It's not a place to store configuration or secrets.
1.0
Get BK caching artifacts - We now have tentative access to cache our stuff to aws: > Hello folks -- this morning I set up a dedicated s3 bucket in the public-cd aws account that is (at this point) intended to support buildkite caches. Since I know y'all were keen on getting some caching put in place I want to open up that bucket to y'all to start playing around with what exactly that might look like. > Right now I don't have any configuration or abstractions built in to the expeditor/buildkite DSL, so anything y'all do will need to be done with commands, sorta like this: ``` aws s3 sync "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/bundler" your-vendor-directory # run your commands aws s3 sync your-vendor-directory "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/bundler" ``` > what I'd like to do is invite you to play around a little bit and find what works for you. We'll discuss what that looks like and then the releng team can introduce the necessary abstractions and configurations into the Expeditor Buildkite DSL. I will note that we're considering this alpha access. Don't depend on that bucket staying around. The public-cd account is administrated under the assumption that we can pave and rebuild at any moment. (edited) Also, please don't upload anything other than cache stuff to that bucket. It's not a place to store configuration or secrets.
priority
get bk caching artifacts we now have tentative access to cache our stuff to aws hello folks this morning i set up a dedicated bucket in the public cd aws account that is at this point intended to support buildkite caches since i know y all were keen on getting some caching put in place i want to open up that bucket to y all to start playing around with what exactly that might look like right now i don t have any configuration or abstractions built in to the expeditor buildkite dsl so anything y all do will need to be done with commands sorta like this aws sync public cd buildkite cache buildkite pipeline slug bundler your vendor directory run your commands aws sync your vendor directory public cd buildkite cache buildkite pipeline slug bundler what i d like to do is invite you to play around a little bit and find what works for you we ll discuss what that looks like and then the releng team can introduce the necessary abstractions and configurations into the expeditor buildkite dsl i will note that we re considering this alpha access don t depend on that bucket staying around the public cd account is administrated under the assumption that we can pave and rebuild at any moment edited also please don t upload anything other than cache stuff to that bucket it s not a place to store configuration or secrets
1
652,881
21,563,569,629
IssuesEvent
2022-05-01 14:29:11
Polymer/tools
https://api.github.com/repos/Polymer/tools
closed
Use a common JavaScript parser and compiler configuration
Status: Available Priority: Medium Type: Enhancement Package: polyserve wontfix
Changes like https://github.com/Polymer/polyserve/pull/238 currently have to be done across polyserve, Analyzer and polymer-build. We should have a single configuration of Babylon and Babel across all the tools.
1.0
Use a common JavaScript parser and compiler configuration - Changes like https://github.com/Polymer/polyserve/pull/238 currently have to be done across polyserve, Analyzer and polymer-build. We should have a single configuration of Babylon and Babel across all the tools.
priority
use a common javascript parser and compiler configuration changes like currently have to be done across polyserve analyzer and polymer build we should have a single configuration of babylon and babel across all the tools
1
57,429
3,082,003,661
IssuesEvent
2015-08-23 09:35:19
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
opened
Π‘Π΄Π΅Π»Π°Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ простым для понимания ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Ρ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ошибок ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ ΠΊ Ρ…Π°Π±Ρƒ.
Component-UI enhancement imported Priority-Medium
_From [tret2...@gmail.com](https://code.google.com/u/116508191076211387118/) on March 20, 2013 04:22:30_ НапримСр: *** Π£Π΄Π°Π»Π΅Π½Π½Ρ‹ΠΉ хост ΠΏΡ€ΠΈΠ½ΡƒΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π°Π·ΠΎΡ€Π²Π°Π» ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰Π΅Π΅ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅.[error: 10054] *** Π’Ρ€Π΅Π±ΡƒΠ΅ΠΌΡ‹ΠΉ адрСс для своСго контСкста Π½Π΅Π²Π΅Ρ€Π΅Π½.[error: 10049] *** ΠŸΠΎΠΏΡ‹Ρ‚ΠΊΠ° ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ соСдинСниС Π±Ρ‹Π»Π° Π±Π΅Π·ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎΠΉ, Ρ‚.ΠΊ. ΠΎΡ‚ Π΄Ρ€ΡƒΠ³ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΏΡŒΡŽΡ‚Π΅Ρ€Π° Π·Π° Ρ‚Ρ€Π΅Π±ΡƒΠ΅ΠΌΠΎΠ΅ врСмя Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ Π½ΡƒΠΆΠ½Ρ‹ΠΉ ΠΎΡ‚ΠΊΠ»ΠΈΠΊ, ΠΈΠ»ΠΈ Π±Ρ‹Π»ΠΎ Ρ€Π°Π·ΠΎΡ€Π²Π°Π½ΠΎ ΡƒΠΆΠ΅ установлСнноС соСдинСниС ΠΈΠ·-Π·Π° Π½Π΅Π²Π΅Ρ€Π½ΠΎΠ³ΠΎ ΠΎΡ‚ΠΊΠ»ΠΈΠΊΠ° ΡƒΠΆΠ΅ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΏΡŒΡŽΡ‚Π΅Ρ€Π°.[error: 10060] Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ Ρ‡Π°ΡΡ‚ΡŒ ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Π΅ΠΉ Π½Π΅ ΠΏΠΎΠ½ΠΈΠΌΠ°Π΅Ρ‚ Ρ‡Ρ‚ΠΎ это ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚. Π—Π° ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ΠΊΠΎΠ΄Π° ошибки Π² ΡƒΠ΄ΠΎΠ±ΠΎΡ‡ΠΈΡ‚Π°Π΅ΠΌΡ‹ΠΉ тСкст Π½Π° языкС интСрфСйса ОБ ΠΎΡ‚Π²Π΅Ρ‡Π°Π΅Ρ‚ функция FormatMessage. Однако Ссли ΠΌΡ‹ сами Π½Π°Ρ‡Π½Ρ‘ΠΌ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ΠΈΡ‚ΡŒ сообщСния ΠΎΠ± ΠΎΡˆΠΈΠ±ΠΊΠ°Ρ… сокСтов, Ρ‚ΠΎ получится Ρ‡Ρ‚ΠΎ ΠΏΠΎΠΊΠ° сообщСниС Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π²Π΅Π΄Π΅Π½ΠΎ Π½Π° ΠΊΠ°ΠΊΠΎΠΉ Π»ΠΈΠ±ΠΎ язык, ошибка Π±ΡƒΠ΄Π΅Ρ‚ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΡŒΡΡ Π½Π° английском. Π― ΠΏΠΎΠΊΠ° Π²ΠΈΠΆΡƒ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ ΠΊ ΡΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΡŽ ΠΎΠ± ошибкС Π»Π΅ΠΏΠΈΡ‚ΡŒ ссылку Π²ΠΈΠ΄Π° http://flylinkdc.com/dokuwiki/doku.php?id=en:socketerror с дальнСйшим ΡƒΠΊΠ°Π·Π°Π½ΠΈΠ΅ΠΌ ΠΊΠΎΠ΄Π°. Бсылку Π»Π΅Π³ΠΊΠΎ Π»ΠΎΠΊΠ°Π»ΠΈΠ·ΠΎΠ²Π°Ρ‚ΡŒ. На сайтС Π±ΡƒΠ΄Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠΎΡΡΠ½ΡΡŽΡ‰ΠΈΠΉ Π΄Π°Π½Π½ΡƒΡŽ ΠΎΡˆΠΈΠ±ΠΊΡƒ тСкст Π² Π±ΠΎΠ»Π΅Π΅ простом для понимания ΠΈΠ·Π»ΠΎΠΆΠ΅Π½ΠΈΠΈ ΠΈ Ρ‚Π°ΠΊ ΠΌΡ‹ Π½Π΅ потСряСм ΠΎΡ€ΠΈΠ³ΠΈΠ½Π°Π»ΡŒΠ½Ρ‹ΠΉ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ошибки ΠΎΡ‚ ОБ, ΠΏΠΎΠΊΠ° Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ Π³ΠΎΡ‚ΠΎΠ² Π±ΠΎΠ»Π΅Π΅ простоС ΠΈΠ·Π»ΠΎΠΆΠ΅Π½ΠΈΠ΅ ошибки Π½Π° языкС интСрфСйса. Π£ ΠΊΠΎΠ³ΠΎ ΠΊΠ°ΠΊΠΈΠ΅ прСдлоТСния Π±ΡƒΠ΄ΡƒΡ‚ ? _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=948_
1.0
Π‘Π΄Π΅Π»Π°Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ простым для понимания ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Ρ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ошибок ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ ΠΊ Ρ…Π°Π±Ρƒ. - _From [tret2...@gmail.com](https://code.google.com/u/116508191076211387118/) on March 20, 2013 04:22:30_ НапримСр: *** Π£Π΄Π°Π»Π΅Π½Π½Ρ‹ΠΉ хост ΠΏΡ€ΠΈΠ½ΡƒΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π°Π·ΠΎΡ€Π²Π°Π» ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰Π΅Π΅ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅.[error: 10054] *** Π’Ρ€Π΅Π±ΡƒΠ΅ΠΌΡ‹ΠΉ адрСс для своСго контСкста Π½Π΅Π²Π΅Ρ€Π΅Π½.[error: 10049] *** ΠŸΠΎΠΏΡ‹Ρ‚ΠΊΠ° ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ соСдинСниС Π±Ρ‹Π»Π° Π±Π΅Π·ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎΠΉ, Ρ‚.ΠΊ. ΠΎΡ‚ Π΄Ρ€ΡƒΠ³ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΏΡŒΡŽΡ‚Π΅Ρ€Π° Π·Π° Ρ‚Ρ€Π΅Π±ΡƒΠ΅ΠΌΠΎΠ΅ врСмя Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ Π½ΡƒΠΆΠ½Ρ‹ΠΉ ΠΎΡ‚ΠΊΠ»ΠΈΠΊ, ΠΈΠ»ΠΈ Π±Ρ‹Π»ΠΎ Ρ€Π°Π·ΠΎΡ€Π²Π°Π½ΠΎ ΡƒΠΆΠ΅ установлСнноС соСдинСниС ΠΈΠ·-Π·Π° Π½Π΅Π²Π΅Ρ€Π½ΠΎΠ³ΠΎ ΠΎΡ‚ΠΊΠ»ΠΈΠΊΠ° ΡƒΠΆΠ΅ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΏΡŒΡŽΡ‚Π΅Ρ€Π°.[error: 10060] Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ Ρ‡Π°ΡΡ‚ΡŒ ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Π΅ΠΉ Π½Π΅ ΠΏΠΎΠ½ΠΈΠΌΠ°Π΅Ρ‚ Ρ‡Ρ‚ΠΎ это ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚. Π—Π° ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ΠΊΠΎΠ΄Π° ошибки Π² ΡƒΠ΄ΠΎΠ±ΠΎΡ‡ΠΈΡ‚Π°Π΅ΠΌΡ‹ΠΉ тСкст Π½Π° языкС интСрфСйса ОБ ΠΎΡ‚Π²Π΅Ρ‡Π°Π΅Ρ‚ функция FormatMessage. Однако Ссли ΠΌΡ‹ сами Π½Π°Ρ‡Π½Ρ‘ΠΌ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ΠΈΡ‚ΡŒ сообщСния ΠΎΠ± ΠΎΡˆΠΈΠ±ΠΊΠ°Ρ… сокСтов, Ρ‚ΠΎ получится Ρ‡Ρ‚ΠΎ ΠΏΠΎΠΊΠ° сообщСниС Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π²Π΅Π΄Π΅Π½ΠΎ Π½Π° ΠΊΠ°ΠΊΠΎΠΉ Π»ΠΈΠ±ΠΎ язык, ошибка Π±ΡƒΠ΄Π΅Ρ‚ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΡŒΡΡ Π½Π° английском. Π― ΠΏΠΎΠΊΠ° Π²ΠΈΠΆΡƒ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ ΠΊ ΡΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΡŽ ΠΎΠ± ошибкС Π»Π΅ΠΏΠΈΡ‚ΡŒ ссылку Π²ΠΈΠ΄Π° http://flylinkdc.com/dokuwiki/doku.php?id=en:socketerror с дальнСйшим ΡƒΠΊΠ°Π·Π°Π½ΠΈΠ΅ΠΌ ΠΊΠΎΠ΄Π°. Бсылку Π»Π΅Π³ΠΊΠΎ Π»ΠΎΠΊΠ°Π»ΠΈΠ·ΠΎΠ²Π°Ρ‚ΡŒ. На сайтС Π±ΡƒΠ΄Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠΎΡΡΠ½ΡΡŽΡ‰ΠΈΠΉ Π΄Π°Π½Π½ΡƒΡŽ ΠΎΡˆΠΈΠ±ΠΊΡƒ тСкст Π² Π±ΠΎΠ»Π΅Π΅ простом для понимания ΠΈΠ·Π»ΠΎΠΆΠ΅Π½ΠΈΠΈ ΠΈ Ρ‚Π°ΠΊ ΠΌΡ‹ Π½Π΅ потСряСм ΠΎΡ€ΠΈΠ³ΠΈΠ½Π°Π»ΡŒΠ½Ρ‹ΠΉ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ошибки ΠΎΡ‚ ОБ, ΠΏΠΎΠΊΠ° Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ Π³ΠΎΡ‚ΠΎΠ² Π±ΠΎΠ»Π΅Π΅ простоС ΠΈΠ·Π»ΠΎΠΆΠ΅Π½ΠΈΠ΅ ошибки Π½Π° языкС интСрфСйса. Π£ ΠΊΠΎΠ³ΠΎ ΠΊΠ°ΠΊΠΈΠ΅ прСдлоТСния Π±ΡƒΠ΄ΡƒΡ‚ ? _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=948_
priority
ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ простым для понимания ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Ρ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ошибок ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ ΠΊ Ρ…Π°Π±Ρƒ from on march Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ ΡƒΠ΄Π°Π»Π΅Π½Π½Ρ‹ΠΉ хост ΠΏΡ€ΠΈΠ½ΡƒΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π°Π·ΠΎΡ€Π²Π°Π» ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰Π΅Π΅ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅ Ρ‚Ρ€Π΅Π±ΡƒΠ΅ΠΌΡ‹ΠΉ адрСс для своСго контСкста Π½Π΅Π²Π΅Ρ€Π΅Π½ ΠΏΠΎΠΏΡ‹Ρ‚ΠΊΠ° ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ соСдинСниС Π±Ρ‹Π»Π° Π±Π΅Π·ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎΠΉ Ρ‚ ΠΊ ΠΎΡ‚ Π΄Ρ€ΡƒΠ³ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΏΡŒΡŽΡ‚Π΅Ρ€Π° Π·Π° Ρ‚Ρ€Π΅Π±ΡƒΠ΅ΠΌΠΎΠ΅ врСмя Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ Π½ΡƒΠΆΠ½Ρ‹ΠΉ ΠΎΡ‚ΠΊΠ»ΠΈΠΊ ΠΈΠ»ΠΈ Π±Ρ‹Π»ΠΎ Ρ€Π°Π·ΠΎΡ€Π²Π°Π½ΠΎ ΡƒΠΆΠ΅ установлСнноС соСдинСниС ΠΈΠ· Π·Π° Π½Π΅Π²Π΅Ρ€Π½ΠΎΠ³ΠΎ ΠΎΡ‚ΠΊΠ»ΠΈΠΊΠ° ΡƒΠΆΠ΅ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΏΡŒΡŽΡ‚Π΅Ρ€Π° большая Ρ‡Π°ΡΡ‚ΡŒ ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Π΅ΠΉ Π½Π΅ ΠΏΠΎΠ½ΠΈΠΌΠ°Π΅Ρ‚ Ρ‡Ρ‚ΠΎ это ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚ Π·Π° ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ΠΊΠΎΠ΄Π° ошибки Π² ΡƒΠ΄ΠΎΠ±ΠΎΡ‡ΠΈΡ‚Π°Π΅ΠΌΡ‹ΠΉ тСкст Π½Π° языкС интСрфСйса ос ΠΎΡ‚Π²Π΅Ρ‡Π°Π΅Ρ‚ функция formatmessage ΠΎΠ΄Π½Π°ΠΊΠΎ Ссли ΠΌΡ‹ сами Π½Π°Ρ‡Π½Ρ‘ΠΌ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ΠΈΡ‚ΡŒ сообщСния ΠΎΠ± ΠΎΡˆΠΈΠ±ΠΊΠ°Ρ… сокСтов Ρ‚ΠΎ получится Ρ‡Ρ‚ΠΎ ΠΏΠΎΠΊΠ° сообщСниС Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π²Π΅Π΄Π΅Π½ΠΎ Π½Π° ΠΊΠ°ΠΊΠΎΠΉ Π»ΠΈΠ±ΠΎ язык ошибка Π±ΡƒΠ΄Π΅Ρ‚ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΡŒΡΡ Π½Π° английском я ΠΏΠΎΠΊΠ° Π²ΠΈΠΆΡƒ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ ΠΊ ΡΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΡŽ ΠΎΠ± ошибкС Π»Π΅ΠΏΠΈΡ‚ΡŒ ссылку Π²ΠΈΠ΄Π° с дальнСйшим ΡƒΠΊΠ°Π·Π°Π½ΠΈΠ΅ΠΌ ΠΊΠΎΠ΄Π° ссылку Π»Π΅Π³ΠΊΠΎ Π»ΠΎΠΊΠ°Π»ΠΈΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π½Π° сайтС Π±ΡƒΠ΄Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠΎΡΡΠ½ΡΡŽΡ‰ΠΈΠΉ Π΄Π°Π½Π½ΡƒΡŽ ΠΎΡˆΠΈΠ±ΠΊΡƒ тСкст Π² Π±ΠΎΠ»Π΅Π΅ простом для понимания ΠΈΠ·Π»ΠΎΠΆΠ΅Π½ΠΈΠΈ ΠΈ Ρ‚Π°ΠΊ ΠΌΡ‹ Π½Π΅ потСряСм ΠΎΡ€ΠΈΠ³ΠΈΠ½Π°Π»ΡŒΠ½Ρ‹ΠΉ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄ ошибки ΠΎΡ‚ ос ΠΏΠΎΠΊΠ° Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ Π³ΠΎΡ‚ΠΎΠ² Π±ΠΎΠ»Π΅Π΅ простоС ΠΈΠ·Π»ΠΎΠΆΠ΅Π½ΠΈΠ΅ ошибки Π½Π° языкС интСрфСйса Ρƒ ΠΊΠΎΠ³ΠΎ ΠΊΠ°ΠΊΠΈΠ΅ прСдлоТСния Π±ΡƒΠ΄ΡƒΡ‚ original issue
1
89,476
3,794,432,222
IssuesEvent
2016-03-22 16:53:57
FAC7/amazon2.0
https://api.github.com/repos/FAC7/amazon2.0
closed
Add out of stock for item view
medium priority T4h Technical
If stock is 0, item should be listed as 'Out of Stock' and doesn't allow adding to basket.
1.0
Add out of stock for item view - If stock is 0, item should be listed as 'Out of Stock' and doesn't allow adding to basket.
priority
add out of stock for item view if stock is item should be listed as out of stock and doesn t allow adding to basket
1
221,164
7,374,275,656
IssuesEvent
2018-03-13 19:49:35
chimano/SOEN341_SA2
https://api.github.com/repos/chimano/SOEN341_SA2
reopened
Add list of upvoted and downvoted questions in the profile page
enhancement priority: medium task
For user story #152 - [x] Add list of upvoted and downvoted questions in the profile page
1.0
Add list of upvoted and downvoted questions in the profile page - For user story #152 - [x] Add list of upvoted and downvoted questions in the profile page
priority
add list of upvoted and downvoted questions in the profile page for user story add list of upvoted and downvoted questions in the profile page
1
304,972
9,350,152,227
IssuesEvent
2019-04-01 01:33:16
cs2103-ay1819s2-w11-3/main
https://api.github.com/repos/cs2103-ay1819s2-w11-3/main
closed
[Chart] Each country bar, a different colour.
priority.Medium type.Enhancement
Presently, all the country bars have the same colour. If they have different colours, it will be easier to differentiate. ![image](https://user-images.githubusercontent.com/35837791/55283955-9cf94c80-539f-11e9-9d0e-5f77bc619f04.png)
1.0
[Chart] Each country bar, a different colour. - Presently, all the country bars have the same colour. If they have different colours, it will be easier to differentiate. ![image](https://user-images.githubusercontent.com/35837791/55283955-9cf94c80-539f-11e9-9d0e-5f77bc619f04.png)
priority
each country bar a different colour presently all the country bars have the same colour if they have different colours it will be easier to differentiate
1
187,209
6,750,030,738
IssuesEvent
2017-10-23 01:27:16
AtlasOfLivingAustralia/avh-hub
https://api.github.com/repos/AtlasOfLivingAustralia/avh-hub
closed
Facet on subclass
priority-medium status-accepted type-enhancement
_migrated from:_ https://code.google.com/p/ala/issues/detail?id=286 _date:_ Sun Nov 10 19:18:51 2013 _author:_ moyesyside --- Requested by HISCOM/CHAH "This is not just to be able to filter for mosses – we won't be able to do that anyway as long as there is no moss classification in ALA. Liverworts, hornworts, ferns, angiosperms etc. are also all subclasses, so subclass is one of the most important ranks in AVH. The facet is needed to filter on each of these groups, or on combinations of these groups, for example vascular plants, bryophytes and gymnosperms."
1.0
Facet on subclass - _migrated from:_ https://code.google.com/p/ala/issues/detail?id=286 _date:_ Sun Nov 10 19:18:51 2013 _author:_ moyesyside --- Requested by HISCOM/CHAH "This is not just to be able to filter for mosses – we won't be able to do that anyway as long as there is no moss classification in ALA. Liverworts, hornworts, ferns, angiosperms etc. are also all subclasses, so subclass is one of the most important ranks in AVH. The facet is needed to filter on each of these groups, or on combinations of these groups, for example vascular plants, bryophytes and gymnosperms."
priority
facet on subclass migrated from date sun nov author moyesyside requested by hiscom chah this is not just to be able to filter for mosses – we won t be able to do that anyway as long as there is no moss classification in ala liverworts hornworts ferns angiosperms etc are also all subclasses so subclass is one of the most important ranks in avh the facet is needed to filter on each of these groups or on combinations of these groups for example vascular plants bryophytes and gymnosperms
1
259,274
8,196,456,103
IssuesEvent
2018-08-31 09:53:40
jibrelnetwork/jwallet-web
https://api.github.com/repos/jibrelnetwork/jwallet-web
closed
DateTime reprensentations in the UI should include the timezone
priority: medium
DateTime with no timezone is not very useful. Either have all DateTime displayed in UTC or have them displayed in the user's local time-zome (in both cases, still indicate the time zone). An example is the transaction table: AMOUNT TIME FROM/TO STATUS 0.10000 ETH 22:09 12/14/20170 x03d3e607799089aaac7983a3c935... Accepted
1.0
DateTime reprensentations in the UI should include the timezone - DateTime with no timezone is not very useful. Either have all DateTime displayed in UTC or have them displayed in the user's local time-zome (in both cases, still indicate the time zone). An example is the transaction table: AMOUNT TIME FROM/TO STATUS 0.10000 ETH 22:09 12/14/20170 x03d3e607799089aaac7983a3c935... Accepted
priority
datetime reprensentations in the ui should include the timezone datetime with no timezone is not very useful either have all datetime displayed in utc or have them displayed in the user s local time zome in both cases still indicate the time zone an example is the transaction table amount time from to status eth accepted
1
305,635
9,374,721,977
IssuesEvent
2019-04-04 00:37:52
deep-compute/gitkanban
https://api.github.com/repos/deep-compute/gitkanban
closed
#Feature: Snooze
about-day-effort feature-request-type inprogress-status medium-impact medium-priority
* No work will happen for two days in `in-progress`. I would like to move to "next" queue but worried that it will be forgotten in that queue. We would like it to automatically move to inprogress after two-day duration so people don't miss it. We need to think about how to support.
1.0
#Feature: Snooze - * No work will happen for two days in `in-progress`. I would like to move to "next" queue but worried that it will be forgotten in that queue. We would like it to automatically move to inprogress after two-day duration so people don't miss it. We need to think about how to support.
priority
feature snooze no work will happen for two days in in progress i would like to move to next queue but worried that it will be forgotten in that queue we would like it to automatically move to inprogress after two day duration so people don t miss it we need to think about how to support
1
482,443
13,906,767,223
IssuesEvent
2020-10-20 11:43:43
itggot-TE4/PoopPirates
https://api.github.com/repos/itggot-TE4/PoopPirates
closed
Add comment field
points:3 priority:medium type:feature
#### Acceptance criteria - [ ] Can write a comment on a project - [ ] Comment is stored in backend - [ ] Has css - [ ] Has a js function making a comment card
1.0
Add comment field - #### Acceptance criteria - [ ] Can write a comment on a project - [ ] Comment is stored in backend - [ ] Has css - [ ] Has a js function making a comment card
priority
add comment field acceptance criteria can write a comment on a project comment is stored in backend has css has a js function making a comment card
1
503,077
14,579,132,456
IssuesEvent
2020-12-18 06:38:51
vanjarosoftware/Vanjaro.Platform
https://api.github.com/repos/vanjarosoftware/Vanjaro.Platform
closed
Blocks Permissions
Area: Backend Enhancement Priority: Medium Release: Minor
Ability to add "View Permissions" on individual blocks (Section) so an admin may personalize the page based on User Role.
1.0
Blocks Permissions - Ability to add "View Permissions" on individual blocks (Section) so an admin may personalize the page based on User Role.
priority
blocks permissions ability to add view permissions on individual blocks section so an admin may personalize the page based on user role
1
386,783
11,450,504,215
IssuesEvent
2020-02-06 09:44:39
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
opened
pfcmd node view all doesn't work
Priority: Medium Type: Bug
**Describe the bug** When you run `pfcmd node view all`, you only see column headers. In `packetfence.log`: ``` Feb 6 09:04:58 pfcen7stable packetfence: ERROR pfcmd.pl(13637): Database query failed with non retryable error: Unknown column 'locationlog' in 'on clause' (errno: 1054) [SELECT `node`.`mac`, `node`.`pid`, `node`.`voip`, `node`.`bypass_vlan`, `node`.`status`, IF(ISNULL(nc.name), '', nc.name) as category, IF(ISNULL(nr.name), '', nr.name) as bypass_role, IF(node.detect_date = '0000-00-00 00:00:00', '', node.detect_date) as detect_date, IF(node.regdate = '0000-00-00 00:00:00', '', node.regdate) as regdate, IF(node.unregdate = '0000-00-00 00:00:00', '', node.unregdate) as unregdate, IF(node.lastskip = '0000-00-00 00:00:00', '', node.lastskip) as lastskip, `node`.`user_agent`, `node`.`computername`, `device_class` AS `dhcp_fingerprint`, `node`.`last_arp`, `node`.`last_dhcp`, `node`.`last_seen`, `locationlog`.`switch` AS `last_switch`, `locationlog`.`port` AS `last_port`, `locationlog`.`vlan` AS `last_vlan`, IF(ISNULL(locationlog.connection_type), '', locationlog.connection_type) as last_connection_type, `locationlog`.`dot1x_username` AS `last_dot1x_username`, `locationlog`.`ssid` AS `last_ssid`, `locationlog`.`stripped_user_name` AS `stripped_user_name`, `locationlog`.`realm` AS `realm`, `locationlog`.`switch_mac` AS `last_switch_mac`, `ip4log`.`ip` AS `last_ip`, COUNT(DISTINCT security_event.id) as nbopensecurity_events, `node`.`notes` FROM node LEFT OUTER JOIN `node_category` AS `nr` ON ( `nr`.`category_id` = `node`.`bypass_role_id` ) LEFT OUTER JOIN `node_category` AS `nc` ON ( `node`.`category_id` = `nc`.`category_id` ) LEFT OUTER JOIN security_event ON ( ( `security_event`.`status` = ? AND `node`.`mac` = `security_event`.`mac` ) ) LEFT OUTER JOIN locationlog ON ( ( `locationlog` = ? AND `node`.`mac` = `locationlog`.`mac` ) ) LEFT OUTER JOIN ip4log ON ( ( ( `ip4log` = ? OR `ip4log` > NOW() ) AND `node`.`mac` = `ip4log`.`mac` ) ) WHERE ( `node`.`tenant_id` = ? ) GROUP BY `node`.`mac`]{open, 0000-00-00 00:00:00, 0000-00-00 00:00:00, 1} (pf::dal::db_execute) ``` Not related to #5113. I'm able to reproduce on 9.3.0, a user report same issue on 9.2.0 (not verified). If error occurs on 9.2.0, it means that's not related to #4995. **To Reproduce** Steps to reproduce the behavior: Run `pfcmd node view all` **Expected behavior** Display all nodes. **Additional context** As I mentioned on #5115, `pfcmd` logging and return could be illogical: ```console # pfcmd node view all ; echo $? mac|computername|pid|category|status|bypass_vlan|voip|detect_date|regdate|unregdate|last_connection_type|last_switch|last_port|last_vlan|last_ssid|last_dot1x_username|user_agent|dhcp_fingerprint|last_arp|last_dhcp|lastskip|notes 0 ```
1.0
pfcmd node view all doesn't work - **Describe the bug** When you run `pfcmd node view all`, you only see column headers. In `packetfence.log`: ``` Feb 6 09:04:58 pfcen7stable packetfence: ERROR pfcmd.pl(13637): Database query failed with non retryable error: Unknown column 'locationlog' in 'on clause' (errno: 1054) [SELECT `node`.`mac`, `node`.`pid`, `node`.`voip`, `node`.`bypass_vlan`, `node`.`status`, IF(ISNULL(nc.name), '', nc.name) as category, IF(ISNULL(nr.name), '', nr.name) as bypass_role, IF(node.detect_date = '0000-00-00 00:00:00', '', node.detect_date) as detect_date, IF(node.regdate = '0000-00-00 00:00:00', '', node.regdate) as regdate, IF(node.unregdate = '0000-00-00 00:00:00', '', node.unregdate) as unregdate, IF(node.lastskip = '0000-00-00 00:00:00', '', node.lastskip) as lastskip, `node`.`user_agent`, `node`.`computername`, `device_class` AS `dhcp_fingerprint`, `node`.`last_arp`, `node`.`last_dhcp`, `node`.`last_seen`, `locationlog`.`switch` AS `last_switch`, `locationlog`.`port` AS `last_port`, `locationlog`.`vlan` AS `last_vlan`, IF(ISNULL(locationlog.connection_type), '', locationlog.connection_type) as last_connection_type, `locationlog`.`dot1x_username` AS `last_dot1x_username`, `locationlog`.`ssid` AS `last_ssid`, `locationlog`.`stripped_user_name` AS `stripped_user_name`, `locationlog`.`realm` AS `realm`, `locationlog`.`switch_mac` AS `last_switch_mac`, `ip4log`.`ip` AS `last_ip`, COUNT(DISTINCT security_event.id) as nbopensecurity_events, `node`.`notes` FROM node LEFT OUTER JOIN `node_category` AS `nr` ON ( `nr`.`category_id` = `node`.`bypass_role_id` ) LEFT OUTER JOIN `node_category` AS `nc` ON ( `node`.`category_id` = `nc`.`category_id` ) LEFT OUTER JOIN security_event ON ( ( `security_event`.`status` = ? AND `node`.`mac` = `security_event`.`mac` ) ) LEFT OUTER JOIN locationlog ON ( ( `locationlog` = ? AND `node`.`mac` = `locationlog`.`mac` ) ) LEFT OUTER JOIN ip4log ON ( ( ( `ip4log` = ? OR `ip4log` > NOW() ) AND `node`.`mac` = `ip4log`.`mac` ) ) WHERE ( `node`.`tenant_id` = ? ) GROUP BY `node`.`mac`]{open, 0000-00-00 00:00:00, 0000-00-00 00:00:00, 1} (pf::dal::db_execute) ``` Not related to #5113. I'm able to reproduce on 9.3.0, a user report same issue on 9.2.0 (not verified). If error occurs on 9.2.0, it means that's not related to #4995. **To Reproduce** Steps to reproduce the behavior: Run `pfcmd node view all` **Expected behavior** Display all nodes. **Additional context** As I mentioned on #5115, `pfcmd` logging and return could be illogical: ```console # pfcmd node view all ; echo $? mac|computername|pid|category|status|bypass_vlan|voip|detect_date|regdate|unregdate|last_connection_type|last_switch|last_port|last_vlan|last_ssid|last_dot1x_username|user_agent|dhcp_fingerprint|last_arp|last_dhcp|lastskip|notes 0 ```
priority
pfcmd node view all doesn t work describe the bug when you run pfcmd node view all you only see column headers in packetfence log feb packetfence error pfcmd pl database query failed with non retryable error unknown column locationlog in on clause errno open pf dal db execute not related to i m able to reproduce on a user report same issue on not verified if error occurs on it means that s not related to to reproduce steps to reproduce the behavior run pfcmd node view all expected behavior display all nodes additional context as i mentioned on pfcmd logging and return could be illogical console pfcmd node view all echo mac computername pid category status bypass vlan voip detect date regdate unregdate last connection type last switch last port last vlan last ssid last username user agent dhcp fingerprint last arp last dhcp lastskip notes
1
313,456
9,561,839,255
IssuesEvent
2019-05-04 02:39:05
AugurProject/augur
https://api.github.com/repos/AugurProject/augur
closed
Add buffer amount to gas price
Feature Priority: Medium Product Critical
Currently the default gas price can be too low for a tx to ever actually get processed. This is especially true for our transactions since they have a very high comparative gas limit and miners require a higher gas price for those. We should probably add some buffer amount to the default gas price to try and prevent stalling.
1.0
Add buffer amount to gas price - Currently the default gas price can be too low for a tx to ever actually get processed. This is especially true for our transactions since they have a very high comparative gas limit and miners require a higher gas price for those. We should probably add some buffer amount to the default gas price to try and prevent stalling.
priority
add buffer amount to gas price currently the default gas price can be too low for a tx to ever actually get processed this is especially true for our transactions since they have a very high comparative gas limit and miners require a higher gas price for those we should probably add some buffer amount to the default gas price to try and prevent stalling
1
68,265
3,285,397,883
IssuesEvent
2015-10-28 20:26:16
rurban/perl-compiler
https://api.github.com/repos/rurban/perl-compiler
closed
Attempt to access disallowed key feature_* in a restricted hash
Priority-Medium
with perl 5.22 this is an invalid state usage, but this should die and not abort ```` > perl -e 'use feature ":5.10"; eval q/state ($a) = 1; 1/ or print qq/ok\n/;' ok > perlcc -r -e 'use feature ":5.10"; eval q/state ($a) = 1; 1/ or print qq/ok\n/;' pccXoM7K.c:9746: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9746: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9747: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9747: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9748: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9748: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:10445: warning: integer constant is too large for β€˜unsigned long’ type pccXoM7K.c:10446: warning: integer constant is too large for β€˜unsigned long’ type Attempt to access disallowed key 'feature_switch' in a restricted hash. ````
1.0
Attempt to access disallowed key feature_* in a restricted hash - with perl 5.22 this is an invalid state usage, but this should die and not abort ```` > perl -e 'use feature ":5.10"; eval q/state ($a) = 1; 1/ or print qq/ok\n/;' ok > perlcc -r -e 'use feature ":5.10"; eval q/state ($a) = 1; 1/ or print qq/ok\n/;' pccXoM7K.c:9746: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9746: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9747: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9747: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9748: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:9748: warning: this decimal constant is unsigned only in ISO C90 pccXoM7K.c:10445: warning: integer constant is too large for β€˜unsigned long’ type pccXoM7K.c:10446: warning: integer constant is too large for β€˜unsigned long’ type Attempt to access disallowed key 'feature_switch' in a restricted hash. ````
priority
attempt to access disallowed key feature in a restricted hash with perl this is an invalid state usage but this should die and not abort perl e use feature eval q state a or print qq ok n ok perlcc r e use feature eval q state a or print qq ok n c warning this decimal constant is unsigned only in iso c warning this decimal constant is unsigned only in iso c warning this decimal constant is unsigned only in iso c warning this decimal constant is unsigned only in iso c warning this decimal constant is unsigned only in iso c warning this decimal constant is unsigned only in iso c warning integer constant is too large for β€˜unsigned long’ type c warning integer constant is too large for β€˜unsigned long’ type attempt to access disallowed key feature switch in a restricted hash
1
568,337
16,976,549,670
IssuesEvent
2021-06-30 00:23:14
staynomad/Nomad-Front
https://api.github.com/repos/staynomad/Nomad-Front
closed
Homepage styling overriden
dev:bug difficulty:easy priority:medium
# Background <!--- Put any relevant background information here. ---> ![image](https://user-images.githubusercontent.com/66970460/123723513-62f9a800-d83f-11eb-8b0e-c5f9947433f6.png) Commit [c737de0](https://github.com/staynomad/Nomad-Front/commit/c737de0f4eb8e0b04437bbe78733790cebb0d134) interferes with existing homepage styling. # Task <!--- Put the task here (ideally bullet points). ---> - Update payout.css so that styling does not override homepage styling - "Why Nomad?" text should be above 3 sections - see commit [be1c0b0](https://github.com/staynomad/Nomad-Front/commit/be1c0b04e5ca598756710fc1c7aa4af0ac52e51f) for reference
1.0
Homepage styling overriden - # Background <!--- Put any relevant background information here. ---> ![image](https://user-images.githubusercontent.com/66970460/123723513-62f9a800-d83f-11eb-8b0e-c5f9947433f6.png) Commit [c737de0](https://github.com/staynomad/Nomad-Front/commit/c737de0f4eb8e0b04437bbe78733790cebb0d134) interferes with existing homepage styling. # Task <!--- Put the task here (ideally bullet points). ---> - Update payout.css so that styling does not override homepage styling - "Why Nomad?" text should be above 3 sections - see commit [be1c0b0](https://github.com/staynomad/Nomad-Front/commit/be1c0b04e5ca598756710fc1c7aa4af0ac52e51f) for reference
priority
homepage styling overriden background commit interferes with existing homepage styling task update payout css so that styling does not override homepage styling why nomad text should be above sections see commit for reference
1
220,426
7,359,902,128
IssuesEvent
2018-03-10 12:49:31
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
Atmel board/ Driver Support
area: Boards feature priority: medium
**_Reported by Robert Beatty:_** Add support for Atmel V71 MCU Development Boards based on ARM Cortex-M7 SAM E70. - [x] GH-3939: Add Atmel SAM family I2S (Inter-IC Sound) driver based on SSC module - [x] GH-3137: Add Atmel SAM family watchdog (WDT) driver - [ ] GH-3124: Atmel SAM RTC driver - [ ] GH-3073: Add Atmel SAM family DAC (DACC) driver - [ ] GH-3071: Add Atmel SAM family Timer Counter (TC) driver - [ ] GH-3070: Add Atmel SAM family DMA (XDMAC) driver (Imported from Jira ZEP-1926)
1.0
Atmel board/ Driver Support - **_Reported by Robert Beatty:_** Add support for Atmel V71 MCU Development Boards based on ARM Cortex-M7 SAM E70. - [x] GH-3939: Add Atmel SAM family I2S (Inter-IC Sound) driver based on SSC module - [x] GH-3137: Add Atmel SAM family watchdog (WDT) driver - [ ] GH-3124: Atmel SAM RTC driver - [ ] GH-3073: Add Atmel SAM family DAC (DACC) driver - [ ] GH-3071: Add Atmel SAM family Timer Counter (TC) driver - [ ] GH-3070: Add Atmel SAM family DMA (XDMAC) driver (Imported from Jira ZEP-1926)
priority
atmel board driver support reported by robert beatty add support for atmel mcu development boards based on arm cortex sam gh add atmel sam family inter ic sound driver based on ssc module gh add atmel sam family watchdog wdt driver gh atmel sam rtc driver gh add atmel sam family dac dacc driver gh add atmel sam family timer counter tc driver gh add atmel sam family dma xdmac driver imported from jira zep
1
374,225
11,082,187,757
IssuesEvent
2019-12-13 11:29:25
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
opened
[0.9.0 staging-1293] Notifications don't tell you about needing in Labor.
Medium Priority
Step to reproduce: - spawn Workbench, Stockpile. Add 16 Birch Log to stockpile. - start Bow order. See notification: ![image](https://user-images.githubusercontent.com/45708377/70796948-76a40180-1db4-11ea-95b0-36e38205b2b5.png) But first of all I need Labor. Another problem if you have all resourses but no labor you can't see any notifications about it. Step to reproduce: - spawn Workbench, Stockpile. Add 16 Birch Log to stockpile. Add all ingredients for Bow projects (16 Birch Log and 30 Plant Fiber). ![image](https://user-images.githubusercontent.com/45708377/70797082-cb477c80-1db4-11ea-9bad-db3df914da5e.png) - Start Bow order. I don't see any notification about Project halted. ![image](https://user-images.githubusercontent.com/45708377/70797130-eca86880-1db4-11ea-84a8-d95be188ce9c.png)
1.0
[0.9.0 staging-1293] Notifications don't tell you about needing in Labor. - Step to reproduce: - spawn Workbench, Stockpile. Add 16 Birch Log to stockpile. - start Bow order. See notification: ![image](https://user-images.githubusercontent.com/45708377/70796948-76a40180-1db4-11ea-95b0-36e38205b2b5.png) But first of all I need Labor. Another problem if you have all resourses but no labor you can't see any notifications about it. Step to reproduce: - spawn Workbench, Stockpile. Add 16 Birch Log to stockpile. Add all ingredients for Bow projects (16 Birch Log and 30 Plant Fiber). ![image](https://user-images.githubusercontent.com/45708377/70797082-cb477c80-1db4-11ea-9bad-db3df914da5e.png) - Start Bow order. I don't see any notification about Project halted. ![image](https://user-images.githubusercontent.com/45708377/70797130-eca86880-1db4-11ea-84a8-d95be188ce9c.png)
priority
notifications don t tell you about needing in labor step to reproduce spawn workbench stockpile add birch log to stockpile start bow order see notification but first of all i need labor another problem if you have all resourses but no labor you can t see any notifications about it step to reproduce spawn workbench stockpile add birch log to stockpile add all ingredients for bow projects birch log and plant fiber start bow order i don t see any notification about project halted
1
400,721
11,779,727,462
IssuesEvent
2020-03-16 18:35:00
AbsaOSS/enceladus
https://api.github.com/repos/AbsaOSS/enceladus
opened
Default values for Array and Struct
Standardization feature priority: medium
## Background When a non-null default (fallback) value for complex types (array, struct) would be requested during the **Standardization** it will stop the process with exception because the value is not defined. ## Feature And default (fallback) value for Array and Struct types ## Proposed Solution [Optional] Array: empty array Struct: each field is fllled with default value of the fields type
1.0
Default values for Array and Struct - ## Background When a non-null default (fallback) value for complex types (array, struct) would be requested during the **Standardization** it will stop the process with exception because the value is not defined. ## Feature And default (fallback) value for Array and Struct types ## Proposed Solution [Optional] Array: empty array Struct: each field is fllled with default value of the fields type
priority
default values for array and struct background when a non null default fallback value for complex types array struct would be requested during the standardization it will stop the process with exception because the value is not defined feature and default fallback value for array and struct types proposed solution array empty array struct each field is fllled with default value of the fields type
1
58,017
3,087,068,520
IssuesEvent
2015-08-25 09:09:17
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
Π–Π°Π»ΡƒΡŽΡ‚ΡΡ Π½Π° ΠΏΠΎΠ΄ΠΌΠ΅Ρ€Π·Π°Π½ΠΈΠ΅ курсора Π² ΠΌΠΎΠΌΠ΅Π½Ρ‚ ΠΏΡ€ΠΎΠΊΡ€ΡƒΡ‚ΠΊΠΈ списков ΡŽΠ·Π΅Ρ€ΠΎΠ² Π½Π° ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… Ρ…Π°Π±Π°Ρ….
bug imported Priority-Medium
_From [Pavel.Pimenov@gmail.com](https://code.google.com/u/Pavel.Pimenov@gmail.com/) on September 25, 2013 08:35:33_ ПослС Π°Π½Π°Π»ΠΈΠ·Ρƒ ΡƒΠ²ΠΈΠ΄Π΅Π» Π² Identity частоС ΠΎΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠ΅ ΠΊ элСмСнтам Email ΠΈ Description Π”Π°Π½Π½Ρ‹Π΅ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Ρ‹ строковыС ΠΈ созданы Π² ListView с ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΎΠΌ LPSTR_TEXTCALLBACK Π° это заставляСт Π²ΠΈΠ½Π΄Ρƒ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ€Π°Π· Π·Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Ρ‚ΡŒ значСния ΠΈΠ· getIdentity() case COLUMN_EMAIL: { return Text::toT(getIdentity().getEmail()); } case COLUMN_DESCRIPTION: { return Text::toT(getIdentity().getDescription()); } На Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Ρ…Π°Π±Π°Ρ… ΠΈ Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ случаСв данная информация пустая. Π½ΠΎ Π΄Π°ΠΆΠ΅ пустыС строки ΡƒΠ΄Π°Π»ΡΡŽΡ‚ΡΡ ΠΈΠ· ΠΌΠ°ΠΏΡ‹ строк Π² void Identity::setStringParam ΠΈ ΠΏΠΎΡ‚ΠΎΠΌ всСгда ищутся Π² ΠΈ m_stringInfo с Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΎΠΉ Ρ‡Π΅Ρ€Π΅Π· FastSharedLock l(g_cs); Π’Π°Ρ€ΠΈΠ°Π½Ρ‚ ΠΎΠΏΡ‚ΠΈΠΌΠΈΠ·Π°Ρ†ΠΈΠΈ 1. Π’Ρ‹Π΄Π΅Π»ΠΈΡ‚ΡŒ 2 Π±ΠΈΡ‚Π° с доступом Π±Π΅Π· Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΈ ΠΈ Ρ„ΠΈΠΊΡΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ случаи записи ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΎΠ² EM ΠΈ DE ΠΊΠ°ΠΊ пустая строка. 2. ΠΠ½Π°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π±ΠΈΡ‚Ρ‹ DE ΠΈ EM ΠΏΡ€ΠΈ Ρ‡Ρ‚Π΅Π½ΠΈΠΈ Π² Identity::getStringParam Ссли Π±ΠΈΡ‚ для ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Π° стоит - Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ Π·Π°Ρ‰ΠΈΡ‰Π΅Π½Π½Ρ‹ΠΉ поиск Π² ΠΌΠ°ΠΏΠ΅ const auto i = m_stringInfo.find(*(short*)name); ΠΈΠ½Π°Ρ‡Π΅ - сразу Π²ΠΎΠ·Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ ΠΏΡƒΡΡ‚ΡƒΡŽ строку Π±Π΅Π· Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΈ. TODO - ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΈΡ‚ΡŒ статистику ΠΎΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠΉ ΠΊ Π΄Ρ€ΡƒΠ³ΠΈΠΌ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Π°ΠΌ Π½Π° Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Ρ…Π°Π±Π°Ρ…. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1314_
1.0
Π–Π°Π»ΡƒΡŽΡ‚ΡΡ Π½Π° ΠΏΠΎΠ΄ΠΌΠ΅Ρ€Π·Π°Π½ΠΈΠ΅ курсора Π² ΠΌΠΎΠΌΠ΅Π½Ρ‚ ΠΏΡ€ΠΎΠΊΡ€ΡƒΡ‚ΠΊΠΈ списков ΡŽΠ·Π΅Ρ€ΠΎΠ² Π½Π° ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… Ρ…Π°Π±Π°Ρ…. - _From [Pavel.Pimenov@gmail.com](https://code.google.com/u/Pavel.Pimenov@gmail.com/) on September 25, 2013 08:35:33_ ПослС Π°Π½Π°Π»ΠΈΠ·Ρƒ ΡƒΠ²ΠΈΠ΄Π΅Π» Π² Identity частоС ΠΎΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠ΅ ΠΊ элСмСнтам Email ΠΈ Description Π”Π°Π½Π½Ρ‹Π΅ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Ρ‹ строковыС ΠΈ созданы Π² ListView с ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΎΠΌ LPSTR_TEXTCALLBACK Π° это заставляСт Π²ΠΈΠ½Π΄Ρƒ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ€Π°Π· Π·Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Ρ‚ΡŒ значСния ΠΈΠ· getIdentity() case COLUMN_EMAIL: { return Text::toT(getIdentity().getEmail()); } case COLUMN_DESCRIPTION: { return Text::toT(getIdentity().getDescription()); } На Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Ρ…Π°Π±Π°Ρ… ΠΈ Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ случаСв данная информация пустая. Π½ΠΎ Π΄Π°ΠΆΠ΅ пустыС строки ΡƒΠ΄Π°Π»ΡΡŽΡ‚ΡΡ ΠΈΠ· ΠΌΠ°ΠΏΡ‹ строк Π² void Identity::setStringParam ΠΈ ΠΏΠΎΡ‚ΠΎΠΌ всСгда ищутся Π² ΠΈ m_stringInfo с Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΎΠΉ Ρ‡Π΅Ρ€Π΅Π· FastSharedLock l(g_cs); Π’Π°Ρ€ΠΈΠ°Π½Ρ‚ ΠΎΠΏΡ‚ΠΈΠΌΠΈΠ·Π°Ρ†ΠΈΠΈ 1. Π’Ρ‹Π΄Π΅Π»ΠΈΡ‚ΡŒ 2 Π±ΠΈΡ‚Π° с доступом Π±Π΅Π· Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΈ ΠΈ Ρ„ΠΈΠΊΡΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ случаи записи ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΎΠ² EM ΠΈ DE ΠΊΠ°ΠΊ пустая строка. 2. ΠΠ½Π°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π±ΠΈΡ‚Ρ‹ DE ΠΈ EM ΠΏΡ€ΠΈ Ρ‡Ρ‚Π΅Π½ΠΈΠΈ Π² Identity::getStringParam Ссли Π±ΠΈΡ‚ для ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Π° стоит - Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ Π·Π°Ρ‰ΠΈΡ‰Π΅Π½Π½Ρ‹ΠΉ поиск Π² ΠΌΠ°ΠΏΠ΅ const auto i = m_stringInfo.find(*(short*)name); ΠΈΠ½Π°Ρ‡Π΅ - сразу Π²ΠΎΠ·Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ ΠΏΡƒΡΡ‚ΡƒΡŽ строку Π±Π΅Π· Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΈ. TODO - ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΈΡ‚ΡŒ статистику ΠΎΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠΉ ΠΊ Π΄Ρ€ΡƒΠ³ΠΈΠΌ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Π°ΠΌ Π½Π° Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Ρ…Π°Π±Π°Ρ…. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1314_
priority
ΠΆΠ°Π»ΡƒΡŽΡ‚ΡΡ Π½Π° ΠΏΠΎΠ΄ΠΌΠ΅Ρ€Π·Π°Π½ΠΈΠ΅ курсора Π² ΠΌΠΎΠΌΠ΅Π½Ρ‚ ΠΏΡ€ΠΎΠΊΡ€ΡƒΡ‚ΠΊΠΈ списков ΡŽΠ·Π΅Ρ€ΠΎΠ² Π½Π° ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… Ρ…Π°Π±Π°Ρ… from on september послС Π°Π½Π°Π»ΠΈΠ·Ρƒ ΡƒΠ²ΠΈΠ΄Π΅Π» Π² identity частоС ΠΎΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠ΅ ΠΊ элСмСнтам email ΠΈ description Π΄Π°Π½Π½Ρ‹Π΅ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Ρ‹ строковыС ΠΈ созданы Π² listview с ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΎΠΌ lpstr textcallback Π° это заставляСт Π²ΠΈΠ½Π΄Ρƒ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ€Π°Π· Π·Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Ρ‚ΡŒ значСния ΠΈΠ· getidentity case column email return text tot getidentity getemail case column description return text tot getidentity getdescription Π½Π° Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Ρ…Π°Π±Π°Ρ… ΠΈ Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ случаСв данная информация пустая Π½ΠΎ Π΄Π°ΠΆΠ΅ пустыС строки ΡƒΠ΄Π°Π»ΡΡŽΡ‚ΡΡ ΠΈΠ· ΠΌΠ°ΠΏΡ‹ строк Π² void identity setstringparam ΠΈ ΠΏΠΎΡ‚ΠΎΠΌ всСгда ищутся Π² ΠΈ m stringinfo с Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΎΠΉ Ρ‡Π΅Ρ€Π΅Π· fastsharedlock l g cs Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ ΠΎΠΏΡ‚ΠΈΠΌΠΈΠ·Π°Ρ†ΠΈΠΈ Π²Ρ‹Π΄Π΅Π»ΠΈΡ‚ΡŒ Π±ΠΈΡ‚Π° с доступом Π±Π΅Π· Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΈ ΠΈ Ρ„ΠΈΠΊΡΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ случаи записи ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΎΠ² em ΠΈ de ΠΊΠ°ΠΊ пустая строка Π°Π½Π°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π±ΠΈΡ‚Ρ‹ de ΠΈ em ΠΏΡ€ΠΈ Ρ‡Ρ‚Π΅Π½ΠΈΠΈ Π² identity getstringparam Ссли Π±ΠΈΡ‚ для ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Π° стоит Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ Π·Π°Ρ‰ΠΈΡ‰Π΅Π½Π½Ρ‹ΠΉ поиск Π² ΠΌΠ°ΠΏΠ΅ const auto i m stringinfo find short name ΠΈΠ½Π°Ρ‡Π΅ сразу Π²ΠΎΠ·Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ ΠΏΡƒΡΡ‚ΡƒΡŽ строку Π±Π΅Π· Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΈ todo ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΈΡ‚ΡŒ статистику ΠΎΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠΉ ΠΊ Π΄Ρ€ΡƒΠ³ΠΈΠΌ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Π°ΠΌ Π½Π° Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Ρ…Π°Π±Π°Ρ… original issue
1
736,532
25,477,588,963
IssuesEvent
2022-11-25 16:00:36
FAIRsharing/fairsharing.github.io
https://api.github.com/repos/FAIRsharing/fairsharing.github.io
closed
Obvious button to link community_curation to our_curators
enhancement Medium priority
I seem to have lost the ticket where we postponed (but didn't remove) the request for a big button or graphic that links community_curation to our_curators in a very obvious way. Therefore, I'm making a new ticket. IIRC we postponed it as we were busy on other urgent matters. Please can we go ahead with this? A simple logo/image that represents the curators, and put it under this text: <img width="1217" alt="image_2022_11_24T14_47_09_014Z" src="https://user-images.githubusercontent.com/143586/203813055-7982834b-1dc2-4ec0-8c3f-473b0fd23cb2.png"> This image can be made both with and without accompanying text that says "FAIRsharing Community Curator Programme" as we may wish to use it elsewhere. In addition, please can we add a regular link / button that will link our_curators back to community_curation? Thanks!
1.0
Obvious button to link community_curation to our_curators - I seem to have lost the ticket where we postponed (but didn't remove) the request for a big button or graphic that links community_curation to our_curators in a very obvious way. Therefore, I'm making a new ticket. IIRC we postponed it as we were busy on other urgent matters. Please can we go ahead with this? A simple logo/image that represents the curators, and put it under this text: <img width="1217" alt="image_2022_11_24T14_47_09_014Z" src="https://user-images.githubusercontent.com/143586/203813055-7982834b-1dc2-4ec0-8c3f-473b0fd23cb2.png"> This image can be made both with and without accompanying text that says "FAIRsharing Community Curator Programme" as we may wish to use it elsewhere. In addition, please can we add a regular link / button that will link our_curators back to community_curation? Thanks!
priority
obvious button to link community curation to our curators i seem to have lost the ticket where we postponed but didn t remove the request for a big button or graphic that links community curation to our curators in a very obvious way therefore i m making a new ticket iirc we postponed it as we were busy on other urgent matters please can we go ahead with this a simple logo image that represents the curators and put it under this text img width alt image src this image can be made both with and without accompanying text that says fairsharing community curator programme as we may wish to use it elsewhere in addition please can we add a regular link button that will link our curators back to community curation thanks
1
360,142
10,684,711,772
IssuesEvent
2019-10-22 11:06:20
AY1920S1-CS2113T-W17-3/main
https://api.github.com/repos/AY1920S1-CS2113T-W17-3/main
closed
As a user with income, I can view recurring income
priority.Medium type.Story
So that I can review it to check for error.
1.0
As a user with income, I can view recurring income - So that I can review it to check for error.
priority
as a user with income i can view recurring income so that i can review it to check for error
1
483,885
13,931,027,283
IssuesEvent
2020-10-22 04:06:09
AY2021S1-CS2103T-T10-3/tp
https://api.github.com/repos/AY2021S1-CS2103T-T10-3/tp
closed
Missing tag function for Ingredient
priority.Medium type.Story
As an athlete who does meal preparation, I want to tag my ingredients as based on its main nutrient (E.G. Vitamin C, Fats) so that I make my recipe based on the these categories instead.
1.0
Missing tag function for Ingredient - As an athlete who does meal preparation, I want to tag my ingredients as based on its main nutrient (E.G. Vitamin C, Fats) so that I make my recipe based on the these categories instead.
priority
missing tag function for ingredient as an athlete who does meal preparation i want to tag my ingredients as based on its main nutrient e g vitamin c fats so that i make my recipe based on the these categories instead
1
797,455
28,146,644,856
IssuesEvent
2023-04-02 15:04:38
KDT3-Final-6/final-project-BE
https://api.github.com/repos/KDT3-Final-6/final-project-BE
closed
feat: μƒν’ˆ μΆ”μ²œ κΈ°λŠ₯ κ΅¬ν˜„
Type: Feature Status: Completed Priority: Medium For: API For: Backend
## Description 메인 νŽ˜μ΄μ§€μ—μ„œ μƒν’ˆ μΆ”μ²œν•˜λŠ” κΈ°λŠ₯κ³Ό μ—°κ΄€ μƒν’ˆ μΆ”μ²œν•˜λŠ” κΈ°λŠ₯ κ΅¬ν˜„ ## Tasks(Process) - [x] μƒν’ˆ μΆ”μ²œ(μ·¨λ―Έ 기반) κΈ°λŠ₯ κ΅¬ν˜„ - [x] μ—°κ΄€ μƒν’ˆ μΆ”μ²œ κΈ°λŠ₯ κ΅¬ν˜„ ## References
1.0
feat: μƒν’ˆ μΆ”μ²œ κΈ°λŠ₯ κ΅¬ν˜„ - ## Description 메인 νŽ˜μ΄μ§€μ—μ„œ μƒν’ˆ μΆ”μ²œν•˜λŠ” κΈ°λŠ₯κ³Ό μ—°κ΄€ μƒν’ˆ μΆ”μ²œν•˜λŠ” κΈ°λŠ₯ κ΅¬ν˜„ ## Tasks(Process) - [x] μƒν’ˆ μΆ”μ²œ(μ·¨λ―Έ 기반) κΈ°λŠ₯ κ΅¬ν˜„ - [x] μ—°κ΄€ μƒν’ˆ μΆ”μ²œ κΈ°λŠ₯ κ΅¬ν˜„ ## References
priority
feat μƒν’ˆ μΆ”μ²œ κΈ°λŠ₯ κ΅¬ν˜„ description 메인 νŽ˜μ΄μ§€μ—μ„œ μƒν’ˆ μΆ”μ²œν•˜λŠ” κΈ°λŠ₯κ³Ό μ—°κ΄€ μƒν’ˆ μΆ”μ²œν•˜λŠ” κΈ°λŠ₯ κ΅¬ν˜„ tasks process μƒν’ˆ μΆ”μ²œ μ·¨λ―Έ 기반 κΈ°λŠ₯ κ΅¬ν˜„ μ—°κ΄€ μƒν’ˆ μΆ”μ²œ κΈ°λŠ₯ κ΅¬ν˜„ references
1
323,903
9,880,306,578
IssuesEvent
2019-06-24 12:18:22
dojot/dojot
https://api.github.com/repos/dojot/dojot
closed
[GUI] Tenant is fix in creation of user
Priority:Medium Team:Frontend Type:Feature
When a user is create, the tenant(service) wil be always Admin
1.0
[GUI] Tenant is fix in creation of user - When a user is create, the tenant(service) wil be always Admin
priority
tenant is fix in creation of user when a user is create the tenant service wil be always admin
1
764,614
26,808,668,384
IssuesEvent
2023-02-01 20:22:18
Ore-Design/Ore-3D-Reports-Changelog
https://api.github.com/repos/Ore-Design/Ore-3D-Reports-Changelog
closed
Bug: Fire Pit Detail Set [1.6.4]
bug medium priority
Make burner window wider. I think the only thing it's not showing is 'small tank' on 351-1177 for example. In stead of making the window wider you could also remove 'burner' and have the description start with the part # ![image](https://user-images.githubusercontent.com/114440644/211611294-3e27cd76-af9a-4a47-82cd-5278ee22899c.png) -------------------------- Pan material type - Default: Stainless Steel 304 Pan material thickness - Default: 14 ga -------------------------- Pan & Lid dimensions - Default: Burner dims (L+2"; W+2") if burner dims are in netsuite -------------------------- Lid Material Type - Default: [same as body] Lid Material Thickness - Default: .125" or equivalent Lid Finish Matches Body - Default: YES Lid Height - Default: [Driven by media] -Flush (1") [no media or glass media] -Raised (3") [lava rock] -Custom - enter value -------------------------- **ADD:** Glass Surround - did I give you the formula already??? -Height - static -Length & width: Burner dims (L+2"; W+2") if burner dims are in netsuite
1.0
Bug: Fire Pit Detail Set [1.6.4] - Make burner window wider. I think the only thing it's not showing is 'small tank' on 351-1177 for example. In stead of making the window wider you could also remove 'burner' and have the description start with the part # ![image](https://user-images.githubusercontent.com/114440644/211611294-3e27cd76-af9a-4a47-82cd-5278ee22899c.png) -------------------------- Pan material type - Default: Stainless Steel 304 Pan material thickness - Default: 14 ga -------------------------- Pan & Lid dimensions - Default: Burner dims (L+2"; W+2") if burner dims are in netsuite -------------------------- Lid Material Type - Default: [same as body] Lid Material Thickness - Default: .125" or equivalent Lid Finish Matches Body - Default: YES Lid Height - Default: [Driven by media] -Flush (1") [no media or glass media] -Raised (3") [lava rock] -Custom - enter value -------------------------- **ADD:** Glass Surround - did I give you the formula already??? -Height - static -Length & width: Burner dims (L+2"; W+2") if burner dims are in netsuite
priority
bug fire pit detail set make burner window wider i think the only thing it s not showing is small tank on for example in stead of making the window wider you could also remove burner and have the description start with the part pan material type default stainless steel pan material thickness default ga pan lid dimensions default burner dims l w if burner dims are in netsuite lid material type default lid material thickness default or equivalent lid finish matches body default yes lid height default flush raised custom enter value add glass surround did i give you the formula already height static length width burner dims l w if burner dims are in netsuite
1
250,060
7,967,117,603
IssuesEvent
2018-07-15 09:58:49
pixijs/pixi.js
https://api.github.com/repos/pixijs/pixi.js
closed
Alpha transparency ignored for Graphics cached as bitmap?
Plugin: cacheAsBitmap Priority: Medium Type: Bug Version: v4.x
Hello, I just wanted to ask about something I found out today, namely the fact that the `alpha` property seems to be completely ignored for `Graphics` elements that _have been_ or _will be_ cached as bitmap using `cacheAsBitmap = true` in Pixi 4.5.0. I also want to point out that: 1) This used to work in previous versions of Pixi (I tested it in 4.0.0); 2) There is no issue with `Sprite` elements. I cooked up a small [fiddle](https://jsfiddle.net/94ra2o9v/) so you can check for yourself. Is this the expected behavior now? Thank you
1.0
Alpha transparency ignored for Graphics cached as bitmap? - Hello, I just wanted to ask about something I found out today, namely the fact that the `alpha` property seems to be completely ignored for `Graphics` elements that _have been_ or _will be_ cached as bitmap using `cacheAsBitmap = true` in Pixi 4.5.0. I also want to point out that: 1) This used to work in previous versions of Pixi (I tested it in 4.0.0); 2) There is no issue with `Sprite` elements. I cooked up a small [fiddle](https://jsfiddle.net/94ra2o9v/) so you can check for yourself. Is this the expected behavior now? Thank you
priority
alpha transparency ignored for graphics cached as bitmap hello i just wanted to ask about something i found out today namely the fact that the alpha property seems to be completely ignored for graphics elements that have been or will be cached as bitmap using cacheasbitmap true in pixi i also want to point out that this used to work in previous versions of pixi i tested it in there is no issue with sprite elements i cooked up a small so you can check for yourself is this the expected behavior now thank you
1
619,535
19,529,068,394
IssuesEvent
2021-12-30 13:28:50
bounswe/2021SpringGroup6
https://api.github.com/repos/bounswe/2021SpringGroup6
closed
Android Feature - Creating a new event
Type: Task Status: In Progress Platform: Mobile Priority: Medium
The button for creating a new event will be on home page. The user will be able to pick location on map while creating an event.
1.0
Android Feature - Creating a new event - The button for creating a new event will be on home page. The user will be able to pick location on map while creating an event.
priority
android feature creating a new event the button for creating a new event will be on home page the user will be able to pick location on map while creating an event
1
636,360
20,598,290,538
IssuesEvent
2022-03-05 21:30:40
containrrr/watchtower
https://api.github.com/repos/containrrr/watchtower
opened
When setting watchtower to update at cron interval, the first run is set very far at 01.05.2022.(day.month.year)
Type: Bug Priority: Medium Status: Available
<!-- Before submitting your issue, please make sure you're using the containrrr/watchtower:latest image. If not, switch to this image prior to posting your report. Other forks, or the old `v2tec` image are **not** supported. --> **Describe the bug** <!-- A clear and concise description of what the bug is. --> I want WatchTower to update every Friday at 6AM and when starting it says `Scheduling first run: 2022-05-01 00:06:00 +0000 UTC Note that the first check will be performed in 1346 hours, 55 minutes, 22 seconds` **To Reproduce** <!-- --> Steps to reproduce the behavior: 1. Start container with docker run env variable '-e WATCHTOWER_SCHEDULE="0 6 * * FRI"' 2. Look at docker logs and receive: `Scheduling first run: 2022-05-01 00:06:00 +0000 UTC Note that the first check will be performed in 1346 hours, 55 minutes, 22 seconds` **Expected behavior** <!-- A clear and concise description of what you expected to happen. --> It should start at next Friday at 6AM **Screenshots** <!-- If applicable, add screenshots to help explain your problem. --> **Environment** <!-- We want to know: --> - Platform: Linux docker-vm 5.4.0-100-generic 113-Ubuntu SMP Thu Feb 3 18:43:29 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux - Architecture linux/amd64 - Docker version Docker version 20.10.12, build e91ed57 <details> <summary><b> Logs from running watchtower with the <code>--debug</code> option </b></summary> ``` ``` </details> **Additional context** <!-- Add any other context about the problem here. -->
1.0
When setting watchtower to update at cron interval, the first run is set very far at 01.05.2022.(day.month.year) - <!-- Before submitting your issue, please make sure you're using the containrrr/watchtower:latest image. If not, switch to this image prior to posting your report. Other forks, or the old `v2tec` image are **not** supported. --> **Describe the bug** <!-- A clear and concise description of what the bug is. --> I want WatchTower to update every Friday at 6AM and when starting it says `Scheduling first run: 2022-05-01 00:06:00 +0000 UTC Note that the first check will be performed in 1346 hours, 55 minutes, 22 seconds` **To Reproduce** <!-- --> Steps to reproduce the behavior: 1. Start container with docker run env variable '-e WATCHTOWER_SCHEDULE="0 6 * * FRI"' 2. Look at docker logs and receive: `Scheduling first run: 2022-05-01 00:06:00 +0000 UTC Note that the first check will be performed in 1346 hours, 55 minutes, 22 seconds` **Expected behavior** <!-- A clear and concise description of what you expected to happen. --> It should start at next Friday at 6AM **Screenshots** <!-- If applicable, add screenshots to help explain your problem. --> **Environment** <!-- We want to know: --> - Platform: Linux docker-vm 5.4.0-100-generic 113-Ubuntu SMP Thu Feb 3 18:43:29 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux - Architecture linux/amd64 - Docker version Docker version 20.10.12, build e91ed57 <details> <summary><b> Logs from running watchtower with the <code>--debug</code> option </b></summary> ``` ``` </details> **Additional context** <!-- Add any other context about the problem here. -->
priority
when setting watchtower to update at cron interval the first run is set very far at day month year before submitting your issue please make sure you re using the containrrr watchtower latest image if not switch to this image prior to posting your report other forks or the old image are not supported describe the bug i want watchtower to update every friday at and when starting it says scheduling first run utc note that the first check will be performed in hours minutes seconds to reproduce steps to reproduce the behavior start container with docker run env variable e watchtower schedule fri look at docker logs and receive scheduling first run utc note that the first check will be performed in hours minutes seconds expected behavior it should start at next friday at screenshots if applicable add screenshots to help explain your problem environment we want to know platform linux docker vm generic ubuntu smp thu feb utc gnu linux architecture linux docker version docker version build logs from running watchtower with the debug option additional context add any other context about the problem here
1
458,299
13,172,783,782
IssuesEvent
2020-08-11 19:04:08
rbdannenberg/soundcool
https://api.github.com/repos/rbdannenberg/soundcool
closed
Audio Settings button on Speaker module seems to do nothing.
Priority Medium bug frontend
We should comment out the code the creates the Speaker module has "Audio Settings" button so it does not appear, but if we want to use it later, it will be easy to restore. Are there any audio settings we want to control? Should we open the browser audio settings preferences from Javascript? (Firefox seems to have no interesting settings for audio.) Can we open Linux Settings for audio (and do we want to?) Audio Settings panel is the closest thing to the Max MSP audio settings on the Max version of Soundcool.
1.0
Audio Settings button on Speaker module seems to do nothing. - We should comment out the code the creates the Speaker module has "Audio Settings" button so it does not appear, but if we want to use it later, it will be easy to restore. Are there any audio settings we want to control? Should we open the browser audio settings preferences from Javascript? (Firefox seems to have no interesting settings for audio.) Can we open Linux Settings for audio (and do we want to?) Audio Settings panel is the closest thing to the Max MSP audio settings on the Max version of Soundcool.
priority
audio settings button on speaker module seems to do nothing we should comment out the code the creates the speaker module has audio settings button so it does not appear but if we want to use it later it will be easy to restore are there any audio settings we want to control should we open the browser audio settings preferences from javascript firefox seems to have no interesting settings for audio can we open linux settings for audio and do we want to audio settings panel is the closest thing to the max msp audio settings on the max version of soundcool
1
67,701
3,277,465,157
IssuesEvent
2015-10-27 00:50:13
bounswe/bounswe2015group8
https://api.github.com/repos/bounswe/bounswe2015group8
closed
Notification Requirements
Priority-Medium Type-Task
Add a section for "Notification" (or "Digest") in the functional requirements and determine what kind of properties such a sub-system would require.
1.0
Notification Requirements - Add a section for "Notification" (or "Digest") in the functional requirements and determine what kind of properties such a sub-system would require.
priority
notification requirements add a section for notification or digest in the functional requirements and determine what kind of properties such a sub system would require
1
105,368
4,234,673,542
IssuesEvent
2016-07-05 12:52:52
arkayenro/arkinventory
https://api.github.com/repos/arkayenro/arkinventory
closed
Sry fo stupid q.. can I use ark to get mail?
auto-migrated Priority-Medium Type-Enhancement
``` Downloaded from > googlecode What steps will reproduce the problem? 1. Go to mailbox 2. Open mailbox in arkinv 3. Clicking on items in mail What is the expected output? What do you see instead? Nothing happens.. I have many mail's & I want to use ark to get only few intems without search from mail to mail.. so I want to clich on item & get it in my bag.. is it possible? What version of the product are you using? On what operating system? Win7, last ver of ArkInv Please provide any additional information below. Many tnx for this addon, it's THE BEST for ppls with 10 char's +8 guild banks just for me.. :) ``` Original issue reported on code.google.com by `128...@gmail.com` on 20 Mar 2010 at 6:12
1.0
Sry fo stupid q.. can I use ark to get mail? - ``` Downloaded from > googlecode What steps will reproduce the problem? 1. Go to mailbox 2. Open mailbox in arkinv 3. Clicking on items in mail What is the expected output? What do you see instead? Nothing happens.. I have many mail's & I want to use ark to get only few intems without search from mail to mail.. so I want to clich on item & get it in my bag.. is it possible? What version of the product are you using? On what operating system? Win7, last ver of ArkInv Please provide any additional information below. Many tnx for this addon, it's THE BEST for ppls with 10 char's +8 guild banks just for me.. :) ``` Original issue reported on code.google.com by `128...@gmail.com` on 20 Mar 2010 at 6:12
priority
sry fo stupid q can i use ark to get mail downloaded from googlecode what steps will reproduce the problem go to mailbox open mailbox in arkinv clicking on items in mail what is the expected output what do you see instead nothing happens i have many mail s i want to use ark to get only few intems without search from mail to mail so i want to clich on item get it in my bag is it possible what version of the product are you using on what operating system last ver of arkinv please provide any additional information below many tnx for this addon it s the best for ppls with char s guild banks just for me original issue reported on code google com by gmail com on mar at
1
563,390
16,682,439,081
IssuesEvent
2021-06-08 02:41:26
archiecobbs/s3backer
https://api.github.com/repos/archiecobbs/s3backer
closed
Feature request: list blocks in background
Priority-Medium Type-Enhancement auto-migrated
``` listBlocks can be done in the background in a worker thread while at the same time the filesystem is used for reading and writing. It doesn't seem like it should be necessary to block the mount until the listBlocks is finished. ``` Original issue reported on code.google.com by `jikam...@gmail.com` on 20 Oct 2010 at 2:32
1.0
Feature request: list blocks in background - ``` listBlocks can be done in the background in a worker thread while at the same time the filesystem is used for reading and writing. It doesn't seem like it should be necessary to block the mount until the listBlocks is finished. ``` Original issue reported on code.google.com by `jikam...@gmail.com` on 20 Oct 2010 at 2:32
priority
feature request list blocks in background listblocks can be done in the background in a worker thread while at the same time the filesystem is used for reading and writing it doesn t seem like it should be necessary to block the mount until the listblocks is finished original issue reported on code google com by jikam gmail com on oct at
1
53,278
3,037,851,007
IssuesEvent
2015-08-06 19:14:42
CenterForOpenScience/osf.io
https://api.github.com/repos/CenterForOpenScience/osf.io
closed
In Search results page β€œShare” displaying twice when user hits Enter button twice
5 - pending review bug: production intern priority - medium
# Steps 1. Login to https://osf.io 2. In Dashboard, click on the search icon at the top. 3. Search for any data and hit Enter twice. # Expected It should not be any different from hitting enter once and all the results should be displayed normally # Actual In the search result, on the left, "Share" appears twice. ![image](https://cloud.githubusercontent.com/assets/10926926/8483176/f8789242-20bc-11e5-9223-efafb907d70a.png)
1.0
In Search results page β€œShare” displaying twice when user hits Enter button twice - # Steps 1. Login to https://osf.io 2. In Dashboard, click on the search icon at the top. 3. Search for any data and hit Enter twice. # Expected It should not be any different from hitting enter once and all the results should be displayed normally # Actual In the search result, on the left, "Share" appears twice. ![image](https://cloud.githubusercontent.com/assets/10926926/8483176/f8789242-20bc-11e5-9223-efafb907d70a.png)
priority
in search results page β€œshare” displaying twice when user hits enter button twice steps login to in dashboard click on the search icon at the top search for any data and hit enter twice expected it should not be any different from hitting enter once and all the results should be displayed normally actual in the search result on the left share appears twice
1
598,265
18,241,654,878
IssuesEvent
2021-10-01 13:36:31
ita-social-projects/TeachUA
https://api.github.com/repos/ita-social-projects/TeachUA
reopened
[ПолС ΠΏΠΎΡˆΡƒΠΊΡƒ] It is possible to fill in only 3 letters in search field
bug Priority: Medium
**Environment:** Windows 10 Pro., Google Chrome **Reproducible:** always **Build found:** last commit **Preconditions** Open website on a home page https://speak-ukrainian.org.ua/dev/ **Steps to reproduce** 1. Go to 'ПолС ΠΏΠΎΡˆΡƒΠΊΡƒ' 2. Start to fill in more than 3 letters **Actual result** It is impossible to fill in more than 3 letters in the search field ![search 3](https://user-images.githubusercontent.com/87894920/127387568-c7504e7c-7ee6-4012-9132-114200311a84.png) **Expected result** It is possible to fill in more than 3 letters in the search field **User story and test case links** E.g.: "User story #77
1.0
[ПолС ΠΏΠΎΡˆΡƒΠΊΡƒ] It is possible to fill in only 3 letters in search field - **Environment:** Windows 10 Pro., Google Chrome **Reproducible:** always **Build found:** last commit **Preconditions** Open website on a home page https://speak-ukrainian.org.ua/dev/ **Steps to reproduce** 1. Go to 'ПолС ΠΏΠΎΡˆΡƒΠΊΡƒ' 2. Start to fill in more than 3 letters **Actual result** It is impossible to fill in more than 3 letters in the search field ![search 3](https://user-images.githubusercontent.com/87894920/127387568-c7504e7c-7ee6-4012-9132-114200311a84.png) **Expected result** It is possible to fill in more than 3 letters in the search field **User story and test case links** E.g.: "User story #77
priority
it is possible to fill in only letters in search field environment windows pro google chrome reproducible always build found last commit preconditions open website on a home page steps to reproduce go to ΠΏΠΎΠ»Π΅ ΠΏΠΎΡˆΡƒΠΊΡƒ start to fill in more than letters actual result it is impossible to fill in more than letters in the search field expected result it is possible to fill in more than letters in the search field user story and test case links e g user story
1
411,347
12,017,176,105
IssuesEvent
2020-04-10 17:46:44
olivia-ai/olivia
https://api.github.com/repos/olivia-ai/olivia
reopened
core: create REST routes to add new intents/modules
kind:enhancement priority:medium status:accepted
Create some routes to add new intents to Olivia and new simple modules with a REST API - [ ] Environment variable to disable this REST Api Modules: - [ ] REST Api URL which provide its data to replacer it in the messages (ex: `%s`) - [ ] List all the registered modules Intents: - [ ] Add new simple intents with context - [ ] List all the intents
1.0
core: create REST routes to add new intents/modules - Create some routes to add new intents to Olivia and new simple modules with a REST API - [ ] Environment variable to disable this REST Api Modules: - [ ] REST Api URL which provide its data to replacer it in the messages (ex: `%s`) - [ ] List all the registered modules Intents: - [ ] Add new simple intents with context - [ ] List all the intents
priority
core create rest routes to add new intents modules create some routes to add new intents to olivia and new simple modules with a rest api environment variable to disable this rest api modules rest api url which provide its data to replacer it in the messages ex s list all the registered modules intents add new simple intents with context list all the intents
1
684,508
23,420,751,350
IssuesEvent
2022-08-13 17:00:07
pvs-hd-tea/PyTypes
https://api.github.com/repos/pvs-hd-tea/PyTypes
closed
Annotations cannot be applied in assignments to non-self attributes
Bug Medium Priority
Given ```py def f(i: int) -> str: c = C() c.a: int = 10 return f"{c.outer(i)}" ``` mypy states: `error: Type cannot be declared in assignment to non-self attribute`
1.0
Annotations cannot be applied in assignments to non-self attributes - Given ```py def f(i: int) -> str: c = C() c.a: int = 10 return f"{c.outer(i)}" ``` mypy states: `error: Type cannot be declared in assignment to non-self attribute`
priority
annotations cannot be applied in assignments to non self attributes given py def f i int str c c c a int return f c outer i mypy states error type cannot be declared in assignment to non self attribute
1
266,968
8,377,525,651
IssuesEvent
2018-10-06 02:15:18
medic/medic-webapp
https://api.github.com/repos/medic/medic-webapp
closed
Error is shown when removing a users place and submitting the change
Priority: 2 - Medium Status: 5 - Ready Type: Bug
Trying to remove a user from a place is not possible. You can only assign a user to another place. Pressing the X to remove the place then submitting will generate an error. **Steps to reproduce**: Log in as an admin user Navigate to users Click on a user associated to a place. Press the x to remove the place Click submit. **What should happen**: The user data is updated and the user is removed from the place. **What actually happens**: Error updating user is displayed and the user is not updated. {"code":400,"error":"One of the following fields are required: password, known, place, type, roles, fullname, email, phone, language, contact, external_id"} **Environment**: - Instance: local env, https://beta-old.dev.medicmobile.org/ - Browser: Chrome - Client platform: MacOS - App: admin - Version: 3.0.0
1.0
Error is shown when removing a users place and submitting the change - Trying to remove a user from a place is not possible. You can only assign a user to another place. Pressing the X to remove the place then submitting will generate an error. **Steps to reproduce**: Log in as an admin user Navigate to users Click on a user associated to a place. Press the x to remove the place Click submit. **What should happen**: The user data is updated and the user is removed from the place. **What actually happens**: Error updating user is displayed and the user is not updated. {"code":400,"error":"One of the following fields are required: password, known, place, type, roles, fullname, email, phone, language, contact, external_id"} **Environment**: - Instance: local env, https://beta-old.dev.medicmobile.org/ - Browser: Chrome - Client platform: MacOS - App: admin - Version: 3.0.0
priority
error is shown when removing a users place and submitting the change trying to remove a user from a place is not possible you can only assign a user to another place pressing the x to remove the place then submitting will generate an error steps to reproduce log in as an admin user navigate to users click on a user associated to a place press the x to remove the place click submit what should happen the user data is updated and the user is removed from the place what actually happens error updating user is displayed and the user is not updated code error one of the following fields are required password known place type roles fullname email phone language contact external id environment instance local env browser chrome client platform macos app admin version
1
228,853
7,568,435,757
IssuesEvent
2018-04-22 19:50:54
eustasy/gorgon
https://api.github.com/repos/eustasy/gorgon
closed
Support all GitHub Licenses when Gorgon checks License Files.
Language: Copy Language: PHP Priority: Medium Status: Confirmed Type: Bug
https://developer.github.com/v3/licenses/#list-all-licenses - [x] MIT - [x] AGPL 3.0 - [x] LGPL 2.1 - [x] LGPL 3.0 - [x] GPL 2.1 - [x] GPL 3.0 - [x] MPL 2.0 - [x] Apache 2.0 - [x] Unlicense
1.0
Support all GitHub Licenses when Gorgon checks License Files. - https://developer.github.com/v3/licenses/#list-all-licenses - [x] MIT - [x] AGPL 3.0 - [x] LGPL 2.1 - [x] LGPL 3.0 - [x] GPL 2.1 - [x] GPL 3.0 - [x] MPL 2.0 - [x] Apache 2.0 - [x] Unlicense
priority
support all github licenses when gorgon checks license files mit agpl lgpl lgpl gpl gpl mpl apache unlicense
1
185,618
6,725,965,430
IssuesEvent
2017-10-17 08:11:27
geosolutions-it/decat_geonode
https://api.github.com/repos/geosolutions-it/decat_geonode
opened
Coordinates cannot be input during Early Warning
bug frontend Priority: Medium
User feedback In the Early Warning, during the Alert creation, the alert position can be choosed only with a click on the map. Exact coordinates cannot be input in the textboxes.
1.0
Coordinates cannot be input during Early Warning - User feedback In the Early Warning, during the Alert creation, the alert position can be choosed only with a click on the map. Exact coordinates cannot be input in the textboxes.
priority
coordinates cannot be input during early warning user feedback in the early warning during the alert creation the alert position can be choosed only with a click on the map exact coordinates cannot be input in the textboxes
1
343,820
10,336,766,423
IssuesEvent
2019-09-03 13:38:09
ansible/awx
https://api.github.com/repos/ansible/awx
closed
Workflow pause notification count should update on timeout.
component:api component:ui priority:medium type:enhancement
##### ISSUE TYPE - Feature Idea ##### SUMMARY This is an enhancement to the current implementation for workflow pause/approve. Currently, if an approval node times out, the upper counter does not update. If a workflow node timed out and completed, the end user goes to click the counter, but does not get any useful information. There are two approaches to this: 1) Update the notification to indicate that the workflow timed out, and persist it in the notifications list. This provides more information, but may cause a lot of noise in a complicated list. 2) Simply update the counter so that the user does not see any "ghost" workflow pause/approval notifications. link https://github.com/ansible/awx/issues/1206 cc @mabashian @beeankha
1.0
Workflow pause notification count should update on timeout. - ##### ISSUE TYPE - Feature Idea ##### SUMMARY This is an enhancement to the current implementation for workflow pause/approve. Currently, if an approval node times out, the upper counter does not update. If a workflow node timed out and completed, the end user goes to click the counter, but does not get any useful information. There are two approaches to this: 1) Update the notification to indicate that the workflow timed out, and persist it in the notifications list. This provides more information, but may cause a lot of noise in a complicated list. 2) Simply update the counter so that the user does not see any "ghost" workflow pause/approval notifications. link https://github.com/ansible/awx/issues/1206 cc @mabashian @beeankha
priority
workflow pause notification count should update on timeout issue type feature idea summary this is an enhancement to the current implementation for workflow pause approve currently if an approval node times out the upper counter does not update if a workflow node timed out and completed the end user goes to click the counter but does not get any useful information there are two approaches to this update the notification to indicate that the workflow timed out and persist it in the notifications list this provides more information but may cause a lot of noise in a complicated list simply update the counter so that the user does not see any ghost workflow pause approval notifications link cc mabashian beeankha
1
248,922
7,941,033,877
IssuesEvent
2018-07-10 02:02:41
MARKETProtocol/dApp
https://api.github.com/repos/MARKETProtocol/dApp
opened
[Explorer] Issues with loading graphic and footer
Good First Issue Help Wanted Priority: Medium Type: Bug
## Before you `start work` Please read our contribution [guidelines](https://docs.marketprotocol.io/#contributing) and if there is a bounty involved please also see [here](https://docs.marketprotocol.io/#gitcoin-and-bounties) If you have ongoing work from other bounties with us where funding has not been released, please do not pick up a new issue. We would like to involve as many contributors as possible and parallelize the work flow as much as possible. Please make sure to comment in the issue here immediately after starting work so we know your plans for implementation and a timeline. Please also note that in order for work to be accepted, all code must be accompanied by test cases as well. ### Why Is this Needed? *Summary*: When loading the contracts in the [explorer](http://dev.dapp.marketprotocol.io/contract/explorer) the loading animation shows up in the middle of the screen which can be an issue with the footer. ### Description *Type*: Bug ### Current Behavior ![image](https://user-images.githubusercontent.com/15096737/42484991-da558a2a-83b2-11e8-9cf4-05d5c28c596d.png) ### Expected Behavior Loading animation (M) does not overlap the footer. ### Reproduction http://dev.dapp.marketprotocol.io/contract/explorer while connected to metamask pointed at rinkeby with a short window height. ### Solution *Summary*: fix issues so M doesn't overlap with footer
1.0
[Explorer] Issues with loading graphic and footer - ## Before you `start work` Please read our contribution [guidelines](https://docs.marketprotocol.io/#contributing) and if there is a bounty involved please also see [here](https://docs.marketprotocol.io/#gitcoin-and-bounties) If you have ongoing work from other bounties with us where funding has not been released, please do not pick up a new issue. We would like to involve as many contributors as possible and parallelize the work flow as much as possible. Please make sure to comment in the issue here immediately after starting work so we know your plans for implementation and a timeline. Please also note that in order for work to be accepted, all code must be accompanied by test cases as well. ### Why Is this Needed? *Summary*: When loading the contracts in the [explorer](http://dev.dapp.marketprotocol.io/contract/explorer) the loading animation shows up in the middle of the screen which can be an issue with the footer. ### Description *Type*: Bug ### Current Behavior ![image](https://user-images.githubusercontent.com/15096737/42484991-da558a2a-83b2-11e8-9cf4-05d5c28c596d.png) ### Expected Behavior Loading animation (M) does not overlap the footer. ### Reproduction http://dev.dapp.marketprotocol.io/contract/explorer while connected to metamask pointed at rinkeby with a short window height. ### Solution *Summary*: fix issues so M doesn't overlap with footer
priority
issues with loading graphic and footer before you start work please read our contribution and if there is a bounty involved please also see if you have ongoing work from other bounties with us where funding has not been released please do not pick up a new issue we would like to involve as many contributors as possible and parallelize the work flow as much as possible please make sure to comment in the issue here immediately after starting work so we know your plans for implementation and a timeline please also note that in order for work to be accepted all code must be accompanied by test cases as well why is this needed summary when loading the contracts in the the loading animation shows up in the middle of the screen which can be an issue with the footer description type bug current behavior expected behavior loading animation m does not overlap the footer reproduction while connected to metamask pointed at rinkeby with a short window height solution summary fix issues so m doesn t overlap with footer
1
237,478
7,760,754,171
IssuesEvent
2018-06-01 07:29:06
telerik/kendo-ui-core
https://api.github.com/repos/telerik/kendo-ui-core
closed
Scatter chart not working with Date object and server binding
Bug C: Chart Kendo1 Priority 1 S: Wrappers (ASP.NET MVC) SEV: Medium
### Bug report Scatter chart not working with Date object and server binding. ### Reproduction of the problem Demo in 1160150. ### Expected/desired behavior The chart is plotted as expected. ### Environment * **Kendo UI version:** 2018.1 221 * **Browser:** [all]
1.0
Scatter chart not working with Date object and server binding - ### Bug report Scatter chart not working with Date object and server binding. ### Reproduction of the problem Demo in 1160150. ### Expected/desired behavior The chart is plotted as expected. ### Environment * **Kendo UI version:** 2018.1 221 * **Browser:** [all]
priority
scatter chart not working with date object and server binding bug report scatter chart not working with date object and server binding reproduction of the problem demo in expected desired behavior the chart is plotted as expected environment kendo ui version browser
1
54,319
3,066,328,445
IssuesEvent
2015-08-18 00:33:54
theminted/lesswrong-migrated
https://api.github.com/repos/theminted/lesswrong-migrated
closed
redirects to subreddit on dynamic login
bug imported Priority-Medium
_From [cra...@gmail.com](https://code.google.com/u/116565747696811646561/) on February 03, 2009 15:47:30_ should use cname, not /r/subredditname go to staging.lesswrong click to upvote login get redirected to /r/subreddit/thing _Original issue: http://code.google.com/p/lesswrong/issues/detail?id=27_
1.0
redirects to subreddit on dynamic login - _From [cra...@gmail.com](https://code.google.com/u/116565747696811646561/) on February 03, 2009 15:47:30_ should use cname, not /r/subredditname go to staging.lesswrong click to upvote login get redirected to /r/subreddit/thing _Original issue: http://code.google.com/p/lesswrong/issues/detail?id=27_
priority
redirects to subreddit on dynamic login from on february should use cname not r subredditname go to staging lesswrong click to upvote login get redirected to r subreddit thing original issue
1
782,304
27,492,779,896
IssuesEvent
2023-03-04 20:39:37
azerothcore/azerothcore-wotlk
https://api.github.com/repos/azerothcore/azerothcore-wotlk
closed
Core/Script: Halls of Reflection
Instance - Dungeon - Northrend 80 Priority-Medium
<!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> **Description**: A wrong script in the halls of reflection. **Current behaviour**: Tell us what happens When you enter the dungeon, triggered the script and it is not correct! The sound and text don't match. The text was from the opposite faction. Example: a Jaina approach to Uther and the conversation (script) triggered an appeal to Silwan. After the murder of "Marvin" should be assigned the quest: Alliance: http://wowhead.com/quest=24500 - Auto acceptance Horde: http://wowhead.com/quest=24802 - Auto acceptance Missing text and sounds: - Stupid girl! The one you seek is long dead! Now he is a shadow ... (Something like this) :-) ΠŸΡ€ΠΎΡΡ‚ΠΈΡ‚Π΅ Π·Π° ΠΌΠΎΠΉ англиский! :-) Sorry for my English! :-) <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/54355046-core-script-halls-of-reflection?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github). </bountysource-plugin>
1.0
Core/Script: Halls of Reflection - <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> <!-- IF YOU DO NOT FILL THIS OUT, WE WILL CLOSE YOUR ISSUE! --> **Description**: A wrong script in the halls of reflection. **Current behaviour**: Tell us what happens When you enter the dungeon, triggered the script and it is not correct! The sound and text don't match. The text was from the opposite faction. Example: a Jaina approach to Uther and the conversation (script) triggered an appeal to Silwan. After the murder of "Marvin" should be assigned the quest: Alliance: http://wowhead.com/quest=24500 - Auto acceptance Horde: http://wowhead.com/quest=24802 - Auto acceptance Missing text and sounds: - Stupid girl! The one you seek is long dead! Now he is a shadow ... (Something like this) :-) ΠŸΡ€ΠΎΡΡ‚ΠΈΡ‚Π΅ Π·Π° ΠΌΠΎΠΉ англиский! :-) Sorry for my English! :-) <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/54355046-core-script-halls-of-reflection?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F40032087&utm_medium=issues&utm_source=github). </bountysource-plugin>
priority
core script halls of reflection description a wrong script in the halls of reflection current behaviour tell us what happens when you enter the dungeon triggered the script and it is not correct the sound and text don t match the text was from the opposite faction example a jaina approach to uther and the conversation script triggered an appeal to silwan after the murder of marvin should be assigned the quest alliance auto acceptance horde auto acceptance missing text and sounds stupid girl the one you seek is long dead now he is a shadow something like this проститС Π·Π° ΠΌΠΎΠΉ англиский sorry for my english want to back this issue we accept bounties via
1
461,053
13,222,876,184
IssuesEvent
2020-08-17 16:14:24
anthem-audio/Anthem
https://api.github.com/repos/anthem-audio/Anthem
closed
Pull JSON schemas from files instead of hard-coding them
:rocket: enhancement :warning: priority: medium πŸ”½complexity: low
Schemas describing valid project structure should not be hard-coded in C++. Hard-coding makes them very hard to read and near-impossible to edit.
1.0
Pull JSON schemas from files instead of hard-coding them - Schemas describing valid project structure should not be hard-coded in C++. Hard-coding makes them very hard to read and near-impossible to edit.
priority
pull json schemas from files instead of hard coding them schemas describing valid project structure should not be hard coded in c hard coding makes them very hard to read and near impossible to edit
1
630,949
20,121,526,129
IssuesEvent
2022-02-08 03:12:00
SahilSawantUSA/Scouterdeck-App
https://api.github.com/repos/SahilSawantUSA/Scouterdeck-App
opened
Add light dark mode
Priority: Medium Type: Feature
Add light dark mode toggle in the settings widget. That way all components made going forward will support light/dark mode as they are developed.
1.0
Add light dark mode - Add light dark mode toggle in the settings widget. That way all components made going forward will support light/dark mode as they are developed.
priority
add light dark mode add light dark mode toggle in the settings widget that way all components made going forward will support light dark mode as they are developed
1
629,089
20,023,150,611
IssuesEvent
2022-02-01 18:18:37
vaticle/typedb
https://api.github.com/repos/vaticle/typedb
closed
Create two-layer traversal plan cache to cap native memory usage
type: refactor priority: medium
## Problem to Solve We discovered and worked the fact that `MPSolver` uses a lot of off-heap memory in #6380 -- a planner can end up being 5-30mb of off-heap (native) memory. With even 100 cached plans that is already in the gigabytes! We would like to have a method that allows us to cache many plans while also having a minimum memory cost, especially off heap which is hard to track. ## Proposed Solution 1. `GraphPlanner` objects that hold onto the native `MPSolver` objects should delete the native objects when they reach `Optimal`. Once the plan goes out of date, we should re-create the solver and execute the optimisation on the new solver object. 2. Introduce a two-layer cache for traversal plans: Active: queries that are in use, but not optimal, with a fixed small size of say 100. This allows 1gb of active plans to be cached and utilised. Once the plan is `Optimal`, we evict it from the cache and move it to a lower level `Optimal` cache. Optimal: This can be a large cache (say, 10000) of plans that are fully planned and up to date. If the plan goes out of date, it is removed and put back in the `Active` cache. This system prevents the system from using too much native memory for query planning, while keeping a large cache of plans that are ready to use. Queries that are used frequently and in rapid succession (such as those in reasoner) will rapidly move from the `Active` to `Optimal` cache.
1.0
Create two-layer traversal plan cache to cap native memory usage - ## Problem to Solve We discovered and worked the fact that `MPSolver` uses a lot of off-heap memory in #6380 -- a planner can end up being 5-30mb of off-heap (native) memory. With even 100 cached plans that is already in the gigabytes! We would like to have a method that allows us to cache many plans while also having a minimum memory cost, especially off heap which is hard to track. ## Proposed Solution 1. `GraphPlanner` objects that hold onto the native `MPSolver` objects should delete the native objects when they reach `Optimal`. Once the plan goes out of date, we should re-create the solver and execute the optimisation on the new solver object. 2. Introduce a two-layer cache for traversal plans: Active: queries that are in use, but not optimal, with a fixed small size of say 100. This allows 1gb of active plans to be cached and utilised. Once the plan is `Optimal`, we evict it from the cache and move it to a lower level `Optimal` cache. Optimal: This can be a large cache (say, 10000) of plans that are fully planned and up to date. If the plan goes out of date, it is removed and put back in the `Active` cache. This system prevents the system from using too much native memory for query planning, while keeping a large cache of plans that are ready to use. Queries that are used frequently and in rapid succession (such as those in reasoner) will rapidly move from the `Active` to `Optimal` cache.
priority
create two layer traversal plan cache to cap native memory usage problem to solve we discovered and worked the fact that mpsolver uses a lot of off heap memory in a planner can end up being of off heap native memory with even cached plans that is already in the gigabytes we would like to have a method that allows us to cache many plans while also having a minimum memory cost especially off heap which is hard to track proposed solution graphplanner objects that hold onto the native mpsolver objects should delete the native objects when they reach optimal once the plan goes out of date we should re create the solver and execute the optimisation on the new solver object introduce a two layer cache for traversal plans active queries that are in use but not optimal with a fixed small size of say this allows of active plans to be cached and utilised once the plan is optimal we evict it from the cache and move it to a lower level optimal cache optimal this can be a large cache say of plans that are fully planned and up to date if the plan goes out of date it is removed and put back in the active cache this system prevents the system from using too much native memory for query planning while keeping a large cache of plans that are ready to use queries that are used frequently and in rapid succession such as those in reasoner will rapidly move from the active to optimal cache
1
118,919
4,757,617,172
IssuesEvent
2016-10-24 17:05:49
geosolutions-it/geotools
https://api.github.com/repos/geosolutions-it/geotools
opened
Create app-schema mapping file for datex schema
C009-2016-MONGODB Priority: Medium Task
Create the app-schema mappign file for mapping datex complex features and do the necessary modification on the top level NPRA schema to make it parseable by app-schema.
1.0
Create app-schema mapping file for datex schema - Create the app-schema mappign file for mapping datex complex features and do the necessary modification on the top level NPRA schema to make it parseable by app-schema.
priority
create app schema mapping file for datex schema create the app schema mappign file for mapping datex complex features and do the necessary modification on the top level npra schema to make it parseable by app schema
1
627,274
19,899,980,736
IssuesEvent
2022-01-25 06:27:54
VoltanFr/memcheck
https://api.github.com/repos/VoltanFr/memcheck
closed
Improve toast messages
complexity-medium priority-high
Since the switch to Vue 3 and Vant, toast messages are shown with short line line length, and words get broken abruptly. This might be fixed using CSS styling.
1.0
Improve toast messages - Since the switch to Vue 3 and Vant, toast messages are shown with short line line length, and words get broken abruptly. This might be fixed using CSS styling.
priority
improve toast messages since the switch to vue and vant toast messages are shown with short line line length and words get broken abruptly this might be fixed using css styling
1
805,566
29,576,961,850
IssuesEvent
2023-06-07 00:09:16
DARPA-ASKEM/simulation-service
https://api.github.com/repos/DARPA-ASKEM/simulation-service
opened
Incorporate new workflow
integration medium-priority ta4
There needs to be some refactoring to handle the changes to TDS and workflow designs. ### TODOs - [ ] Run simulate(s) upon calibration completion - [ ] Write job status to TDS - [ ] (requires TDS coordination) Use presigned handle provided by TDS on complete to write to S3 The new flow: ![image](https://github.com/DARPA-ASKEM/simulation-service/assets/14170067/7135ea97-f375-4984-be20-81d9f926dd6e)
1.0
Incorporate new workflow - There needs to be some refactoring to handle the changes to TDS and workflow designs. ### TODOs - [ ] Run simulate(s) upon calibration completion - [ ] Write job status to TDS - [ ] (requires TDS coordination) Use presigned handle provided by TDS on complete to write to S3 The new flow: ![image](https://github.com/DARPA-ASKEM/simulation-service/assets/14170067/7135ea97-f375-4984-be20-81d9f926dd6e)
priority
incorporate new workflow there needs to be some refactoring to handle the changes to tds and workflow designs todos run simulate s upon calibration completion write job status to tds requires tds coordination use presigned handle provided by tds on complete to write to the new flow
1
583,941
17,401,722,787
IssuesEvent
2021-08-02 20:44:49
spicygreenbook/greenbook-app
https://api.github.com/repos/spicygreenbook/greenbook-app
closed
Listing Reorganization
Priority: Medium Status: In Progress Type: Enhancement
We have completed a mobile site audit. Pain Point 2 See image below to see how the listings should be reorganized. ![image](https://user-images.githubusercontent.com/69876068/115070228-843a3180-9ea9-11eb-9ed0-3b954ee8de70.png) See entire audit [here](https://prismic-io.s3.amazonaws.com/spicygreenbook/61231769-e7dc-4d34-a18e-389e72912bbb_SGB+Mobile+Site+Audit.pptx.pdf)
1.0
Listing Reorganization - We have completed a mobile site audit. Pain Point 2 See image below to see how the listings should be reorganized. ![image](https://user-images.githubusercontent.com/69876068/115070228-843a3180-9ea9-11eb-9ed0-3b954ee8de70.png) See entire audit [here](https://prismic-io.s3.amazonaws.com/spicygreenbook/61231769-e7dc-4d34-a18e-389e72912bbb_SGB+Mobile+Site+Audit.pptx.pdf)
priority
listing reorganization we have completed a mobile site audit pain point see image below to see how the listings should be reorganized see entire audit
1
497,677
14,382,956,714
IssuesEvent
2020-12-02 08:24:39
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Avatars blocked by plants again
Category: Gameplay Priority: Medium Type: Regression
![image](https://user-images.githubusercontent.com/3536496/98875384-fb6a2600-2430-11eb-9f95-67c583f16687.png) I added code to fix this while back here: https://github.com/StrangeLoopGames/Eco/pull/5867 Figure out why it stopped working and repair please!
1.0
Avatars blocked by plants again - ![image](https://user-images.githubusercontent.com/3536496/98875384-fb6a2600-2430-11eb-9f95-67c583f16687.png) I added code to fix this while back here: https://github.com/StrangeLoopGames/Eco/pull/5867 Figure out why it stopped working and repair please!
priority
avatars blocked by plants again i added code to fix this while back here figure out why it stopped working and repair please
1
411,622
12,026,684,462
IssuesEvent
2020-04-12 15:11:43
GeekyEggo/SoundDeck
https://api.github.com/repos/GeekyEggo/SoundDeck
closed
Play Clip "Loop All / Stop" action
priority: medium type: enhancement
### Description The current `Loop / Stop` action relates to a single file; it would be nice if there were an option to loop the entire playlist as well. ### Expected Behaviour #### Setup * With a playlist of `n` files. * And an action of "Loop All / Stop" #### Interaction (Action Presses) 1. Plays clips `1..n` in order, looping back to `1..n`, etc. 2. Playback stops. 3. Loop resumes from beginning (see step 1) ### Origin [Request from @SunsetsBrew on Twitter](https://twitter.com/sunsetsbrew/status/1247081556386017281) - Thank you!
1.0
Play Clip "Loop All / Stop" action - ### Description The current `Loop / Stop` action relates to a single file; it would be nice if there were an option to loop the entire playlist as well. ### Expected Behaviour #### Setup * With a playlist of `n` files. * And an action of "Loop All / Stop" #### Interaction (Action Presses) 1. Plays clips `1..n` in order, looping back to `1..n`, etc. 2. Playback stops. 3. Loop resumes from beginning (see step 1) ### Origin [Request from @SunsetsBrew on Twitter](https://twitter.com/sunsetsbrew/status/1247081556386017281) - Thank you!
priority
play clip loop all stop action description the current loop stop action relates to a single file it would be nice if there were an option to loop the entire playlist as well expected behaviour setup with a playlist of n files and an action of loop all stop interaction action presses plays clips n in order looping back to n etc playback stops loop resumes from beginning see step origin thank you
1
518,370
15,027,484,527
IssuesEvent
2021-02-02 00:52:47
tysonkaufmann/su-go
https://api.github.com/repos/tysonkaufmann/su-go
opened
[DEV] Make changes to the UI and add front-end code
Medium Priority task
**Related To** - [Start and End a route](https://github.com/tysonkaufmann/su-go/issues/66 ) **Description** Add UI so the user is able to start and end routes **Development Steps** - Add JavaScript code to make API requests to `/api/usercurrentroute/{USERNAME}` to see if the user is on this current route (Handle any errors returned) - If the user is not on the current route add a "Start Route" button in the UI and add JavaScript code to make API requests to `/api/startroute}` if the button is clicked (Handle any errors returned) - If the user is on the current route add a "End Route" button in the UI and add JavaScript code to make API requests to `/api/endroute}` if the button is clicked (Handle any errors returned)
1.0
[DEV] Make changes to the UI and add front-end code - **Related To** - [Start and End a route](https://github.com/tysonkaufmann/su-go/issues/66 ) **Description** Add UI so the user is able to start and end routes **Development Steps** - Add JavaScript code to make API requests to `/api/usercurrentroute/{USERNAME}` to see if the user is on this current route (Handle any errors returned) - If the user is not on the current route add a "Start Route" button in the UI and add JavaScript code to make API requests to `/api/startroute}` if the button is clicked (Handle any errors returned) - If the user is on the current route add a "End Route" button in the UI and add JavaScript code to make API requests to `/api/endroute}` if the button is clicked (Handle any errors returned)
priority
make changes to the ui and add front end code related to description add ui so the user is able to start and end routes development steps add javascript code to make api requests to api usercurrentroute username to see if the user is on this current route handle any errors returned if the user is not on the current route add a start route button in the ui and add javascript code to make api requests to api startroute if the button is clicked handle any errors returned if the user is on the current route add a end route button in the ui and add javascript code to make api requests to api endroute if the button is clicked handle any errors returned
1
642,399
20,886,921,261
IssuesEvent
2022-03-23 06:45:18
AY2122S2-CS2103T-T17-4/tp
https://api.github.com/repos/AY2122S2-CS2103T-T17-4/tp
closed
Update multiplicity of Memo in UML diagrams
priority.Medium type.Task
Multiplicity of `Memo` in `ModelClassDiagram` and `BetterModelClassDiagram` was '0..1' as memo is an optional field and can be omitted during the `add` command. However, when omitted, the person will still have a memo, just that it is an empty string. The implementation favors '1' as the multiplicity as there will always be a `Memo` object. Hence, multiplicity of `Memo` should be 1.
1.0
Update multiplicity of Memo in UML diagrams - Multiplicity of `Memo` in `ModelClassDiagram` and `BetterModelClassDiagram` was '0..1' as memo is an optional field and can be omitted during the `add` command. However, when omitted, the person will still have a memo, just that it is an empty string. The implementation favors '1' as the multiplicity as there will always be a `Memo` object. Hence, multiplicity of `Memo` should be 1.
priority
update multiplicity of memo in uml diagrams multiplicity of memo in modelclassdiagram and bettermodelclassdiagram was as memo is an optional field and can be omitted during the add command however when omitted the person will still have a memo just that it is an empty string the implementation favors as the multiplicity as there will always be a memo object hence multiplicity of memo should be
1
817,940
30,663,922,456
IssuesEvent
2023-07-25 16:49:02
rancher/fleet
https://api.github.com/repos/rancher/fleet
closed
How can we prevent fleet from adding non yaml files into bundles - can we have a .fleetignore?
kind/good-first-issue [zube]: Release Candidates QA/S kind/enhancement status/dev-validate priority/medium loe/M
Just had to realize that a file called "ldap-toml" with "toml format content" I had in the git repo was added to the fleet bundle. I believe we need a way to control which files are looked at by fleet so that i.e. readme or other txt files can be excluded or are excluded by default. IMO we should "just" look at *.yaml files but probably we can add a `.fleetignore` or an option that allows control over which files should be taken and which not in the fleet.yaml..
1.0
How can we prevent fleet from adding non yaml files into bundles - can we have a .fleetignore? - Just had to realize that a file called "ldap-toml" with "toml format content" I had in the git repo was added to the fleet bundle. I believe we need a way to control which files are looked at by fleet so that i.e. readme or other txt files can be excluded or are excluded by default. IMO we should "just" look at *.yaml files but probably we can add a `.fleetignore` or an option that allows control over which files should be taken and which not in the fleet.yaml..
priority
how can we prevent fleet from adding non yaml files into bundles can we have a fleetignore just had to realize that a file called ldap toml with toml format content i had in the git repo was added to the fleet bundle i believe we need a way to control which files are looked at by fleet so that i e readme or other txt files can be excluded or are excluded by default imo we should just look at yaml files but probably we can add a fleetignore or an option that allows control over which files should be taken and which not in the fleet yaml
1
24,367
2,667,378,155
IssuesEvent
2015-03-22 15:12:47
NewCreature/EOF
https://api.github.com/repos/NewCreature/EOF
closed
Disable the Note>HOPO menu in PART DRUMS
enhancement imported Priority-Medium
_From [raynebc](https://code.google.com/u/raynebc/) on May 23, 2010 21:53:21_ This is already disabled when PART VOCALS is selected. Since HOPOs don't exist for the drum track, the menu should be disabled in PART DRUMS as well. _Original issue: http://code.google.com/p/editor-on-fire/issues/detail?id=103_
1.0
Disable the Note>HOPO menu in PART DRUMS - _From [raynebc](https://code.google.com/u/raynebc/) on May 23, 2010 21:53:21_ This is already disabled when PART VOCALS is selected. Since HOPOs don't exist for the drum track, the menu should be disabled in PART DRUMS as well. _Original issue: http://code.google.com/p/editor-on-fire/issues/detail?id=103_
priority
disable the note hopo menu in part drums from on may this is already disabled when part vocals is selected since hopos don t exist for the drum track the menu should be disabled in part drums as well original issue
1
560,500
16,598,315,872
IssuesEvent
2021-06-01 15:53:06
BTAA-Geospatial-Data-Project/geomg
https://api.github.com/repos/BTAA-Geospatial-Data-Project/geomg
reopened
CSV export maxes out at 10,005 records
priority:medium
Not sure about the feasibility or necessity for increasing this, but something to note. This makes it tricky to export the full collection to make batch changes as there is not a great way to parse the remaining records.
1.0
CSV export maxes out at 10,005 records - Not sure about the feasibility or necessity for increasing this, but something to note. This makes it tricky to export the full collection to make batch changes as there is not a great way to parse the remaining records.
priority
csv export maxes out at records not sure about the feasibility or necessity for increasing this but something to note this makes it tricky to export the full collection to make batch changes as there is not a great way to parse the remaining records
1
203,092
7,057,782,160
IssuesEvent
2018-01-04 17:42:02
HBHWoolacotts/RPii
https://api.github.com/repos/HBHWoolacotts/RPii
opened
Search for Items at your Branch - BN & DI
Label: Future Dev Request Priority - Medium
The shop guys are asking for a way they can quickly check what they have on display against what they have in their stock room. Currently, they are searching by Prod Group (eg CTV) and sorting by QTY AV at their local branch. They then have to check EVERY item individually which is a painful process, to see what's on DI and what's BN - to fill gaps in the show room. There must be a quicker way to do this to replenish display stock - ideally they need to select their branch and their prod group, and it show them what's DI vs what's BN (ideally sorted in highest qty of BN) so they can go and quickly grab the stock that's in the stock room and put it on display. Perhaps a report so they can print it, or a live lookup in RPii?
1.0
Search for Items at your Branch - BN & DI - The shop guys are asking for a way they can quickly check what they have on display against what they have in their stock room. Currently, they are searching by Prod Group (eg CTV) and sorting by QTY AV at their local branch. They then have to check EVERY item individually which is a painful process, to see what's on DI and what's BN - to fill gaps in the show room. There must be a quicker way to do this to replenish display stock - ideally they need to select their branch and their prod group, and it show them what's DI vs what's BN (ideally sorted in highest qty of BN) so they can go and quickly grab the stock that's in the stock room and put it on display. Perhaps a report so they can print it, or a live lookup in RPii?
priority
search for items at your branch bn di the shop guys are asking for a way they can quickly check what they have on display against what they have in their stock room currently they are searching by prod group eg ctv and sorting by qty av at their local branch they then have to check every item individually which is a painful process to see what s on di and what s bn to fill gaps in the show room there must be a quicker way to do this to replenish display stock ideally they need to select their branch and their prod group and it show them what s di vs what s bn ideally sorted in highest qty of bn so they can go and quickly grab the stock that s in the stock room and put it on display perhaps a report so they can print it or a live lookup in rpii
1
374,510
11,091,600,469
IssuesEvent
2019-12-15 13:31:54
bounswe/bounswe2019group4
https://api.github.com/repos/bounswe/bounswe2019group4
closed
Frontend enhancement Article Comments
Front-End Priority: Medium Status: In Progress Type: Enhancement
According to our requirements: 1.1.2.5.2 User shall be able to comment on articles. We should add comments section to artice details pages.
1.0
Frontend enhancement Article Comments - According to our requirements: 1.1.2.5.2 User shall be able to comment on articles. We should add comments section to artice details pages.
priority
frontend enhancement article comments according to our requirements user shall be able to comment on articles we should add comments section to artice details pages
1
728,837
25,095,252,377
IssuesEvent
2022-11-08 09:42:37
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
drivers: peci: user space handlers not building correctly
bug priority: medium area: PECI
**Describe the bug** PECI subsystem cannot be enabled with USERSPACE feature User handlers do not build correctly. Please also mention any information which could help others to understand the problem you're facing: - What target platform are you using? - What have you tried to diagnose or workaround this issue? - ... **To Reproduce** Steps to reproduce the behavior: 1) cd samples/drivers/peci 2) west build -b mec172xevb_assy6906 -- -DCONFIG_ARM_MPU=y -DCONFIG_USERSPACE=y 3) See build error **Expected behavior** PECI handlers build correctly **Impact** High **Logs and console output** /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:14:9: error: implicit declaration of function 'Z_SYSCALL_DRIVER_PECI'; did you mean 'Z_SYSCALL_DRIVER_GEN'? [-Werror=implicit-function-declaration] 14 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, config)); | ^~~~~~~~~~~~~~~~~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:14:36: error: 'config' undeclared (first use in this function); did you mean 'mpu_config'? 14 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, config)); | ^~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:14:36: note: each undeclared identifier is reported only once for each function it appears in 14 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, config)); | ^~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c: In function 'z_vrfy_peci_enable': /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:22:36: error: 'enable' undeclared (first use in this function) 22 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, enable)); | ^~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c: In function 'z_vrfy_peci_disable': /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:30:36: error: 'disable' undeclared (first use in this function) 30 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, disable)); | ^~~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c: In function 'z_vrfy_peci_transfer': /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:41:36: error: 'transfer' undeclared (first use in this function) 41 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, transfer)); | ^~~~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ **Environment (please complete the following information):** - OS: (e.g. Linux, MacOS, Windows) - Toolchain (e.g Zephyr SDK, ...) - Commit SHA or Version used **Additional context** Add any other context that could be relevant to your issue, such as pin setting, target configuration, ...
1.0
drivers: peci: user space handlers not building correctly - **Describe the bug** PECI subsystem cannot be enabled with USERSPACE feature User handlers do not build correctly. Please also mention any information which could help others to understand the problem you're facing: - What target platform are you using? - What have you tried to diagnose or workaround this issue? - ... **To Reproduce** Steps to reproduce the behavior: 1) cd samples/drivers/peci 2) west build -b mec172xevb_assy6906 -- -DCONFIG_ARM_MPU=y -DCONFIG_USERSPACE=y 3) See build error **Expected behavior** PECI handlers build correctly **Impact** High **Logs and console output** /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:14:9: error: implicit declaration of function 'Z_SYSCALL_DRIVER_PECI'; did you mean 'Z_SYSCALL_DRIVER_GEN'? [-Werror=implicit-function-declaration] 14 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, config)); | ^~~~~~~~~~~~~~~~~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:14:36: error: 'config' undeclared (first use in this function); did you mean 'mpu_config'? 14 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, config)); | ^~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:14:36: note: each undeclared identifier is reported only once for each function it appears in 14 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, config)); | ^~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c: In function 'z_vrfy_peci_enable': /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:22:36: error: 'enable' undeclared (first use in this function) 22 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, enable)); | ^~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c: In function 'z_vrfy_peci_disable': /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:30:36: error: 'disable' undeclared (first use in this function) 30 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, disable)); | ^~~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ | ^~~~ /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c: In function 'z_vrfy_peci_transfer': /home/jamezaar/ecwork/zephyr_fork/drivers/peci/peci_handlers.c:41:36: error: 'transfer' undeclared (first use in this function) 41 | Z_OOPS(Z_SYSCALL_DRIVER_PECI(dev, transfer)); | ^~~~~~~~ /home/jamezaar/ecwork/zephyr_fork/include/syscall_handler.h:293:7: note: in definition of macro 'Z_OOPS' 293 | if (expr) { \ **Environment (please complete the following information):** - OS: (e.g. Linux, MacOS, Windows) - Toolchain (e.g Zephyr SDK, ...) - Commit SHA or Version used **Additional context** Add any other context that could be relevant to your issue, such as pin setting, target configuration, ...
priority
drivers peci user space handlers not building correctly describe the bug peci subsystem cannot be enabled with userspace feature user handlers do not build correctly please also mention any information which could help others to understand the problem you re facing what target platform are you using what have you tried to diagnose or workaround this issue to reproduce steps to reproduce the behavior cd samples drivers peci west build b dconfig arm mpu y dconfig userspace y see build error expected behavior peci handlers build correctly impact high logs and console output home jamezaar ecwork zephyr fork drivers peci peci handlers c error implicit declaration of function z syscall driver peci did you mean z syscall driver gen z oops z syscall driver peci dev config home jamezaar ecwork zephyr fork include syscall handler h note in definition of macro z oops if expr home jamezaar ecwork zephyr fork drivers peci peci handlers c error config undeclared first use in this function did you mean mpu config z oops z syscall driver peci dev config home jamezaar ecwork zephyr fork include syscall handler h note in definition of macro z oops if expr home jamezaar ecwork zephyr fork drivers peci peci handlers c note each undeclared identifier is reported only once for each function it appears in z oops z syscall driver peci dev config home jamezaar ecwork zephyr fork include syscall handler h note in definition of macro z oops if expr home jamezaar ecwork zephyr fork drivers peci peci handlers c in function z vrfy peci enable home jamezaar ecwork zephyr fork drivers peci peci handlers c error enable undeclared first use in this function z oops z syscall driver peci dev enable home jamezaar ecwork zephyr fork include syscall handler h note in definition of macro z oops if expr home jamezaar ecwork zephyr fork drivers peci peci handlers c in function z vrfy peci disable home jamezaar ecwork zephyr fork drivers peci peci handlers c error disable undeclared first use in this function z oops z syscall driver peci dev disable home jamezaar ecwork zephyr fork include syscall handler h note in definition of macro z oops if expr home jamezaar ecwork zephyr fork drivers peci peci handlers c in function z vrfy peci transfer home jamezaar ecwork zephyr fork drivers peci peci handlers c error transfer undeclared first use in this function z oops z syscall driver peci dev transfer home jamezaar ecwork zephyr fork include syscall handler h note in definition of macro z oops if expr environment please complete the following information os e g linux macos windows toolchain e g zephyr sdk commit sha or version used additional context add any other context that could be relevant to your issue such as pin setting target configuration
1
161,360
6,123,105,225
IssuesEvent
2017-06-23 02:56:41
Polymer/polyserve
https://api.github.com/repos/Polymer/polyserve
closed
Automatically run analyzer for docs.
Priority: Medium Status: Available Type: Enhancement
Since the 3.x version of `iron-doc-viewer` and `iron-component-page` don't automatically analyze in-browser like Hydrolysis used to do, viewing docs for your project now requires an extra step (running `polymer analyze > analysis.json`). We should make `polymer serve` smooth this over. A couple ideas: - We could intercept any `analysis.json` request and return an Analyzer result for that directory. - We could add a `polymer serve --docs` or similar that runs Analyzer and also generates the `<iron-component-page>` boilerplate HTML file.
1.0
Automatically run analyzer for docs. - Since the 3.x version of `iron-doc-viewer` and `iron-component-page` don't automatically analyze in-browser like Hydrolysis used to do, viewing docs for your project now requires an extra step (running `polymer analyze > analysis.json`). We should make `polymer serve` smooth this over. A couple ideas: - We could intercept any `analysis.json` request and return an Analyzer result for that directory. - We could add a `polymer serve --docs` or similar that runs Analyzer and also generates the `<iron-component-page>` boilerplate HTML file.
priority
automatically run analyzer for docs since the x version of iron doc viewer and iron component page don t automatically analyze in browser like hydrolysis used to do viewing docs for your project now requires an extra step running polymer analyze analysis json we should make polymer serve smooth this over a couple ideas we could intercept any analysis json request and return an analyzer result for that directory we could add a polymer serve docs or similar that runs analyzer and also generates the boilerplate html file
1
257,298
8,135,727,808
IssuesEvent
2018-08-20 05:04:18
ele-l10n-ja/ele-l10n-ja.github.io
https://api.github.com/repos/ele-l10n-ja/ele-l10n-ja.github.io
closed
Adjust the number of indentations
Priority: Medium
I should adjust the number of indentations from 4 to 2 across the file because I began to use EditorConfig.
1.0
Adjust the number of indentations - I should adjust the number of indentations from 4 to 2 across the file because I began to use EditorConfig.
priority
adjust the number of indentations i should adjust the number of indentations from to across the file because i began to use editorconfig
1
717,356
24,672,717,723
IssuesEvent
2022-10-18 14:47:38
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
closed
Popup not work with SEARCH_WITH_FILTER action
bug Priority: Medium Accepted Internal Good first issue
## Description If I configure my 'Identifier' plugin with 'showInMapPopup': true the marker is placed on map, but the popup isn't showing. ## How to reproduce - Configure 'Identifier' plugin with 'showInMapPopup': true - Try to use SEARCH:SEARCH_WITH_FILTER action *Expected Result* The popup show on the map for selected feature *Current Result* Marker appear, but no popup appear. - [x] Not browser related
1.0
Popup not work with SEARCH_WITH_FILTER action - ## Description If I configure my 'Identifier' plugin with 'showInMapPopup': true the marker is placed on map, but the popup isn't showing. ## How to reproduce - Configure 'Identifier' plugin with 'showInMapPopup': true - Try to use SEARCH:SEARCH_WITH_FILTER action *Expected Result* The popup show on the map for selected feature *Current Result* Marker appear, but no popup appear. - [x] Not browser related
priority
popup not work with search with filter action description if i configure my identifier plugin with showinmappopup true the marker is placed on map but the popup isn t showing how to reproduce configure identifier plugin with showinmappopup true try to use search search with filter action expected result the popup show on the map for selected feature current result marker appear but no popup appear not browser related
1
275,479
8,576,222,632
IssuesEvent
2018-11-12 19:42:09
quipucords/quipucords
https://api.github.com/repos/quipucords/quipucords
closed
Running extended scan produces errors for JWS
bug priority - medium
Running extended search with JWS produces these errors (most machines): ```INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.48 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.51 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.58 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.62 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.91 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.93 - ANSIBLE ROLE jboss_ws INFO SCAN JOB MANAGER: Currently running scan job 2. Scan queue length is 5. Queued jobs: [3, 4, 5, 6, 7] ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.10.182.41. jws_has_eula_txt_file exited with 2: ls: cannot access /home/jboss-fuse/jboss-fuse-6.3.0.redhat-187/system/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.2/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.108. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.111. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.125. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.126. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.130. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.116. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/iwl2030-firmware-18.168.6.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.131. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.10.182.240. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.113. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.151. jws_has_eula_txt_file exited with 2: ls: cannot access /var/lib/docker/overlay2/46dab011d7bea6a238ae06b1f63a9ad48fa35c38a6c4f5c3c58329a5f8557cab/merged/usr/share/licenses/glib2-2.54.2/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.139. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.10.182.241. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.158. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.156. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.174. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.178. jws_has_eula_txt_file exited with 2: ls: /opt/jbossamq/jboss-a-mq-6.2.0.redhat-133/data/cache/bundle153/version0.0/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.203. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.26. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.33. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.38. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.41. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.43. jws_has_eula_txt_file exited with 2: ls: cannot access '/usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt': No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.44. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.48. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.51. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.58. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.62. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.91. jws_has_eula_txt_file exited with 2: ls: /opt/jbossamq/jboss-a-mq-6.2.0.redhat-133/data/cache/bundle153/version0.0/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.93. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory```
1.0
Running extended scan produces errors for JWS - Running extended search with JWS produces these errors (most machines): ```INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.48 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.51 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.58 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.62 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.91 - ANSIBLE ROLE jboss_ws INFO Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 491s) - PROCESSING 10.12.211.93 - ANSIBLE ROLE jboss_ws INFO SCAN JOB MANAGER: Currently running scan job 2. Scan queue length is 5. Queued jobs: [3, 4, 5, 6, 7] ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.10.182.41. jws_has_eula_txt_file exited with 2: ls: cannot access /home/jboss-fuse/jboss-fuse-6.3.0.redhat-187/system/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.2/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.108. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.111. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.125. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.126. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.130. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.116. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/iwl2030-firmware-18.168.6.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.131. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.10.182.240. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.113. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.151. jws_has_eula_txt_file exited with 2: ls: cannot access /var/lib/docker/overlay2/46dab011d7bea6a238ae06b1f63a9ad48fa35c38a6c4f5c3c58329a5f8557cab/merged/usr/share/licenses/glib2-2.54.2/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.139. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.10.182.241. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.158. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.156. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.174. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.178. jws_has_eula_txt_file exited with 2: ls: /opt/jbossamq/jboss-a-mq-6.2.0.redhat-133/data/cache/bundle153/version0.0/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.203. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.26. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.33. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1187s) - FAILED REMOTE COMMAND 10.12.211.38. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.41. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.43. jws_has_eula_txt_file exited with 2: ls: cannot access '/usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt': No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.44. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.48. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.51. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.58. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/share/doc/redhat-support-tool-0.9.8/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.62. jws_has_eula_txt_file exited with 2: ls: cannot access /usr/lib/firmware/ath10k/QCA6174/hw2.1/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.91. jws_has_eula_txt_file exited with 2: ls: /opt/jbossamq/jboss-a-mq-6.2.0.redhat-133/data/cache/bundle153/version0.0/JBossEULA.txt: No such file or directory ERROR Job 2, Task 2 of 3 (inspect, network, NLargeSource, elapsed_time: 1188s) - FAILED REMOTE COMMAND 10.12.211.93. jws_has_eula_txt_file exited with 2: ls: /usr/share/doc/pcsc-lite-1.4.4/JBossEULA.txt: No such file or directory```
priority
running extended scan produces errors for jws running extended search with jws produces these errors most machines info job task of inspect network nlargesource elapsed time processing ansible role jboss ws info job task of inspect network nlargesource elapsed time processing ansible role jboss ws info job task of inspect network nlargesource elapsed time processing ansible role jboss ws info job task of inspect network nlargesource elapsed time processing ansible role jboss ws info job task of inspect network nlargesource elapsed time processing ansible role jboss ws info job task of inspect network nlargesource elapsed time processing ansible role jboss ws info scan job manager currently running scan job scan queue length is queued jobs error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access home jboss fuse jboss fuse redhat system org apache geronimo specs geronimo servlet spec jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls usr share doc pcsc lite jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls usr share doc pcsc lite jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls usr share doc pcsc lite jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr share doc redhat support tool jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr share doc firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access var lib docker merged usr share licenses jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls usr share doc pcsc lite jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls usr share doc pcsc lite jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls opt jbossamq jboss a mq redhat data cache jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr share doc redhat support tool jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr share doc redhat support tool jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls usr share doc pcsc lite jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr share doc redhat support tool jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr share doc redhat support tool jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr share doc redhat support tool jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr share doc redhat support tool jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls cannot access usr lib firmware jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls opt jbossamq jboss a mq redhat data cache jbosseula txt no such file or directory error job task of inspect network nlargesource elapsed time failed remote command jws has eula txt file exited with ls usr share doc pcsc lite jbosseula txt no such file or directory
1
678,486
23,199,390,041
IssuesEvent
2022-08-01 19:46:31
LBPUnion/ProjectLighthouse
https://api.github.com/repos/LBPUnion/ProjectLighthouse
closed
Implement recently played section
priority:medium
The game seems to store user-created and story levels that were played and request metadata about them. The response should contain a list of serialized slots that match the ids that were given. Example request: `GET /LITTLEBIGPLANETPS3_XML/slotList?s=7&s=124872&s=124873&s=3584&s=3970&s=3998&s=4205&s=3356&s=3363&s=3511&s=3777&s=4010&s=4101&s=4104&s=4156&s=3322&s=3433&s=3973&s=3434&s=3805&s=3 552&s=3873&s=3942&s=3409&s=124814&s=124808&s=124824&s=124813&s=3194&s=3077` Example structure of a response: ``` <slots count="3"> <slot type="user"> <id>5</id> </slot> <slot type="developer"> <id>124872</id> </slot> <slot type="user"> <id>43</id> </slot> </slots> ```
1.0
Implement recently played section - The game seems to store user-created and story levels that were played and request metadata about them. The response should contain a list of serialized slots that match the ids that were given. Example request: `GET /LITTLEBIGPLANETPS3_XML/slotList?s=7&s=124872&s=124873&s=3584&s=3970&s=3998&s=4205&s=3356&s=3363&s=3511&s=3777&s=4010&s=4101&s=4104&s=4156&s=3322&s=3433&s=3973&s=3434&s=3805&s=3 552&s=3873&s=3942&s=3409&s=124814&s=124808&s=124824&s=124813&s=3194&s=3077` Example structure of a response: ``` <slots count="3"> <slot type="user"> <id>5</id> </slot> <slot type="developer"> <id>124872</id> </slot> <slot type="user"> <id>43</id> </slot> </slots> ```
priority
implement recently played section the game seems to store user created and story levels that were played and request metadata about them the response should contain a list of serialized slots that match the ids that were given example request get xml slotlist s s s s s s s s s s s s s s s s s s s s s s s s s s s s s s example structure of a response
1
482,402
13,906,083,820
IssuesEvent
2020-10-20 10:45:43
enso-org/enso
https://api.github.com/repos/enso-org/enso
opened
Remove Lexicographic Ordering on Strings
Category: Stdlib Change: Breaking Difficulty: Core Contributor Priority: Medium Type: Enhancement
### Summary Currently the comparison operators on `Text` (`>` and `<`) uses lexicographic ordering. As this is an ordinal ordering based on the character code of the character, it orders all upper-case letters before all lower-case letters. This is very counter-intuitive, and should be improved. ### Value We will have an intuitive notion of ordering on `Text`. ### Specification - [ ] Implement the comparison operators for text using the ICU [collation](http://userguide.icu-project.org/collation/architecture) system for ordering. - [ ] Change the JSON support to use the `HashMap` type instead of the `Map` type. Blocked by #1227. - [ ] Benchmark these comparison operators. ### Acceptance Criteria & Test Cases - We have a sensible notion of comparison of `Text`. - The JSON support is still efficient as it now uses the `HashMap` type.
1.0
Remove Lexicographic Ordering on Strings - ### Summary Currently the comparison operators on `Text` (`>` and `<`) uses lexicographic ordering. As this is an ordinal ordering based on the character code of the character, it orders all upper-case letters before all lower-case letters. This is very counter-intuitive, and should be improved. ### Value We will have an intuitive notion of ordering on `Text`. ### Specification - [ ] Implement the comparison operators for text using the ICU [collation](http://userguide.icu-project.org/collation/architecture) system for ordering. - [ ] Change the JSON support to use the `HashMap` type instead of the `Map` type. Blocked by #1227. - [ ] Benchmark these comparison operators. ### Acceptance Criteria & Test Cases - We have a sensible notion of comparison of `Text`. - The JSON support is still efficient as it now uses the `HashMap` type.
priority
remove lexicographic ordering on strings summary currently the comparison operators on text and uses lexicographic ordering as this is an ordinal ordering based on the character code of the character it orders all upper case letters before all lower case letters this is very counter intuitive and should be improved value we will have an intuitive notion of ordering on text specification implement the comparison operators for text using the icu system for ordering change the json support to use the hashmap type instead of the map type blocked by benchmark these comparison operators acceptance criteria test cases we have a sensible notion of comparison of text the json support is still efficient as it now uses the hashmap type
1
252,301
8,034,357,035
IssuesEvent
2018-07-29 17:41:56
Extum/flarum-ext-material
https://api.github.com/repos/Extum/flarum-ext-material
closed
Materialization of loading indicators
enhancement help wanted materialization priority: medium
The current loader uses an icon from Font Awesome and it makes it a bit harder to replace it with the loader from mdl. We should do some research and make this possible anyways. I'm leaving the spinner (includes horizontal and round but we need to use the round and the single color one) style from mdl below: ``` .mdl-spinner { display: inline-block; position: relative; width: 28px; height: 28px; } .mdl-spinner:not(.is-upgraded).is-active:after { content: "Loading..."; } .mdl-spinner.is-upgraded.is-active { -webkit-animation: mdl-spinner__container-rotate 1568.23529412ms linear infinite; animation: mdl-spinner__container-rotate 1568.23529412ms linear infinite; } @-webkit-keyframes mdl-spinner__container-rotate { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes mdl-spinner__container-rotate { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } .mdl-spinner__layer { position: absolute; width: 100%; height: 100%; opacity: 0; } .mdl-spinner__layer-1 { border-color: rgb(66,165,245); } .mdl-spinner--single-color .mdl-spinner__layer-1 { border-color: rgb(63,81,181); } .mdl-spinner.is-active .mdl-spinner__layer-1 { -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .mdl-spinner__layer-2 { border-color: rgb(244,67,54); } .mdl-spinner--single-color .mdl-spinner__layer-2 { border-color: rgb(63,81,181); } .mdl-spinner.is-active .mdl-spinner__layer-2 { -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .mdl-spinner__layer-3 { border-color: rgb(253,216,53); } .mdl-spinner--single-color .mdl-spinner__layer-3 { border-color: rgb(63,81,181); } .mdl-spinner.is-active .mdl-spinner__layer-3 { -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .mdl-spinner__layer-4 { border-color: rgb(76,175,80); } .mdl-spinner--single-color .mdl-spinner__layer-4 { border-color: rgb(63,81,181); } .mdl-spinner.is-active .mdl-spinner__layer-4 { -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } @-webkit-keyframes mdl-spinner__fill-unfill-rotate { 12.5% { -webkit-transform: rotate(135deg); transform: rotate(135deg); } 25% { -webkit-transform: rotate(270deg); transform: rotate(270deg); } 37.5% { -webkit-transform: rotate(405deg); transform: rotate(405deg); } 50% { -webkit-transform: rotate(540deg); transform: rotate(540deg); } 62.5% { -webkit-transform: rotate(675deg); transform: rotate(675deg); } 75% { -webkit-transform: rotate(810deg); transform: rotate(810deg); } 87.5% { -webkit-transform: rotate(945deg); transform: rotate(945deg); } to { -webkit-transform: rotate(1080deg); transform: rotate(1080deg); } } @keyframes mdl-spinner__fill-unfill-rotate { 12.5% { -webkit-transform: rotate(135deg); transform: rotate(135deg); } 25% { -webkit-transform: rotate(270deg); transform: rotate(270deg); } 37.5% { -webkit-transform: rotate(405deg); transform: rotate(405deg); } 50% { -webkit-transform: rotate(540deg); transform: rotate(540deg); } 62.5% { -webkit-transform: rotate(675deg); transform: rotate(675deg); } 75% { -webkit-transform: rotate(810deg); transform: rotate(810deg); } 87.5% { -webkit-transform: rotate(945deg); transform: rotate(945deg); } to { -webkit-transform: rotate(1080deg); transform: rotate(1080deg); } } /** * HACK: Even though the intention is to have the current .mdl-spinner__layer-N * at `opacity: 1`, we set it to `opacity: 0.99` instead since this forces Chrome * to do proper subpixel rendering for the elements being animated. This is * especially visible in Chrome 39 on Ubuntu 14.04. See: * * - https://github.com/Polymer/paper-spinner/issues/9 * - https://code.google.com/p/chromium/issues/detail?id=436255 */ @-webkit-keyframes mdl-spinner__layer-1-fade-in-out { from { opacity: 0.99; } 25% { opacity: 0.99; } 26% { opacity: 0; } 89% { opacity: 0; } 90% { opacity: 0.99; } 100% { opacity: 0.99; } } @keyframes mdl-spinner__layer-1-fade-in-out { from { opacity: 0.99; } 25% { opacity: 0.99; } 26% { opacity: 0; } 89% { opacity: 0; } 90% { opacity: 0.99; } 100% { opacity: 0.99; } } @-webkit-keyframes mdl-spinner__layer-2-fade-in-out { from { opacity: 0; } 15% { opacity: 0; } 25% { opacity: 0.99; } 50% { opacity: 0.99; } 51% { opacity: 0; } } @keyframes mdl-spinner__layer-2-fade-in-out { from { opacity: 0; } 15% { opacity: 0; } 25% { opacity: 0.99; } 50% { opacity: 0.99; } 51% { opacity: 0; } } @-webkit-keyframes mdl-spinner__layer-3-fade-in-out { from { opacity: 0; } 40% { opacity: 0; } 50% { opacity: 0.99; } 75% { opacity: 0.99; } 76% { opacity: 0; } } @keyframes mdl-spinner__layer-3-fade-in-out { from { opacity: 0; } 40% { opacity: 0; } 50% { opacity: 0.99; } 75% { opacity: 0.99; } 76% { opacity: 0; } } @-webkit-keyframes mdl-spinner__layer-4-fade-in-out { from { opacity: 0; } 65% { opacity: 0; } 75% { opacity: 0.99; } 90% { opacity: 0.99; } 100% { opacity: 0; } } @keyframes mdl-spinner__layer-4-fade-in-out { from { opacity: 0; } 65% { opacity: 0; } 75% { opacity: 0.99; } 90% { opacity: 0.99; } 100% { opacity: 0; } } /** * Patch the gap that appear between the two adjacent * div.mdl-spinner__circle-clipper while the spinner is rotating * (appears on Chrome 38, Safari 7.1, and IE 11). * * Update: the gap no longer appears on Chrome when .mdl-spinner__layer-N's * opacity is 0.99, but still does on Safari and IE. */ .mdl-spinner__gap-patch { position: absolute; box-sizing: border-box; top: 0; left: 45%; width: 10%; height: 100%; overflow: hidden; border-color: inherit; } .mdl-spinner__gap-patch .mdl-spinner__circle { width: 1000%; left: -450%; } .mdl-spinner__circle-clipper { display: inline-block; position: relative; width: 50%; height: 100%; overflow: hidden; border-color: inherit; } .mdl-spinner__circle-clipper.mdl-spinner__left { float: left; } .mdl-spinner__circle-clipper.mdl-spinner__right { float: right; } .mdl-spinner__circle-clipper .mdl-spinner__circle { width: 200%; } .mdl-spinner__circle { box-sizing: border-box; height: 100%; border-width: 3px; border-style: solid; border-color: inherit; border-bottom-color: transparent !important; border-radius: 50%; -webkit-animation: none; animation: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .mdl-spinner__left .mdl-spinner__circle { border-right-color: transparent !important; -webkit-transform: rotate(129deg); transform: rotate(129deg); } .mdl-spinner.is-active .mdl-spinner__left .mdl-spinner__circle { -webkit-animation: mdl-spinner__left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .mdl-spinner__right .mdl-spinner__circle { left: -100%; border-left-color: transparent !important; -webkit-transform: rotate(-129deg); transform: rotate(-129deg); } .mdl-spinner.is-active .mdl-spinner__right .mdl-spinner__circle { -webkit-animation: mdl-spinner__right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } @-webkit-keyframes mdl-spinner__left-spin { from { -webkit-transform: rotate(130deg); transform: rotate(130deg); } 50% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(130deg); transform: rotate(130deg); } } @keyframes mdl-spinner__left-spin { from { -webkit-transform: rotate(130deg); transform: rotate(130deg); } 50% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(130deg); transform: rotate(130deg); } } @-webkit-keyframes mdl-spinner__right-spin { from { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); } 50% { -webkit-transform: rotate(5deg); transform: rotate(5deg); } to { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); } } @keyframes mdl-spinner__right-spin { from { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); } 50% { -webkit-transform: rotate(5deg); transform: rotate(5deg); } to { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); } } ```
1.0
Materialization of loading indicators - The current loader uses an icon from Font Awesome and it makes it a bit harder to replace it with the loader from mdl. We should do some research and make this possible anyways. I'm leaving the spinner (includes horizontal and round but we need to use the round and the single color one) style from mdl below: ``` .mdl-spinner { display: inline-block; position: relative; width: 28px; height: 28px; } .mdl-spinner:not(.is-upgraded).is-active:after { content: "Loading..."; } .mdl-spinner.is-upgraded.is-active { -webkit-animation: mdl-spinner__container-rotate 1568.23529412ms linear infinite; animation: mdl-spinner__container-rotate 1568.23529412ms linear infinite; } @-webkit-keyframes mdl-spinner__container-rotate { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes mdl-spinner__container-rotate { to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } .mdl-spinner__layer { position: absolute; width: 100%; height: 100%; opacity: 0; } .mdl-spinner__layer-1 { border-color: rgb(66,165,245); } .mdl-spinner--single-color .mdl-spinner__layer-1 { border-color: rgb(63,81,181); } .mdl-spinner.is-active .mdl-spinner__layer-1 { -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .mdl-spinner__layer-2 { border-color: rgb(244,67,54); } .mdl-spinner--single-color .mdl-spinner__layer-2 { border-color: rgb(63,81,181); } .mdl-spinner.is-active .mdl-spinner__layer-2 { -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .mdl-spinner__layer-3 { border-color: rgb(253,216,53); } .mdl-spinner--single-color .mdl-spinner__layer-3 { border-color: rgb(63,81,181); } .mdl-spinner.is-active .mdl-spinner__layer-3 { -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .mdl-spinner__layer-4 { border-color: rgb(76,175,80); } .mdl-spinner--single-color .mdl-spinner__layer-4 { border-color: rgb(63,81,181); } .mdl-spinner.is-active .mdl-spinner__layer-4 { -webkit-animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, mdl-spinner__layer-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } @-webkit-keyframes mdl-spinner__fill-unfill-rotate { 12.5% { -webkit-transform: rotate(135deg); transform: rotate(135deg); } 25% { -webkit-transform: rotate(270deg); transform: rotate(270deg); } 37.5% { -webkit-transform: rotate(405deg); transform: rotate(405deg); } 50% { -webkit-transform: rotate(540deg); transform: rotate(540deg); } 62.5% { -webkit-transform: rotate(675deg); transform: rotate(675deg); } 75% { -webkit-transform: rotate(810deg); transform: rotate(810deg); } 87.5% { -webkit-transform: rotate(945deg); transform: rotate(945deg); } to { -webkit-transform: rotate(1080deg); transform: rotate(1080deg); } } @keyframes mdl-spinner__fill-unfill-rotate { 12.5% { -webkit-transform: rotate(135deg); transform: rotate(135deg); } 25% { -webkit-transform: rotate(270deg); transform: rotate(270deg); } 37.5% { -webkit-transform: rotate(405deg); transform: rotate(405deg); } 50% { -webkit-transform: rotate(540deg); transform: rotate(540deg); } 62.5% { -webkit-transform: rotate(675deg); transform: rotate(675deg); } 75% { -webkit-transform: rotate(810deg); transform: rotate(810deg); } 87.5% { -webkit-transform: rotate(945deg); transform: rotate(945deg); } to { -webkit-transform: rotate(1080deg); transform: rotate(1080deg); } } /** * HACK: Even though the intention is to have the current .mdl-spinner__layer-N * at `opacity: 1`, we set it to `opacity: 0.99` instead since this forces Chrome * to do proper subpixel rendering for the elements being animated. This is * especially visible in Chrome 39 on Ubuntu 14.04. See: * * - https://github.com/Polymer/paper-spinner/issues/9 * - https://code.google.com/p/chromium/issues/detail?id=436255 */ @-webkit-keyframes mdl-spinner__layer-1-fade-in-out { from { opacity: 0.99; } 25% { opacity: 0.99; } 26% { opacity: 0; } 89% { opacity: 0; } 90% { opacity: 0.99; } 100% { opacity: 0.99; } } @keyframes mdl-spinner__layer-1-fade-in-out { from { opacity: 0.99; } 25% { opacity: 0.99; } 26% { opacity: 0; } 89% { opacity: 0; } 90% { opacity: 0.99; } 100% { opacity: 0.99; } } @-webkit-keyframes mdl-spinner__layer-2-fade-in-out { from { opacity: 0; } 15% { opacity: 0; } 25% { opacity: 0.99; } 50% { opacity: 0.99; } 51% { opacity: 0; } } @keyframes mdl-spinner__layer-2-fade-in-out { from { opacity: 0; } 15% { opacity: 0; } 25% { opacity: 0.99; } 50% { opacity: 0.99; } 51% { opacity: 0; } } @-webkit-keyframes mdl-spinner__layer-3-fade-in-out { from { opacity: 0; } 40% { opacity: 0; } 50% { opacity: 0.99; } 75% { opacity: 0.99; } 76% { opacity: 0; } } @keyframes mdl-spinner__layer-3-fade-in-out { from { opacity: 0; } 40% { opacity: 0; } 50% { opacity: 0.99; } 75% { opacity: 0.99; } 76% { opacity: 0; } } @-webkit-keyframes mdl-spinner__layer-4-fade-in-out { from { opacity: 0; } 65% { opacity: 0; } 75% { opacity: 0.99; } 90% { opacity: 0.99; } 100% { opacity: 0; } } @keyframes mdl-spinner__layer-4-fade-in-out { from { opacity: 0; } 65% { opacity: 0; } 75% { opacity: 0.99; } 90% { opacity: 0.99; } 100% { opacity: 0; } } /** * Patch the gap that appear between the two adjacent * div.mdl-spinner__circle-clipper while the spinner is rotating * (appears on Chrome 38, Safari 7.1, and IE 11). * * Update: the gap no longer appears on Chrome when .mdl-spinner__layer-N's * opacity is 0.99, but still does on Safari and IE. */ .mdl-spinner__gap-patch { position: absolute; box-sizing: border-box; top: 0; left: 45%; width: 10%; height: 100%; overflow: hidden; border-color: inherit; } .mdl-spinner__gap-patch .mdl-spinner__circle { width: 1000%; left: -450%; } .mdl-spinner__circle-clipper { display: inline-block; position: relative; width: 50%; height: 100%; overflow: hidden; border-color: inherit; } .mdl-spinner__circle-clipper.mdl-spinner__left { float: left; } .mdl-spinner__circle-clipper.mdl-spinner__right { float: right; } .mdl-spinner__circle-clipper .mdl-spinner__circle { width: 200%; } .mdl-spinner__circle { box-sizing: border-box; height: 100%; border-width: 3px; border-style: solid; border-color: inherit; border-bottom-color: transparent !important; border-radius: 50%; -webkit-animation: none; animation: none; position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .mdl-spinner__left .mdl-spinner__circle { border-right-color: transparent !important; -webkit-transform: rotate(129deg); transform: rotate(129deg); } .mdl-spinner.is-active .mdl-spinner__left .mdl-spinner__circle { -webkit-animation: mdl-spinner__left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .mdl-spinner__right .mdl-spinner__circle { left: -100%; border-left-color: transparent !important; -webkit-transform: rotate(-129deg); transform: rotate(-129deg); } .mdl-spinner.is-active .mdl-spinner__right .mdl-spinner__circle { -webkit-animation: mdl-spinner__right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: mdl-spinner__right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } @-webkit-keyframes mdl-spinner__left-spin { from { -webkit-transform: rotate(130deg); transform: rotate(130deg); } 50% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(130deg); transform: rotate(130deg); } } @keyframes mdl-spinner__left-spin { from { -webkit-transform: rotate(130deg); transform: rotate(130deg); } 50% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); } to { -webkit-transform: rotate(130deg); transform: rotate(130deg); } } @-webkit-keyframes mdl-spinner__right-spin { from { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); } 50% { -webkit-transform: rotate(5deg); transform: rotate(5deg); } to { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); } } @keyframes mdl-spinner__right-spin { from { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); } 50% { -webkit-transform: rotate(5deg); transform: rotate(5deg); } to { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); } } ```
priority
materialization of loading indicators the current loader uses an icon from font awesome and it makes it a bit harder to replace it with the loader from mdl we should do some research and make this possible anyways i m leaving the spinner includes horizontal and round but we need to use the round and the single color one style from mdl below mdl spinner display inline block position relative width height mdl spinner not is upgraded is active after content loading mdl spinner is upgraded is active webkit animation mdl spinner container rotate linear infinite animation mdl spinner container rotate linear infinite webkit keyframes mdl spinner container rotate to webkit transform rotate transform rotate keyframes mdl spinner container rotate to webkit transform rotate transform rotate mdl spinner layer position absolute width height opacity mdl spinner layer border color rgb mdl spinner single color mdl spinner layer border color rgb mdl spinner is active mdl spinner layer webkit animation mdl spinner fill unfill rotate cubic bezier infinite both mdl spinner layer fade in out cubic bezier infinite both animation mdl spinner fill unfill rotate cubic bezier infinite both mdl spinner layer fade in out cubic bezier infinite both mdl spinner layer border color rgb mdl spinner single color mdl spinner layer border color rgb mdl spinner is active mdl spinner layer webkit animation mdl spinner fill unfill rotate cubic bezier infinite both mdl spinner layer fade in out cubic bezier infinite both animation mdl spinner fill unfill rotate cubic bezier infinite both mdl spinner layer fade in out cubic bezier infinite both mdl spinner layer border color rgb mdl spinner single color mdl spinner layer border color rgb mdl spinner is active mdl spinner layer webkit animation mdl spinner fill unfill rotate cubic bezier infinite both mdl spinner layer fade in out cubic bezier infinite both animation mdl spinner fill unfill rotate cubic bezier infinite both mdl spinner layer fade in out cubic bezier infinite both mdl spinner layer border color rgb mdl spinner single color mdl spinner layer border color rgb mdl spinner is active mdl spinner layer webkit animation mdl spinner fill unfill rotate cubic bezier infinite both mdl spinner layer fade in out cubic bezier infinite both animation mdl spinner fill unfill rotate cubic bezier infinite both mdl spinner layer fade in out cubic bezier infinite both webkit keyframes mdl spinner fill unfill rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate to webkit transform rotate transform rotate keyframes mdl spinner fill unfill rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate webkit transform rotate transform rotate to webkit transform rotate transform rotate hack even though the intention is to have the current mdl spinner layer n at opacity we set it to opacity instead since this forces chrome to do proper subpixel rendering for the elements being animated this is especially visible in chrome on ubuntu see webkit keyframes mdl spinner layer fade in out from opacity opacity opacity opacity opacity opacity keyframes mdl spinner layer fade in out from opacity opacity opacity opacity opacity opacity webkit keyframes mdl spinner layer fade in out from opacity opacity opacity opacity opacity keyframes mdl spinner layer fade in out from opacity opacity opacity opacity opacity webkit keyframes mdl spinner layer fade in out from opacity opacity opacity opacity opacity keyframes mdl spinner layer fade in out from opacity opacity opacity opacity opacity webkit keyframes mdl spinner layer fade in out from opacity opacity opacity opacity opacity keyframes mdl spinner layer fade in out from opacity opacity opacity opacity opacity patch the gap that appear between the two adjacent div mdl spinner circle clipper while the spinner is rotating appears on chrome safari and ie update the gap no longer appears on chrome when mdl spinner layer n s opacity is but still does on safari and ie mdl spinner gap patch position absolute box sizing border box top left width height overflow hidden border color inherit mdl spinner gap patch mdl spinner circle width left mdl spinner circle clipper display inline block position relative width height overflow hidden border color inherit mdl spinner circle clipper mdl spinner left float left mdl spinner circle clipper mdl spinner right float right mdl spinner circle clipper mdl spinner circle width mdl spinner circle box sizing border box height border width border style solid border color inherit border bottom color transparent important border radius webkit animation none animation none position absolute top right bottom left mdl spinner left mdl spinner circle border right color transparent important webkit transform rotate transform rotate mdl spinner is active mdl spinner left mdl spinner circle webkit animation mdl spinner left spin cubic bezier infinite both animation mdl spinner left spin cubic bezier infinite both mdl spinner right mdl spinner circle left border left color transparent important webkit transform rotate transform rotate mdl spinner is active mdl spinner right mdl spinner circle webkit animation mdl spinner right spin cubic bezier infinite both animation mdl spinner right spin cubic bezier infinite both webkit keyframes mdl spinner left spin from webkit transform rotate transform rotate webkit transform rotate transform rotate to webkit transform rotate transform rotate keyframes mdl spinner left spin from webkit transform rotate transform rotate webkit transform rotate transform rotate to webkit transform rotate transform rotate webkit keyframes mdl spinner right spin from webkit transform rotate transform rotate webkit transform rotate transform rotate to webkit transform rotate transform rotate keyframes mdl spinner right spin from webkit transform rotate transform rotate webkit transform rotate transform rotate to webkit transform rotate transform rotate
1
155,783
5,960,927,694
IssuesEvent
2017-05-29 15:28:46
mkdo/kapow-grunt
https://api.github.com/repos/mkdo/kapow-grunt
closed
Globbing for JS partials
Priority: Medium Status: Completed Type: Enhancement
It would save time if we could add JS partials into the `assets/js/parts` folder that would be automatically picked up and included by the Grunt tasks. This way, dropping in a JS partial for something such as Google maps would be quick and painless, and wouldn't require altering the `gruntfile` and rebuilding the assets. As a naming convention, perhaps anything with an underscore prefix would be automatically included in the footer, whereas any file that does not have an underscore has to be manually added to the concatenation lists in the `gruntfile` for the header or footer. @mwtsn penny for your thoughts on this.
1.0
Globbing for JS partials - It would save time if we could add JS partials into the `assets/js/parts` folder that would be automatically picked up and included by the Grunt tasks. This way, dropping in a JS partial for something such as Google maps would be quick and painless, and wouldn't require altering the `gruntfile` and rebuilding the assets. As a naming convention, perhaps anything with an underscore prefix would be automatically included in the footer, whereas any file that does not have an underscore has to be manually added to the concatenation lists in the `gruntfile` for the header or footer. @mwtsn penny for your thoughts on this.
priority
globbing for js partials it would save time if we could add js partials into the assets js parts folder that would be automatically picked up and included by the grunt tasks this way dropping in a js partial for something such as google maps would be quick and painless and wouldn t require altering the gruntfile and rebuilding the assets as a naming convention perhaps anything with an underscore prefix would be automatically included in the footer whereas any file that does not have an underscore has to be manually added to the concatenation lists in the gruntfile for the header or footer mwtsn penny for your thoughts on this
1
518,754
15,034,120,746
IssuesEvent
2021-02-02 12:27:20
graknlabs/grakn
https://api.github.com/repos/graknlabs/grakn
closed
Cancelling a query in the console causes server to hang
priority: medium type: bug
## Description Trying to cancel a query before it had completed left the console in an unusable state, presumably while it was waiting for the server to finish the query. In fact, I tried to cancel the query before _any_ results were streamed back. If it were left to run this query should return many results. ## Environment 1. OS (where Grakn server runs): AWS 2. Grakn version (and platform): Grakn 2.0 Alpha 3. Grakn client: console 4. Other environment details: Private client data ## Reproducible Steps Steps to create the smallest reproducible scenario: Run this query in the console: ``` <db>::data::read> match > $dis isa disease, has disease-id "C0020517"; > $dda(therapeutic: $drug, $dis) isa drug-disease-association; > $drug(drug-substance: $c) isa is-a-drug; $c isa compound; > $cta($c, $pro) isa drug-protein-interaction; ``` Try to cancel the query with ctrl+c ## Expected Output Query should stop running and console should return. ## Actual Output Console didn't return, which put it in an unresponsive state. Killed the server with `kill -9 <pid>` (`kill wasn't sufficient, indicating that the server could have been hanging). Having killed the server the console returned. ## Additional Information Similar to https://github.com/graknlabs/console/issues/93
1.0
Cancelling a query in the console causes server to hang - ## Description Trying to cancel a query before it had completed left the console in an unusable state, presumably while it was waiting for the server to finish the query. In fact, I tried to cancel the query before _any_ results were streamed back. If it were left to run this query should return many results. ## Environment 1. OS (where Grakn server runs): AWS 2. Grakn version (and platform): Grakn 2.0 Alpha 3. Grakn client: console 4. Other environment details: Private client data ## Reproducible Steps Steps to create the smallest reproducible scenario: Run this query in the console: ``` <db>::data::read> match > $dis isa disease, has disease-id "C0020517"; > $dda(therapeutic: $drug, $dis) isa drug-disease-association; > $drug(drug-substance: $c) isa is-a-drug; $c isa compound; > $cta($c, $pro) isa drug-protein-interaction; ``` Try to cancel the query with ctrl+c ## Expected Output Query should stop running and console should return. ## Actual Output Console didn't return, which put it in an unresponsive state. Killed the server with `kill -9 <pid>` (`kill wasn't sufficient, indicating that the server could have been hanging). Having killed the server the console returned. ## Additional Information Similar to https://github.com/graknlabs/console/issues/93
priority
cancelling a query in the console causes server to hang description trying to cancel a query before it had completed left the console in an unusable state presumably while it was waiting for the server to finish the query in fact i tried to cancel the query before any results were streamed back if it were left to run this query should return many results environment os where grakn server runs aws grakn version and platform grakn alpha grakn client console other environment details private client data reproducible steps steps to create the smallest reproducible scenario run this query in the console data read match dis isa disease has disease id dda therapeutic drug dis isa drug disease association drug drug substance c isa is a drug c isa compound cta c pro isa drug protein interaction try to cancel the query with ctrl c expected output query should stop running and console should return actual output console didn t return which put it in an unresponsive state killed the server with kill kill wasn t sufficient indicating that the server could have been hanging having killed the server the console returned additional information similar to
1
332,202
10,089,498,625
IssuesEvent
2019-07-26 09:04:48
latepaul/puttysessmgr
https://api.github.com/repos/latepaul/puttysessmgr
closed
Bell sound when using enter on lists
MediumPriority bug
When using keyboard enter instead of click/double-click the bell sounds.
1.0
Bell sound when using enter on lists - When using keyboard enter instead of click/double-click the bell sounds.
priority
bell sound when using enter on lists when using keyboard enter instead of click double click the bell sounds
1
721,406
24,824,922,362
IssuesEvent
2022-10-25 19:44:02
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[DocDB] Flaky 2.12 test: LoadBalancerMultiTableTest.MultipleLeaderTabletMovesPerTable
kind/bug area/docdb priority/medium status/awaiting-triage
Jira Link: [DB-3997](https://yugabyte.atlassian.net/browse/DB-3997) ### Description https://detective-gcp.dev.yugabyte.com/stability/test?branch=2.12&class=LoadBalancerMultiTableTest&name=MultipleLeaderTabletMovesPerTable
1.0
[DocDB] Flaky 2.12 test: LoadBalancerMultiTableTest.MultipleLeaderTabletMovesPerTable - Jira Link: [DB-3997](https://yugabyte.atlassian.net/browse/DB-3997) ### Description https://detective-gcp.dev.yugabyte.com/stability/test?branch=2.12&class=LoadBalancerMultiTableTest&name=MultipleLeaderTabletMovesPerTable
priority
flaky test loadbalancermultitabletest multipleleadertabletmovespertable jira link description
1
745,838
26,003,341,711
IssuesEvent
2022-12-20 17:01:39
mi6/ic-ui-kit
https://api.github.com/repos/mi6/ic-ui-kit
opened
[ic-side-navigation]: Side navigation height doesn't feel screen when content is below fold
type: bug πŸ› ICDS Core Team priority: medium development component: ic-side-navigation
## Summary of the bug The height of the default side navigation stops below the fold if content continues below the fold. This creates white space which should be filled with the side navigation. ## πŸͺœ How to reproduce Tell us the steps to reproduce the problem: 1. Create a page with the side navigation and main content 2. Add content which falls below the fold ## 🧐 Expected behaviour The side navigation should appear fixed on the left side with main content scrollable. ## πŸ“Έ Screenshots or code ```jsx <div style="display:flex;"> <ic-side-navigation app-title="Application Name" version="v0.0.0" status="BETA" > <svg slot="app-icon" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000" > <path d="M0 0h24v24H0V0z" fill="none" /> <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z" /> </svg> <ic-navigation-item slot="primary-navigation" href="/" label="Home"> <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-navigation-item slot="primary-navigation" href="/" label="Search" selected="true" > <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-divider slot="primary-navigation"></ic-divider> <ic-navigation-item slot="primary-navigation" href="/" label="Trends"> <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-navigation-group slot="primary-navigation" label="Second navigation group" expandable="true" > <ic-navigation-item label="Different navigation" href="/"> <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M23 8C23 9.1 22.1 10 21 10C20.82 10 20.65 9.98 20.49 9.93L16.93 13.48C16.98 13.64 17 13.82 17 14C17 15.1 16.1 16 15 16C13.9 16 13 15.1 13 14C13 13.82 13.02 13.64 13.07 13.48L10.52 10.93C10.36 10.98 10.18 11 10 11C9.82 11 9.64 10.98 9.48 10.93L4.93 15.49C4.98 15.65 5 15.82 5 16C5 17.1 4.1 18 3 18C1.9 18 1 17.1 1 16C1 14.9 1.9 14 3 14C3.18 14 3.35 14.02 3.51 14.07L8.07 9.52C8.02 9.36 8 9.18 8 9C8 7.9 8.9 7 10 7C11.1 7 12 7.9 12 9C12 9.18 11.98 9.36 11.93 9.52L14.48 12.07C14.64 12.02 14.82 12 15 12C15.18 12 15.36 12.02 15.52 12.07L19.07 8.51C19.02 8.35 19 8.18 19 8C19 6.9 19.9 6 21 6C22.1 6 23 6.9 23 8Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-navigation-item label="Navigation" href="/"> <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M23 8C23 9.1 22.1 10 21 10C20.82 10 20.65 9.98 20.49 9.93L16.93 13.48C16.98 13.64 17 13.82 17 14C17 15.1 16.1 16 15 16C13.9 16 13 15.1 13 14C13 13.82 13.02 13.64 13.07 13.48L10.52 10.93C10.36 10.98 10.18 11 10 11C9.82 11 9.64 10.98 9.48 10.93L4.93 15.49C4.98 15.65 5 15.82 5 16C5 17.1 4.1 18 3 18C1.9 18 1 17.1 1 16C1 14.9 1.9 14 3 14C3.18 14 3.35 14.02 3.51 14.07L8.07 9.52C8.02 9.36 8 9.18 8 9C8 7.9 8.9 7 10 7C11.1 7 12 7.9 12 9C12 9.18 11.98 9.36 11.93 9.52L14.48 12.07C14.64 12.02 14.82 12 15 12C15.18 12 15.36 12.02 15.52 12.07L19.07 8.51C19.02 8.35 19 8.18 19 8C19 6.9 19.9 6 21 6C22.1 6 23 6.9 23 8Z" fill="currentColor" /> </svg> </ic-navigation-item> </ic-navigation-group> <ic-navigation-item slot="primary-navigation" href="/" label="This is a very very very long label for the navigation item" > <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-navigation-item slot="secondary-navigation" href="/" label="Settings" > <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> </ic-side-navigation> <div class="content-wrapper" style="display:flex; flex-direction: column; flex-grow: 1;" > <main> <ic-section-container> <ic-typography>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vestibulum venenatis facilisis. Nam tortor felis, auctor vel ante quis, tempor interdum libero. In dictum sodales velit, eu egestas arcu dignissim ac. Aliquam facilisis eros dolor, id laoreet orci sagittis ut. Sed tempus, lacus in pretium molestie, lectus magna interdum risus, vel fringilla libero ex eu dui. Suspendisse ullamcorper vehicula lacinia. Phasellus congue velit nisl, vitae congue ligula rutrum id.</ic-typography> <ic-typography>Etiam in suscipit metus. Duis semper, sapien a molestie semper, ex nibh porttitor tellus, vel molestie justo odio vel purus. Curabitur porttitor, tortor sed semper sollicitudin, odio odio congue tortor, eget pulvinar tellus nisl ac lacus. In ultricies commodo lorem, a laoreet diam. Ut a mauris at tellus tincidunt ullamcorper sit amet in metus. Aenean facilisis placerat dictum. Phasellus mattis ante sollicitudin luctus iaculis. Nam porttitor lobortis rhoncus. Nam nec malesuada purus, at pulvinar mauris. Nam non lorem ante.</ic-typography> <ic-typography>Donec aliquam eget mauris condimentum cursus. Nullam tempus a urna in commodo. Proin mauris augue, viverra id finibus id, vulputate in ante. Aliquam volutpat hendrerit tellus vitae tristique. Donec pellentesque enim arcu, at feugiat mauris venenatis vitae. Sed iaculis ut elit et ultrices. Donec diam eros, iaculis ac est nec, tempus feugiat nisl. Suspendisse eget interdum lorem. Phasellus pretium urna id elit pharetra hendrerit.</ic-typography> <ic-typography>Mauris blandit, mi ut posuere dapibus, est ante porttitor sem, quis pretium velit ante nec felis. Vivamus efficitur scelerisque dapibus. Nunc lacinia finibus laoreet. Praesent commodo augue orci, congue rutrum velit malesuada gravida. Nunc magna mauris, ornare nec nisl vel, faucibus euismod orci. Proin in augue vitae nunc gravida consectetur. Pellentesque id malesuada ex, sit amet imperdiet est. Duis erat nibh, lacinia vitae faucibus non, aliquam in dolor. Nam interdum felis vitae feugiat posuere. Cras volutpat molestie ipsum, sed auctor quam volutpat vitae. Vivamus lobortis scelerisque libero vel scelerisque.</ic-typography> <ic-typography>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent eget orci condimentum, tempus tortor posuere, lacinia ex. Curabitur bibendum suscipit turpis vitae mollis. Ut laoreet orci a risus facilisis porta. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur a porttitor neque, ac dignissim velit. Morbi quis malesuada massa, vitae sodales tellus. Aenean laoreet mattis lobortis. In mauris erat, tincidunt in placerat sed, pretium ac tortor. Morbi blandit lacus a leo vehicula aliquet.</ic-typography> <ic-typography>Pellentesque aliquam risus vel eros maximus, at pellentesque mi pretium. Etiam nec velit at orci varius porttitor. Aliquam facilisis, elit non cursus fringilla, metus metus malesuada lacus, at blandit nibh augue aliquet orci. Duis aliquam, est eget sodales ullamcorper, eros turpis euismod nulla, sed sollicitudin diam massa semper purus. Vivamus vel turpis ipsum. Interdum et malesuada fames ac ante ipsum primis in faucibus. Morbi euismod turpis dapibus quam fermentum condimentum. Mauris ex orci, consequat quis tempor eu, finibus vitae eros. Ut eu erat eu ipsum pulvinar cursus vel at dui. Etiam tincidunt quam porta nulla suscipit vestibulum. Sed iaculis enim leo, et aliquam justo feugiat in. Vivamus in ornare nulla, at tempor massa. Sed et aliquam nisi.</ic-typography> <ic-typography>Mauris tempus accumsan libero non tincidunt. Curabitur et leo orci. Suspendisse molestie posuere leo vitae posuere. Cras lacinia urna non erat gravida sagittis. Quisque dapibus arcu nec sem pharetra convallis. Nullam sed arcu mollis, posuere elit at, condimentum ligula. Nullam maximus nulla quam, ut euismod est feugiat at. Quisque ut venenatis ex, in facilisis sapien. Pellentesque in orci vitae metus iaculis venenatis. Nunc porttitor tellus arcu, in posuere quam vulputate nec. Aenean in venenatis ligula, non mollis quam. Suspendisse nec enim vel massa finibus pretium et a urna. Etiam suscipit semper est, id efficitur diam sollicitudin nec. Nullam nibh sapien, condimentum ut laoreet et, euismod ac mi. Vestibulum tristique odio non risus ullamcorper, et aliquam turpis varius. Nunc metus ex, tempus a augue sit amet, interdum vulputate libero.</ic-typography> <ic-typography>Aenean convallis libero id magna congue pellentesque. Nulla iaculis interdum porta. Aenean laoreet scelerisque nulla vel molestie. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Integer sollicitudin in felis vitae rhoncus. Sed eu elementum massa. Cras ut accumsan risus. Donec nec augue justo. Aenean sagittis luctus leo egestas consectetur. Sed sit amet nisl quis felis volutpat facilisis ac vitae tellus. Curabitur pharetra commodo consequat. Aliquam consequat ipsum lacus, sed faucibus sapien mollis vel.</ic-typography> </ic-section-container> </main> <ic-footer description="Description here" caption="Caption content here" > <ic-footer-link slot="link" href="/">Get Started</ic-footer-link> <ic-footer-link slot="link" href="/">Accessibility</ic-footer-link> <ic-footer-link slot="link" href="/">Styles</ic-footer-link> <ic-footer-link slot="link" href="/">Components</ic-footer-link> <ic-footer-link slot="link" href="/">Patterns</ic-footer-link> <ic-footer-link slot="link" href="/">Design toolkit</ic-footer-link> <div slot="logo" style="width:100px;height:100px;display:flex;align-items:center;justify-content:center; background-color:var(--ic-theme-primary);color:var(--ic-theme-text);" > Logo </div> </ic-footer> </div> </div> ``` ## πŸ–₯ Desktop - OS: Windows - Browser: Chrome - Version: 108 ## πŸ“± Mobile - Device: N/A - OS: N/A - Browser: N/A - Version: N/A ## Additional info It looks like a `position: relative` is set on side navigation when `min-width 992px` to push the content to the right when expanded but a `position: fixed` is also needed to keep the side navigation in view on the left while the main content is scrollable
1.0
[ic-side-navigation]: Side navigation height doesn't feel screen when content is below fold - ## Summary of the bug The height of the default side navigation stops below the fold if content continues below the fold. This creates white space which should be filled with the side navigation. ## πŸͺœ How to reproduce Tell us the steps to reproduce the problem: 1. Create a page with the side navigation and main content 2. Add content which falls below the fold ## 🧐 Expected behaviour The side navigation should appear fixed on the left side with main content scrollable. ## πŸ“Έ Screenshots or code ```jsx <div style="display:flex;"> <ic-side-navigation app-title="Application Name" version="v0.0.0" status="BETA" > <svg slot="app-icon" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000" > <path d="M0 0h24v24H0V0z" fill="none" /> <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z" /> </svg> <ic-navigation-item slot="primary-navigation" href="/" label="Home"> <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-navigation-item slot="primary-navigation" href="/" label="Search" selected="true" > <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-divider slot="primary-navigation"></ic-divider> <ic-navigation-item slot="primary-navigation" href="/" label="Trends"> <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-navigation-group slot="primary-navigation" label="Second navigation group" expandable="true" > <ic-navigation-item label="Different navigation" href="/"> <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M23 8C23 9.1 22.1 10 21 10C20.82 10 20.65 9.98 20.49 9.93L16.93 13.48C16.98 13.64 17 13.82 17 14C17 15.1 16.1 16 15 16C13.9 16 13 15.1 13 14C13 13.82 13.02 13.64 13.07 13.48L10.52 10.93C10.36 10.98 10.18 11 10 11C9.82 11 9.64 10.98 9.48 10.93L4.93 15.49C4.98 15.65 5 15.82 5 16C5 17.1 4.1 18 3 18C1.9 18 1 17.1 1 16C1 14.9 1.9 14 3 14C3.18 14 3.35 14.02 3.51 14.07L8.07 9.52C8.02 9.36 8 9.18 8 9C8 7.9 8.9 7 10 7C11.1 7 12 7.9 12 9C12 9.18 11.98 9.36 11.93 9.52L14.48 12.07C14.64 12.02 14.82 12 15 12C15.18 12 15.36 12.02 15.52 12.07L19.07 8.51C19.02 8.35 19 8.18 19 8C19 6.9 19.9 6 21 6C22.1 6 23 6.9 23 8Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-navigation-item label="Navigation" href="/"> <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M23 8C23 9.1 22.1 10 21 10C20.82 10 20.65 9.98 20.49 9.93L16.93 13.48C16.98 13.64 17 13.82 17 14C17 15.1 16.1 16 15 16C13.9 16 13 15.1 13 14C13 13.82 13.02 13.64 13.07 13.48L10.52 10.93C10.36 10.98 10.18 11 10 11C9.82 11 9.64 10.98 9.48 10.93L4.93 15.49C4.98 15.65 5 15.82 5 16C5 17.1 4.1 18 3 18C1.9 18 1 17.1 1 16C1 14.9 1.9 14 3 14C3.18 14 3.35 14.02 3.51 14.07L8.07 9.52C8.02 9.36 8 9.18 8 9C8 7.9 8.9 7 10 7C11.1 7 12 7.9 12 9C12 9.18 11.98 9.36 11.93 9.52L14.48 12.07C14.64 12.02 14.82 12 15 12C15.18 12 15.36 12.02 15.52 12.07L19.07 8.51C19.02 8.35 19 8.18 19 8C19 6.9 19.9 6 21 6C22.1 6 23 6.9 23 8Z" fill="currentColor" /> </svg> </ic-navigation-item> </ic-navigation-group> <ic-navigation-item slot="primary-navigation" href="/" label="This is a very very very long label for the navigation item" > <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> <ic-navigation-item slot="secondary-navigation" href="/" label="Settings" > <svg slot="icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M12 6.19L17 10.69V18.5H15V12.5H9V18.5H7V10.69L12 6.19ZM12 3.5L2 12.5H5V20.5H11V14.5H13V20.5H19V12.5H22L12 3.5Z" fill="currentColor" /> </svg> </ic-navigation-item> </ic-side-navigation> <div class="content-wrapper" style="display:flex; flex-direction: column; flex-grow: 1;" > <main> <ic-section-container> <ic-typography>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vestibulum venenatis facilisis. Nam tortor felis, auctor vel ante quis, tempor interdum libero. In dictum sodales velit, eu egestas arcu dignissim ac. Aliquam facilisis eros dolor, id laoreet orci sagittis ut. Sed tempus, lacus in pretium molestie, lectus magna interdum risus, vel fringilla libero ex eu dui. Suspendisse ullamcorper vehicula lacinia. Phasellus congue velit nisl, vitae congue ligula rutrum id.</ic-typography> <ic-typography>Etiam in suscipit metus. Duis semper, sapien a molestie semper, ex nibh porttitor tellus, vel molestie justo odio vel purus. Curabitur porttitor, tortor sed semper sollicitudin, odio odio congue tortor, eget pulvinar tellus nisl ac lacus. In ultricies commodo lorem, a laoreet diam. Ut a mauris at tellus tincidunt ullamcorper sit amet in metus. Aenean facilisis placerat dictum. Phasellus mattis ante sollicitudin luctus iaculis. Nam porttitor lobortis rhoncus. Nam nec malesuada purus, at pulvinar mauris. Nam non lorem ante.</ic-typography> <ic-typography>Donec aliquam eget mauris condimentum cursus. Nullam tempus a urna in commodo. Proin mauris augue, viverra id finibus id, vulputate in ante. Aliquam volutpat hendrerit tellus vitae tristique. Donec pellentesque enim arcu, at feugiat mauris venenatis vitae. Sed iaculis ut elit et ultrices. Donec diam eros, iaculis ac est nec, tempus feugiat nisl. Suspendisse eget interdum lorem. Phasellus pretium urna id elit pharetra hendrerit.</ic-typography> <ic-typography>Mauris blandit, mi ut posuere dapibus, est ante porttitor sem, quis pretium velit ante nec felis. Vivamus efficitur scelerisque dapibus. Nunc lacinia finibus laoreet. Praesent commodo augue orci, congue rutrum velit malesuada gravida. Nunc magna mauris, ornare nec nisl vel, faucibus euismod orci. Proin in augue vitae nunc gravida consectetur. Pellentesque id malesuada ex, sit amet imperdiet est. Duis erat nibh, lacinia vitae faucibus non, aliquam in dolor. Nam interdum felis vitae feugiat posuere. Cras volutpat molestie ipsum, sed auctor quam volutpat vitae. Vivamus lobortis scelerisque libero vel scelerisque.</ic-typography> <ic-typography>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent eget orci condimentum, tempus tortor posuere, lacinia ex. Curabitur bibendum suscipit turpis vitae mollis. Ut laoreet orci a risus facilisis porta. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur a porttitor neque, ac dignissim velit. Morbi quis malesuada massa, vitae sodales tellus. Aenean laoreet mattis lobortis. In mauris erat, tincidunt in placerat sed, pretium ac tortor. Morbi blandit lacus a leo vehicula aliquet.</ic-typography> <ic-typography>Pellentesque aliquam risus vel eros maximus, at pellentesque mi pretium. Etiam nec velit at orci varius porttitor. Aliquam facilisis, elit non cursus fringilla, metus metus malesuada lacus, at blandit nibh augue aliquet orci. Duis aliquam, est eget sodales ullamcorper, eros turpis euismod nulla, sed sollicitudin diam massa semper purus. Vivamus vel turpis ipsum. Interdum et malesuada fames ac ante ipsum primis in faucibus. Morbi euismod turpis dapibus quam fermentum condimentum. Mauris ex orci, consequat quis tempor eu, finibus vitae eros. Ut eu erat eu ipsum pulvinar cursus vel at dui. Etiam tincidunt quam porta nulla suscipit vestibulum. Sed iaculis enim leo, et aliquam justo feugiat in. Vivamus in ornare nulla, at tempor massa. Sed et aliquam nisi.</ic-typography> <ic-typography>Mauris tempus accumsan libero non tincidunt. Curabitur et leo orci. Suspendisse molestie posuere leo vitae posuere. Cras lacinia urna non erat gravida sagittis. Quisque dapibus arcu nec sem pharetra convallis. Nullam sed arcu mollis, posuere elit at, condimentum ligula. Nullam maximus nulla quam, ut euismod est feugiat at. Quisque ut venenatis ex, in facilisis sapien. Pellentesque in orci vitae metus iaculis venenatis. Nunc porttitor tellus arcu, in posuere quam vulputate nec. Aenean in venenatis ligula, non mollis quam. Suspendisse nec enim vel massa finibus pretium et a urna. Etiam suscipit semper est, id efficitur diam sollicitudin nec. Nullam nibh sapien, condimentum ut laoreet et, euismod ac mi. Vestibulum tristique odio non risus ullamcorper, et aliquam turpis varius. Nunc metus ex, tempus a augue sit amet, interdum vulputate libero.</ic-typography> <ic-typography>Aenean convallis libero id magna congue pellentesque. Nulla iaculis interdum porta. Aenean laoreet scelerisque nulla vel molestie. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Integer sollicitudin in felis vitae rhoncus. Sed eu elementum massa. Cras ut accumsan risus. Donec nec augue justo. Aenean sagittis luctus leo egestas consectetur. Sed sit amet nisl quis felis volutpat facilisis ac vitae tellus. Curabitur pharetra commodo consequat. Aliquam consequat ipsum lacus, sed faucibus sapien mollis vel.</ic-typography> </ic-section-container> </main> <ic-footer description="Description here" caption="Caption content here" > <ic-footer-link slot="link" href="/">Get Started</ic-footer-link> <ic-footer-link slot="link" href="/">Accessibility</ic-footer-link> <ic-footer-link slot="link" href="/">Styles</ic-footer-link> <ic-footer-link slot="link" href="/">Components</ic-footer-link> <ic-footer-link slot="link" href="/">Patterns</ic-footer-link> <ic-footer-link slot="link" href="/">Design toolkit</ic-footer-link> <div slot="logo" style="width:100px;height:100px;display:flex;align-items:center;justify-content:center; background-color:var(--ic-theme-primary);color:var(--ic-theme-text);" > Logo </div> </ic-footer> </div> </div> ``` ## πŸ–₯ Desktop - OS: Windows - Browser: Chrome - Version: 108 ## πŸ“± Mobile - Device: N/A - OS: N/A - Browser: N/A - Version: N/A ## Additional info It looks like a `position: relative` is set on side navigation when `min-width 992px` to push the content to the right when expanded but a `position: fixed` is also needed to keep the side navigation in view on the left while the main content is scrollable
priority
side navigation height doesn t feel screen when content is below fold summary of the bug the height of the default side navigation stops below the fold if content continues below the fold this creates white space which should be filled with the side navigation πŸͺœ how to reproduce tell us the steps to reproduce the problem create a page with the side navigation and main content add content which falls below the fold 🧐 expected behaviour the side navigation should appear fixed on the left side with main content scrollable πŸ“Έ screenshots or code jsx ic side navigation app title application name version status beta svg slot app icon xmlns height viewbox width fill path d svg slot icon width height viewbox fill none xmlns path d fill currentcolor ic navigation item slot primary navigation href label search selected true svg slot icon width height viewbox fill none xmlns path d fill currentcolor svg slot icon width height viewbox fill none xmlns path d fill currentcolor ic navigation group slot primary navigation label second navigation group expandable true svg slot icon width height viewbox fill none xmlns path d fill currentcolor svg slot icon width height viewbox fill none xmlns path d fill currentcolor ic navigation item slot primary navigation href label this is a very very very long label for the navigation item svg slot icon width height viewbox fill none xmlns path d fill currentcolor ic navigation item slot secondary navigation href label settings svg slot icon width height viewbox fill none xmlns path d fill currentcolor div class content wrapper style display flex flex direction column flex grow lorem ipsum dolor sit amet consectetur adipiscing elit sed vestibulum venenatis facilisis nam tortor felis auctor vel ante quis tempor interdum libero in dictum sodales velit eu egestas arcu dignissim ac aliquam facilisis eros dolor id laoreet orci sagittis ut sed tempus lacus in pretium molestie lectus magna interdum risus vel fringilla libero ex eu dui suspendisse ullamcorper vehicula lacinia phasellus congue velit nisl vitae congue ligula rutrum id etiam in suscipit metus duis semper sapien a molestie semper ex nibh porttitor tellus vel molestie justo odio vel purus curabitur porttitor tortor sed semper sollicitudin odio odio congue tortor eget pulvinar tellus nisl ac lacus in ultricies commodo lorem a laoreet diam ut a mauris at tellus tincidunt ullamcorper sit amet in metus aenean facilisis placerat dictum phasellus mattis ante sollicitudin luctus iaculis nam porttitor lobortis rhoncus nam nec malesuada purus at pulvinar mauris nam non lorem ante donec aliquam eget mauris condimentum cursus nullam tempus a urna in commodo proin mauris augue viverra id finibus id vulputate in ante aliquam volutpat hendrerit tellus vitae tristique donec pellentesque enim arcu at feugiat mauris venenatis vitae sed iaculis ut elit et ultrices donec diam eros iaculis ac est nec tempus feugiat nisl suspendisse eget interdum lorem phasellus pretium urna id elit pharetra hendrerit mauris blandit mi ut posuere dapibus est ante porttitor sem quis pretium velit ante nec felis vivamus efficitur scelerisque dapibus nunc lacinia finibus laoreet praesent commodo augue orci congue rutrum velit malesuada gravida nunc magna mauris ornare nec nisl vel faucibus euismod orci proin in augue vitae nunc gravida consectetur pellentesque id malesuada ex sit amet imperdiet est duis erat nibh lacinia vitae faucibus non aliquam in dolor nam interdum felis vitae feugiat posuere cras volutpat molestie ipsum sed auctor quam volutpat vitae vivamus lobortis scelerisque libero vel scelerisque lorem ipsum dolor sit amet consectetur adipiscing elit praesent eget orci condimentum tempus tortor posuere lacinia ex curabitur bibendum suscipit turpis vitae mollis ut laoreet orci a risus facilisis porta orci varius natoque penatibus et magnis dis parturient montes nascetur ridiculus mus curabitur a porttitor neque ac dignissim velit morbi quis malesuada massa vitae sodales tellus aenean laoreet mattis lobortis in mauris erat tincidunt in placerat sed pretium ac tortor morbi blandit lacus a leo vehicula aliquet pellentesque aliquam risus vel eros maximus at pellentesque mi pretium etiam nec velit at orci varius porttitor aliquam facilisis elit non cursus fringilla metus metus malesuada lacus at blandit nibh augue aliquet orci duis aliquam est eget sodales ullamcorper eros turpis euismod nulla sed sollicitudin diam massa semper purus vivamus vel turpis ipsum interdum et malesuada fames ac ante ipsum primis in faucibus morbi euismod turpis dapibus quam fermentum condimentum mauris ex orci consequat quis tempor eu finibus vitae eros ut eu erat eu ipsum pulvinar cursus vel at dui etiam tincidunt quam porta nulla suscipit vestibulum sed iaculis enim leo et aliquam justo feugiat in vivamus in ornare nulla at tempor massa sed et aliquam nisi mauris tempus accumsan libero non tincidunt curabitur et leo orci suspendisse molestie posuere leo vitae posuere cras lacinia urna non erat gravida sagittis quisque dapibus arcu nec sem pharetra convallis nullam sed arcu mollis posuere elit at condimentum ligula nullam maximus nulla quam ut euismod est feugiat at quisque ut venenatis ex in facilisis sapien pellentesque in orci vitae metus iaculis venenatis nunc porttitor tellus arcu in posuere quam vulputate nec aenean in venenatis ligula non mollis quam suspendisse nec enim vel massa finibus pretium et a urna etiam suscipit semper est id efficitur diam sollicitudin nec nullam nibh sapien condimentum ut laoreet et euismod ac mi vestibulum tristique odio non risus ullamcorper et aliquam turpis varius nunc metus ex tempus a augue sit amet interdum vulputate libero aenean convallis libero id magna congue pellentesque nulla iaculis interdum porta aenean laoreet scelerisque nulla vel molestie class aptent taciti sociosqu ad litora torquent per conubia nostra per inceptos himenaeos integer sollicitudin in felis vitae rhoncus sed eu elementum massa cras ut accumsan risus donec nec augue justo aenean sagittis luctus leo egestas consectetur sed sit amet nisl quis felis volutpat facilisis ac vitae tellus curabitur pharetra commodo consequat aliquam consequat ipsum lacus sed faucibus sapien mollis vel ic footer description description here caption caption content here get started accessibility styles components patterns design toolkit div slot logo style width height display flex align items center justify content center background color var ic theme primary color var ic theme text logo πŸ–₯ desktop os windows browser chrome version πŸ“± mobile device n a os n a browser n a version n a additional info it looks like a position relative is set on side navigation when min width to push the content to the right when expanded but a position fixed is also needed to keep the side navigation in view on the left while the main content is scrollable
1
41,942
2,869,089,120
IssuesEvent
2015-06-05 23:14:46
dart-lang/polymer-dart
https://api.github.com/repos/dart-lang/polymer-dart
opened
Make it easier to specify polymer expression globals
enhancement PolymerMilestone-Next Priority-Medium
<a href="https://github.com/justinfagnani"><img src="https://avatars.githubusercontent.com/u/522948?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [justinfagnani](https://github.com/justinfagnani)** _Originally opened as dart-lang/sdk#13470_ ---- Right now it's pretty difficult to specify the globals available to expressions in a PolymerElement. This is what's currently required: class MyElement extends PolymerElement { &nbsp;&nbsp;var \_mySyntax = new PolymerExpressions(globals: { &nbsp;&nbsp;&nbsp;&nbsp;'enumerate': enumerate, &nbsp;&nbsp;&nbsp;&nbsp;'appName': 'My App', &nbsp;&nbsp;}); &nbsp;&nbsp;DocumentFragment instanceTemplate(Element template) =&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;template.createInstance(this, \_mySyntax); } We'd like to require less boilerplate and at the same time make it easier to statically analyze so that IDEs could offer warnings and code completion within HTML templates. A solution could be to allow elements to directly declare their globals, and automatically create a PolymerExpressions object using those globals. To make it more declarative and add type annotations, the globas can be a plain Dart object, instead of a map: class MyGlobals { &nbsp;&nbsp;List enumerate(List l) =&gt; enumerate(l); &nbsp;&nbsp;String appName = 'My App'; } class MyElement extends PolymerElement { &nbsp;&nbsp;var globals = new MyGlobals(); }
1.0
Make it easier to specify polymer expression globals - <a href="https://github.com/justinfagnani"><img src="https://avatars.githubusercontent.com/u/522948?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [justinfagnani](https://github.com/justinfagnani)** _Originally opened as dart-lang/sdk#13470_ ---- Right now it's pretty difficult to specify the globals available to expressions in a PolymerElement. This is what's currently required: class MyElement extends PolymerElement { &nbsp;&nbsp;var \_mySyntax = new PolymerExpressions(globals: { &nbsp;&nbsp;&nbsp;&nbsp;'enumerate': enumerate, &nbsp;&nbsp;&nbsp;&nbsp;'appName': 'My App', &nbsp;&nbsp;}); &nbsp;&nbsp;DocumentFragment instanceTemplate(Element template) =&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;template.createInstance(this, \_mySyntax); } We'd like to require less boilerplate and at the same time make it easier to statically analyze so that IDEs could offer warnings and code completion within HTML templates. A solution could be to allow elements to directly declare their globals, and automatically create a PolymerExpressions object using those globals. To make it more declarative and add type annotations, the globas can be a plain Dart object, instead of a map: class MyGlobals { &nbsp;&nbsp;List enumerate(List l) =&gt; enumerate(l); &nbsp;&nbsp;String appName = 'My App'; } class MyElement extends PolymerElement { &nbsp;&nbsp;var globals = new MyGlobals(); }
priority
make it easier to specify polymer expression globals issue by originally opened as dart lang sdk right now it s pretty difficult to specify the globals available to expressions in a polymerelement this is what s currently required class myelement extends polymerelement nbsp nbsp var mysyntax new polymerexpressions globals nbsp nbsp nbsp nbsp enumerate enumerate nbsp nbsp nbsp nbsp appname my app nbsp nbsp nbsp nbsp documentfragment instancetemplate element template gt nbsp nbsp nbsp nbsp nbsp nbsp template createinstance this mysyntax we d like to require less boilerplate and at the same time make it easier to statically analyze so that ides could offer warnings and code completion within html templates a solution could be to allow elements to directly declare their globals and automatically create a polymerexpressions object using those globals to make it more declarative and add type annotations the globas can be a plain dart object instead of a map class myglobals nbsp nbsp list enumerate list l gt enumerate l nbsp nbsp string appname my app class myelement extends polymerelement nbsp nbsp var globals new myglobals
1
716,335
24,628,691,031
IssuesEvent
2022-10-16 20:54:24
IAmTamal/Milan
https://api.github.com/repos/IAmTamal/Milan
opened
No mention of the jwt secret key in BackendSetup.md
πŸ“„ aspect: text ✨ goal: improvement 🟨 priority: medium πŸ›  status : under development hacktoberfest
### Description A `JWT_SECRET` key has to be set up in the .env file while running the server locally. But it is not mentioned [here](../blob/main/rules/BackendSetup.md) . ### Screenshots This can be a good Beginners-Friendly issue. ### Additional information _No response_ ### πŸ₯¦ Browser Google Chrome ### πŸ‘€ Have you checked if this issue has been raised before? - [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 ? _No response_
1.0
No mention of the jwt secret key in BackendSetup.md - ### Description A `JWT_SECRET` key has to be set up in the .env file while running the server locally. But it is not mentioned [here](../blob/main/rules/BackendSetup.md) . ### Screenshots This can be a good Beginners-Friendly issue. ### Additional information _No response_ ### πŸ₯¦ Browser Google Chrome ### πŸ‘€ Have you checked if this issue has been raised before? - [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 ? _No response_
priority
no mention of the jwt secret key in backendsetup md description a jwt secret key has to be set up in the env file while running the server locally but it is not mentioned blob main rules backendsetup md screenshots this can be a good beginners friendly issue additional information no response πŸ₯¦ browser google chrome πŸ‘€ have you checked if this issue has been raised before 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 no response
1
100,427
4,087,598,549
IssuesEvent
2016-06-01 10:41:03
BugBusterSWE/MaaS
https://api.github.com/repos/BugBusterSWE/MaaS
opened
Messaggi d'errore nelle font
priority:medium Programmer
*Codice in cui si trova il problema*: activity #37 *Descrizione del problema*: Aggiunta messaggi di errore alle form. Link task: [https://bugbusters.teamwork.com/tasks/6985446](https://bugbusters.teamwork.com/tasks/6985446)
1.0
Messaggi d'errore nelle font - *Codice in cui si trova il problema*: activity #37 *Descrizione del problema*: Aggiunta messaggi di errore alle form. Link task: [https://bugbusters.teamwork.com/tasks/6985446](https://bugbusters.teamwork.com/tasks/6985446)
priority
messaggi d errore nelle font codice in cui si trova il problema activity descrizione del problema aggiunta messaggi di errore alle form link task
1
725,898
24,980,074,230
IssuesEvent
2022-11-02 10:58:20
teogor/ceres
https://api.github.com/repos/teogor/ceres
closed
Manage the `SplashScreen` in the app's style
@bug @priority-medium
On devices with Android 12+ the theme is applied correctly after the splash screen, but on lower devices it is not.
1.0
Manage the `SplashScreen` in the app's style - On devices with Android 12+ the theme is applied correctly after the splash screen, but on lower devices it is not.
priority
manage the splashscreen in the app s style on devices with android the theme is applied correctly after the splash screen but on lower devices it is not
1
177,930
6,588,623,889
IssuesEvent
2017-09-14 04:33:47
opencurrents/opencurrents
https://api.github.com/repos/opencurrents/opencurrents
opened
Profile: Discrepancy mobile and web.
mvp priority high priority medium
Note that redeem Currents button is nonexistent in mobile at the moment.
2.0
Profile: Discrepancy mobile and web. - Note that redeem Currents button is nonexistent in mobile at the moment.
priority
profile discrepancy mobile and web note that redeem currents button is nonexistent in mobile at the moment
1
811,595
30,293,509,086
IssuesEvent
2023-07-09 15:13:38
pystardust/ani-cli
https://api.github.com/repos/pystardust/ani-cli
closed
Anime sources return unplayable links
type: bug category: url priority 2: medium
**Metadata (please complete the following information)** Version: 4.2.1 OS: Arch Linux Shell: Zsh Anime: Onimai **Describe the bug** While watching the episode 6 and specifically episode 6 of onimai, it seems there's not many sources that provided the episode and one of the sources (either vrv or gogoanime couldn't tell) are returning an invalid link to play. After inspecting on vlc which provides error log output, vlc is trying to load a file with the m3u8 extension. I'm surprised there's no countermeasure on unplayable links, since you know, you can't trust the sources sometimes. This issue is quite hard to identify with no presence of a verbose flag or any logging file that I'm aware of. **Steps To Reproduce** 1. Run `ani-cli -v onimai` 2. Choose episode 6 **Expected behavior** The episode would run just fine on mpv and vlc **Additional context**
1.0
Anime sources return unplayable links - **Metadata (please complete the following information)** Version: 4.2.1 OS: Arch Linux Shell: Zsh Anime: Onimai **Describe the bug** While watching the episode 6 and specifically episode 6 of onimai, it seems there's not many sources that provided the episode and one of the sources (either vrv or gogoanime couldn't tell) are returning an invalid link to play. After inspecting on vlc which provides error log output, vlc is trying to load a file with the m3u8 extension. I'm surprised there's no countermeasure on unplayable links, since you know, you can't trust the sources sometimes. This issue is quite hard to identify with no presence of a verbose flag or any logging file that I'm aware of. **Steps To Reproduce** 1. Run `ani-cli -v onimai` 2. Choose episode 6 **Expected behavior** The episode would run just fine on mpv and vlc **Additional context**
priority
anime sources return unplayable links metadata please complete the following information version os arch linux shell zsh anime onimai describe the bug while watching the episode and specifically episode of onimai it seems there s not many sources that provided the episode and one of the sources either vrv or gogoanime couldn t tell are returning an invalid link to play after inspecting on vlc which provides error log output vlc is trying to load a file with the extension i m surprised there s no countermeasure on unplayable links since you know you can t trust the sources sometimes this issue is quite hard to identify with no presence of a verbose flag or any logging file that i m aware of steps to reproduce run ani cli v onimai choose episode expected behavior the episode would run just fine on mpv and vlc additional context
1
287,572
8,816,908,501
IssuesEvent
2018-12-30 16:47:32
RKrahl/photo-tools
https://api.github.com/repos/RKrahl/photo-tools
closed
Should lock the index file
bug priority medium
Actions in `photoidx` and `imageview` that modify the index file are not protected against race conditions. In particular, `imageview` reads the index file at startup and writes the index back to the file each time it is modified by a user action. Multiple instances overwrite each others modifications. This should be protected by file locking. We may however add a `--readonly` command line option that disables all modifications and does not lock the index file.
1.0
Should lock the index file - Actions in `photoidx` and `imageview` that modify the index file are not protected against race conditions. In particular, `imageview` reads the index file at startup and writes the index back to the file each time it is modified by a user action. Multiple instances overwrite each others modifications. This should be protected by file locking. We may however add a `--readonly` command line option that disables all modifications and does not lock the index file.
priority
should lock the index file actions in photoidx and imageview that modify the index file are not protected against race conditions in particular imageview reads the index file at startup and writes the index back to the file each time it is modified by a user action multiple instances overwrite each others modifications this should be protected by file locking we may however add a readonly command line option that disables all modifications and does not lock the index file
1
577,435
17,110,684,615
IssuesEvent
2021-07-10 08:13:02
adirh3/Fluent-Search
https://api.github.com/repos/adirh3/Fluent-Search
closed
Bug. "Open Directory" for files/folder in pinned/suggested pages always opens the "Video Library" Folder
Medium Priority bug
**Describe the bug** Whenever I try to open containing folder of any file/directory in the pinned/suggested screen, File explorer will open the Video Library Folder **To Reproduce** Steps to reproduce the behavior: 1. Right click any file/folder in the pinned/suggested page 2. Click on 'Open Directory" 3. File explorer will open the "Video library folder" **Screenshots** https://user-images.githubusercontent.com/55885756/125039612-f9776600-e096-11eb-9c6b-4a498a3373ee.mp4 **Desktop (please complete the following information):** - Windows 10 Version: [e.g. 20H1] - Fluent Search Version [e.g. 0.9.88.60] **Additional context** doing the same thing from FF search doesn't reproduce the bug. It might be related to a bug I had earlier that was fixed (https://github.com/adirh3/Fluent-Search/issues/211)
1.0
Bug. "Open Directory" for files/folder in pinned/suggested pages always opens the "Video Library" Folder - **Describe the bug** Whenever I try to open containing folder of any file/directory in the pinned/suggested screen, File explorer will open the Video Library Folder **To Reproduce** Steps to reproduce the behavior: 1. Right click any file/folder in the pinned/suggested page 2. Click on 'Open Directory" 3. File explorer will open the "Video library folder" **Screenshots** https://user-images.githubusercontent.com/55885756/125039612-f9776600-e096-11eb-9c6b-4a498a3373ee.mp4 **Desktop (please complete the following information):** - Windows 10 Version: [e.g. 20H1] - Fluent Search Version [e.g. 0.9.88.60] **Additional context** doing the same thing from FF search doesn't reproduce the bug. It might be related to a bug I had earlier that was fixed (https://github.com/adirh3/Fluent-Search/issues/211)
priority
bug open directory for files folder in pinned suggested pages always opens the video library folder describe the bug whenever i try to open containing folder of any file directory in the pinned suggested screen file explorer will open the video library folder to reproduce steps to reproduce the behavior right click any file folder in the pinned suggested page click on open directory file explorer will open the video library folder screenshots desktop please complete the following information windows version fluent search version additional context doing the same thing from ff search doesn t reproduce the bug it might be related to a bug i had earlier that was fixed
1
279,376
8,664,602,581
IssuesEvent
2018-11-28 20:40:38
CosmosOS/IL2CPU
https://api.github.com/repos/CosmosOS/IL2CPU
closed
Implement sub.ovf.un
Area: Compiler Complexity: Medium Enhancement Priority: Medium
Implement sub.ovf.un, for: - [ ] 4 byte values (higher priority) - [ ] 8 byte values (lower priority)
1.0
Implement sub.ovf.un - Implement sub.ovf.un, for: - [ ] 4 byte values (higher priority) - [ ] 8 byte values (lower priority)
priority
implement sub ovf un implement sub ovf un for byte values higher priority byte values lower priority
1