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
315,185
9,607,547,818
IssuesEvent
2019-05-11 19:53:16
bounswe/bounswe2019group8
https://api.github.com/repos/bounswe/bounswe2019group8
closed
Research for Assignment 7
Effort: Medium Group work Priority: High Status: In Progress Type: Research
**Actions:** 1. We should make a research on API, git versioning system, RESTful API. One of the resource is the examples shared by professor on Piazza. **Deadline:** 18.04.2019 23.59
1.0
Research for Assignment 7 - **Actions:** 1. We should make a research on API, git versioning system, RESTful API. One of the resource is the examples shared by professor on Piazza. **Deadline:** 18.04.2019 23.59
priority
research for assignment actions we should make a research on api git versioning system restful api one of the resource is the examples shared by professor on piazza deadline
1
133,656
5,206,592,621
IssuesEvent
2017-01-24 21:03:53
OperationCode/operationcode
https://api.github.com/repos/OperationCode/operationcode
closed
Add 'request a mentor' to mentor details
beginner friendly Priority: Medium Type: Feature
When a user is on their profile home page If a user has not requested a mentor They should be able to click a link to request a mentor. The link should be a form that updates the `wants_mentor` field for that veteran. You will probably have to create a new method in the `Veteran` controller.
1.0
Add 'request a mentor' to mentor details - When a user is on their profile home page If a user has not requested a mentor They should be able to click a link to request a mentor. The link should be a form that updates the `wants_mentor` field for that veteran. You will probably have to create a new method in the `Veteran` controller.
priority
add request a mentor to mentor details when a user is on their profile home page if a user has not requested a mentor they should be able to click a link to request a mentor the link should be a form that updates the wants mentor field for that veteran you will probably have to create a new method in the veteran controller
1
5,700
2,578,315,785
IssuesEvent
2015-02-12 22:26:04
prey/prey-android-client
https://api.github.com/repos/prey/prey-android-client
closed
Hardware information for UUID and Serial Numer is actually the device's IMEI
bug priority: medium
## Problem The listed "Hardware Information" on the account's device view is flawed. Serial Number and UUID fields show the same info, which is the IMEI number for the device. ![screenshot 2015-02-09 15 19 52](https://cloud.githubusercontent.com/assets/401279/6112566/eba69248-b06f-11e4-8cb3-25feca008556.png) ## How it was detected User feedback. ## Suggested solution Either list S/Ns and UUID, or if that's impossible, then rename those labels as "IMEI." ## References - https://twitter.com/user/status/564151609845112832
1.0
Hardware information for UUID and Serial Numer is actually the device's IMEI - ## Problem The listed "Hardware Information" on the account's device view is flawed. Serial Number and UUID fields show the same info, which is the IMEI number for the device. ![screenshot 2015-02-09 15 19 52](https://cloud.githubusercontent.com/assets/401279/6112566/eba69248-b06f-11e4-8cb3-25feca008556.png) ## How it was detected User feedback. ## Suggested solution Either list S/Ns and UUID, or if that's impossible, then rename those labels as "IMEI." ## References - https://twitter.com/user/status/564151609845112832
priority
hardware information for uuid and serial numer is actually the device s imei problem the listed hardware information on the account s device view is flawed serial number and uuid fields show the same info which is the imei number for the device how it was detected user feedback suggested solution either list s ns and uuid or if that s impossible then rename those labels as imei references
1
82,285
3,604,952,527
IssuesEvent
2016-02-04 01:28:43
cs2103jan2016-t09-3j/main
https://api.github.com/repos/cs2103jan2016-t09-3j/main
closed
A user can rank the importance of each task
priority.medium type.story
...so that the user knows which task he should complete first if he has free time.
1.0
A user can rank the importance of each task - ...so that the user knows which task he should complete first if he has free time.
priority
a user can rank the importance of each task so that the user knows which task he should complete first if he has free time
1
801,919
28,507,097,764
IssuesEvent
2023-04-18 22:43:46
testomatio/check-tests
https://api.github.com/repos/testomatio/check-tests
closed
One-to-many test mapping
enhancement priority medium playwright
**Is your feature request related to a problem? Please describe.** Some of our automation tests fulfill the requirements of several test case ID's from our test management system. Currently it seems only one-to-one mapping exists between a single automation test and single test case that is imported or created in testomatio **Describe the solution you'd like** The ability to map a single automation test to multiple test cases. **Describe alternatives you've considered** Rewriting automation tests to be one to one, however with 1k+ tests, it could take considerable time. **Additional context** In a framework like Playwright, we have the ability to create a test which includes several test.step methods. It might be helpful if we can identify which portion of the test applies to individual test cases. From my understanding, most frameworks offer the ability have [soft assertions](https://playwright.dev/docs/test-assertions#soft-assertions) which continue on the test if one step fails. Currently, we have multiple test cases tied to a single automation test setup as follows however: ``` test.describe("Add/Edit user (parallel)", () => { for (const role of roles1) { baseTest.describe(`[C88, C81641, C8209, C8199, C43080, C45741]: ${role.groupName}`, () => { baseTest.use({ storageState: `${role.storageStatePath}` }); baseTest(`Add new Worker`, async ({ userPage, random, apiRequest, common, request }) => { await apiRequest.createAgency(request, random.agencyName); const officeID = await apiRequest.createBillingOffice(request, random.officeName); const campusID = await apiRequest.createCampus(request, random.campusName); await apiRequest.createFacility(request, random.facilityName, random.rand, officeID, campusID); await Promise.all([ userPage.page.goto(`${process.env.BASE_URL}admin`), userPage.page.waitForResponse(resp => resp.url().includes('api/v1/users/table') && resp.status() == 200) ]) await userPage.usersPO.openAddUserPage(); await userPage.addEditUserPO.addWorker(random.userEmail, random.userPhoneNumber, random.facilityName, random.agencyName, role.groupName); await common.goToUsersPage(); await userPage.usersPO.verifyTheUserExist(random.userEmail); await userPage.usersPO.openFirstUserPage(); await expect(userPage.addEditUserPO.submittionStatusButton).toContainText('accepted'); await userPage.addEditUserPO.verifyWorkerInfo(random.userEmail, random.userPhoneNumber, random.facilityName, random.agencyName, role.groupName); }) }) } ``` This approach is less ideal but what we're currently using.
1.0
One-to-many test mapping - **Is your feature request related to a problem? Please describe.** Some of our automation tests fulfill the requirements of several test case ID's from our test management system. Currently it seems only one-to-one mapping exists between a single automation test and single test case that is imported or created in testomatio **Describe the solution you'd like** The ability to map a single automation test to multiple test cases. **Describe alternatives you've considered** Rewriting automation tests to be one to one, however with 1k+ tests, it could take considerable time. **Additional context** In a framework like Playwright, we have the ability to create a test which includes several test.step methods. It might be helpful if we can identify which portion of the test applies to individual test cases. From my understanding, most frameworks offer the ability have [soft assertions](https://playwright.dev/docs/test-assertions#soft-assertions) which continue on the test if one step fails. Currently, we have multiple test cases tied to a single automation test setup as follows however: ``` test.describe("Add/Edit user (parallel)", () => { for (const role of roles1) { baseTest.describe(`[C88, C81641, C8209, C8199, C43080, C45741]: ${role.groupName}`, () => { baseTest.use({ storageState: `${role.storageStatePath}` }); baseTest(`Add new Worker`, async ({ userPage, random, apiRequest, common, request }) => { await apiRequest.createAgency(request, random.agencyName); const officeID = await apiRequest.createBillingOffice(request, random.officeName); const campusID = await apiRequest.createCampus(request, random.campusName); await apiRequest.createFacility(request, random.facilityName, random.rand, officeID, campusID); await Promise.all([ userPage.page.goto(`${process.env.BASE_URL}admin`), userPage.page.waitForResponse(resp => resp.url().includes('api/v1/users/table') && resp.status() == 200) ]) await userPage.usersPO.openAddUserPage(); await userPage.addEditUserPO.addWorker(random.userEmail, random.userPhoneNumber, random.facilityName, random.agencyName, role.groupName); await common.goToUsersPage(); await userPage.usersPO.verifyTheUserExist(random.userEmail); await userPage.usersPO.openFirstUserPage(); await expect(userPage.addEditUserPO.submittionStatusButton).toContainText('accepted'); await userPage.addEditUserPO.verifyWorkerInfo(random.userEmail, random.userPhoneNumber, random.facilityName, random.agencyName, role.groupName); }) }) } ``` This approach is less ideal but what we're currently using.
priority
one to many test mapping is your feature request related to a problem please describe some of our automation tests fulfill the requirements of several test case id s from our test management system currently it seems only one to one mapping exists between a single automation test and single test case that is imported or created in testomatio describe the solution you d like the ability to map a single automation test to multiple test cases describe alternatives you ve considered rewriting automation tests to be one to one however with tests it could take considerable time additional context in a framework like playwright we have the ability to create a test which includes several test step methods it might be helpful if we can identify which portion of the test applies to individual test cases from my understanding most frameworks offer the ability have which continue on the test if one step fails currently we have multiple test cases tied to a single automation test setup as follows however test describe add edit user parallel for const role of basetest describe role groupname basetest use storagestate role storagestatepath basetest add new worker async userpage random apirequest common request await apirequest createagency request random agencyname const officeid await apirequest createbillingoffice request random officename const campusid await apirequest createcampus request random campusname await apirequest createfacility request random facilityname random rand officeid campusid await promise all userpage page goto process env base url admin userpage page waitforresponse resp resp url includes api users table resp status await userpage userspo openadduserpage await userpage addedituserpo addworker random useremail random userphonenumber random facilityname random agencyname role groupname await common gotouserspage await userpage userspo verifytheuserexist random useremail await userpage userspo openfirstuserpage await expect userpage addedituserpo submittionstatusbutton tocontaintext accepted await userpage addedituserpo verifyworkerinfo random useremail random userphonenumber random facilityname random agencyname role groupname this approach is less ideal but what we re currently using
1
158,672
6,033,319,997
IssuesEvent
2017-06-09 07:57:23
moosetechnology/Moose
https://api.github.com/repos/moosetechnology/Moose
closed
Create more virtual association in MooseChef
Component-Famix Priority-Medium Type-Enhancement
Originally reported on Google Code with ID 811 ``` Famix recognizes 4 types of associations (reference, access, inheritance, invocation) and Moosechef was built upon these dependencies (queryAllOutgoingReferences, ...) But this will miss a good deal of actual dependencies, because many of them are not expressed by associations: - exceptions caught, thrown - parameter types in parameterized classes - use of annotations - other? ``` Reported by `anquetil.nicolas` on 2012-07-25 11:43:20
1.0
Create more virtual association in MooseChef - Originally reported on Google Code with ID 811 ``` Famix recognizes 4 types of associations (reference, access, inheritance, invocation) and Moosechef was built upon these dependencies (queryAllOutgoingReferences, ...) But this will miss a good deal of actual dependencies, because many of them are not expressed by associations: - exceptions caught, thrown - parameter types in parameterized classes - use of annotations - other? ``` Reported by `anquetil.nicolas` on 2012-07-25 11:43:20
priority
create more virtual association in moosechef originally reported on google code with id famix recognizes types of associations reference access inheritance invocation and moosechef was built upon these dependencies queryalloutgoingreferences but this will miss a good deal of actual dependencies because many of them are not expressed by associations exceptions caught thrown parameter types in parameterized classes use of annotations other reported by anquetil nicolas on
1
793,127
27,983,646,995
IssuesEvent
2023-03-26 12:57:45
svthalia/Reaxit
https://api.github.com/repos/svthalia/Reaxit
opened
Welcome page doesn't show external events
bug priority: medium
### Describe the bug When opening the app in the welcome page, this does not show external events we put on the calendar. ### How to reproduce Steps to reproduce the behavior: 1. One of the first three events should be an external event 2. Go to the welcome page 3. Take a look at all the possible events 4. Compare this to the possible events in the calendar 5. See that external events are missing ### Expected behaviour External events should be on the welcome page
1.0
Welcome page doesn't show external events - ### Describe the bug When opening the app in the welcome page, this does not show external events we put on the calendar. ### How to reproduce Steps to reproduce the behavior: 1. One of the first three events should be an external event 2. Go to the welcome page 3. Take a look at all the possible events 4. Compare this to the possible events in the calendar 5. See that external events are missing ### Expected behaviour External events should be on the welcome page
priority
welcome page doesn t show external events describe the bug when opening the app in the welcome page this does not show external events we put on the calendar how to reproduce steps to reproduce the behavior one of the first three events should be an external event go to the welcome page take a look at all the possible events compare this to the possible events in the calendar see that external events are missing expected behaviour external events should be on the welcome page
1
510,932
14,849,704,397
IssuesEvent
2021-01-18 02:13:00
davtorcue/decide
https://api.github.com/repos/davtorcue/decide
closed
Incidencia de despliegue automático - Despliegue en Heroku
Accepted Verified bug priority:medium wontfix
**Pasos a seguir para reproducir el bug:** 1. Configurar archivos de Travis para el despliegue automático 2. Lanzar build de Travis **Salida esperada y qué salida ha obtenido:** La salida esperada era que se pasaran todas las pruebas y automáticamente se desplegara la aplicación en Heroku. La salida obtenida ha sido que no se pasan las pruebas de Selenium. **Información adicional:** El equipo supone que la configuración para el despliegue automático en Heroku causa que las pruebas de Heroku no se ejecuten.
1.0
Incidencia de despliegue automático - Despliegue en Heroku - **Pasos a seguir para reproducir el bug:** 1. Configurar archivos de Travis para el despliegue automático 2. Lanzar build de Travis **Salida esperada y qué salida ha obtenido:** La salida esperada era que se pasaran todas las pruebas y automáticamente se desplegara la aplicación en Heroku. La salida obtenida ha sido que no se pasan las pruebas de Selenium. **Información adicional:** El equipo supone que la configuración para el despliegue automático en Heroku causa que las pruebas de Heroku no se ejecuten.
priority
incidencia de despliegue automático despliegue en heroku pasos a seguir para reproducir el bug configurar archivos de travis para el despliegue automático lanzar build de travis salida esperada y qué salida ha obtenido la salida esperada era que se pasaran todas las pruebas y automáticamente se desplegara la aplicación en heroku la salida obtenida ha sido que no se pasan las pruebas de selenium información adicional el equipo supone que la configuración para el despliegue automático en heroku causa que las pruebas de heroku no se ejecuten
1
555,252
16,449,636,573
IssuesEvent
2021-05-21 02:28:03
momentum-mod/game
https://api.github.com/repos/momentum-mod/game
opened
Savelocs should store player weapon state
Priority: Medium Size: Medium Type: Enhancement
**What feature is your improvement idea related to? Please describe.** Savelocs in relation to player weapons. **Describe the solution you'd like** Savelocs currently store attack time in them, but nothing else about the current weapon. Savelocs should: 1. Store the current weapon the player is equipping at time of save - The saveloc may have to `pPlayer->GiveWeapon` the weapon if they do not have it. Verify it doesn't give disallowed weapons! 2. Gamemodes like SJ and Conc allow for "charging" the weapon, so charge state/time for these weapons 3. The pistol allows for a "burst mode toggle", so burst mode toggle for this gun 4. Sniper has zoom state, so zoom level for this gun 5. Probably some more stuff, make sure to check every weapon for key characteristics to store The format for the savelocs should be pretty generic and fit well with saving explosives (#1338) so some theory crafting of how the KV will look will need to be done for both.
1.0
Savelocs should store player weapon state - **What feature is your improvement idea related to? Please describe.** Savelocs in relation to player weapons. **Describe the solution you'd like** Savelocs currently store attack time in them, but nothing else about the current weapon. Savelocs should: 1. Store the current weapon the player is equipping at time of save - The saveloc may have to `pPlayer->GiveWeapon` the weapon if they do not have it. Verify it doesn't give disallowed weapons! 2. Gamemodes like SJ and Conc allow for "charging" the weapon, so charge state/time for these weapons 3. The pistol allows for a "burst mode toggle", so burst mode toggle for this gun 4. Sniper has zoom state, so zoom level for this gun 5. Probably some more stuff, make sure to check every weapon for key characteristics to store The format for the savelocs should be pretty generic and fit well with saving explosives (#1338) so some theory crafting of how the KV will look will need to be done for both.
priority
savelocs should store player weapon state what feature is your improvement idea related to please describe savelocs in relation to player weapons describe the solution you d like savelocs currently store attack time in them but nothing else about the current weapon savelocs should store the current weapon the player is equipping at time of save the saveloc may have to pplayer giveweapon the weapon if they do not have it verify it doesn t give disallowed weapons gamemodes like sj and conc allow for charging the weapon so charge state time for these weapons the pistol allows for a burst mode toggle so burst mode toggle for this gun sniper has zoom state so zoom level for this gun probably some more stuff make sure to check every weapon for key characteristics to store the format for the savelocs should be pretty generic and fit well with saving explosives so some theory crafting of how the kv will look will need to be done for both
1
301,869
9,232,160,608
IssuesEvent
2019-03-13 05:58:27
Railcraft/Railcraft
https://api.github.com/repos/Railcraft/Railcraft
closed
Allow minecarts be invulnerable from mob damage
carts configuration enhancement implemented medium priority
**Is your feature request related to a problem? Please describe.** Mobs may kill minecarts via arrows or explosion, causing issues with automation or ride experience. **Describe the solution you'd like** Add configuration option to allow minecarts be invulnerable from mob damages. **Describe alternatives you've considered** More health may make it harder for players to kill and total invulnerability might not be good for blow ups, etc. **Additional context**
1.0
Allow minecarts be invulnerable from mob damage - **Is your feature request related to a problem? Please describe.** Mobs may kill minecarts via arrows or explosion, causing issues with automation or ride experience. **Describe the solution you'd like** Add configuration option to allow minecarts be invulnerable from mob damages. **Describe alternatives you've considered** More health may make it harder for players to kill and total invulnerability might not be good for blow ups, etc. **Additional context**
priority
allow minecarts be invulnerable from mob damage is your feature request related to a problem please describe mobs may kill minecarts via arrows or explosion causing issues with automation or ride experience describe the solution you d like add configuration option to allow minecarts be invulnerable from mob damages describe alternatives you ve considered more health may make it harder for players to kill and total invulnerability might not be good for blow ups etc additional context
1
272,839
8,518,252,674
IssuesEvent
2018-11-01 10:56:01
CS2103-AY1819S1-F10-2/main
https://api.github.com/repos/CS2103-AY1819S1-F10-2/main
opened
Restructure UI
UI priority.Medium type.Task
- [ ] Hide the browser panel from view, as it is not being used to display anything substantial for now. It may be used in v2.0. - [ ] Shift the display window to where the browser panel currently is. - [ ] Set the bar at the bottom to display money earned thus far.
1.0
Restructure UI - - [ ] Hide the browser panel from view, as it is not being used to display anything substantial for now. It may be used in v2.0. - [ ] Shift the display window to where the browser panel currently is. - [ ] Set the bar at the bottom to display money earned thus far.
priority
restructure ui hide the browser panel from view as it is not being used to display anything substantial for now it may be used in shift the display window to where the browser panel currently is set the bar at the bottom to display money earned thus far
1
363,515
10,741,915,571
IssuesEvent
2019-10-29 21:16:28
AugurProject/augur
https://api.github.com/repos/AugurProject/augur
closed
Help Page
Feature Priority: Medium Product Critical
UI should have a help page with: - User definitions / glossary - FAQ / link to stack overflow faq - Link to discord for more community chat help Some common definitions from Tom to get started that this should go over: Getting started with Augur: 1. Logging In / Connecting. 2. Trading: BUY (Long), SELL (Short), ETH Denomination, Shares, Invalid, Example Trade. 3. Markets: End date, Resolution source, Creator Fees, Market types. 4. My Account: Positions, History, P&L, My Shares. 5. Reporting: Participation Tokens, Disputing, Dispute Rounds, General Reporting Guidelines, Historical Important Resolved Markets, getting fees by Reporting.
1.0
Help Page - UI should have a help page with: - User definitions / glossary - FAQ / link to stack overflow faq - Link to discord for more community chat help Some common definitions from Tom to get started that this should go over: Getting started with Augur: 1. Logging In / Connecting. 2. Trading: BUY (Long), SELL (Short), ETH Denomination, Shares, Invalid, Example Trade. 3. Markets: End date, Resolution source, Creator Fees, Market types. 4. My Account: Positions, History, P&L, My Shares. 5. Reporting: Participation Tokens, Disputing, Dispute Rounds, General Reporting Guidelines, Historical Important Resolved Markets, getting fees by Reporting.
priority
help page ui should have a help page with user definitions glossary faq link to stack overflow faq link to discord for more community chat help some common definitions from tom to get started that this should go over getting started with augur logging in connecting trading buy long sell short eth denomination shares invalid example trade markets end date resolution source creator fees market types my account positions history p l my shares reporting participation tokens disputing dispute rounds general reporting guidelines historical important resolved markets getting fees by reporting
1
57,636
3,083,239,654
IssuesEvent
2015-08-24 07:31:30
magro/memcached-session-manager
https://api.github.com/repos/magro/memcached-session-manager
closed
Session data is coming as null for 2 servers and 2 memcache instances.
bug duplicate imported Priority-Medium
_From [run2chak...@gmail.com](https://code.google.com/u/114984086537297183600/) on May 27, 2013 11:30:51_ Hi, I am having clustering environment with 2 memcache instances and 2 servers and added the jars in tomcat lib directory which are available in the site <a href="https://code.google.com/p/memcached-session-manager/wiki/SetupAndConfiguration" rel="nofollow">https://code.google.com/p/memcached-session-manager/wiki/SetupAndConfiguration</a> &#13; &#13; While disabling the cookies Iam getting the data from the session.&#13; &#13; Problem:&#13; ========&#13; But with enabling cookies am not getting data from the session with multiple tabs on the same browser hitting at the same time.&#13; &#13; Expected:&#13; ========&#13; It should work with enabling/Disabling cookies.&#13; &#13; Configuration in context.xml of tomcat:&#13; &#13; &lt;Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager"&#13; memcachedNodes="n1:localhost:11211"&#13; sticky="false" &#13; operationTimeout="60000" &#13; sessionBackupTimeout="300000"&#13; sessionBackupAsync="false"&#13; lockingMode="none"&#13; transcoderFactoryClass="de.javakaffee.web.msm.JavaSerializationTranscoderFactory"&#13; /&gt;&#13; &#13; Previously without clustering Env we are able to get the data in multiple tabs.&#13; &#13; Now In clustered Env when Iam searching with different search criterias in multiple tabs Iam able to get the data in one tab and Iam getting session as null for other tab in same browser after the results page got displayed in two tabs. There are ajax calls when the page gets displayed, so now problem is we are unable to get the session data for the second search results after the page is loaded which in turn leads to empty data issue even after using the memcache.&#13; &#13; If any one could help in this would be great.&#13; &#13; &#13; Thanks. _Original issue: http://code.google.com/p/memcached-session-manager/issues/detail?id=165_
1.0
Session data is coming as null for 2 servers and 2 memcache instances. - _From [run2chak...@gmail.com](https://code.google.com/u/114984086537297183600/) on May 27, 2013 11:30:51_ Hi, I am having clustering environment with 2 memcache instances and 2 servers and added the jars in tomcat lib directory which are available in the site <a href="https://code.google.com/p/memcached-session-manager/wiki/SetupAndConfiguration" rel="nofollow">https://code.google.com/p/memcached-session-manager/wiki/SetupAndConfiguration</a> &#13; &#13; While disabling the cookies Iam getting the data from the session.&#13; &#13; Problem:&#13; ========&#13; But with enabling cookies am not getting data from the session with multiple tabs on the same browser hitting at the same time.&#13; &#13; Expected:&#13; ========&#13; It should work with enabling/Disabling cookies.&#13; &#13; Configuration in context.xml of tomcat:&#13; &#13; &lt;Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager"&#13; memcachedNodes="n1:localhost:11211"&#13; sticky="false" &#13; operationTimeout="60000" &#13; sessionBackupTimeout="300000"&#13; sessionBackupAsync="false"&#13; lockingMode="none"&#13; transcoderFactoryClass="de.javakaffee.web.msm.JavaSerializationTranscoderFactory"&#13; /&gt;&#13; &#13; Previously without clustering Env we are able to get the data in multiple tabs.&#13; &#13; Now In clustered Env when Iam searching with different search criterias in multiple tabs Iam able to get the data in one tab and Iam getting session as null for other tab in same browser after the results page got displayed in two tabs. There are ajax calls when the page gets displayed, so now problem is we are unable to get the session data for the second search results after the page is loaded which in turn leads to empty data issue even after using the memcache.&#13; &#13; If any one could help in this would be great.&#13; &#13; &#13; Thanks. _Original issue: http://code.google.com/p/memcached-session-manager/issues/detail?id=165_
priority
session data is coming as null for servers and memcache instances from on may hi i am having clustering environment with memcache instances and servers and added the jars in tomcat lib directory which are available in the site while disabling the cookies iam getting the data from the session problem but with enabling cookies am not getting data from the session with multiple tabs on the same browser hitting at the same time expected it should work with enabling disabling cookies configuration in context xml of tomcat lt manager classname de javakaffee web msm memcachedbackupsessionmanager memcachednodes localhost sticky false operationtimeout sessionbackuptimeout sessionbackupasync false lockingmode none transcoderfactoryclass de javakaffee web msm javaserializationtranscoderfactory gt previously without clustering env we are able to get the data in multiple tabs now in clustered env when iam searching with different search criterias in multiple tabs iam able to get the data in one tab and iam getting session as null for other tab in same browser after the results page got displayed in two tabs there are ajax calls when the page gets displayed so now problem is we are unable to get the session data for the second search results after the page is loaded which in turn leads to empty data issue even after using the memcache if any one could help in this would be great thanks original issue
1
415,381
12,128,647,995
IssuesEvent
2020-04-22 20:53:42
OpenApoc/OpenApoc
https://api.github.com/repos/OpenApoc/OpenApoc
closed
Psimorph Stuck in Skeletoids
!BUG! MEDIUM PRIORITY Pathfinding
There is a psimorph and Skeletoid that are "stuck" in the UFO. I believe they are units 2002 and 2005. It appears if the left 2 Skeletoids are stunned with debug, the game runs fine. Without that stunning, the game enters into some infinite loop of trying to restart the mission. [save_Psimorph Stuck, Crashing.zip](https://github.com/OpenApoc/OpenApoc/files/3390184/save_Psimorph.Stuck.Crashing.zip)
1.0
Psimorph Stuck in Skeletoids - There is a psimorph and Skeletoid that are "stuck" in the UFO. I believe they are units 2002 and 2005. It appears if the left 2 Skeletoids are stunned with debug, the game runs fine. Without that stunning, the game enters into some infinite loop of trying to restart the mission. [save_Psimorph Stuck, Crashing.zip](https://github.com/OpenApoc/OpenApoc/files/3390184/save_Psimorph.Stuck.Crashing.zip)
priority
psimorph stuck in skeletoids there is a psimorph and skeletoid that are stuck in the ufo i believe they are units and it appears if the left skeletoids are stunned with debug the game runs fine without that stunning the game enters into some infinite loop of trying to restart the mission
1
175,241
6,548,459,046
IssuesEvent
2017-09-04 22:08:29
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio-ui] only previewable content should have a hover state and be clickable on dashboard
bug Priority: Medium
<img width="1384" alt="screen shot 2017-08-18 at 4 30 23 pm" src="https://user-images.githubusercontent.com/169432/29477109-ed1ac43c-8434-11e7-938b-5234badbf062.png"> Only pages and previewable static assets should be clickable and have a hover-state on the dashboard. Items that cannot be clicked should appear in the same color but without a hover (underline and mouse cursor change).
1.0
[studio-ui] only previewable content should have a hover state and be clickable on dashboard - <img width="1384" alt="screen shot 2017-08-18 at 4 30 23 pm" src="https://user-images.githubusercontent.com/169432/29477109-ed1ac43c-8434-11e7-938b-5234badbf062.png"> Only pages and previewable static assets should be clickable and have a hover-state on the dashboard. Items that cannot be clicked should appear in the same color but without a hover (underline and mouse cursor change).
priority
only previewable content should have a hover state and be clickable on dashboard img width alt screen shot at pm src only pages and previewable static assets should be clickable and have a hover state on the dashboard items that cannot be clicked should appear in the same color but without a hover underline and mouse cursor change
1
249,129
7,953,861,032
IssuesEvent
2018-07-12 04:21:23
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
USER ISSUE: Invisible Wall?
Medium Priority
**Version:** 0.7.3.1 beta **Steps to Reproduce:** Loaded into game after a crash **Expected behavior:** Allowed me to walk around freely and grab my cart **Actual behavior:** there was a roughly 10 by 10 area which looked like flat ground with my cart on it, but instead the "ground" was about 5 blocks higher making me float above it
1.0
USER ISSUE: Invisible Wall? - **Version:** 0.7.3.1 beta **Steps to Reproduce:** Loaded into game after a crash **Expected behavior:** Allowed me to walk around freely and grab my cart **Actual behavior:** there was a roughly 10 by 10 area which looked like flat ground with my cart on it, but instead the "ground" was about 5 blocks higher making me float above it
priority
user issue invisible wall version beta steps to reproduce loaded into game after a crash expected behavior allowed me to walk around freely and grab my cart actual behavior there was a roughly by area which looked like flat ground with my cart on it but instead the ground was about blocks higher making me float above it
1
793,128
27,983,710,938
IssuesEvent
2023-03-26 13:04:52
calcom/cal.com
https://api.github.com/repos/calcom/cal.com
closed
Cancellation page shows "Nameless" instead of the attendee name (+ bonus cosmetic snag)
🐛 bug Medium priority 1 points
### Issue Summary When cancelling a booking with the cancellation link sent to the attendee, the attendee's name is displayed as "Nameless" ![](https://i.imgur.com/ZrHBeT8.gif) Also note Giphy is enabled for the event type shown above & it appears to render incorrectly. ### Steps to Reproduce 1. Book event 2. On the confirmation page, click the cancel button 3. Observe the above behavior
1.0
Cancellation page shows "Nameless" instead of the attendee name (+ bonus cosmetic snag) - ### Issue Summary When cancelling a booking with the cancellation link sent to the attendee, the attendee's name is displayed as "Nameless" ![](https://i.imgur.com/ZrHBeT8.gif) Also note Giphy is enabled for the event type shown above & it appears to render incorrectly. ### Steps to Reproduce 1. Book event 2. On the confirmation page, click the cancel button 3. Observe the above behavior
priority
cancellation page shows nameless instead of the attendee name bonus cosmetic snag issue summary when cancelling a booking with the cancellation link sent to the attendee the attendee s name is displayed as nameless also note giphy is enabled for the event type shown above it appears to render incorrectly steps to reproduce book event on the confirmation page click the cancel button observe the above behavior
1
400,440
11,775,310,952
IssuesEvent
2020-03-16 11:04:54
ooni/ooni.org
https://api.github.com/repos/ooni/ooni.org
opened
Come up with best practice for dealing with test vectors
discuss priority/medium
During the OONI team meeting we discussed the topic of test vectors and how we can collect some set of these for the purpose of testing the apps. We didn't come up with a desired location or pattern, but agreed it's an important thing to think about. This is related to ooni/probe-engine#405.
1.0
Come up with best practice for dealing with test vectors - During the OONI team meeting we discussed the topic of test vectors and how we can collect some set of these for the purpose of testing the apps. We didn't come up with a desired location or pattern, but agreed it's an important thing to think about. This is related to ooni/probe-engine#405.
priority
come up with best practice for dealing with test vectors during the ooni team meeting we discussed the topic of test vectors and how we can collect some set of these for the purpose of testing the apps we didn t come up with a desired location or pattern but agreed it s an important thing to think about this is related to ooni probe engine
1
52,541
3,023,833,574
IssuesEvent
2015-08-01 23:05:37
WarGamesLabs/Jack
https://api.github.com/repos/WarGamesLabs/Jack
closed
Protocol: CAN
auto-migrated Priority-Medium Type-Enhancement
``` Controller area network protocol. What type of physical layer transceiver is needed? ``` Original issue reported on code.google.com by `ianles...@gmail.com` on 31 Mar 2009 at 2:34
1.0
Protocol: CAN - ``` Controller area network protocol. What type of physical layer transceiver is needed? ``` Original issue reported on code.google.com by `ianles...@gmail.com` on 31 Mar 2009 at 2:34
priority
protocol can controller area network protocol what type of physical layer transceiver is needed original issue reported on code google com by ianles gmail com on mar at
1
92,695
3,872,900,765
IssuesEvent
2016-04-11 15:16:00
jcgregorio/httplib2
https://api.github.com/repos/jcgregorio/httplib2
closed
Provide cookies parsing, autosaving and autosending
enhancement imported Priority-Medium
_From [Morg...@gmail.com](https://code.google.com/u/111222599772602811903/) on September 01, 2007 01:20:25_ This feature in Perl's LWP::UserAgent is really great! _Original issue: http://code.google.com/p/httplib2/issues/detail?id=11_
1.0
Provide cookies parsing, autosaving and autosending - _From [Morg...@gmail.com](https://code.google.com/u/111222599772602811903/) on September 01, 2007 01:20:25_ This feature in Perl's LWP::UserAgent is really great! _Original issue: http://code.google.com/p/httplib2/issues/detail?id=11_
priority
provide cookies parsing autosaving and autosending from on september this feature in perl s lwp useragent is really great original issue
1
594,008
18,021,819,331
IssuesEvent
2021-09-16 20:30:25
airshipit/airshipctl
https://api.github.com/repos/airshipit/airshipctl
closed
Fully Implement `gating` Type for Use By All Provider Types
enhancement 2-Manifests ready for review 4-CI/CD priority/medium size m
**Problem description** In #564 work will be done to create a normalized phase plan for all provider types in the `gating` type. Need to build out the rest of the type so that common entrypoints and manifests are managed at a common type level. **Proposed change** Make the `gating` type a fully-fledged type by moving the meat of the phase payload entrypoints from the site level to the type level. The site-level phase payload entrypoints will be very skinny after this (just like in treasuremap), making only the tweaks that are needed to tune the phase payloads per-provider.
1.0
Fully Implement `gating` Type for Use By All Provider Types - **Problem description** In #564 work will be done to create a normalized phase plan for all provider types in the `gating` type. Need to build out the rest of the type so that common entrypoints and manifests are managed at a common type level. **Proposed change** Make the `gating` type a fully-fledged type by moving the meat of the phase payload entrypoints from the site level to the type level. The site-level phase payload entrypoints will be very skinny after this (just like in treasuremap), making only the tweaks that are needed to tune the phase payloads per-provider.
priority
fully implement gating type for use by all provider types problem description in work will be done to create a normalized phase plan for all provider types in the gating type need to build out the rest of the type so that common entrypoints and manifests are managed at a common type level proposed change make the gating type a fully fledged type by moving the meat of the phase payload entrypoints from the site level to the type level the site level phase payload entrypoints will be very skinny after this just like in treasuremap making only the tweaks that are needed to tune the phase payloads per provider
1
413,917
12,093,355,873
IssuesEvent
2020-04-19 19:17:55
busy-beaver-dev/busy-beaver
https://api.github.com/repos/busy-beaver-dev/busy-beaver
closed
Replicate Travis CI/CD with Azure Pipelines
effort medium good first issue priority low spike
Originally planned on completing #13 with Azure Pipelines so I could [build one to throw away](http://wiki.c2.com/?PlanToThrowOneAway) before starting a work project. Learning CI/CD on top of Azure Pipelines was too much of a reach on my part. I am familiar with [travis-ci](https://travis-ci.org/) (interface, integrations, secrets management, etc) so I decided to focus on learning CI/CD in this environment. Still gotta figure out Azure Pipelines with Docker. Docs are fantastic. #### Notes - Use the Docker plugin, I have already entered my credentials #### Resources - [Azure Pipelines -- Docker Docs](https://docs.microsoft.com/en-us/azure/devops/pipelines/languages/docker?view=vsts&tabs=yaml) - [Azure Pipelines -- Deploy Docker Webapp](https://docs.microsoft.com/en-us/azure/devops/pipelines/apps/cd/deploy-docker-webapp?view=vsts) - [Migrate from Travis to Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/migrate/from-travis?view=azure-devops) - [Azure Pipelines with Python — by example](https://medium.com/@anthonypjshaw/azure-pipelines-with-python-by-example-aa65f4070634)
1.0
Replicate Travis CI/CD with Azure Pipelines - Originally planned on completing #13 with Azure Pipelines so I could [build one to throw away](http://wiki.c2.com/?PlanToThrowOneAway) before starting a work project. Learning CI/CD on top of Azure Pipelines was too much of a reach on my part. I am familiar with [travis-ci](https://travis-ci.org/) (interface, integrations, secrets management, etc) so I decided to focus on learning CI/CD in this environment. Still gotta figure out Azure Pipelines with Docker. Docs are fantastic. #### Notes - Use the Docker plugin, I have already entered my credentials #### Resources - [Azure Pipelines -- Docker Docs](https://docs.microsoft.com/en-us/azure/devops/pipelines/languages/docker?view=vsts&tabs=yaml) - [Azure Pipelines -- Deploy Docker Webapp](https://docs.microsoft.com/en-us/azure/devops/pipelines/apps/cd/deploy-docker-webapp?view=vsts) - [Migrate from Travis to Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/migrate/from-travis?view=azure-devops) - [Azure Pipelines with Python — by example](https://medium.com/@anthonypjshaw/azure-pipelines-with-python-by-example-aa65f4070634)
priority
replicate travis ci cd with azure pipelines originally planned on completing with azure pipelines so i could before starting a work project learning ci cd on top of azure pipelines was too much of a reach on my part i am familiar with interface integrations secrets management etc so i decided to focus on learning ci cd in this environment still gotta figure out azure pipelines with docker docs are fantastic notes use the docker plugin i have already entered my credentials resources
1
781,111
27,423,047,614
IssuesEvent
2023-03-01 18:04:30
svthalia/concrexit
https://api.github.com/repos/svthalia/concrexit
closed
LinkedIn icon doesn't redirect properly
priority: medium bug
### Describe the bug When clicking on the linkedin logo at the bottom of the site, it doesn't correctly redirect to the linkedin page ### How to reproduce Steps to reproduce the behaviour: 1. Go to any page on the site 2. Scroll to the bottom 3. Click on the linkedin icon ### Expected behaviour The logo should redirect to https://www.linkedin.com/company/study-association-thalia
1.0
LinkedIn icon doesn't redirect properly - ### Describe the bug When clicking on the linkedin logo at the bottom of the site, it doesn't correctly redirect to the linkedin page ### How to reproduce Steps to reproduce the behaviour: 1. Go to any page on the site 2. Scroll to the bottom 3. Click on the linkedin icon ### Expected behaviour The logo should redirect to https://www.linkedin.com/company/study-association-thalia
priority
linkedin icon doesn t redirect properly describe the bug when clicking on the linkedin logo at the bottom of the site it doesn t correctly redirect to the linkedin page how to reproduce steps to reproduce the behaviour go to any page on the site scroll to the bottom click on the linkedin icon expected behaviour the logo should redirect to
1
426,279
12,370,342,985
IssuesEvent
2020-05-18 16:38:29
svthalia/concrexit
https://api.github.com/repos/svthalia/concrexit
closed
Hyperlink of "display [event] on website" button always refers to thalia.nu (also on staging)
bug priority: medium refactor
In GitLab by @JobDoesburg on Dec 4, 2019, 19:26 ### One-sentence description Hyperlink of "display [event] on website" button <s>is hardcoded</s> always refers to thalia.nu (also on staging) ### Current behaviour / Reproducing the bug <!-- Please write what is happening and how we could reproduce it, if relevant --> At staging.thalia.nu, the action button "display on website" (in the events admin) refers to thalia.nu ### Expected behaviour Be a relative url (to staging.thalia.nu)
1.0
Hyperlink of "display [event] on website" button always refers to thalia.nu (also on staging) - In GitLab by @JobDoesburg on Dec 4, 2019, 19:26 ### One-sentence description Hyperlink of "display [event] on website" button <s>is hardcoded</s> always refers to thalia.nu (also on staging) ### Current behaviour / Reproducing the bug <!-- Please write what is happening and how we could reproduce it, if relevant --> At staging.thalia.nu, the action button "display on website" (in the events admin) refers to thalia.nu ### Expected behaviour Be a relative url (to staging.thalia.nu)
priority
hyperlink of display on website button always refers to thalia nu also on staging in gitlab by jobdoesburg on dec one sentence description hyperlink of display on website button is hardcoded always refers to thalia nu also on staging current behaviour reproducing the bug at staging thalia nu the action button display on website in the events admin refers to thalia nu expected behaviour be a relative url to staging thalia nu
1
715,173
24,589,171,999
IssuesEvent
2022-10-13 23:19:10
bcgov/ols-geocoder
https://api.github.com/repos/bcgov/ols-geocoder
closed
Generate locality aliases for all adjacent DRA localities
admin app data integration data prep scripts data medium priority bronze snapshot
In data integration process, generate locality aliases for all adjacent DRA localities. Update geocoder admin app to handle generated aliases.
1.0
Generate locality aliases for all adjacent DRA localities - In data integration process, generate locality aliases for all adjacent DRA localities. Update geocoder admin app to handle generated aliases.
priority
generate locality aliases for all adjacent dra localities in data integration process generate locality aliases for all adjacent dra localities update geocoder admin app to handle generated aliases
1
363,437
10,741,097,170
IssuesEvent
2019-10-29 19:31:10
eriq-augustine/test-issue-copy
https://api.github.com/repos/eriq-augustine/test-issue-copy
opened
Merge RDBMS Database into Core Database
Components - Database Difficulty - Medium Priority - Normal Type - Refactor
<a href="https://github.com/eriq-augustine"><img src="https://avatars0.githubusercontent.com/u/337857?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [eriq-augustine](https://github.com/eriq-augustine)** _Saturday Aug 17, 2019 at 11:22 GMT_ _Originally opened as https://github.com/eriq-augustine/psl/issues/212_ ---- I am getting tired of pretending that a Database is backed by anything other than a RDBMSDatabase. There are quite a few places in the code where we force the use of an RDBMSDatabase, so we should just go with it and make them the same thing. This would put a lot of code in a single class, but that is typically the case with database-like classes. Investigate this matter.
1.0
Merge RDBMS Database into Core Database - <a href="https://github.com/eriq-augustine"><img src="https://avatars0.githubusercontent.com/u/337857?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [eriq-augustine](https://github.com/eriq-augustine)** _Saturday Aug 17, 2019 at 11:22 GMT_ _Originally opened as https://github.com/eriq-augustine/psl/issues/212_ ---- I am getting tired of pretending that a Database is backed by anything other than a RDBMSDatabase. There are quite a few places in the code where we force the use of an RDBMSDatabase, so we should just go with it and make them the same thing. This would put a lot of code in a single class, but that is typically the case with database-like classes. Investigate this matter.
priority
merge rdbms database into core database issue by saturday aug at gmt originally opened as i am getting tired of pretending that a database is backed by anything other than a rdbmsdatabase there are quite a few places in the code where we force the use of an rdbmsdatabase so we should just go with it and make them the same thing this would put a lot of code in a single class but that is typically the case with database like classes investigate this matter
1
606,019
18,753,622,820
IssuesEvent
2021-11-05 07:42:27
nimblehq/nimble-medium-ios
https://api.github.com/repos/nimblehq/nimble-medium-ios
closed
As a user, I can comment on an article in the comments history screen
type : feature category: integration priority : medium
## Why When the users login the application successfully, they can add a comment to any article in the `Comments History` screen. ## Acceptance Criteria - [ ] Show the post comment section only when users are logged in successfully, otherwise hide it. - [ ] Disable the `Post` button by default. - [ ] When the users update with non-empty values on the comment textview, enable the `Post` button and need to check to disable the button again if the users input is empty. - [ ] When the users press the `Post` button, call the API to post the comment and disable the comment textview and the `Post` button while doing so. - [ ] When there is an error while posting the comment to the article, show a temporary toast message with text: `Something went wrong. Please try again later.` - [ ] If the posting comment task is successful, reload the list of comments table view below with latest data to show the newly posted comment. - [ ] Re-enable the comment textview and the `Post` button after the API call completes regardless it is successful or not. ## Resource - Sample UX flow: https://user-images.githubusercontent.com/70877098/130319983-b0a1ec72-ed14-4d53-9392-3096755a98a4.mov
1.0
As a user, I can comment on an article in the comments history screen - ## Why When the users login the application successfully, they can add a comment to any article in the `Comments History` screen. ## Acceptance Criteria - [ ] Show the post comment section only when users are logged in successfully, otherwise hide it. - [ ] Disable the `Post` button by default. - [ ] When the users update with non-empty values on the comment textview, enable the `Post` button and need to check to disable the button again if the users input is empty. - [ ] When the users press the `Post` button, call the API to post the comment and disable the comment textview and the `Post` button while doing so. - [ ] When there is an error while posting the comment to the article, show a temporary toast message with text: `Something went wrong. Please try again later.` - [ ] If the posting comment task is successful, reload the list of comments table view below with latest data to show the newly posted comment. - [ ] Re-enable the comment textview and the `Post` button after the API call completes regardless it is successful or not. ## Resource - Sample UX flow: https://user-images.githubusercontent.com/70877098/130319983-b0a1ec72-ed14-4d53-9392-3096755a98a4.mov
priority
as a user i can comment on an article in the comments history screen why when the users login the application successfully they can add a comment to any article in the comments history screen acceptance criteria show the post comment section only when users are logged in successfully otherwise hide it disable the post button by default when the users update with non empty values on the comment textview enable the post button and need to check to disable the button again if the users input is empty when the users press the post button call the api to post the comment and disable the comment textview and the post button while doing so when there is an error while posting the comment to the article show a temporary toast message with text something went wrong please try again later if the posting comment task is successful reload the list of comments table view below with latest data to show the newly posted comment re enable the comment textview and the post button after the api call completes regardless it is successful or not resource sample ux flow
1
90,518
3,822,663,261
IssuesEvent
2016-03-30 02:44:42
Sonarr/Sonarr
https://api.github.com/repos/Sonarr/Sonarr
closed
Prevent grabbing season packs if full season hasnt aired
priority:medium proposal suboptimal
Sometimes specials look like season packs to Sonarr and it will grab one and screw up other geabs in the season. If we did a check to make sure all the episodes have aired then we could prevent this issue before it occurs.
1.0
Prevent grabbing season packs if full season hasnt aired - Sometimes specials look like season packs to Sonarr and it will grab one and screw up other geabs in the season. If we did a check to make sure all the episodes have aired then we could prevent this issue before it occurs.
priority
prevent grabbing season packs if full season hasnt aired sometimes specials look like season packs to sonarr and it will grab one and screw up other geabs in the season if we did a check to make sure all the episodes have aired then we could prevent this issue before it occurs
1
691,071
23,681,871,474
IssuesEvent
2022-08-28 22:45:54
WordPress/openverse-frontend
https://api.github.com/repos/WordPress/openverse-frontend
opened
initialFocus did not return a node
bug 🟨 priority: medium 🛠 goal: fix
## Description While looking into #1737, i found that i occasionally receive `Uncaught Error: `initialFocus` did not return a node` while clicking the mobile filter button repeatedly. Could possibly be the reason of the tests failing ## Reproduction <!-- Provide detailed steps to reproduce the bug. --> 1. go to https://search-production.openverse.engineering/search/?q=cat 2. enter dev tools and select mobile (responsive mode) 3. you can also edit user agent if you want but it works on all that i tried (samsung,iphone,huawei) 4. spam the filter button with the console open until you see the error ## Screenshots <!-- Add screenshots to show the problem; or delete the section entirely. --> ![image](https://user-images.githubusercontent.com/55840806/187097600-43d70d93-97dd-4182-bbef-711793d77372.png) ## Environment I tried using both the development branch of chrome (Chrome dev) and firefox stable branch on ubuntu 20.04 lts. Tried a couple of UA but seems to be reproducible on any environment but only sometimes ## Resolution <!-- Replace the [ ] with [x] to check the box. --> - [x] 🙋 I would be interested in resolving this bug. I'm looking into it right now, if you know what might be causing it lmk!
1.0
initialFocus did not return a node - ## Description While looking into #1737, i found that i occasionally receive `Uncaught Error: `initialFocus` did not return a node` while clicking the mobile filter button repeatedly. Could possibly be the reason of the tests failing ## Reproduction <!-- Provide detailed steps to reproduce the bug. --> 1. go to https://search-production.openverse.engineering/search/?q=cat 2. enter dev tools and select mobile (responsive mode) 3. you can also edit user agent if you want but it works on all that i tried (samsung,iphone,huawei) 4. spam the filter button with the console open until you see the error ## Screenshots <!-- Add screenshots to show the problem; or delete the section entirely. --> ![image](https://user-images.githubusercontent.com/55840806/187097600-43d70d93-97dd-4182-bbef-711793d77372.png) ## Environment I tried using both the development branch of chrome (Chrome dev) and firefox stable branch on ubuntu 20.04 lts. Tried a couple of UA but seems to be reproducible on any environment but only sometimes ## Resolution <!-- Replace the [ ] with [x] to check the box. --> - [x] 🙋 I would be interested in resolving this bug. I'm looking into it right now, if you know what might be causing it lmk!
priority
initialfocus did not return a node description while looking into i found that i occasionally receive uncaught error initialfocus did not return a node while clicking the mobile filter button repeatedly could possibly be the reason of the tests failing reproduction go to enter dev tools and select mobile responsive mode you can also edit user agent if you want but it works on all that i tried samsung iphone huawei spam the filter button with the console open until you see the error screenshots environment i tried using both the development branch of chrome chrome dev and firefox stable branch on ubuntu lts tried a couple of ua but seems to be reproducible on any environment but only sometimes resolution 🙋 i would be interested in resolving this bug i m looking into it right now if you know what might be causing it lmk
1
5,055
2,570,892,584
IssuesEvent
2015-02-10 13:12:03
xhtmlized/generator-xh
https://api.github.com/repos/xhtmlized/generator-xh
opened
Performance optimization tasks
Medium priority Workflow Change
Can we add some performance optimization tasks? For beginning would be nice to have an option to minify main.css and main.js. Although not sure if some more generic approach wouldn't be better like to have a dev folder for development and dist folder for production ready code and assets.
1.0
Performance optimization tasks - Can we add some performance optimization tasks? For beginning would be nice to have an option to minify main.css and main.js. Although not sure if some more generic approach wouldn't be better like to have a dev folder for development and dist folder for production ready code and assets.
priority
performance optimization tasks can we add some performance optimization tasks for beginning would be nice to have an option to minify main css and main js although not sure if some more generic approach wouldn t be better like to have a dev folder for development and dist folder for production ready code and assets
1
583,929
17,401,477,418
IssuesEvent
2021-08-02 20:21:44
IlchCMS/Ilch-2.0
https://api.github.com/repos/IlchCMS/Ilch-2.0
closed
A guest/user might not see the intended count of articles
Priority: Medium Type: Bug
**Describe the bug** Example: It was configured to show 10 articles per page. Some of the articles are not visible for guests, but there are more than 10 articles. The guest sees less than 10 articles and the pagination is weird, because the articles he is not allowed to see are not added to the view after 10 articles got fetched from the database. **To Reproduce** Steps to reproduce the behavior: 1. Create at least 10 articles an guest could see, but some are only for administrators. 2. Set number of articles per page to 10 3. Visit the articles as a guest. 4. See error (less than 10 articles, pagination is weird) **Expected behavior** The guest should see 10 articles and the pagination should not look like there are more. **Screenshots** ![wrongArticleCountPagination](https://user-images.githubusercontent.com/18415497/86448949-c548c700-bd17-11ea-84a9-ed237fa680e4.png) **Additional context** https://www.ilch.de/forum-showposts-56346.html https://www.ilch.de/forum-showposts-56291-p1.html#400582
1.0
A guest/user might not see the intended count of articles - **Describe the bug** Example: It was configured to show 10 articles per page. Some of the articles are not visible for guests, but there are more than 10 articles. The guest sees less than 10 articles and the pagination is weird, because the articles he is not allowed to see are not added to the view after 10 articles got fetched from the database. **To Reproduce** Steps to reproduce the behavior: 1. Create at least 10 articles an guest could see, but some are only for administrators. 2. Set number of articles per page to 10 3. Visit the articles as a guest. 4. See error (less than 10 articles, pagination is weird) **Expected behavior** The guest should see 10 articles and the pagination should not look like there are more. **Screenshots** ![wrongArticleCountPagination](https://user-images.githubusercontent.com/18415497/86448949-c548c700-bd17-11ea-84a9-ed237fa680e4.png) **Additional context** https://www.ilch.de/forum-showposts-56346.html https://www.ilch.de/forum-showposts-56291-p1.html#400582
priority
a guest user might not see the intended count of articles describe the bug example it was configured to show articles per page some of the articles are not visible for guests but there are more than articles the guest sees less than articles and the pagination is weird because the articles he is not allowed to see are not added to the view after articles got fetched from the database to reproduce steps to reproduce the behavior create at least articles an guest could see but some are only for administrators set number of articles per page to visit the articles as a guest see error less than articles pagination is weird expected behavior the guest should see articles and the pagination should not look like there are more screenshots additional context
1
681,702
23,320,838,214
IssuesEvent
2022-08-08 16:13:27
0xPolygonHermez/zkevm-bridge-ui
https://api.github.com/repos/0xPolygonHermez/zkevm-bridge-ui
closed
Fix the Bridge version in the Settings view
priority: medium type: bug
## Summary of Bug When we updated to Vite from CRA we lost the version in the `Settings` component. We need to display it again.
1.0
Fix the Bridge version in the Settings view - ## Summary of Bug When we updated to Vite from CRA we lost the version in the `Settings` component. We need to display it again.
priority
fix the bridge version in the settings view summary of bug when we updated to vite from cra we lost the version in the settings component we need to display it again
1
23,968
2,665,113,414
IssuesEvent
2015-03-20 18:24:31
FWAJL/FieldWorkAssistantMVC
https://api.github.com/repos/FWAJL/FieldWorkAssistantMVC
opened
Active Task - Discussion Thread
priority:medium
Part 5 of Issue 404. Prepare Discussion Thread tab contents. ![screen shot 2015-03-20 at 11 22 15 am](https://cloud.githubusercontent.com/assets/8228624/6758155/6f24d5de-cef3-11e4-8ec1-78e8fd14a915.png) ![screen shot 2015-03-20 at 11 22 27 am](https://cloud.githubusercontent.com/assets/8228624/6758161/77d3ac3c-cef3-11e4-85e5-6201b9c6f029.png) ![screen shot 2015-03-20 at 11 22 30 am](https://cloud.githubusercontent.com/assets/8228624/6758165/7fb24abc-cef3-11e4-9c8c-baec26ea4eeb.png) The right hand column will show the list of Service Providers and Technicians. The Service Providers and Technicians are selectable. The Service Providers for the Task are identified where task.task_id = task_service.task_id and task.task_id is the selected task. The Technicians for the Task are identified where task.task_id = task_techncian.task_id and task.task_id is the selected task. Selecting one of the right hand side options opens the discussion thread (left hand side) and will set a session variable ($currentDiscussion) that will be used to control the discussion. Use a left arrow in the center column to select (“promote_buttons.php” module). After selection, The breadcrumb in the header updates with the selected Technician or Service Provider. There will be center column buttons to “Send” the new message and “Attach” files. Use the “task_buttons.php” module as a template for the buttons. Implementation of the Discussion thread will be a separate SOW.
1.0
Active Task - Discussion Thread - Part 5 of Issue 404. Prepare Discussion Thread tab contents. ![screen shot 2015-03-20 at 11 22 15 am](https://cloud.githubusercontent.com/assets/8228624/6758155/6f24d5de-cef3-11e4-8ec1-78e8fd14a915.png) ![screen shot 2015-03-20 at 11 22 27 am](https://cloud.githubusercontent.com/assets/8228624/6758161/77d3ac3c-cef3-11e4-85e5-6201b9c6f029.png) ![screen shot 2015-03-20 at 11 22 30 am](https://cloud.githubusercontent.com/assets/8228624/6758165/7fb24abc-cef3-11e4-9c8c-baec26ea4eeb.png) The right hand column will show the list of Service Providers and Technicians. The Service Providers and Technicians are selectable. The Service Providers for the Task are identified where task.task_id = task_service.task_id and task.task_id is the selected task. The Technicians for the Task are identified where task.task_id = task_techncian.task_id and task.task_id is the selected task. Selecting one of the right hand side options opens the discussion thread (left hand side) and will set a session variable ($currentDiscussion) that will be used to control the discussion. Use a left arrow in the center column to select (“promote_buttons.php” module). After selection, The breadcrumb in the header updates with the selected Technician or Service Provider. There will be center column buttons to “Send” the new message and “Attach” files. Use the “task_buttons.php” module as a template for the buttons. Implementation of the Discussion thread will be a separate SOW.
priority
active task discussion thread part of issue prepare discussion thread tab contents the right hand column will show the list of service providers and technicians the service providers and technicians are selectable the service providers for the task are identified where task task id task service task id and task task id is the selected task the technicians for the task are identified where task task id task techncian task id and task task id is the selected task selecting one of the right hand side options opens the discussion thread left hand side and will set a session variable currentdiscussion that will be used to control the discussion use a left arrow in the center column to select “promote buttons php” module after selection the breadcrumb in the header updates with the selected technician or service provider there will be center column buttons to “send” the new message and “attach” files use the “task buttons php” module as a template for the buttons implementation of the discussion thread will be a separate sow
1
69,865
3,316,176,906
IssuesEvent
2015-11-06 15:49:54
craftjk/issue-migration-test6
https://api.github.com/repos/craftjk/issue-migration-test6
opened
j5 results zipfile should include DeviceEditor JSON
imported Priority: Medium Type: Enhancement
<a href="https://github.com/KeeganW"><img src="https://avatars.githubusercontent.com/u/7226822?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [KeeganW](https://github.com/KeeganW)** _Tuesday Jun 10, 2014 at 23:10 GMT_ _Originally opened as https://github.com/TeselaGen/ve/issues/71_ ---- Yuri Bendaña commented May 23, 2013 16:40 Noted by Nathan. This will allow the user to easily input the design later, assuming that they no longer can access the original stored design.
1.0
j5 results zipfile should include DeviceEditor JSON - <a href="https://github.com/KeeganW"><img src="https://avatars.githubusercontent.com/u/7226822?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [KeeganW](https://github.com/KeeganW)** _Tuesday Jun 10, 2014 at 23:10 GMT_ _Originally opened as https://github.com/TeselaGen/ve/issues/71_ ---- Yuri Bendaña commented May 23, 2013 16:40 Noted by Nathan. This will allow the user to easily input the design later, assuming that they no longer can access the original stored design.
priority
results zipfile should include deviceeditor json issue by tuesday jun at gmt originally opened as yuri bendaña commented may noted by nathan this will allow the user to easily input the design later assuming that they no longer can access the original stored design
1
641,941
20,862,780,883
IssuesEvent
2022-03-22 01:46:08
khalidsaadat/soen341
https://api.github.com/repos/khalidsaadat/soen341
closed
[USER STORY] As a normal user, I can add a product to the wish list so that I can look/buy it later.
user story 3 pts Medium Priority Low Risk
### Tasks: - [x] #37 - [x] #76 ### Acceptance Test: 1. User has the ability to click on the "add to wishlist" button. 2. Once clicked, the item is added in wish list and stored in the database. 3. User has the ability to access the "Wish Lists" page.
1.0
[USER STORY] As a normal user, I can add a product to the wish list so that I can look/buy it later. - ### Tasks: - [x] #37 - [x] #76 ### Acceptance Test: 1. User has the ability to click on the "add to wishlist" button. 2. Once clicked, the item is added in wish list and stored in the database. 3. User has the ability to access the "Wish Lists" page.
priority
as a normal user i can add a product to the wish list so that i can look buy it later tasks acceptance test user has the ability to click on the add to wishlist button once clicked the item is added in wish list and stored in the database user has the ability to access the wish lists page
1
296,415
9,115,414,371
IssuesEvent
2019-02-22 04:50:13
IBM/carbon-components
https://api.github.com/repos/IBM/carbon-components
closed
Keyboard user cannot access overflow menu items in Data Table v2 component
priority: medium project: components type: a11y ♿ type: dev :robot:
## Environment Chrome 70 macOS Mojave ## Violation The user can fire the overflow menu on a Data Table row, but cannot enter the menu or select the menu items inside.
1.0
Keyboard user cannot access overflow menu items in Data Table v2 component - ## Environment Chrome 70 macOS Mojave ## Violation The user can fire the overflow menu on a Data Table row, but cannot enter the menu or select the menu items inside.
priority
keyboard user cannot access overflow menu items in data table component environment chrome macos mojave violation the user can fire the overflow menu on a data table row but cannot enter the menu or select the menu items inside
1
20,093
2,622,185,030
IssuesEvent
2015-03-04 00:20:27
byzhang/signal-collect
https://api.github.com/repos/byzhang/signal-collect
closed
Improve high-level developer documentation
1.0 auto-migrated Priority-Medium Type-Enhancement
``` What's the general project architecture? How do the different components interact? ``` Original issue reported on code.google.com by `philip.stutz` on 10 Oct 2011 at 12:45
1.0
Improve high-level developer documentation - ``` What's the general project architecture? How do the different components interact? ``` Original issue reported on code.google.com by `philip.stutz` on 10 Oct 2011 at 12:45
priority
improve high level developer documentation what s the general project architecture how do the different components interact original issue reported on code google com by philip stutz on oct at
1
453,458
13,079,897,387
IssuesEvent
2020-08-01 05:16:49
WaifuHarem/waifu-server
https://api.github.com/repos/WaifuHarem/waifu-server
closed
Require Eslint on new pushes / pull requests
Medium Priority
Eslint required on codebase updates to the WIP branch. Nessecary to keep styling consistent across the codebase.
1.0
Require Eslint on new pushes / pull requests - Eslint required on codebase updates to the WIP branch. Nessecary to keep styling consistent across the codebase.
priority
require eslint on new pushes pull requests eslint required on codebase updates to the wip branch nessecary to keep styling consistent across the codebase
1
357,596
10,615,962,116
IssuesEvent
2019-10-12 08:16:01
ChainSafe/gossamer
https://api.github.com/repos/ChainSafe/gossamer
closed
Research Initialization & Genesis
Priority: 3 - Medium startup & genesis
We need a complete list of startup requirements. Please look at the Alexander testnet configuration/startup. Below we've listed some of the requirements, please confirm/add to that list. - runtime blob → load into trie at `:code` - starting authorities list? - network name/ID (eg. kusama, alexander, gossamer-testnet) ... Acceptance Criteria: - A document (on Notion) with a list of an order list of the actions that need to be taken at startup - A document (on Notion) with a list of items we expect to be in the genesis file (and their format)
1.0
Research Initialization & Genesis - We need a complete list of startup requirements. Please look at the Alexander testnet configuration/startup. Below we've listed some of the requirements, please confirm/add to that list. - runtime blob → load into trie at `:code` - starting authorities list? - network name/ID (eg. kusama, alexander, gossamer-testnet) ... Acceptance Criteria: - A document (on Notion) with a list of an order list of the actions that need to be taken at startup - A document (on Notion) with a list of items we expect to be in the genesis file (and their format)
priority
research initialization genesis we need a complete list of startup requirements please look at the alexander testnet configuration startup below we ve listed some of the requirements please confirm add to that list runtime blob → load into trie at code starting authorities list network name id eg kusama alexander gossamer testnet acceptance criteria a document on notion with a list of an order list of the actions that need to be taken at startup a document on notion with a list of items we expect to be in the genesis file and their format
1
401,117
11,785,866,252
IssuesEvent
2020-03-17 11:07:04
wp-media/wp-rocket
https://api.github.com/repos/wp-media/wp-rocket
opened
PHP Warnings after update and on 1st preload
module: preload needs: grooming priority: medium
**Describe the bug** The customer's debug log file is filled with PHP Warnings for `_temp` file extensions not found after updating to 3.5.0.3 and only on the 1st preload. Here's the log they shared: ``` [13-Mar-2020 08:29:55 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/0-credit-card-abroad/index-https.html_gzip_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:09 UTC] PHP Warning: chmod(): No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 168 [13-Mar-2020 08:30:09 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/credit-card-minimum-payment/index-mobile-https.html_gzip_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:10 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/0-credit-card-abroad/index-mobile-https.html_gzip_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:21 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/about/index-mobile-https.html_gzip_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:38 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/press/index-mobile-https.html_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:41 UTC] PHP Warning: chmod(): No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 168 [13-Mar-2020 08:30:41 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/privacy-policy/index-mobile-https.html_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:43 UTC] PHP Warning: chmod(): No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 168 [13-Mar-2020 08:30:43 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/resources/index-mobile-https.html_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 ``` - The errors did not reoccur. - When launching a new preload, no warnings or errors were generated. - When updating to 3.5.0.4, no warnings or errors were generated. **To Reproduce** Steps to reproduce the behavior: 1. Install 3.4.4. 2. Generate the preload. 3. Clear the debug log <- just to be sure. 4. Update to 3.5.0.3. 5. Check the debug log. **Expected behavior** Update and generate preload without PHP warnings. **Additional context** - WordPress: v5.3.2 - Rocket: 3.5.0.3 - [HS Ticket](https://secure.helpscout.net/conversation/1108808884/151489?folderId=273768)
1.0
PHP Warnings after update and on 1st preload - **Describe the bug** The customer's debug log file is filled with PHP Warnings for `_temp` file extensions not found after updating to 3.5.0.3 and only on the 1st preload. Here's the log they shared: ``` [13-Mar-2020 08:29:55 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/0-credit-card-abroad/index-https.html_gzip_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:09 UTC] PHP Warning: chmod(): No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 168 [13-Mar-2020 08:30:09 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/credit-card-minimum-payment/index-mobile-https.html_gzip_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:10 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/0-credit-card-abroad/index-mobile-https.html_gzip_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:21 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/about/index-mobile-https.html_gzip_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:38 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/press/index-mobile-https.html_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:41 UTC] PHP Warning: chmod(): No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 168 [13-Mar-2020 08:30:41 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/privacy-policy/index-mobile-https.html_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 [13-Mar-2020 08:30:43 UTC] PHP Warning: chmod(): No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 168 [13-Mar-2020 08:30:43 UTC] PHP Warning: copy(/home/****/wp-content/cache/wp-rocket/www.0creditcardexpert.co.uk/resources/index-mobile-https.html_temp): failed to open stream: No such file or directory in /home/****/wp-admin/includes/class-wp-filesystem-direct.php on line 281 ``` - The errors did not reoccur. - When launching a new preload, no warnings or errors were generated. - When updating to 3.5.0.4, no warnings or errors were generated. **To Reproduce** Steps to reproduce the behavior: 1. Install 3.4.4. 2. Generate the preload. 3. Clear the debug log <- just to be sure. 4. Update to 3.5.0.3. 5. Check the debug log. **Expected behavior** Update and generate preload without PHP warnings. **Additional context** - WordPress: v5.3.2 - Rocket: 3.5.0.3 - [HS Ticket](https://secure.helpscout.net/conversation/1108808884/151489?folderId=273768)
priority
php warnings after update and on preload describe the bug the customer s debug log file is filled with php warnings for temp file extensions not found after updating to and only on the preload here s the log they shared php warning copy home wp content cache wp rocket failed to open stream no such file or directory in home wp admin includes class wp filesystem direct php on line php warning chmod no such file or directory in home wp admin includes class wp filesystem direct php on line php warning copy home wp content cache wp rocket failed to open stream no such file or directory in home wp admin includes class wp filesystem direct php on line php warning copy home wp content cache wp rocket failed to open stream no such file or directory in home wp admin includes class wp filesystem direct php on line php warning copy home wp content cache wp rocket failed to open stream no such file or directory in home wp admin includes class wp filesystem direct php on line php warning copy home wp content cache wp rocket failed to open stream no such file or directory in home wp admin includes class wp filesystem direct php on line php warning chmod no such file or directory in home wp admin includes class wp filesystem direct php on line php warning copy home wp content cache wp rocket failed to open stream no such file or directory in home wp admin includes class wp filesystem direct php on line php warning chmod no such file or directory in home wp admin includes class wp filesystem direct php on line php warning copy home wp content cache wp rocket failed to open stream no such file or directory in home wp admin includes class wp filesystem direct php on line the errors did not reoccur when launching a new preload no warnings or errors were generated when updating to no warnings or errors were generated to reproduce steps to reproduce the behavior install generate the preload clear the debug log just to be sure update to check the debug log expected behavior update and generate preload without php warnings additional context wordpress rocket
1
665,507
22,320,446,104
IssuesEvent
2022-06-14 05:38:52
opencrvs/opencrvs-core
https://api.github.com/repos/opencrvs/opencrvs-core
closed
While uploading invalid registrar signature image error message should be only png supported
👹Bug Priority: medium
**Description:** While uploading invalid extensions image for registrar signature , error message is image/png supported only **Steps:** 1.Login as system admin 2.goto team 3.click create new user option and select registrar in role 4.fill all required fields and click continue 5.try to upload signature with .jpg/.jpeg extension 6. Click upload 7. See error message **Actual Result:** Notification is shown "Image/PNG supported only". **Expected Result:** png supported image only **Screen Recording:** https://www.loom.com/share/8e6a30d865864350bd7e9430857a690c **Tested on:** https://login.farajaland-qa.opencrvs.org/ **Username and password used:** Username: e.mayuka Password: Welcome321 **Desktop:** OS: Windows 10, Ubuntu Browser: Chrome
1.0
While uploading invalid registrar signature image error message should be only png supported - **Description:** While uploading invalid extensions image for registrar signature , error message is image/png supported only **Steps:** 1.Login as system admin 2.goto team 3.click create new user option and select registrar in role 4.fill all required fields and click continue 5.try to upload signature with .jpg/.jpeg extension 6. Click upload 7. See error message **Actual Result:** Notification is shown "Image/PNG supported only". **Expected Result:** png supported image only **Screen Recording:** https://www.loom.com/share/8e6a30d865864350bd7e9430857a690c **Tested on:** https://login.farajaland-qa.opencrvs.org/ **Username and password used:** Username: e.mayuka Password: Welcome321 **Desktop:** OS: Windows 10, Ubuntu Browser: Chrome
priority
while uploading invalid registrar signature image error message should be only png supported description while uploading invalid extensions image for registrar signature error message is image png supported only steps login as system admin goto team click create new user option and select registrar in role fill all required fields and click continue try to upload signature with jpg jpeg extension click upload see error message actual result notification is shown image png supported only expected result png supported image only screen recording tested on username and password used username e mayuka password desktop os windows ubuntu browser chrome
1
450,784
13,019,227,768
IssuesEvent
2020-07-26 21:22:29
projectdiscovery/nuclei
https://api.github.com/repos/projectdiscovery/nuclei
closed
Few pending issues with workflows
Priority: Medium Type: Bug Type: Enhancement
- [x] Workflows doesn't work with `target` flag and works with `stdin` ``` $ echo https://jira.dev.redacted.com | nuclei -t test.yaml -silent [jira-detect] [http] https://jira.dev.redacted.com/secure/Dashboard.jspa [jira-detect] [http] https://jira.dev.redacted.com/jira/secure/Dashboard.jspa [jira-unauthenticated-dashboards] [http] https://jira.dev.redacted.com/rest/api/2/dashboard?maxResults=100 [CVE-2019-8449] [http] https://jira.dev.redacted.com/rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true $ nuclei -target https://jira.dev.redacted.com -t test.yaml -v __ _ ____ __ _______/ /__ (_) / __ \/ / / / ___/ / _ \/ / / / / / /_/ / /__/ / __/ / /_/ /_/\__,_/\___/_/\___/_/ v2 projectdiscovery.io [WRN] Use with caution. You are responsible for your actions [WRN] Developers assume no liability and are not responsible for any misuse or damage. [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/test.yaml [INF] No results found. Happy hacking! ``` - [x] `file.write_string(b["apikey"])` overwrite file `workflow.output.txt` instead of appending results in case of multiple results. For reference:- https://github.com/projectdiscovery/nuclei/pull/142#issuecomment-656522552 ``` // saving data file := os.create("workflow.output.txt") file.write_string(b["apikey"]) file.close() ``` - [x] https://github.com/projectdiscovery/nuclei/issues/136 `chaos -d airbnb.com -bbq -http-url -silent | nuclei -t test.yaml` ``` [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml ``` Here is how `test.yaml` looks like. ``` id: improved-workflow-example info: name: Improved-Workflow-Example author: mzack9999 variables: google_key: google.yaml logic: | fmt := import("fmt") os := import("os") if google_key() { fmt.println("the key is " + google_key["apikey"]) // saving data on the system file. file := os.create("workflow.google_key.txt") file.write_string(google_key["apikey"]) file.close() } ``` - [x] Multiple matchers not working `chaos -d uber.com -bbq -http-url -silent | nuclei -t test.yaml` ``` id: workflow-multiple-matcher info: name: Workflow multiple matchers author: mzack9999 variables: tech_detect: technologies/tech-detect.yaml wp_users: files/wordpress-user-enumeration.yaml logic: | if tech_detect["wordpress"] { wp_users() } ```
1.0
Few pending issues with workflows - - [x] Workflows doesn't work with `target` flag and works with `stdin` ``` $ echo https://jira.dev.redacted.com | nuclei -t test.yaml -silent [jira-detect] [http] https://jira.dev.redacted.com/secure/Dashboard.jspa [jira-detect] [http] https://jira.dev.redacted.com/jira/secure/Dashboard.jspa [jira-unauthenticated-dashboards] [http] https://jira.dev.redacted.com/rest/api/2/dashboard?maxResults=100 [CVE-2019-8449] [http] https://jira.dev.redacted.com/rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true $ nuclei -target https://jira.dev.redacted.com -t test.yaml -v __ _ ____ __ _______/ /__ (_) / __ \/ / / / ___/ / _ \/ / / / / / /_/ / /__/ / __/ / /_/ /_/\__,_/\___/_/\___/_/ v2 projectdiscovery.io [WRN] Use with caution. You are responsible for your actions [WRN] Developers assume no liability and are not responsible for any misuse or damage. [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/test.yaml [INF] No results found. Happy hacking! ``` - [x] `file.write_string(b["apikey"])` overwrite file `workflow.output.txt` instead of appending results in case of multiple results. For reference:- https://github.com/projectdiscovery/nuclei/pull/142#issuecomment-656522552 ``` // saving data file := os.create("workflow.output.txt") file.write_string(b["apikey"]) file.close() ``` - [x] https://github.com/projectdiscovery/nuclei/issues/136 `chaos -d airbnb.com -bbq -http-url -silent | nuclei -t test.yaml` ``` [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml [INF] Found template in current directory: /Users/bauthard/Documents/GitHub/nuclei/v2/cmd/nuclei/google.yaml ``` Here is how `test.yaml` looks like. ``` id: improved-workflow-example info: name: Improved-Workflow-Example author: mzack9999 variables: google_key: google.yaml logic: | fmt := import("fmt") os := import("os") if google_key() { fmt.println("the key is " + google_key["apikey"]) // saving data on the system file. file := os.create("workflow.google_key.txt") file.write_string(google_key["apikey"]) file.close() } ``` - [x] Multiple matchers not working `chaos -d uber.com -bbq -http-url -silent | nuclei -t test.yaml` ``` id: workflow-multiple-matcher info: name: Workflow multiple matchers author: mzack9999 variables: tech_detect: technologies/tech-detect.yaml wp_users: files/wordpress-user-enumeration.yaml logic: | if tech_detect["wordpress"] { wp_users() } ```
priority
few pending issues with workflows workflows doesn t work with target flag and works with stdin echo nuclei t test yaml silent nuclei target t test yaml v projectdiscovery io use with caution you are responsible for your actions developers assume no liability and are not responsible for any misuse or damage found template in current directory users bauthard documents github nuclei cmd nuclei test yaml no results found happy hacking file write string b overwrite file workflow output txt instead of appending results in case of multiple results for reference saving data file os create workflow output txt file write string b file close chaos d airbnb com bbq http url silent nuclei t test yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml found template in current directory users bauthard documents github nuclei cmd nuclei google yaml here is how test yaml looks like id improved workflow example info name improved workflow example author variables google key google yaml logic fmt import fmt os import os if google key fmt println the key is google key saving data on the system file file os create workflow google key txt file write string google key file close multiple matchers not working chaos d uber com bbq http url silent nuclei t test yaml id workflow multiple matcher info name workflow multiple matchers author variables tech detect technologies tech detect yaml wp users files wordpress user enumeration yaml logic if tech detect wp users
1
23,333
2,658,269,087
IssuesEvent
2015-03-18 14:47:58
ROGUE-JCTD/rogue_geonode
https://api.github.com/repos/ROGUE-JCTD/rogue_geonode
opened
Import GeoJson into GeoNode
Priority: Medium Type: Enhancement
As a user I need to be able to import a GeoJson file into GeoNode so that I publish data I have in this format. [ ] Import UI for GeoNode supports GeoJson as a format [ ] File successfully imports into GeoServer data store [ ] Layer is published in GeoServer and GeoNode
1.0
Import GeoJson into GeoNode - As a user I need to be able to import a GeoJson file into GeoNode so that I publish data I have in this format. [ ] Import UI for GeoNode supports GeoJson as a format [ ] File successfully imports into GeoServer data store [ ] Layer is published in GeoServer and GeoNode
priority
import geojson into geonode as a user i need to be able to import a geojson file into geonode so that i publish data i have in this format import ui for geonode supports geojson as a format file successfully imports into geoserver data store layer is published in geoserver and geonode
1
61,710
3,151,983,256
IssuesEvent
2015-09-16 11:24:31
icatproject/python-icat
https://api.github.com/repos/icatproject/python-icat
opened
Ensure compatibility with ICAT 4.6
enhancement Priority-Medium
Make sure python-icat is compatible with the upcoming ICAT version 4.6. Issues identified so far: - [ ] New exception `NOT_IMPLEMENTED`.
1.0
Ensure compatibility with ICAT 4.6 - Make sure python-icat is compatible with the upcoming ICAT version 4.6. Issues identified so far: - [ ] New exception `NOT_IMPLEMENTED`.
priority
ensure compatibility with icat make sure python icat is compatible with the upcoming icat version issues identified so far new exception not implemented
1
737,859
25,535,108,447
IssuesEvent
2022-11-29 11:21:30
RobertCraigie/prisma-client-py
https://api.github.com/repos/RobertCraigie/prisma-client-py
opened
Investigate memory usage
kind/improvement topic: internal topic: perf priority/medium level/unknown
## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> We haven't put any effort towards investigating whether or not there are any memory leaks / improvements that could be made. ## Suggested solution <!-- A clear and concise description of what you want to happen. --> TBD ## Additional context <!-- Add any other context or screenshots about the feature request here. --> https://discord.com/channels/933860922039099444/933860923117043718/1047108450737459281
1.0
Investigate memory usage - ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> We haven't put any effort towards investigating whether or not there are any memory leaks / improvements that could be made. ## Suggested solution <!-- A clear and concise description of what you want to happen. --> TBD ## Additional context <!-- Add any other context or screenshots about the feature request here. --> https://discord.com/channels/933860922039099444/933860923117043718/1047108450737459281
priority
investigate memory usage problem we haven t put any effort towards investigating whether or not there are any memory leaks improvements that could be made suggested solution tbd additional context
1
490,308
14,118,105,641
IssuesEvent
2020-11-08 12:13:43
RaenonX-DL/dragalia-site-front
https://api.github.com/repos/RaenonX-DL/dragalia-site-front
opened
DOMString validation failed
Priority-Medium Type-Enhancements
For `<Markdown>`, every line is a `<p>`. However, some nested elements contain `<div>` or other elements, which will be rendered as "a line," causing the validation failure. For example, the transformer of transforming a youtube URL to be the video will emit a validation failure error. https://github.com/RaenonX-DL/dragalia-site-front/blob/b6256646696adf763593266eb096709ae5aeebd4/src/components/elements/markdownRenderers.tsx#L30 This seems to have no impact on the application, but it's still recommended to fix.
1.0
DOMString validation failed - For `<Markdown>`, every line is a `<p>`. However, some nested elements contain `<div>` or other elements, which will be rendered as "a line," causing the validation failure. For example, the transformer of transforming a youtube URL to be the video will emit a validation failure error. https://github.com/RaenonX-DL/dragalia-site-front/blob/b6256646696adf763593266eb096709ae5aeebd4/src/components/elements/markdownRenderers.tsx#L30 This seems to have no impact on the application, but it's still recommended to fix.
priority
domstring validation failed for every line is a however some nested elements contain or other elements which will be rendered as a line causing the validation failure for example the transformer of transforming a youtube url to be the video will emit a validation failure error this seems to have no impact on the application but it s still recommended to fix
1
622,836
19,657,703,355
IssuesEvent
2022-01-10 14:11:12
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
closed
Table bb_performance_cache is not being created for some mysql servers
bug priority-medium Stale
**Describe the bug** The issue happens if the MySQL server has a lesser maximum in terms of bytes size of columns. Some servers can't handle e.g. for **cache_name varchar(1000)** or **cache_group varchar(200)**. The server causes errors that can only handle lesser than that. It happens when you try to set the column as a key. **To Reproduce** Steps to reproduce the behavior: 1. Turn on debug mode. 2. Try activating buddyboss app plugin. 3. You will see that error that it tries to look for the **bb_performance_cache** table. **Expected behavior** Query for creating **bb_performance_cache** table should be flexible enough for some cases on any servers. **Screenshots** ![image](https://user-images.githubusercontent.com/82648504/141472027-44661fea-6795-47d6-b036-752d6d501298.png) `WordPress database error Table 'learncmt.wp_bb_performance_cache' doesn't exist for query SELECT * FROM wp_bb_performance_cache where cache_group='app_core' made by do_action('admin_init'), WP_Hook->do_action, WP_Hook->apply_filters, ReduxFramework->_register_settings, ReduxFramework->set_options, ReduxFramework->set_transients, update_option, do_action('update_option'), WP_Hook->do_action, WP_Hook->apply_filters, BuddyBossAppPerformanceIntegrationBB_App_Core->event_update_option, BuddyBossPerformanceCache->purge_by_group` **Environment** Which site did you replicate this issue on? Customer's site **Support ticket links** https://secure.helpscout.net/conversation/1676973984/171016 https://secure.helpscout.net/conversation/1675065531/170772/ **Jira issue** : [PROD-688] [PROD-688]: https://buddyboss.atlassian.net/browse/PROD-688?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1.0
Table bb_performance_cache is not being created for some mysql servers - **Describe the bug** The issue happens if the MySQL server has a lesser maximum in terms of bytes size of columns. Some servers can't handle e.g. for **cache_name varchar(1000)** or **cache_group varchar(200)**. The server causes errors that can only handle lesser than that. It happens when you try to set the column as a key. **To Reproduce** Steps to reproduce the behavior: 1. Turn on debug mode. 2. Try activating buddyboss app plugin. 3. You will see that error that it tries to look for the **bb_performance_cache** table. **Expected behavior** Query for creating **bb_performance_cache** table should be flexible enough for some cases on any servers. **Screenshots** ![image](https://user-images.githubusercontent.com/82648504/141472027-44661fea-6795-47d6-b036-752d6d501298.png) `WordPress database error Table 'learncmt.wp_bb_performance_cache' doesn't exist for query SELECT * FROM wp_bb_performance_cache where cache_group='app_core' made by do_action('admin_init'), WP_Hook->do_action, WP_Hook->apply_filters, ReduxFramework->_register_settings, ReduxFramework->set_options, ReduxFramework->set_transients, update_option, do_action('update_option'), WP_Hook->do_action, WP_Hook->apply_filters, BuddyBossAppPerformanceIntegrationBB_App_Core->event_update_option, BuddyBossPerformanceCache->purge_by_group` **Environment** Which site did you replicate this issue on? Customer's site **Support ticket links** https://secure.helpscout.net/conversation/1676973984/171016 https://secure.helpscout.net/conversation/1675065531/170772/ **Jira issue** : [PROD-688] [PROD-688]: https://buddyboss.atlassian.net/browse/PROD-688?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
priority
table bb performance cache is not being created for some mysql servers describe the bug the issue happens if the mysql server has a lesser maximum in terms of bytes size of columns some servers can t handle e g for cache name varchar or cache group varchar the server causes errors that can only handle lesser than that it happens when you try to set the column as a key to reproduce steps to reproduce the behavior turn on debug mode try activating buddyboss app plugin you will see that error that it tries to look for the bb performance cache table expected behavior query for creating bb performance cache table should be flexible enough for some cases on any servers screenshots wordpress database error table learncmt wp bb performance cache doesn t exist for query select from wp bb performance cache where cache group app core made by do action admin init wp hook do action wp hook apply filters reduxframework register settings reduxframework set options reduxframework set transients update option do action update option wp hook do action wp hook apply filters buddybossappperformanceintegrationbb app core event update option buddybossperformancecache purge by group environment which site did you replicate this issue on customer s site support ticket links jira issue
1
541,727
15,832,671,501
IssuesEvent
2021-04-06 14:51:29
pnxenopoulos/csgo
https://api.github.com/repos/pnxenopoulos/csgo
closed
Parse half the demo
Bug Medium Priority
**Describe the bug** I tried to parse a demo from HLTV, but it only parses half the match. (until 6-6 score) I also checked the demo on the CSGO but could not find anything odd. Also, it seems to work fine on other demo files, and there are no errors in the log file. **To Reproduce** The match page on HLTV if you want to reproduce. https://www.hltv.org/matches/2347482/dignitas-vs-mad-lions-nordic-masters-spring-2021-blast-premier-qualifier I checked another match demo from the same event: https://www.hltv.org/matches/2347483/singularity-vs-ence-nordic-masters-spring-2021-blast-premier-qualifier It is not complete as well; the code does not parse the last round. (Maybe something wrong with the way that the event is recording the demos?) **Desktop (please complete the following information):** - OS: MacOS 11.2 - Python 3 / jupyter
1.0
Parse half the demo - **Describe the bug** I tried to parse a demo from HLTV, but it only parses half the match. (until 6-6 score) I also checked the demo on the CSGO but could not find anything odd. Also, it seems to work fine on other demo files, and there are no errors in the log file. **To Reproduce** The match page on HLTV if you want to reproduce. https://www.hltv.org/matches/2347482/dignitas-vs-mad-lions-nordic-masters-spring-2021-blast-premier-qualifier I checked another match demo from the same event: https://www.hltv.org/matches/2347483/singularity-vs-ence-nordic-masters-spring-2021-blast-premier-qualifier It is not complete as well; the code does not parse the last round. (Maybe something wrong with the way that the event is recording the demos?) **Desktop (please complete the following information):** - OS: MacOS 11.2 - Python 3 / jupyter
priority
parse half the demo describe the bug i tried to parse a demo from hltv but it only parses half the match until score i also checked the demo on the csgo but could not find anything odd also it seems to work fine on other demo files and there are no errors in the log file to reproduce the match page on hltv if you want to reproduce i checked another match demo from the same event it is not complete as well the code does not parse the last round maybe something wrong with the way that the event is recording the demos desktop please complete the following information os macos python jupyter
1
748,968
26,145,758,275
IssuesEvent
2022-12-30 04:20:49
gamefreedomgit/Maelstrom
https://api.github.com/repos/gamefreedomgit/Maelstrom
closed
[Moved from discord] Windwalk Weapon Enchant
Item Professions Priority: Medium Status: Needs Confirmation Bug Report from Discord
liljon OP — Yesterday at 12:38 AM While the effects of the proc work fine, it's proc rate is absolutely messed up. On average, it procs after 2 minutes of continuous, 100% uptime (tested as a prot paladin spamming a basic rotation, always being on GCD). I've done a bit of digging into WoWHead, and this is what I found (take everything from here with a grain of salt, as this is player tested and not given information by Blizzard, and the following copy pastes are all pre 4.3) https://www.wowhead.com/spell=74244/windwalk#comments Patch 4.0.3. "After two hours of testing in various heroics, I've come to the following conclusions: 1) There is no internal cooldown. Back to back procs are possible, and hardly even uncommon. 2) If the enchant has a static PPM, it is at least 2 ppm. Currently, I'm sitting at 2.2 ppm though I have further testing to do. Theorized upper bound of 3 PPM based on 3 back to back procs." Patch 4.0.3. "This buff has no internal cooldown, it is able to refresh itself, although unlikely due to the low proc rate, estimated at 4-5% using dummies, devastate, recount and spare time. As far as I can tell this enchant still procs on failed, eg. missed, dodged, parried, melee attacks. But more testing needs to be done to accurately support this claim." Patch 4.1.0. "The tests with a rotation were 6 minutes long. The averages are as follows; For ONE Windwalk, rotation, 6 minutes; 33.49% Uptime on the Windwalk buff. Average of 16 procs per test (2.66 Procs Per Minute) For TWO Windwalks, one main hand one off hand, rotation, 6 minutes; 43.38% Uptime on the Windwalk buff (more on that later) Average of 28 procs per test (4.66 Procs Per Minute)" Make of this information what you will - one thing is for sure, right now, the proc rate is so low you are probably better off with Mongoose from TBC. liljon OP — Yesterday at 5:31 PM Or, just do the normal person thing and enchant Landslide or something. BIGDAMJUDGE
1.0
[Moved from discord] Windwalk Weapon Enchant - liljon OP — Yesterday at 12:38 AM While the effects of the proc work fine, it's proc rate is absolutely messed up. On average, it procs after 2 minutes of continuous, 100% uptime (tested as a prot paladin spamming a basic rotation, always being on GCD). I've done a bit of digging into WoWHead, and this is what I found (take everything from here with a grain of salt, as this is player tested and not given information by Blizzard, and the following copy pastes are all pre 4.3) https://www.wowhead.com/spell=74244/windwalk#comments Patch 4.0.3. "After two hours of testing in various heroics, I've come to the following conclusions: 1) There is no internal cooldown. Back to back procs are possible, and hardly even uncommon. 2) If the enchant has a static PPM, it is at least 2 ppm. Currently, I'm sitting at 2.2 ppm though I have further testing to do. Theorized upper bound of 3 PPM based on 3 back to back procs." Patch 4.0.3. "This buff has no internal cooldown, it is able to refresh itself, although unlikely due to the low proc rate, estimated at 4-5% using dummies, devastate, recount and spare time. As far as I can tell this enchant still procs on failed, eg. missed, dodged, parried, melee attacks. But more testing needs to be done to accurately support this claim." Patch 4.1.0. "The tests with a rotation were 6 minutes long. The averages are as follows; For ONE Windwalk, rotation, 6 minutes; 33.49% Uptime on the Windwalk buff. Average of 16 procs per test (2.66 Procs Per Minute) For TWO Windwalks, one main hand one off hand, rotation, 6 minutes; 43.38% Uptime on the Windwalk buff (more on that later) Average of 28 procs per test (4.66 Procs Per Minute)" Make of this information what you will - one thing is for sure, right now, the proc rate is so low you are probably better off with Mongoose from TBC. liljon OP — Yesterday at 5:31 PM Or, just do the normal person thing and enchant Landslide or something. BIGDAMJUDGE
priority
windwalk weapon enchant liljon op — yesterday at am while the effects of the proc work fine it s proc rate is absolutely messed up on average it procs after minutes of continuous uptime tested as a prot paladin spamming a basic rotation always being on gcd i ve done a bit of digging into wowhead and this is what i found take everything from here with a grain of salt as this is player tested and not given information by blizzard and the following copy pastes are all pre patch after two hours of testing in various heroics i ve come to the following conclusions there is no internal cooldown back to back procs are possible and hardly even uncommon if the enchant has a static ppm it is at least ppm currently i m sitting at ppm though i have further testing to do theorized upper bound of ppm based on back to back procs patch this buff has no internal cooldown it is able to refresh itself although unlikely due to the low proc rate estimated at using dummies devastate recount and spare time as far as i can tell this enchant still procs on failed eg missed dodged parried melee attacks but more testing needs to be done to accurately support this claim patch the tests with a rotation were minutes long the averages are as follows for one windwalk rotation minutes uptime on the windwalk buff average of procs per test procs per minute for two windwalks one main hand one off hand rotation minutes uptime on the windwalk buff more on that later average of procs per test procs per minute make of this information what you will one thing is for sure right now the proc rate is so low you are probably better off with mongoose from tbc liljon op — yesterday at pm or just do the normal person thing and enchant landslide or something bigdamjudge
1
782,407
27,495,932,571
IssuesEvent
2023-03-05 05:48:18
IlchCMS/Ilch-2.0
https://api.github.com/repos/IlchCMS/Ilch-2.0
opened
Migrate to CKEditor 5
Priority: Medium
> CKEditor 4 is a stable and mature application, which had its initial release at the end of 2012 and has been actively developed and improved since then. **Its development and support are guaranteed until 2023.** > CKEditor 4 is a stable and mature application, backed by 20 years of our experience working on WYSIWYG editors. The CKEditor 4.x line is under a “Long Term Support” (LTS) programme which means that **its development and support is guaranteed until 2023. If you are looking for a proven solution that will be fully supported for years, consider CKEditor 5.** **Additional context** [CKEditor 5: A new era for rich text editing](https://ckeditor.com/blog/CKEditor-5-A-new-era-for-rich-text-editing/) [Why CKEditor 5 was developed? What is the concept behind it?](https://support.ckeditor.com/hc/en-us/articles/115005278309-Why-CKEditor-5-was-developed-What-is-the-concept-behind-it-) [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/index.html) [What is different about CKEditor 5 compared to CKEditor 4?](https://support.ckeditor.com/hc/en-us/articles/115005278429-What-is-different-about-CKEditor-5-compared-to-CKEditor-4-) [Shall I use CKEditor 5 instead of CKEditor 4, is it better?](https://support.ckeditor.com/hc/en-us/articles/115005281569-Shall-I-use-CKEditor-5-instead-of-CKEditor-4-is-it-better-) [Migration from CKEditor 4](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/migration-from-ckeditor-4.html) [Plugins compatibility table](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/migration-from-ckeditor-4.html#plugins-compatibility-table) [Configuration options compatibility table](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/migration-from-ckeditor-4.html#configuration-options-compatibility-table) [Licensing and Support](https://ckeditor.com/docs/ckeditor4/latest/guide/dev_howtos_support.html) [How long will CKEditor 4 be supported?](https://support.ckeditor.com/hc/en-us/articles/115005281629-How-long-will-CKEditor-4-be-supported-)
1.0
Migrate to CKEditor 5 - > CKEditor 4 is a stable and mature application, which had its initial release at the end of 2012 and has been actively developed and improved since then. **Its development and support are guaranteed until 2023.** > CKEditor 4 is a stable and mature application, backed by 20 years of our experience working on WYSIWYG editors. The CKEditor 4.x line is under a “Long Term Support” (LTS) programme which means that **its development and support is guaranteed until 2023. If you are looking for a proven solution that will be fully supported for years, consider CKEditor 5.** **Additional context** [CKEditor 5: A new era for rich text editing](https://ckeditor.com/blog/CKEditor-5-A-new-era-for-rich-text-editing/) [Why CKEditor 5 was developed? What is the concept behind it?](https://support.ckeditor.com/hc/en-us/articles/115005278309-Why-CKEditor-5-was-developed-What-is-the-concept-behind-it-) [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/index.html) [What is different about CKEditor 5 compared to CKEditor 4?](https://support.ckeditor.com/hc/en-us/articles/115005278429-What-is-different-about-CKEditor-5-compared-to-CKEditor-4-) [Shall I use CKEditor 5 instead of CKEditor 4, is it better?](https://support.ckeditor.com/hc/en-us/articles/115005281569-Shall-I-use-CKEditor-5-instead-of-CKEditor-4-is-it-better-) [Migration from CKEditor 4](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/migration-from-ckeditor-4.html) [Plugins compatibility table](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/migration-from-ckeditor-4.html#plugins-compatibility-table) [Configuration options compatibility table](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/migration-from-ckeditor-4.html#configuration-options-compatibility-table) [Licensing and Support](https://ckeditor.com/docs/ckeditor4/latest/guide/dev_howtos_support.html) [How long will CKEditor 4 be supported?](https://support.ckeditor.com/hc/en-us/articles/115005281629-How-long-will-CKEditor-4-be-supported-)
priority
migrate to ckeditor ckeditor is a stable and mature application which had its initial release at the end of and has been actively developed and improved since then its development and support are guaranteed until ckeditor is a stable and mature application backed by years of our experience working on wysiwyg editors the ckeditor x line is under a “long term support” lts programme which means that its development and support is guaranteed until if you are looking for a proven solution that will be fully supported for years consider ckeditor additional context
1
349,663
10,471,647,700
IssuesEvent
2019-09-23 08:23:36
react-figma/react-figma
https://api.github.com/repos/react-figma/react-figma
opened
Implementing all yoga-layout properties
help wanted priority: medium topic: style topic: yoga type: feature or enhancement
Yoga properties: ```javascript setAlignContent(alignContent: Yoga$Align): void, setAlignItems(alignItems: Yoga$Align): void, setAlignSelf(alignSelf: Yoga$Align): void, setAspectRatio(aspectRatio: number): void, setBorder(edge: Yoga$Edge, borderWidth: number): void, setDisplay(display: Yoga$Display): void, setFlex(flex: number): void, setFlexBasis(flexBasis: number | string): void, setFlexBasisPercent(flexBasis: number): void, setFlexDirection(flexDirection: Yoga$FlexDirection): void, setFlexGrow(flexGrow: number): void, setFlexShrink(flexShrink: number): void, setFlexWrap(flexWrap: Yoga$FlexWrap): void, setHeight(height: number | string): void, setHeightAuto(): void, setHeightPercent(height: number): void, setJustifyContent(justifyContent: Yoga$JustifyContent): void, setMargin(edge: Yoga$Edge, margin: number): void, setMarginAuto(edge: Yoga$Edge): void, setMarginPercent(edge: Yoga$Edge, margin: number): void, setMaxHeight(maxHeight: number | string): void, setMaxHeightPercent(maxHeight: number): void, setMaxWidth(maxWidth: number | string): void, setMaxWidthPercent(maxWidth: number): void, setMeasureFunc(measureFunc: ?Function): void, setMinHeight(minHeight: number | string): void, setMinHeightPercent(minHeight: number): void, setMinWidth(minWidth: number | string): void, setMinWidthPercent(minWidth: number): void, setOverflow(overflow: Yoga$Overflow): void, setPadding(edge: Yoga$Edge, padding: number | string): void, setPaddingPercent(edge: Yoga$Edge, padding: number): void, setPosition(edge: Yoga$Edge, position: number | string): void, setPositionPercent(edge: Yoga$Edge, position: number): void, setPositionType(positionType: Yoga$PositionType): void, setWidth(width: number | string): void, setWidthAuto(): void, setWidthPercent(width: number): void, ```
1.0
Implementing all yoga-layout properties - Yoga properties: ```javascript setAlignContent(alignContent: Yoga$Align): void, setAlignItems(alignItems: Yoga$Align): void, setAlignSelf(alignSelf: Yoga$Align): void, setAspectRatio(aspectRatio: number): void, setBorder(edge: Yoga$Edge, borderWidth: number): void, setDisplay(display: Yoga$Display): void, setFlex(flex: number): void, setFlexBasis(flexBasis: number | string): void, setFlexBasisPercent(flexBasis: number): void, setFlexDirection(flexDirection: Yoga$FlexDirection): void, setFlexGrow(flexGrow: number): void, setFlexShrink(flexShrink: number): void, setFlexWrap(flexWrap: Yoga$FlexWrap): void, setHeight(height: number | string): void, setHeightAuto(): void, setHeightPercent(height: number): void, setJustifyContent(justifyContent: Yoga$JustifyContent): void, setMargin(edge: Yoga$Edge, margin: number): void, setMarginAuto(edge: Yoga$Edge): void, setMarginPercent(edge: Yoga$Edge, margin: number): void, setMaxHeight(maxHeight: number | string): void, setMaxHeightPercent(maxHeight: number): void, setMaxWidth(maxWidth: number | string): void, setMaxWidthPercent(maxWidth: number): void, setMeasureFunc(measureFunc: ?Function): void, setMinHeight(minHeight: number | string): void, setMinHeightPercent(minHeight: number): void, setMinWidth(minWidth: number | string): void, setMinWidthPercent(minWidth: number): void, setOverflow(overflow: Yoga$Overflow): void, setPadding(edge: Yoga$Edge, padding: number | string): void, setPaddingPercent(edge: Yoga$Edge, padding: number): void, setPosition(edge: Yoga$Edge, position: number | string): void, setPositionPercent(edge: Yoga$Edge, position: number): void, setPositionType(positionType: Yoga$PositionType): void, setWidth(width: number | string): void, setWidthAuto(): void, setWidthPercent(width: number): void, ```
priority
implementing all yoga layout properties yoga properties javascript setaligncontent aligncontent yoga align void setalignitems alignitems yoga align void setalignself alignself yoga align void setaspectratio aspectratio number void setborder edge yoga edge borderwidth number void setdisplay display yoga display void setflex flex number void setflexbasis flexbasis number string void setflexbasispercent flexbasis number void setflexdirection flexdirection yoga flexdirection void setflexgrow flexgrow number void setflexshrink flexshrink number void setflexwrap flexwrap yoga flexwrap void setheight height number string void setheightauto void setheightpercent height number void setjustifycontent justifycontent yoga justifycontent void setmargin edge yoga edge margin number void setmarginauto edge yoga edge void setmarginpercent edge yoga edge margin number void setmaxheight maxheight number string void setmaxheightpercent maxheight number void setmaxwidth maxwidth number string void setmaxwidthpercent maxwidth number void setmeasurefunc measurefunc function void setminheight minheight number string void setminheightpercent minheight number void setminwidth minwidth number string void setminwidthpercent minwidth number void setoverflow overflow yoga overflow void setpadding edge yoga edge padding number string void setpaddingpercent edge yoga edge padding number void setposition edge yoga edge position number string void setpositionpercent edge yoga edge position number void setpositiontype positiontype yoga positiontype void setwidth width number string void setwidthauto void setwidthpercent width number void
1
179,165
6,622,073,869
IssuesEvent
2017-09-21 21:44:56
portworx/torpedo
https://api.github.com/repos/portworx/torpedo
closed
Add a mysql application that does IO.
framework priority/medium
Add a `PerformIO()` interface in scheduler driver which will get invoked from torpedo. Applications in the app spec factory also need their own implementations since only an application knows what it means to perform IO on it (e.g postgres will run pgbench or write a bunch of database tables).
1.0
Add a mysql application that does IO. - Add a `PerformIO()` interface in scheduler driver which will get invoked from torpedo. Applications in the app spec factory also need their own implementations since only an application knows what it means to perform IO on it (e.g postgres will run pgbench or write a bunch of database tables).
priority
add a mysql application that does io add a performio interface in scheduler driver which will get invoked from torpedo applications in the app spec factory also need their own implementations since only an application knows what it means to perform io on it e g postgres will run pgbench or write a bunch of database tables
1
408,683
11,950,781,596
IssuesEvent
2020-04-03 15:45:31
HabitRPG/habitica-android
https://api.github.com/repos/HabitRPG/habitica-android
closed
Special backgrounds appear costing Gems
Priority: medium Type: Bug
**Describe the bug** When opening the Avatar> Background menu, special background appear costing 1 gem, instead of a Mystical Hourglass. However, when trying to buy the scenario, the game is taken to the Time Travelers shop. **To Reproduce** Steps to reproduce the behavior: - Open the Avatar menu; - Click on one of the special backgrounds to try to buy it. **Screenshot** ![background_shop](https://user-images.githubusercontent.com/12521391/78150777-21950580-740e-11ea-8173-ea967df2ca36.jpg) **Expected behavior** Instead of the backgrounds appearing costing Gems so that, when trying to buy them, the user is directed to the Time Travelers shop, the backgrounds could already present their real cost (1 Mystical Hourglass) and be purchased directly from there. **Smartphone (please complete the following information):** - Device: Xiaomi Mi A2 Lite - OS: Android One 9 - App Version: 2.5 (2391) - BETA - Habitica Username: @matheusvictor AKA Viccthor _(Translation with help with Google Translate)_
1.0
Special backgrounds appear costing Gems - **Describe the bug** When opening the Avatar> Background menu, special background appear costing 1 gem, instead of a Mystical Hourglass. However, when trying to buy the scenario, the game is taken to the Time Travelers shop. **To Reproduce** Steps to reproduce the behavior: - Open the Avatar menu; - Click on one of the special backgrounds to try to buy it. **Screenshot** ![background_shop](https://user-images.githubusercontent.com/12521391/78150777-21950580-740e-11ea-8173-ea967df2ca36.jpg) **Expected behavior** Instead of the backgrounds appearing costing Gems so that, when trying to buy them, the user is directed to the Time Travelers shop, the backgrounds could already present their real cost (1 Mystical Hourglass) and be purchased directly from there. **Smartphone (please complete the following information):** - Device: Xiaomi Mi A2 Lite - OS: Android One 9 - App Version: 2.5 (2391) - BETA - Habitica Username: @matheusvictor AKA Viccthor _(Translation with help with Google Translate)_
priority
special backgrounds appear costing gems describe the bug when opening the avatar background menu special background appear costing gem instead of a mystical hourglass however when trying to buy the scenario the game is taken to the time travelers shop to reproduce steps to reproduce the behavior open the avatar menu click on one of the special backgrounds to try to buy it screenshot expected behavior instead of the backgrounds appearing costing gems so that when trying to buy them the user is directed to the time travelers shop the backgrounds could already present their real cost mystical hourglass and be purchased directly from there smartphone please complete the following information device xiaomi mi lite os android one app version beta habitica username matheusvictor aka viccthor translation with help with google translate
1
303,656
9,309,273,484
IssuesEvent
2019-03-25 16:08:15
BentoBoxWorld/BentoBox
https://api.github.com/repos/BentoBoxWorld/BentoBox
opened
i dont think its a good idee
Priority: Medium Status: Pending Type: Bug
https://github.com/BentoBoxWorld/BentoBox/blob/develop/src/main/java/world/bentobox/bentobox/versions/ServerCompatibility.java#L74 to close support for any software maby like glowstone but like me using a custem paperspigot but a server software like https://github.com/Akarin-project/Akarin that i use wont load because of that and some poeple wont better performance so they use paperspigot or some like me are stuck with it i respect you guys i love the work but i dont think its a good idea
1.0
i dont think its a good idee - https://github.com/BentoBoxWorld/BentoBox/blob/develop/src/main/java/world/bentobox/bentobox/versions/ServerCompatibility.java#L74 to close support for any software maby like glowstone but like me using a custem paperspigot but a server software like https://github.com/Akarin-project/Akarin that i use wont load because of that and some poeple wont better performance so they use paperspigot or some like me are stuck with it i respect you guys i love the work but i dont think its a good idea
priority
i dont think its a good idee to close support for any software maby like glowstone but like me using a custem paperspigot but a server software like that i use wont load because of that and some poeple wont better performance so they use paperspigot or some like me are stuck with it i respect you guys i love the work but i dont think its a good idea
1
683,042
23,366,445,992
IssuesEvent
2022-08-10 15:44:53
2G2C/nanotrasen-simulator
https://api.github.com/repos/2G2C/nanotrasen-simulator
closed
Add ways to decomission/sell stations.
Priority: 2 - Medium
When in doubt, just sell your stations for half the current station price, always works.
1.0
Add ways to decomission/sell stations. - When in doubt, just sell your stations for half the current station price, always works.
priority
add ways to decomission sell stations when in doubt just sell your stations for half the current station price always works
1
291,779
8,949,491,527
IssuesEvent
2019-01-25 07:49:21
Repair-DeskPOS/RepairDesk-BUGS-IMPROVEMENTS
https://api.github.com/repos/Repair-DeskPOS/RepairDesk-BUGS-IMPROVEMENTS
closed
Need Phone Model Visible in Customer Details
Added to Roadmap Medium Priority customers enhancement
![need phone model](https://user-images.githubusercontent.com/34261339/42979421-6bf3ce46-8c15-11e8-8c44-a086dd2f6149.png) Its always takes few click to see customer's repair history. Can you please add option to view phone model on same window ? Regards,
1.0
Need Phone Model Visible in Customer Details - ![need phone model](https://user-images.githubusercontent.com/34261339/42979421-6bf3ce46-8c15-11e8-8c44-a086dd2f6149.png) Its always takes few click to see customer's repair history. Can you please add option to view phone model on same window ? Regards,
priority
need phone model visible in customer details its always takes few click to see customer s repair history can you please add option to view phone model on same window regards
1
225,889
7,496,050,689
IssuesEvent
2018-04-08 04:46:33
CS2103JAN2018-T09-B3/main
https://api.github.com/repos/CS2103JAN2018-T09-B3/main
opened
As a student, I want to know if an exercise has been answered
priority.medium type.story
so that I can focus on the ones I haven't. #80
1.0
As a student, I want to know if an exercise has been answered - so that I can focus on the ones I haven't. #80
priority
as a student i want to know if an exercise has been answered so that i can focus on the ones i haven t
1
48,760
2,999,793,413
IssuesEvent
2015-07-23 20:54:21
zhengj2007/BFO-test
https://api.github.com/repos/zhengj2007/BFO-test
opened
class-class relations with no instance level equivalents
imported Priority-Medium Type-BFO2-Reference
_From [alanruttenberg@gmail.com](https://code.google.com/u/alanruttenberg@gmail.com/) on October 18, 2007 00:36:19_ e.g. has_integral_part , transformation_of have no instance level equivalents. Seems that class/class relations are more macro like than instance level. They all expand into quite different sets of axioms. _Original issue: http://code.google.com/p/bfo/issues/detail?id=6_
1.0
class-class relations with no instance level equivalents - _From [alanruttenberg@gmail.com](https://code.google.com/u/alanruttenberg@gmail.com/) on October 18, 2007 00:36:19_ e.g. has_integral_part , transformation_of have no instance level equivalents. Seems that class/class relations are more macro like than instance level. They all expand into quite different sets of axioms. _Original issue: http://code.google.com/p/bfo/issues/detail?id=6_
priority
class class relations with no instance level equivalents from on october e g has integral part transformation of have no instance level equivalents seems that class class relations are more macro like than instance level they all expand into quite different sets of axioms original issue
1
95,101
3,934,179,249
IssuesEvent
2016-04-25 21:39:38
ualbertalib/HydraNorth
https://api.github.com/repos/ualbertalib/HydraNorth
closed
Add existing items to OAI sets
enhancement OAI priority:medium size:TBD
Old ERA had an OAI set for every collection and community; HydraNorth will do the same. GenericFiles need to be linked to their OAI sets using ```fedoraconfig:isPartOfOAISet ```. - [ ] create an OAI set for every Collection - [ ] associate member GenericFile objects with their parent Collections No doubt our collection-related rake tasks can be adapted for this. Part of #570 Implement as part of #739? Implement as behavior included in GenericFile class?
1.0
Add existing items to OAI sets - Old ERA had an OAI set for every collection and community; HydraNorth will do the same. GenericFiles need to be linked to their OAI sets using ```fedoraconfig:isPartOfOAISet ```. - [ ] create an OAI set for every Collection - [ ] associate member GenericFile objects with their parent Collections No doubt our collection-related rake tasks can be adapted for this. Part of #570 Implement as part of #739? Implement as behavior included in GenericFile class?
priority
add existing items to oai sets old era had an oai set for every collection and community hydranorth will do the same genericfiles need to be linked to their oai sets using fedoraconfig ispartofoaiset create an oai set for every collection associate member genericfile objects with their parent collections no doubt our collection related rake tasks can be adapted for this part of implement as part of implement as behavior included in genericfile class
1
198,238
6,971,552,922
IssuesEvent
2017-12-11 14:24:35
hpi-swt2/sport-portal
https://api.github.com/repos/hpi-swt2/sport-portal
closed
event page as organizer
epic create event po-review priority medium size M team issue number 5 user story
**AS A** organiser of an event **I WANT TO** be able to edit the settings of events I created when viewing their page **SO THAT** I can change the settings of my events **ACCEPTANCE CRITERIA** - [x] organiser can visit the event page - [x] on the top right there is an edit button - [x] pressing the icon makes all fields editable - [x] on the bottom of the page a *save* and *cancel* button appears if the organizer is in edit mode - [x] if something was changed and the organiser saves the changes by pressing the *save* button the changes are saved and the organiser leaves the edit mode for the page - [x] pressing the cancel button will drop any changes and also leave edit mode - [x] only the organiser of an event is able to edit the respective event
1.0
event page as organizer - **AS A** organiser of an event **I WANT TO** be able to edit the settings of events I created when viewing their page **SO THAT** I can change the settings of my events **ACCEPTANCE CRITERIA** - [x] organiser can visit the event page - [x] on the top right there is an edit button - [x] pressing the icon makes all fields editable - [x] on the bottom of the page a *save* and *cancel* button appears if the organizer is in edit mode - [x] if something was changed and the organiser saves the changes by pressing the *save* button the changes are saved and the organiser leaves the edit mode for the page - [x] pressing the cancel button will drop any changes and also leave edit mode - [x] only the organiser of an event is able to edit the respective event
priority
event page as organizer as a organiser of an event i want to be able to edit the settings of events i created when viewing their page so that i can change the settings of my events acceptance criteria organiser can visit the event page on the top right there is an edit button pressing the icon makes all fields editable on the bottom of the page a save and cancel button appears if the organizer is in edit mode if something was changed and the organiser saves the changes by pressing the save button the changes are saved and the organiser leaves the edit mode for the page pressing the cancel button will drop any changes and also leave edit mode only the organiser of an event is able to edit the respective event
1
715,568
24,604,426,219
IssuesEvent
2022-10-14 15:00:14
hashicorp/terraform-cdk
https://api.github.com/repos/hashicorp/terraform-cdk
opened
CDKTF should check if the pre-built providers peer dependency matches the installed cdktf version
enhancement cdktf-cli priority/important-soon ux/cli size/medium pre-built providers
<!--- Please keep this note for the community ---> ### Community Note - Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request - Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request - If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Description <!--- Please leave a helpful description of the feature request here. ---> <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> When working with pre-built providers in Java it can happen that maven installs a cdktf version that not matches what is specified in the pom.xml, because of outdated peer dependencies requiring an older version. To make a user aware of this we need a check reminding folks to upgrade. ### References <!--- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation? ---> - https://discuss.hashicorp.com/t/cdk-not-respecting-pom-xml/45418/7
1.0
CDKTF should check if the pre-built providers peer dependency matches the installed cdktf version - <!--- Please keep this note for the community ---> ### Community Note - Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request - Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request - If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Description <!--- Please leave a helpful description of the feature request here. ---> <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> When working with pre-built providers in Java it can happen that maven installs a cdktf version that not matches what is specified in the pom.xml, because of outdated peer dependencies requiring an older version. To make a user aware of this we need a check reminding folks to upgrade. ### References <!--- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation? ---> - https://discuss.hashicorp.com/t/cdk-not-respecting-pom-xml/45418/7
priority
cdktf should check if the pre built providers peer dependency matches the installed cdktf version community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or other comments that do not add relevant new information or questions they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment description when working with pre built providers in java it can happen that maven installs a cdktf version that not matches what is specified in the pom xml because of outdated peer dependencies requiring an older version to make a user aware of this we need a check reminding folks to upgrade references information about referencing github issues are there any other github issues open or closed or pull requests that should be linked here vendor blog posts or documentation
1
786,989
27,700,937,083
IssuesEvent
2023-03-14 07:57:36
rts-cmk-wu07/svendeprove-cookieman2002
https://api.github.com/repos/rts-cmk-wu07/svendeprove-cookieman2002
opened
Search page
Medium Priority
its a page where you like the activity page just with a search bar on top where you can search after which acitvity is avaliable
1.0
Search page - its a page where you like the activity page just with a search bar on top where you can search after which acitvity is avaliable
priority
search page its a page where you like the activity page just with a search bar on top where you can search after which acitvity is avaliable
1
243,465
7,858,061,722
IssuesEvent
2018-06-21 12:53:55
vanilla-framework/vanilla-framework
https://api.github.com/repos/vanilla-framework/vanilla-framework
closed
Tooltip bottom spacing for single line tooltips
Priority: Medium
## Process 1. Go to https://docs.vanillaframework.io/en/patterns/tooltips 2. Hover over the 'Bottom left tooltip' button 3. Notice the extra large spacing below the text, and how it's different to the other multi-line tooltips ## Expected result The padding to be equal above and below ## Current result The padding isn't equal ## Screenshot ### Single line ![screenshot-2018-6-21 tooltips vanilla framework](https://user-images.githubusercontent.com/479384/41703314-c4a26374-752a-11e8-922d-b9808fd1fc15.png) ### Multi line ![screenshot-2018-6-21 tooltips vanilla framework 1](https://user-images.githubusercontent.com/479384/41703317-c4da776e-752a-11e8-8d41-6dc1cee3599d.png)
1.0
Tooltip bottom spacing for single line tooltips - ## Process 1. Go to https://docs.vanillaframework.io/en/patterns/tooltips 2. Hover over the 'Bottom left tooltip' button 3. Notice the extra large spacing below the text, and how it's different to the other multi-line tooltips ## Expected result The padding to be equal above and below ## Current result The padding isn't equal ## Screenshot ### Single line ![screenshot-2018-6-21 tooltips vanilla framework](https://user-images.githubusercontent.com/479384/41703314-c4a26374-752a-11e8-922d-b9808fd1fc15.png) ### Multi line ![screenshot-2018-6-21 tooltips vanilla framework 1](https://user-images.githubusercontent.com/479384/41703317-c4da776e-752a-11e8-8d41-6dc1cee3599d.png)
priority
tooltip bottom spacing for single line tooltips process go to hover over the bottom left tooltip button notice the extra large spacing below the text and how it s different to the other multi line tooltips expected result the padding to be equal above and below current result the padding isn t equal screenshot single line multi line
1
787,022
27,701,976,270
IssuesEvent
2023-03-14 08:42:56
admiral-team/admiralui-ios
https://api.github.com/repos/admiral-team/admiralui-ios
closed
[FEATURE] - Calendar – поменять местами horizontal и vertical
enhancement medium priority
**Описание задачи:** Calendar – поменять местами horizontal и vertical swiftUI + UIkit **Фреймворк** UIKit/SwiftUI **Ресурсы:** Ссылка на макеты или ресурсы...
1.0
[FEATURE] - Calendar – поменять местами horizontal и vertical - **Описание задачи:** Calendar – поменять местами horizontal и vertical swiftUI + UIkit **Фреймворк** UIKit/SwiftUI **Ресурсы:** Ссылка на макеты или ресурсы...
priority
calendar – поменять местами horizontal и vertical описание задачи calendar – поменять местами horizontal и vertical swiftui uikit фреймворк uikit swiftui ресурсы ссылка на макеты или ресурсы
1
762,921
26,736,538,756
IssuesEvent
2023-01-30 09:53:09
rmlockwood/FLExTrans
https://api.github.com/repos/rmlockwood/FLExTrans
opened
[Extract Bilingual Lexicon] replacement entries that have a space not being found
bug medium priority
If the entry you want to replace via the replacement file has a space in it, even though it seems to match what's in the bilingual lexicon file, it can't match it. ![image](https://user-images.githubusercontent.com/7088137/215444466-b9b08e62-6565-4ef7-9c7b-d75a68c4d79f.png) ![image](https://user-images.githubusercontent.com/7088137/215444519-bda3595d-8332-4df6-87f5-b77003683402.png)
1.0
[Extract Bilingual Lexicon] replacement entries that have a space not being found - If the entry you want to replace via the replacement file has a space in it, even though it seems to match what's in the bilingual lexicon file, it can't match it. ![image](https://user-images.githubusercontent.com/7088137/215444466-b9b08e62-6565-4ef7-9c7b-d75a68c4d79f.png) ![image](https://user-images.githubusercontent.com/7088137/215444519-bda3595d-8332-4df6-87f5-b77003683402.png)
priority
replacement entries that have a space not being found if the entry you want to replace via the replacement file has a space in it even though it seems to match what s in the bilingual lexicon file it can t match it
1
163,354
6,196,995,789
IssuesEvent
2017-07-05 15:50:12
scijava/scijava-jupyter-kernel
https://api.github.com/repos/scijava/scijava-jupyter-kernel
closed
SciJava kernel not starting
Bug Priority:Medium
Default kernel:- `scijava C:\Users\Sid\AppData\Roaming\jupyter\kernels\scijava` And the install Scijava Kernel options are different: ![image](https://user-images.githubusercontent.com/21156678/27766048-1f541288-5ee1-11e7-806c-9cc2becd56cb.png) When I start a jupyter notebook with Scijava selected as the language, the kernel doesn't starts. ``` ernelRestarter: restarting kernel (3/5) C:\Users\Sid\Anaconda3\lib\site-packages\IPython\kernel\__init__.py:13: ShimWarning: The `IPython.kernel` package has been deprecated since IPython 4.0.You should import from ipykernel or jupyter_client instead. "You should import from ipykernel or jupyter_client instead.", ShimWarning) Traceback (most recent call last): File "C:\Users\Sid\Anaconda3\lib\runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "C:\Users\Sid\Anaconda3\lib\runpy.py", line 85, in _run_code exec(code, run_globals) File "C:\Users\Sid\Anaconda3\lib\site-packages\octave_kernel.py", line 4, in <module> from oct2py import Oct2PyError, octave File "C:\Users\Sid\Anaconda3\lib\site-packages\oct2py\__init__.py", line 48, in <module> lib1 = ctypes.CDLL(os.path.join(basepath, 'core', 'libmmd.dll')) File "C:\Users\Sid\Anaconda3\lib\ctypes\__init__.py", line 347, in __init__ self._handle = _dlopen(self._name, mode) OSError: [WinError 126] The specified module could not be found Exception in thread "main" java.lang.IllegalArgumentException: Invalid service: net.imagej.itk.DefaultImageJItkService at org.scijava.service.ServiceHelper.createExactService(ServiceHelper.java:280) at org.scijava.service.ServiceHelper.loadService(ServiceHelper.java:231) at org.scijava.service.ServiceHelper.loadService(ServiceHelper.java:194) at org.scijava.service.ServiceHelper.loadServices(ServiceHelper.java:166) at org.scijava.Context.<init>(Context.java:278) at org.scijava.Context.<init>(Context.java:234) at org.scijava.Context.<init>(Context.java:131) at org.scijava.Context.<init>(Context.java:118) at org.scijava.Context.<init>(Context.java:107) at org.scijava.jupyter.kernel.ScijavaKernel.main(ScijavaKernel.java:105) Caused by: java.lang.UnsatisfiedLinkError: no SimpleITKJava in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867) at java.lang.Runtime.loadLibrary0(Runtime.java:870) at java.lang.System.loadLibrary(System.java:1122) at net.imagej.itk.DefaultImageJItkService.initialize(DefaultImageJItkService.java:87) at org.scijava.service.ServiceHelper.createServiceRecursively(ServiceHelper.java:353) at org.scijava.service.ServiceHelper.createExactService(ServiceHelper.java:269) ... 9 more ```
1.0
SciJava kernel not starting - Default kernel:- `scijava C:\Users\Sid\AppData\Roaming\jupyter\kernels\scijava` And the install Scijava Kernel options are different: ![image](https://user-images.githubusercontent.com/21156678/27766048-1f541288-5ee1-11e7-806c-9cc2becd56cb.png) When I start a jupyter notebook with Scijava selected as the language, the kernel doesn't starts. ``` ernelRestarter: restarting kernel (3/5) C:\Users\Sid\Anaconda3\lib\site-packages\IPython\kernel\__init__.py:13: ShimWarning: The `IPython.kernel` package has been deprecated since IPython 4.0.You should import from ipykernel or jupyter_client instead. "You should import from ipykernel or jupyter_client instead.", ShimWarning) Traceback (most recent call last): File "C:\Users\Sid\Anaconda3\lib\runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "C:\Users\Sid\Anaconda3\lib\runpy.py", line 85, in _run_code exec(code, run_globals) File "C:\Users\Sid\Anaconda3\lib\site-packages\octave_kernel.py", line 4, in <module> from oct2py import Oct2PyError, octave File "C:\Users\Sid\Anaconda3\lib\site-packages\oct2py\__init__.py", line 48, in <module> lib1 = ctypes.CDLL(os.path.join(basepath, 'core', 'libmmd.dll')) File "C:\Users\Sid\Anaconda3\lib\ctypes\__init__.py", line 347, in __init__ self._handle = _dlopen(self._name, mode) OSError: [WinError 126] The specified module could not be found Exception in thread "main" java.lang.IllegalArgumentException: Invalid service: net.imagej.itk.DefaultImageJItkService at org.scijava.service.ServiceHelper.createExactService(ServiceHelper.java:280) at org.scijava.service.ServiceHelper.loadService(ServiceHelper.java:231) at org.scijava.service.ServiceHelper.loadService(ServiceHelper.java:194) at org.scijava.service.ServiceHelper.loadServices(ServiceHelper.java:166) at org.scijava.Context.<init>(Context.java:278) at org.scijava.Context.<init>(Context.java:234) at org.scijava.Context.<init>(Context.java:131) at org.scijava.Context.<init>(Context.java:118) at org.scijava.Context.<init>(Context.java:107) at org.scijava.jupyter.kernel.ScijavaKernel.main(ScijavaKernel.java:105) Caused by: java.lang.UnsatisfiedLinkError: no SimpleITKJava in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867) at java.lang.Runtime.loadLibrary0(Runtime.java:870) at java.lang.System.loadLibrary(System.java:1122) at net.imagej.itk.DefaultImageJItkService.initialize(DefaultImageJItkService.java:87) at org.scijava.service.ServiceHelper.createServiceRecursively(ServiceHelper.java:353) at org.scijava.service.ServiceHelper.createExactService(ServiceHelper.java:269) ... 9 more ```
priority
scijava kernel not starting default kernel scijava c users sid appdata roaming jupyter kernels scijava and the install scijava kernel options are different when i start a jupyter notebook with scijava selected as the language the kernel doesn t starts ernelrestarter restarting kernel c users sid lib site packages ipython kernel init py shimwarning the ipython kernel package has been deprecated since ipython you should import from ipykernel or jupyter client instead you should import from ipykernel or jupyter client instead shimwarning traceback most recent call last file c users sid lib runpy py line in run module as main main mod spec file c users sid lib runpy py line in run code exec code run globals file c users sid lib site packages octave kernel py line in from import octave file c users sid lib site packages init py line in ctypes cdll os path join basepath core libmmd dll file c users sid lib ctypes init py line in init self handle dlopen self name mode oserror the specified module could not be found exception in thread main java lang illegalargumentexception invalid service net imagej itk defaultimagejitkservice at org scijava service servicehelper createexactservice servicehelper java at org scijava service servicehelper loadservice servicehelper java at org scijava service servicehelper loadservice servicehelper java at org scijava service servicehelper loadservices servicehelper java at org scijava context context java at org scijava context context java at org scijava context context java at org scijava context context java at org scijava context context java at org scijava jupyter kernel scijavakernel main scijavakernel java caused by java lang unsatisfiedlinkerror no simpleitkjava in java library path at java lang classloader loadlibrary classloader java at java lang runtime runtime java at java lang system loadlibrary system java at net imagej itk defaultimagejitkservice initialize defaultimagejitkservice java at org scijava service servicehelper createservicerecursively servicehelper java at org scijava service servicehelper createexactservice servicehelper java more
1
792,143
27,947,984,469
IssuesEvent
2023-03-24 05:58:23
curiouslearning/FeedTheMonsterJS
https://api.github.com/repos/curiouslearning/FeedTheMonsterJS
closed
Add "app_launch" Firebase event to Curious Reader container app
Medium Priority
**User Story** As a Product Manager and Stakeholder, I want to track the amount of times each app in the Curious Reader container app is launched, So that we can track which apps within the Curious Reader are most popular.
1.0
Add "app_launch" Firebase event to Curious Reader container app - **User Story** As a Product Manager and Stakeholder, I want to track the amount of times each app in the Curious Reader container app is launched, So that we can track which apps within the Curious Reader are most popular.
priority
add app launch firebase event to curious reader container app user story as a product manager and stakeholder i want to track the amount of times each app in the curious reader container app is launched so that we can track which apps within the curious reader are most popular
1
328,713
9,999,180,991
IssuesEvent
2019-07-12 09:59:08
latepaul/puttysessmgr
https://api.github.com/repos/latepaul/puttysessmgr
closed
Reload/Refresh button
MediumPriority enhancement
Add refresh button to re-build tree. Allows us to pick changes in registry (new sessions) or in config file #2
1.0
Reload/Refresh button - Add refresh button to re-build tree. Allows us to pick changes in registry (new sessions) or in config file #2
priority
reload refresh button add refresh button to re build tree allows us to pick changes in registry new sessions or in config file
1
528,800
15,374,983,460
IssuesEvent
2021-03-02 14:26:57
square-gaming/diatopia-app
https://api.github.com/repos/square-gaming/diatopia-app
opened
Add a sheep mob
Priority: Medium Status: To do Type: Request
Add a sheep mob, it requires: - A class named sheep in models/entity/mobs - A functional component named sheep in components/ - Canvas renders sheep properly
1.0
Add a sheep mob - Add a sheep mob, it requires: - A class named sheep in models/entity/mobs - A functional component named sheep in components/ - Canvas renders sheep properly
priority
add a sheep mob add a sheep mob it requires a class named sheep in models entity mobs a functional component named sheep in components canvas renders sheep properly
1
365,691
10,790,711,610
IssuesEvent
2019-11-05 15:26:31
RCSideProjects/RAMP-Vue-Testing
https://api.github.com/repos/RCSideProjects/RAMP-Vue-Testing
opened
Nested visibility sets + edge cases
bug priority: medium
Currently, nesting a group entry as a member of a visibility set creates problems for the child elements of the group. ![nested-sets](https://user-images.githubusercontent.com/31557789/68215748-befa2380-ffad-11e9-94b1-ea5c0b466a4e.PNG) Also, some edge cases with visibility sets + using show/hide all options can result in more than one member of the set being toggled on. ![showAllSet](https://user-images.githubusercontent.com/31557789/68216380-cf5ece00-ffae-11e9-8940-b01850180b95.gif)
1.0
Nested visibility sets + edge cases - Currently, nesting a group entry as a member of a visibility set creates problems for the child elements of the group. ![nested-sets](https://user-images.githubusercontent.com/31557789/68215748-befa2380-ffad-11e9-94b1-ea5c0b466a4e.PNG) Also, some edge cases with visibility sets + using show/hide all options can result in more than one member of the set being toggled on. ![showAllSet](https://user-images.githubusercontent.com/31557789/68216380-cf5ece00-ffae-11e9-8940-b01850180b95.gif)
priority
nested visibility sets edge cases currently nesting a group entry as a member of a visibility set creates problems for the child elements of the group also some edge cases with visibility sets using show hide all options can result in more than one member of the set being toggled on
1
542,296
15,858,262,801
IssuesEvent
2021-04-08 06:26:18
AY2021S2-CS2103-T14-1/tp
https://api.github.com/repos/AY2021S2-CS2103-T14-1/tp
closed
Code quality: Move issue desc wrap to fxml file
priority.Medium type.Task
Additionally clean up the fxml file and either update or remove the placeholder text
1.0
Code quality: Move issue desc wrap to fxml file - Additionally clean up the fxml file and either update or remove the placeholder text
priority
code quality move issue desc wrap to fxml file additionally clean up the fxml file and either update or remove the placeholder text
1
257,437
8,137,360,725
IssuesEvent
2018-08-20 11:31:00
Qiskit/qiskit-vscode
https://api.github.com/repos/Qiskit/qiskit-vscode
closed
Rename qiskit-aqua dependencies and related code
priority: medium status: confirmed type: enhancement
<!-- ⚠️ If you do not respect this template, your issue will be closed --> <!-- ⚠️ Make sure to browse the opened and closed issues to confirm this idea does not exist. --> ### What is the expected enhancement? Since `qiskit-acqua` and `qiskit-acqua-chemistry` were renamed to `qiskit-aqua` and `qiskit-aqua-chemistry`, we should update the naming and dependencies across the project.
1.0
Rename qiskit-aqua dependencies and related code - <!-- ⚠️ If you do not respect this template, your issue will be closed --> <!-- ⚠️ Make sure to browse the opened and closed issues to confirm this idea does not exist. --> ### What is the expected enhancement? Since `qiskit-acqua` and `qiskit-acqua-chemistry` were renamed to `qiskit-aqua` and `qiskit-aqua-chemistry`, we should update the naming and dependencies across the project.
priority
rename qiskit aqua dependencies and related code what is the expected enhancement since qiskit acqua and qiskit acqua chemistry were renamed to qiskit aqua and qiskit aqua chemistry we should update the naming and dependencies across the project
1
651,758
21,509,481,947
IssuesEvent
2022-04-28 01:46:00
Flutter-Vision/FlutterVision
https://api.github.com/repos/Flutter-Vision/FlutterVision
closed
Delete 2 points on the Upload Page
Medium Priority
We no longer need these two points on the Upload Page: - No Variants or custom components - Only frames using Auto Layout
1.0
Delete 2 points on the Upload Page - We no longer need these two points on the Upload Page: - No Variants or custom components - Only frames using Auto Layout
priority
delete points on the upload page we no longer need these two points on the upload page no variants or custom components only frames using auto layout
1
36,148
2,795,923,485
IssuesEvent
2015-05-12 01:57:01
phetsims/website
https://api.github.com/repos/phetsims/website
closed
Update activity info pages
Medium Priority Sim pages
Here is an example of an activity page: https://phet.colorado.edu/en/contributions/view/4015 We would like to take the existing information and rearrange it slightly, while also adding a few design elements to organize the information. I will email you mockups and artwork files. We are also removing the "nominate for a gold star" section based on conversations in #110.
1.0
Update activity info pages - Here is an example of an activity page: https://phet.colorado.edu/en/contributions/view/4015 We would like to take the existing information and rearrange it slightly, while also adding a few design elements to organize the information. I will email you mockups and artwork files. We are also removing the "nominate for a gold star" section based on conversations in #110.
priority
update activity info pages here is an example of an activity page we would like to take the existing information and rearrange it slightly while also adding a few design elements to organize the information i will email you mockups and artwork files we are also removing the nominate for a gold star section based on conversations in
1
248,316
7,929,207,292
IssuesEvent
2018-07-06 14:21:50
xAPI-vle/moodle-logstore_xapi
https://api.github.com/repos/xAPI-vle/moodle-logstore_xapi
closed
Report to admin if statements fail sending to LRS
priority:medium status:confirmed type:enhancement
**Motive** 1. It's a nice thing to have @ryansmith94 comments: > I think it might be a good idea to notify someone if an event has been waiting more than X minutes or retried more than Y times. This is useful if: > - The LRS is down for X minutes and the plugin user doesn't know > - A statement is invalid (hence the plugin has a bug) > - The LRS is incorrectly returning an error for a valid statement (hence the LRS has a bug) 2. It's a step towards ensuring it completely replaces the quiz specific module See https://github.com/leo-platforms/moodle-quiz-tincan 3. (against) It's out of scope (via @jlowe64) The LRS or some other monitoring system should report if there's a problem **Result** - Configuration for the plugin admin to specify alert behavior and email - Log errors and monitor number of errors or length of unavailability - Send the alert See https://github.com/leo-platforms/moodle-quiz-tincan/tree/master/local/resendtincandata
1.0
Report to admin if statements fail sending to LRS - **Motive** 1. It's a nice thing to have @ryansmith94 comments: > I think it might be a good idea to notify someone if an event has been waiting more than X minutes or retried more than Y times. This is useful if: > - The LRS is down for X minutes and the plugin user doesn't know > - A statement is invalid (hence the plugin has a bug) > - The LRS is incorrectly returning an error for a valid statement (hence the LRS has a bug) 2. It's a step towards ensuring it completely replaces the quiz specific module See https://github.com/leo-platforms/moodle-quiz-tincan 3. (against) It's out of scope (via @jlowe64) The LRS or some other monitoring system should report if there's a problem **Result** - Configuration for the plugin admin to specify alert behavior and email - Log errors and monitor number of errors or length of unavailability - Send the alert See https://github.com/leo-platforms/moodle-quiz-tincan/tree/master/local/resendtincandata
priority
report to admin if statements fail sending to lrs motive it s a nice thing to have comments i think it might be a good idea to notify someone if an event has been waiting more than x minutes or retried more than y times this is useful if the lrs is down for x minutes and the plugin user doesn t know a statement is invalid hence the plugin has a bug the lrs is incorrectly returning an error for a valid statement hence the lrs has a bug it s a step towards ensuring it completely replaces the quiz specific module see against it s out of scope via the lrs or some other monitoring system should report if there s a problem result configuration for the plugin admin to specify alert behavior and email log errors and monitor number of errors or length of unavailability send the alert see
1
779,211
27,344,353,817
IssuesEvent
2023-02-27 02:46:28
ansible-collections/azure
https://api.github.com/repos/ansible-collections/azure
closed
Issue for ARO Support Instance
has_pr medium_priority
##### SUMMARY VM instance type support issue ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME <!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure --> azure_rm_openshiftmanagedcluster ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes --> ```paste below ansible 2.9.27 config file = /mnt/c/Users/pinhuang/ms-workspace/runbook-for-azure-redhat-openshift/deploy-aro/ansible.cfg configured module search path = ['/mnt/c/Users/pinhuang/rhwsl-home/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python3.6/site-packages/ansible executable location = /usr/bin/ansible python version = 3.6.8 (default, Jun 14 2022, 12:54:58) [GCC 8.5.0 20210514 (Red Hat 8.5.0-10)] ``` ##### COLLECTION VERSION ```paste below Azure.Azcollection 1.13.0 ``` ##### CONFIGURATION <!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes --> ```paste below ANSIBLE_NOCOWS(/etc/ansible/ansible.cfg) = True ANSIBLE_PIPELINING(/etc/ansible/ansible.cfg) = True ANSIBLE_SSH_ARGS(/etc/ansible/ansible.cfg) = -o ControlMaster=auto -o ControlPersist=600s -o ServerAliveInterval=60 CACHE_PLUGIN(/etc/ansible/ansible.cfg) = jsonfile CACHE_PLUGIN_CONNECTION(/etc/ansible/ansible.cfg) = /tmp/ansible/facts CACHE_PLUGIN_TIMEOUT(/etc/ansible/ansible.cfg) = 600 DEFAULT_BECOME(/etc/ansible/ansible.cfg) = False DEFAULT_CALLBACK_WHITELIST(/etc/ansible/ansible.cfg) = ['profile_tasks', 'timer'] DEFAULT_FORKS(/etc/ansible/ansible.cfg) = 20 DEFAULT_GATHERING(/etc/ansible/ansible.cfg) = smart DEFAULT_LOG_PATH(/etc/ansible/ansible.cfg) = /tmp/ansible.log DEFAULT_ROLES_PATH(/etc/ansible/ansible.cfg) = ['/etc/ansible/roles'] DEFAULT_STDOUT_CALLBACK(/etc/ansible/ansible.cfg) = debug HOST_KEY_CHECKING(/etc/ansible/ansible.cfg) = False INTERPRETER_PYTHON(/etc/ansible/ansible.cfg) = auto_silent RETRY_FILES_ENABLED(/etc/ansible/ansible.cfg) = False ``` ##### OS / ENVIRONMENT <!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> ``` RHEL8 on WSL2 ``` ##### STEPS TO REPRODUCE <!--- Describe exactly how to reproduce the problem, using a minimal test-case --> <!--- Paste example playbooks or commands between quotes below --> ```yaml ``` <!--- HINT: You can paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- Describe what you expected to happen when running the steps above --> ##### ACTUAL RESULTS <!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> <!--- Paste verbatim command output between quotes --> ```paste below Azure Error: InvalidParameter Message: The provided master VM size 'Standard_D2s_v3' is invalid. Target: properties.masterProfile.vmSize ``` ``` Azure Error: InvalidParameter Message: The provided worker VM size 'Standard_D2s_v3' is invalid. Target: properties.workerProfiles['worker'].vmSize ``` ``` Azure Error: InvalidParameter Message: The provided master VM size 'Standard_D4s_v3' is invalid. Target: properties.masterProfile.vmSize ```
1.0
Issue for ARO Support Instance - ##### SUMMARY VM instance type support issue ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME <!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure --> azure_rm_openshiftmanagedcluster ##### ANSIBLE VERSION <!--- Paste verbatim output from "ansible --version" between quotes --> ```paste below ansible 2.9.27 config file = /mnt/c/Users/pinhuang/ms-workspace/runbook-for-azure-redhat-openshift/deploy-aro/ansible.cfg configured module search path = ['/mnt/c/Users/pinhuang/rhwsl-home/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python3.6/site-packages/ansible executable location = /usr/bin/ansible python version = 3.6.8 (default, Jun 14 2022, 12:54:58) [GCC 8.5.0 20210514 (Red Hat 8.5.0-10)] ``` ##### COLLECTION VERSION ```paste below Azure.Azcollection 1.13.0 ``` ##### CONFIGURATION <!--- Paste verbatim output from "ansible-config dump --only-changed" between quotes --> ```paste below ANSIBLE_NOCOWS(/etc/ansible/ansible.cfg) = True ANSIBLE_PIPELINING(/etc/ansible/ansible.cfg) = True ANSIBLE_SSH_ARGS(/etc/ansible/ansible.cfg) = -o ControlMaster=auto -o ControlPersist=600s -o ServerAliveInterval=60 CACHE_PLUGIN(/etc/ansible/ansible.cfg) = jsonfile CACHE_PLUGIN_CONNECTION(/etc/ansible/ansible.cfg) = /tmp/ansible/facts CACHE_PLUGIN_TIMEOUT(/etc/ansible/ansible.cfg) = 600 DEFAULT_BECOME(/etc/ansible/ansible.cfg) = False DEFAULT_CALLBACK_WHITELIST(/etc/ansible/ansible.cfg) = ['profile_tasks', 'timer'] DEFAULT_FORKS(/etc/ansible/ansible.cfg) = 20 DEFAULT_GATHERING(/etc/ansible/ansible.cfg) = smart DEFAULT_LOG_PATH(/etc/ansible/ansible.cfg) = /tmp/ansible.log DEFAULT_ROLES_PATH(/etc/ansible/ansible.cfg) = ['/etc/ansible/roles'] DEFAULT_STDOUT_CALLBACK(/etc/ansible/ansible.cfg) = debug HOST_KEY_CHECKING(/etc/ansible/ansible.cfg) = False INTERPRETER_PYTHON(/etc/ansible/ansible.cfg) = auto_silent RETRY_FILES_ENABLED(/etc/ansible/ansible.cfg) = False ``` ##### OS / ENVIRONMENT <!--- Provide all relevant information below, e.g. target OS versions, network device firmware, etc. --> ``` RHEL8 on WSL2 ``` ##### STEPS TO REPRODUCE <!--- Describe exactly how to reproduce the problem, using a minimal test-case --> <!--- Paste example playbooks or commands between quotes below --> ```yaml ``` <!--- HINT: You can paste gist.github.com links for larger files --> ##### EXPECTED RESULTS <!--- Describe what you expected to happen when running the steps above --> ##### ACTUAL RESULTS <!--- Describe what actually happened. If possible run with extra verbosity (-vvvv) --> <!--- Paste verbatim command output between quotes --> ```paste below Azure Error: InvalidParameter Message: The provided master VM size 'Standard_D2s_v3' is invalid. Target: properties.masterProfile.vmSize ``` ``` Azure Error: InvalidParameter Message: The provided worker VM size 'Standard_D2s_v3' is invalid. Target: properties.workerProfiles['worker'].vmSize ``` ``` Azure Error: InvalidParameter Message: The provided master VM size 'Standard_D4s_v3' is invalid. Target: properties.masterProfile.vmSize ```
priority
issue for aro support instance summary vm instance type support issue issue type bug report component name azure rm openshiftmanagedcluster ansible version paste below ansible config file mnt c users pinhuang ms workspace runbook for azure redhat openshift deploy aro ansible cfg configured module search path ansible python module location usr lib site packages ansible executable location usr bin ansible python version default jun collection version paste below azure azcollection configuration paste below ansible nocows etc ansible ansible cfg true ansible pipelining etc ansible ansible cfg true ansible ssh args etc ansible ansible cfg o controlmaster auto o controlpersist o serveraliveinterval cache plugin etc ansible ansible cfg jsonfile cache plugin connection etc ansible ansible cfg tmp ansible facts cache plugin timeout etc ansible ansible cfg default become etc ansible ansible cfg false default callback whitelist etc ansible ansible cfg default forks etc ansible ansible cfg default gathering etc ansible ansible cfg smart default log path etc ansible ansible cfg tmp ansible log default roles path etc ansible ansible cfg default stdout callback etc ansible ansible cfg debug host key checking etc ansible ansible cfg false interpreter python etc ansible ansible cfg auto silent retry files enabled etc ansible ansible cfg false os environment on steps to reproduce yaml expected results actual results paste below azure error invalidparameter message the provided master vm size standard is invalid target properties masterprofile vmsize azure error invalidparameter message the provided worker vm size standard is invalid target properties workerprofiles vmsize azure error invalidparameter message the provided master vm size standard is invalid target properties masterprofile vmsize
1
667,672
22,495,988,298
IssuesEvent
2022-06-23 07:37:32
hackforla/expunge-assist
https://api.github.com/repos/hackforla/expunge-assist
opened
Review word choice and phrasing on Advice page [from usability testing]
priority: medium size: medium role: UX content writing feature: figma content writing
### Overview Review word choice and phrasing on the Advice page. Primarily: one user did not know what “pov” meant. Review for common terms and plain language. ### Action Items - [ ] Review word choice and phrasing. “pov” was the primary issue on this page => swap for a more common acronym or slang. - [ ] Choose new words/phrases and review presentation to user - [ ] Rewrite copy - [ ] Discuss in Content/iterate - [ ] Hand over to dev ### Resources/Instructions
1.0
Review word choice and phrasing on Advice page [from usability testing] - ### Overview Review word choice and phrasing on the Advice page. Primarily: one user did not know what “pov” meant. Review for common terms and plain language. ### Action Items - [ ] Review word choice and phrasing. “pov” was the primary issue on this page => swap for a more common acronym or slang. - [ ] Choose new words/phrases and review presentation to user - [ ] Rewrite copy - [ ] Discuss in Content/iterate - [ ] Hand over to dev ### Resources/Instructions
priority
review word choice and phrasing on advice page overview review word choice and phrasing on the advice page primarily one user did not know what “pov” meant review for common terms and plain language action items review word choice and phrasing “pov” was the primary issue on this page swap for a more common acronym or slang choose new words phrases and review presentation to user rewrite copy discuss in content iterate hand over to dev resources instructions
1
398,538
11,741,734,816
IssuesEvent
2020-03-11 22:31:07
thaliawww/concrexit
https://api.github.com/repos/thaliawww/concrexit
closed
Create/expand unit tests for display names
easy and fun members priority: medium
In GitLab by @joostrijneveld on Dec 6, 2016, 17:09 In particular, cover the issues raised in #167
1.0
Create/expand unit tests for display names - In GitLab by @joostrijneveld on Dec 6, 2016, 17:09 In particular, cover the issues raised in #167
priority
create expand unit tests for display names in gitlab by joostrijneveld on dec in particular cover the issues raised in
1
164,009
6,218,162,903
IssuesEvent
2017-07-08 22:06:59
OWASP/BLT
https://api.github.com/repos/OWASP/BLT
closed
Logs contain several 404 errors for issues page.
backend bug priority: medium
``` [09/Jun/2017 22:08:31] "GET /issue/1/None HTTP/1.1" 404 6414 Not Found: /issue/1/None Not Found: /issue/1/None [09/Jun/2017 22:08:31] "GET /issue/1/None HTTP/1.1" 404 6414 ```
1.0
Logs contain several 404 errors for issues page. - ``` [09/Jun/2017 22:08:31] "GET /issue/1/None HTTP/1.1" 404 6414 Not Found: /issue/1/None Not Found: /issue/1/None [09/Jun/2017 22:08:31] "GET /issue/1/None HTTP/1.1" 404 6414 ```
priority
logs contain several errors for issues page get issue none http not found issue none not found issue none get issue none http
1
369,696
10,916,435,352
IssuesEvent
2019-11-21 13:21:45
department-of-veterans-affairs/caseflow
https://api.github.com/repos/department-of-veterans-affairs/caseflow
closed
Document List | Loader stuck when there are no documents in VBMS
bug-medium-priority caseflow-reader
# Description When there are 0 documents in VBMS, the initial loader for Document List gets stuck... ## Reproduction Steps **Scenario 1 -** 1. Go to reader for an appeal that has no VBMS documents 1. Watch loader forever **Validated in the following Envrionment(s)** - [ ] Dev - [X] UAT - [ ] Preprod - [ ] Prod ## Screenshots **_Scenario 1 - [VBMS]_** <img width="972" alt="screen shot 2017-06-09 at 12 07 01 pm" src="https://user-images.githubusercontent.com/18075411/26984532-b3631ffe-4d0d-11e7-9bbf-515b47a5f53f.png"> **_Scenario 1 - [Reader]_** <img width="883" alt="screen shot 2017-06-09 at 12 07 14 pm" src="https://user-images.githubusercontent.com/18075411/26984535-b87219dc-4d0d-11e7-82a9-af4a6ff0a610.png">
1.0
Document List | Loader stuck when there are no documents in VBMS - # Description When there are 0 documents in VBMS, the initial loader for Document List gets stuck... ## Reproduction Steps **Scenario 1 -** 1. Go to reader for an appeal that has no VBMS documents 1. Watch loader forever **Validated in the following Envrionment(s)** - [ ] Dev - [X] UAT - [ ] Preprod - [ ] Prod ## Screenshots **_Scenario 1 - [VBMS]_** <img width="972" alt="screen shot 2017-06-09 at 12 07 01 pm" src="https://user-images.githubusercontent.com/18075411/26984532-b3631ffe-4d0d-11e7-9bbf-515b47a5f53f.png"> **_Scenario 1 - [Reader]_** <img width="883" alt="screen shot 2017-06-09 at 12 07 14 pm" src="https://user-images.githubusercontent.com/18075411/26984535-b87219dc-4d0d-11e7-82a9-af4a6ff0a610.png">
priority
document list loader stuck when there are no documents in vbms description when there are documents in vbms the initial loader for document list gets stuck reproduction steps scenario go to reader for an appeal that has no vbms documents watch loader forever validated in the following envrionment s dev uat preprod prod screenshots scenario img width alt screen shot at pm src scenario img width alt screen shot at pm src
1
220,920
7,372,168,995
IssuesEvent
2018-03-13 14:04:39
JetJet13/mathbook
https://api.github.com/repos/JetJet13/mathbook
opened
Dockerize Mathbook
feedback medium priority
To make everyone's lives easier when it comes to setting up Mathbook locally, we should dockerize the application.
1.0
Dockerize Mathbook - To make everyone's lives easier when it comes to setting up Mathbook locally, we should dockerize the application.
priority
dockerize mathbook to make everyone s lives easier when it comes to setting up mathbook locally we should dockerize the application
1
88,046
3,770,904,325
IssuesEvent
2016-03-16 15:58:17
Vannevelj/VSDiagnostics
https://api.github.com/repos/Vannevelj/VSDiagnostics
opened
Implement LINQUsed
priority - medium type - feature
In performance-sensitive code, teams might sometimes decide to not allow any LINQ (known for its many allocations). We can write an analyzer that basically warns anytime LINQ is used. We'll have to do some thinking about how we address this: do we just check `using` statements? Do we search for exact occurrences after we've done that? This should be disabled by default (users have to explicitly opt-in since only a very small subset will use this).
1.0
Implement LINQUsed - In performance-sensitive code, teams might sometimes decide to not allow any LINQ (known for its many allocations). We can write an analyzer that basically warns anytime LINQ is used. We'll have to do some thinking about how we address this: do we just check `using` statements? Do we search for exact occurrences after we've done that? This should be disabled by default (users have to explicitly opt-in since only a very small subset will use this).
priority
implement linqused in performance sensitive code teams might sometimes decide to not allow any linq known for its many allocations we can write an analyzer that basically warns anytime linq is used we ll have to do some thinking about how we address this do we just check using statements do we search for exact occurrences after we ve done that this should be disabled by default users have to explicitly opt in since only a very small subset will use this
1
483,284
13,921,931,793
IssuesEvent
2020-10-21 12:38:14
AY2021S1-CS2113T-F14-1/tp
https://api.github.com/repos/AY2021S1-CS2113T-F14-1/tp
closed
As a user I can reassign member roles
priority.Medium type.Story
... so that I can update their roles and responsibilities
1.0
As a user I can reassign member roles - ... so that I can update their roles and responsibilities
priority
as a user i can reassign member roles so that i can update their roles and responsibilities
1
579,257
17,186,839,479
IssuesEvent
2021-07-16 04:11:51
LcorpOfficial/LCC-Minecraft-Server
https://api.github.com/repos/LcorpOfficial/LCC-Minecraft-Server
closed
Antiadmin Potion
WIP Feature enhancement medium priority
Rare mob boss drop of some sort. should work as a high damage or heavy effect-based potion. thrown only. Built to replace broken dupe pot.
1.0
Antiadmin Potion - Rare mob boss drop of some sort. should work as a high damage or heavy effect-based potion. thrown only. Built to replace broken dupe pot.
priority
antiadmin potion rare mob boss drop of some sort should work as a high damage or heavy effect based potion thrown only built to replace broken dupe pot
1
57,963
3,086,919,435
IssuesEvent
2015-08-25 08:11:12
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
Анимация смайлов зовется даже если их не видно.
bug imported Performance Priority-Medium
_From [Pavel.Pimenov@gmail.com](https://code.google.com/u/Pavel.Pimenov@gmail.com/) on September 09, 2013 10:33:17_ Обрабатывать CGDIImageOle::FireViewChangeEx только если окно активное. анимированные смайлы будут в этом случае замораживаться если MDI окна выстроить мозайкой, но это ничего страшного. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1266_
1.0
Анимация смайлов зовется даже если их не видно. - _From [Pavel.Pimenov@gmail.com](https://code.google.com/u/Pavel.Pimenov@gmail.com/) on September 09, 2013 10:33:17_ Обрабатывать CGDIImageOle::FireViewChangeEx только если окно активное. анимированные смайлы будут в этом случае замораживаться если MDI окна выстроить мозайкой, но это ничего страшного. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1266_
priority
анимация смайлов зовется даже если их не видно from on september обрабатывать cgdiimageole fireviewchangeex только если окно активное анимированные смайлы будут в этом случае замораживаться если mdi окна выстроить мозайкой но это ничего страшного original issue
1
2,084
2,523,374,302
IssuesEvent
2015-01-20 09:58:25
olga-jane/prizm
https://api.github.com/repos/olga-jane/prizm
opened
Revise Db and LengthLimit.cs and find missing constants
bug bug - functional Coding Coding - POOL COMMON MEDIUM priority
Revise Db and LengthLimit.cs and find missing constants. Create them and apply to the code.
1.0
Revise Db and LengthLimit.cs and find missing constants - Revise Db and LengthLimit.cs and find missing constants. Create them and apply to the code.
priority
revise db and lengthlimit cs and find missing constants revise db and lengthlimit cs and find missing constants create them and apply to the code
1
335,976
10,169,312,187
IssuesEvent
2019-08-07 23:54:50
byu-animation/dccpipe
https://api.github.com/repos/byu-animation/dccpipe
closed
Fix requirement of exporting to modify, texture, hair or cloth
Houdini bug priority: medium
Right now when assembling an asset in houdini, there must be an alembic in one of these departments. But the alembic is never used, it's pulled from model. Find out why.
1.0
Fix requirement of exporting to modify, texture, hair or cloth - Right now when assembling an asset in houdini, there must be an alembic in one of these departments. But the alembic is never used, it's pulled from model. Find out why.
priority
fix requirement of exporting to modify texture hair or cloth right now when assembling an asset in houdini there must be an alembic in one of these departments but the alembic is never used it s pulled from model find out why
1
741,478
25,797,939,422
IssuesEvent
2022-12-10 18:53:23
Lissy93/dashy
https://api.github.com/repos/Lissy93/dashy
closed
[BUG] updateInterval (and refresh-icon) not working on widgets of type "image"
🦄 Feature Request ❕ Medium Priority
### Environment Self-Hosted (Bare Metal) ### System latest Chrome, Ubuntu 22.04.1 LTS ### Version 2.1.1 ### Describe the problem I want some webcam-images be updated automatically: ` widgets: - type: image updateInterval: 300 options: imagePath: https://www.gasthaus-haldenhof.de/MOBOTIX/webcam-1.jpg - type: image updateInterval: 60 options: imagePath: http://pfaenderbahn.it-wms.com/big_panorama1.jpg - type: image updateInterval: 60 options: imagePath: https://bachtel.it-wms.com/panorama1_raw.jpg ` But it does not work. The get refreshed on load and that's it. When I click on the refresh icon - nothing happens either. What could be wrong? Thank you for any hint! Bye Sven ### Additional info _No response_ ### Please tick the boxes - [X] You have explained the issue clearly, and included all relevant info - [X] You are using a [supported](https://github.com/Lissy93/dashy/blob/master/.github/SECURITY.md#supported-versions) version of Dashy - [X] You've checked that this [issue hasn't already been raised](https://github.com/Lissy93/dashy/issues?q=is%3Aissue) - [X] You've checked the [docs](https://github.com/Lissy93/dashy/tree/master/docs#readme) and [troubleshooting](https://github.com/Lissy93/dashy/blob/master/docs/troubleshooting.md#troubleshooting) guide ![important](https://img.shields.io/badge/Important!-F6094E) - [X] You agree to the [code of conduct](https://github.com/Lissy93/dashy/blob/master/.github/CODE_OF_CONDUCT.md#contributor-covenant-code-of-conduct)
1.0
[BUG] updateInterval (and refresh-icon) not working on widgets of type "image" - ### Environment Self-Hosted (Bare Metal) ### System latest Chrome, Ubuntu 22.04.1 LTS ### Version 2.1.1 ### Describe the problem I want some webcam-images be updated automatically: ` widgets: - type: image updateInterval: 300 options: imagePath: https://www.gasthaus-haldenhof.de/MOBOTIX/webcam-1.jpg - type: image updateInterval: 60 options: imagePath: http://pfaenderbahn.it-wms.com/big_panorama1.jpg - type: image updateInterval: 60 options: imagePath: https://bachtel.it-wms.com/panorama1_raw.jpg ` But it does not work. The get refreshed on load and that's it. When I click on the refresh icon - nothing happens either. What could be wrong? Thank you for any hint! Bye Sven ### Additional info _No response_ ### Please tick the boxes - [X] You have explained the issue clearly, and included all relevant info - [X] You are using a [supported](https://github.com/Lissy93/dashy/blob/master/.github/SECURITY.md#supported-versions) version of Dashy - [X] You've checked that this [issue hasn't already been raised](https://github.com/Lissy93/dashy/issues?q=is%3Aissue) - [X] You've checked the [docs](https://github.com/Lissy93/dashy/tree/master/docs#readme) and [troubleshooting](https://github.com/Lissy93/dashy/blob/master/docs/troubleshooting.md#troubleshooting) guide ![important](https://img.shields.io/badge/Important!-F6094E) - [X] You agree to the [code of conduct](https://github.com/Lissy93/dashy/blob/master/.github/CODE_OF_CONDUCT.md#contributor-covenant-code-of-conduct)
priority
updateinterval and refresh icon not working on widgets of type image environment self hosted bare metal system latest chrome ubuntu lts version describe the problem i want some webcam images be updated automatically widgets type image updateinterval options imagepath type image updateinterval options imagepath type image updateinterval options imagepath but it does not work the get refreshed on load and that s it when i click on the refresh icon nothing happens either what could be wrong thank you for any hint bye sven additional info no response please tick the boxes you have explained the issue clearly and included all relevant info you are using a version of dashy you ve checked that this you ve checked the and guide you agree to the
1
333,449
10,122,191,368
IssuesEvent
2019-07-31 17:21:06
onaio/reveal-frontend
https://api.github.com/repos/onaio/reveal-frontend
opened
Add docstrings
Priority: Medium
These functions need docstrings: - [ ] stopPropagation - [ ] preventDefault - [ ] stopPropagationAndPreventDefault
1.0
Add docstrings - These functions need docstrings: - [ ] stopPropagation - [ ] preventDefault - [ ] stopPropagationAndPreventDefault
priority
add docstrings these functions need docstrings stoppropagation preventdefault stoppropagationandpreventdefault
1
564,917
16,744,723,632
IssuesEvent
2021-06-11 14:13:04
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
riscv: stack objects are mis-aligned
area: Kernel area: RISCV bug priority: medium
**Describe the bug** In macro "Z_STACK_PTR_TO_FRAME", it does not round up the stack frame size to arch stack pointer alignment. Therefore, the thread stack size is not rounded up when initializing, but it is when restoring the context to run. The bottom of thread stack is actually over it was allocated at first. **To Reproduce** Enable CONFIG_STACK_SENTINEL and error will be triggered
1.0
riscv: stack objects are mis-aligned - **Describe the bug** In macro "Z_STACK_PTR_TO_FRAME", it does not round up the stack frame size to arch stack pointer alignment. Therefore, the thread stack size is not rounded up when initializing, but it is when restoring the context to run. The bottom of thread stack is actually over it was allocated at first. **To Reproduce** Enable CONFIG_STACK_SENTINEL and error will be triggered
priority
riscv stack objects are mis aligned describe the bug in macro z stack ptr to frame it does not round up the stack frame size to arch stack pointer alignment therefore the thread stack size is not rounded up when initializing but it is when restoring the context to run the bottom of thread stack is actually over it was allocated at first to reproduce enable config stack sentinel and error will be triggered
1
372,412
11,014,202,080
IssuesEvent
2019-12-04 22:11:13
ooni/probe-engine
https://api.github.com/repos/ooni/probe-engine
closed
psiphon: separate test for each obfuscation protocol
effort/M enhancement priority/medium
From https://github.com/ooni/probe/issues/744: >> What do we need to do to make this test more complete? > > Test each obfuscation protocol, for one. By default, the client will try all protocols. To pin the client run to a single protocol, set the TunnelProtocol config value. The list of protocols along with other config documentation is here: https://godoc.org/github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon#Config. We're not doing this in the cycle in which I'm writing. Adding this as a follow-up improvement over what we already have and will be merged as part of this cycle.
1.0
psiphon: separate test for each obfuscation protocol - From https://github.com/ooni/probe/issues/744: >> What do we need to do to make this test more complete? > > Test each obfuscation protocol, for one. By default, the client will try all protocols. To pin the client run to a single protocol, set the TunnelProtocol config value. The list of protocols along with other config documentation is here: https://godoc.org/github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon#Config. We're not doing this in the cycle in which I'm writing. Adding this as a follow-up improvement over what we already have and will be merged as part of this cycle.
priority
psiphon separate test for each obfuscation protocol from what do we need to do to make this test more complete test each obfuscation protocol for one by default the client will try all protocols to pin the client run to a single protocol set the tunnelprotocol config value the list of protocols along with other config documentation is here we re not doing this in the cycle in which i m writing adding this as a follow up improvement over what we already have and will be merged as part of this cycle
1
819,312
30,728,319,636
IssuesEvent
2023-07-27 21:49:31
FlutterFlow/flutterflow-issues
https://api.github.com/repos/FlutterFlow/flutterflow-issues
closed
Project in use even after collaborators leave the project
type: bug status: confirmed priority: medium
### Has your issue been reported? - [X] I have searched the existing issues and confirm it has not been reported. - [X] I give permission for members of the FlutterFlow team to access and test my project for the sole purpose of investigating this issue. ### Current Behavior I have projects with 2-3 collaborators. We are not working at the same time !!!, windows in browsers are closed for all collaborators. But FF anyway shows me that somebody actively editing project (Message "project in use" even if they leave project for few hours ago) and kicking me out from project. ### Expected Behavior After first collaborator closed the project, FlutterFlow allows for another to work ### Steps to Reproduce 1. Create project with 2 or more collaborators 2. Start to edit by first collaborator 3. First collaborator should close window and exit from the project 4. After some time 5 min+ enter with another collaborator 5. Observe avatars of first collaborator like he still activelly working inside project 6. Message "Project in use" ### Reproducible from Blank - [X] The steps to reproduce above start from a blank project. ### Bug Report Code (Required) IT48hcr15Y1gobxG7ZDUavlR/TgWOUs7U7grkO1hRUw8J5zKB+wAYvf7P1FWTLy4YX9qf1mZsGQz1vfqud/DE/Y4KRSrG75ZyJNcVwGWWmWlVKqrCbmBfW1RM8RWf0Ch18GvoRVSNtZac2Qu2zu2f+qWbBXYHrX6PlQ7A/2lKdeK2SrDX1iXc2URm05KZDPz ### Context It does not allow to collaborate in assynchrone regime. ### Visual documentation ![image](https://github.com/FlutterFlow/flutterflow-issues/assets/101993994/da22a4db-f7b3-4310-b4c1-6e7622cd5b03) ![image](https://github.com/FlutterFlow/flutterflow-issues/assets/101993994/149ac22b-c747-4d72-a64e-105351b76891) ### Additional Info _No response_ ### Environment ```markdown - FlutterFlow version: 3.1 - Platform: PC - Browser name and version: Chrome 113.0.5672.127 - Operating system and version affected: Windows 10 ```
1.0
Project in use even after collaborators leave the project - ### Has your issue been reported? - [X] I have searched the existing issues and confirm it has not been reported. - [X] I give permission for members of the FlutterFlow team to access and test my project for the sole purpose of investigating this issue. ### Current Behavior I have projects with 2-3 collaborators. We are not working at the same time !!!, windows in browsers are closed for all collaborators. But FF anyway shows me that somebody actively editing project (Message "project in use" even if they leave project for few hours ago) and kicking me out from project. ### Expected Behavior After first collaborator closed the project, FlutterFlow allows for another to work ### Steps to Reproduce 1. Create project with 2 or more collaborators 2. Start to edit by first collaborator 3. First collaborator should close window and exit from the project 4. After some time 5 min+ enter with another collaborator 5. Observe avatars of first collaborator like he still activelly working inside project 6. Message "Project in use" ### Reproducible from Blank - [X] The steps to reproduce above start from a blank project. ### Bug Report Code (Required) IT48hcr15Y1gobxG7ZDUavlR/TgWOUs7U7grkO1hRUw8J5zKB+wAYvf7P1FWTLy4YX9qf1mZsGQz1vfqud/DE/Y4KRSrG75ZyJNcVwGWWmWlVKqrCbmBfW1RM8RWf0Ch18GvoRVSNtZac2Qu2zu2f+qWbBXYHrX6PlQ7A/2lKdeK2SrDX1iXc2URm05KZDPz ### Context It does not allow to collaborate in assynchrone regime. ### Visual documentation ![image](https://github.com/FlutterFlow/flutterflow-issues/assets/101993994/da22a4db-f7b3-4310-b4c1-6e7622cd5b03) ![image](https://github.com/FlutterFlow/flutterflow-issues/assets/101993994/149ac22b-c747-4d72-a64e-105351b76891) ### Additional Info _No response_ ### Environment ```markdown - FlutterFlow version: 3.1 - Platform: PC - Browser name and version: Chrome 113.0.5672.127 - Operating system and version affected: Windows 10 ```
priority
project in use even after collaborators leave the project has your issue been reported i have searched the existing issues and confirm it has not been reported i give permission for members of the flutterflow team to access and test my project for the sole purpose of investigating this issue current behavior i have projects with collaborators we are not working at the same time windows in browsers are closed for all collaborators but ff anyway shows me that somebody actively editing project message project in use even if they leave project for few hours ago and kicking me out from project expected behavior after first collaborator closed the project flutterflow allows for another to work steps to reproduce create project with or more collaborators start to edit by first collaborator first collaborator should close window and exit from the project after some time min enter with another collaborator observe avatars of first collaborator like he still activelly working inside project message project in use reproducible from blank the steps to reproduce above start from a blank project bug report code required de context it does not allow to collaborate in assynchrone regime visual documentation additional info no response environment markdown flutterflow version platform pc browser name and version chrome operating system and version affected windows
1
463,433
13,265,406,801
IssuesEvent
2020-08-21 06:27:16
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[0.9.0 staging-1686] Crafting UI glitches
Category: UI Priority: Medium Status: Fixed
- [x] 1. Dark stripe and light stripe have different width: ![image](https://user-images.githubusercontent.com/45708377/88637105-6716c600-d0c2-11ea-9e0d-813763e523ef.png) - [x] 2. Sometimes string color don't update if you levelup or take specialty (String color remains the same, but the order is changed): ![image](https://user-images.githubusercontent.com/45708377/88643412-5702e480-d0ca-11ea-8325-f1dcb09690a8.png) Just open some craft table and start to learn/specialize/levelup skills You can see that 2 dark strings have line string between them, This seems to be why the first problem arises
1.0
[0.9.0 staging-1686] Crafting UI glitches - - [x] 1. Dark stripe and light stripe have different width: ![image](https://user-images.githubusercontent.com/45708377/88637105-6716c600-d0c2-11ea-9e0d-813763e523ef.png) - [x] 2. Sometimes string color don't update if you levelup or take specialty (String color remains the same, but the order is changed): ![image](https://user-images.githubusercontent.com/45708377/88643412-5702e480-d0ca-11ea-8325-f1dcb09690a8.png) Just open some craft table and start to learn/specialize/levelup skills You can see that 2 dark strings have line string between them, This seems to be why the first problem arises
priority
crafting ui glitches dark stripe and light stripe have different width sometimes string color don t update if you levelup or take specialty string color remains the same but the order is changed just open some craft table and start to learn specialize levelup skills you can see that dark strings have line string between them this seems to be why the first problem arises
1
633,274
20,250,360,203
IssuesEvent
2022-02-14 17:16:39
Yamato-Security/hayabusa
https://api.github.com/repos/Yamato-Security/hayabusa
closed
tags情報のMITRE ATT&CKのstrategy情報を出力する
enhancement Priority:Medium
tags情報のMITRE ATT&CKのstrategy情報を出力する。 画面表示でのstrategy情報はオプションを追加したときのみ表示する。 表示個所はdetailsの後ろにmitre-attckの列を追加する。
1.0
tags情報のMITRE ATT&CKのstrategy情報を出力する - tags情報のMITRE ATT&CKのstrategy情報を出力する。 画面表示でのstrategy情報はオプションを追加したときのみ表示する。 表示個所はdetailsの後ろにmitre-attckの列を追加する。
priority
tags情報のmitre att ckのstrategy情報を出力する tags情報のmitre att ckのstrategy情報を出力する。 画面表示でのstrategy情報はオプションを追加したときのみ表示する。 表示個所はdetailsの後ろにmitre attckの列を追加する。
1
417,250
12,157,666,481
IssuesEvent
2020-04-25 23:16:46
ansible/ansible-lint
https://api.github.com/repos/ansible/ansible-lint
closed
Testing fails under macOS-latest @ GitHub Actions CI/CD workflows
help wanted needs_implementation priority/medium type/bug
# Issue Type - Bug report # Ansible and Ansible Lint details Ansible N/A + ansible-lint devel # Desired Behaviour Green CI # Actual Behaviour (Bug report only) Looks like the recent PRs didn't cause this (https://github.com/ansible/ansible-lint/pull/701#issuecomment-602625398) so we need to figure out if is some dependency that's changed or GH upgraded their macOS VM. The last success: - https://github.com/ansible/ansible-lint/runs/516905047 Current failures: - https://github.com/ansible/ansible-lint/runs/527585395 - https://github.com/ansible/ansible-lint/runs/527584238
1.0
Testing fails under macOS-latest @ GitHub Actions CI/CD workflows - # Issue Type - Bug report # Ansible and Ansible Lint details Ansible N/A + ansible-lint devel # Desired Behaviour Green CI # Actual Behaviour (Bug report only) Looks like the recent PRs didn't cause this (https://github.com/ansible/ansible-lint/pull/701#issuecomment-602625398) so we need to figure out if is some dependency that's changed or GH upgraded their macOS VM. The last success: - https://github.com/ansible/ansible-lint/runs/516905047 Current failures: - https://github.com/ansible/ansible-lint/runs/527585395 - https://github.com/ansible/ansible-lint/runs/527584238
priority
testing fails under macos latest github actions ci cd workflows issue type bug report ansible and ansible lint details ansible n a ansible lint devel desired behaviour green ci actual behaviour bug report only looks like the recent prs didn t cause this so we need to figure out if is some dependency that s changed or gh upgraded their macos vm the last success current failures
1
398,677
11,742,170,270
IssuesEvent
2020-03-11 23:50:57
thaliawww/concrexit
https://api.github.com/repos/thaliawww/concrexit
closed
Link in event queue email not clickable
bug easy and fun events priority: medium
In GitLab by @se-bastiaan on Jun 20, 2017, 13:58 ### One-sentence description Link in event queue email not clickable. ### Current behaviour Link not clickable. ![Screen_Shot_2017-06-20_at_13.55.43](https://gitlab.science.ru.nl//thalia/concrexit/uploads/57b2ed577d5e5f4c3ed0044643e1ac74/Screen_Shot_2017-06-20_at_13.55.43.png) ### Expected behaviour Clickable link. ### Steps to reproduce 1. Get an email that you're allowed into an event.
1.0
Link in event queue email not clickable - In GitLab by @se-bastiaan on Jun 20, 2017, 13:58 ### One-sentence description Link in event queue email not clickable. ### Current behaviour Link not clickable. ![Screen_Shot_2017-06-20_at_13.55.43](https://gitlab.science.ru.nl//thalia/concrexit/uploads/57b2ed577d5e5f4c3ed0044643e1ac74/Screen_Shot_2017-06-20_at_13.55.43.png) ### Expected behaviour Clickable link. ### Steps to reproduce 1. Get an email that you're allowed into an event.
priority
link in event queue email not clickable in gitlab by se bastiaan on jun one sentence description link in event queue email not clickable current behaviour link not clickable expected behaviour clickable link steps to reproduce get an email that you re allowed into an event
1
400,183
11,770,165,126
IssuesEvent
2020-03-15 18:01:46
nutritionix/nutrition-label
https://api.github.com/repos/nutritionix/nutrition-label
closed
check if there are issues on the bars on the legacy label
Priority:Medium Type:Bugfix
while working on #121 and #123, I noticed that there are cases where the bars are a lot thicker and found that this is because there are cases where the bottom bar or top bar (thin line) are present when they shouldn't be when I find the time, I need to check if this bug is also present on the legacy label cc @mattsilv to keep him informed
1.0
check if there are issues on the bars on the legacy label - while working on #121 and #123, I noticed that there are cases where the bars are a lot thicker and found that this is because there are cases where the bottom bar or top bar (thin line) are present when they shouldn't be when I find the time, I need to check if this bug is also present on the legacy label cc @mattsilv to keep him informed
priority
check if there are issues on the bars on the legacy label while working on and i noticed that there are cases where the bars are a lot thicker and found that this is because there are cases where the bottom bar or top bar thin line are present when they shouldn t be when i find the time i need to check if this bug is also present on the legacy label cc mattsilv to keep him informed
1
728,304
25,074,440,893
IssuesEvent
2022-11-07 14:33:04
rmlockwood/FLExTrans
https://api.github.com/repos/rmlockwood/FLExTrans
closed
[Live Rule Tester] For new text being worked on don't set the active sentence to what was used in the previous text
enhancement medium priority
Related to #276. If the user switches to a different text, the saved sentence number no longer applies. Start the user off on the first sentence. Maybe we should save the text name on exit so we can compare the next time the LRT starts up.
1.0
[Live Rule Tester] For new text being worked on don't set the active sentence to what was used in the previous text - Related to #276. If the user switches to a different text, the saved sentence number no longer applies. Start the user off on the first sentence. Maybe we should save the text name on exit so we can compare the next time the LRT starts up.
priority
for new text being worked on don t set the active sentence to what was used in the previous text related to if the user switches to a different text the saved sentence number no longer applies start the user off on the first sentence maybe we should save the text name on exit so we can compare the next time the lrt starts up
1
167,892
6,348,604,280
IssuesEvent
2017-07-28 10:25:16
Supadog/DB_iti
https://api.github.com/repos/Supadog/DB_iti
closed
Bulk Generation of Excel/PDF of Students in Classes
Medium priority
In class information in a semester (through semesters and classes)
1.0
Bulk Generation of Excel/PDF of Students in Classes - In class information in a semester (through semesters and classes)
priority
bulk generation of excel pdf of students in classes in class information in a semester through semesters and classes
1
207,998
7,135,013,912
IssuesEvent
2018-01-22 22:58:35
pymedusa/Medusa
https://api.github.com/repos/pymedusa/Medusa
closed
Medusa slow during initial load of shows from database
Bug Confirmed Priority: 2. Medium
### Before submitting your issue: Enable debug logging in Medusa settings, reproduce the error (be sure to disable after the bug is fixed) **Branch/Commit:** Develop **OS:** Win 10 **What you did:** Started medusa **What happened:** Start up time to initial page load is slow **What you expected:** A responsive UI **Logs:** The issue is in `Series._load_from_db` as can be seen by the following log snippet that is repeated once for each show. ``` 2017-02-18 13:46:46 DEBUG MAIN :: [8391deb] XXXXXX: Loading show info from database 2017-02-18 13:46:46 DB MAIN :: [8391deb] main.db: SELECT * FROM tv_shows WHERE indexer_id = ? with args [XXXXXX] 2017-02-18 13:46:46 DB MAIN :: [8391deb] main.db: SELECT indexer, indexer_id, mindexer, mindexer_id FROM indexer_mapping WHERE (indexer = ? AND indexer_id = ?) OR (mindexer = ? AND mindexer_id = ?) with args [1, XXXXXX, 1, XXXXXX] 2017-02-18 13:46:46 DB MAIN :: [8391deb] main.db: SELECT * FROM imdb_info WHERE indexer_id = ? with args [XXXXXX] 2017-02-18 13:46:46 DEBUG MAIN :: [8391deb] XXXXXX: Finding the episode which airs next 2017-02-18 13:46:46 DB MAIN :: [8391deb] main.db: SELECT airdate, season, episode FROM tv_episodes WHERE showid = ? AND airdate >= ? AND status IN (?,?) ORDER BY airdate ASC LIMIT 1 with args [XXXXXX, 736378, 1, 3] 2017-02-18 13:46:46 DEBUG MAIN :: [8391deb] XXXXXX: Found episode S05E01 ``` The db should be queried a single time for all series then iterate through the SQL results for processing.
1.0
Medusa slow during initial load of shows from database - ### Before submitting your issue: Enable debug logging in Medusa settings, reproduce the error (be sure to disable after the bug is fixed) **Branch/Commit:** Develop **OS:** Win 10 **What you did:** Started medusa **What happened:** Start up time to initial page load is slow **What you expected:** A responsive UI **Logs:** The issue is in `Series._load_from_db` as can be seen by the following log snippet that is repeated once for each show. ``` 2017-02-18 13:46:46 DEBUG MAIN :: [8391deb] XXXXXX: Loading show info from database 2017-02-18 13:46:46 DB MAIN :: [8391deb] main.db: SELECT * FROM tv_shows WHERE indexer_id = ? with args [XXXXXX] 2017-02-18 13:46:46 DB MAIN :: [8391deb] main.db: SELECT indexer, indexer_id, mindexer, mindexer_id FROM indexer_mapping WHERE (indexer = ? AND indexer_id = ?) OR (mindexer = ? AND mindexer_id = ?) with args [1, XXXXXX, 1, XXXXXX] 2017-02-18 13:46:46 DB MAIN :: [8391deb] main.db: SELECT * FROM imdb_info WHERE indexer_id = ? with args [XXXXXX] 2017-02-18 13:46:46 DEBUG MAIN :: [8391deb] XXXXXX: Finding the episode which airs next 2017-02-18 13:46:46 DB MAIN :: [8391deb] main.db: SELECT airdate, season, episode FROM tv_episodes WHERE showid = ? AND airdate >= ? AND status IN (?,?) ORDER BY airdate ASC LIMIT 1 with args [XXXXXX, 736378, 1, 3] 2017-02-18 13:46:46 DEBUG MAIN :: [8391deb] XXXXXX: Found episode S05E01 ``` The db should be queried a single time for all series then iterate through the SQL results for processing.
priority
medusa slow during initial load of shows from database before submitting your issue enable debug logging in medusa settings reproduce the error be sure to disable after the bug is fixed branch commit develop os win what you did started medusa what happened start up time to initial page load is slow what you expected a responsive ui logs the issue is in series load from db as can be seen by the following log snippet that is repeated once for each show debug main xxxxxx loading show info from database db main main db select from tv shows where indexer id with args db main main db select indexer indexer id mindexer mindexer id from indexer mapping where indexer and indexer id or mindexer and mindexer id with args db main main db select from imdb info where indexer id with args debug main xxxxxx finding the episode which airs next db main main db select airdate season episode from tv episodes where showid and airdate and status in order by airdate asc limit with args debug main xxxxxx found episode the db should be queried a single time for all series then iterate through the sql results for processing
1