Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 855 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 13 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 240k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
82,123 | 3,603,307,267 | IssuesEvent | 2016-02-03 18:34:43 | bitDubai/fermat-org | https://api.github.com/repos/bitDubai/fermat-org | closed | Create scripts on the client side for the management of login | Priority: HIGH server | Crear un script en el lado del cliente para el manejo de login
@fuelusumar | 1.0 | Create scripts on the client side for the management of login - Crear un script en el lado del cliente para el manejo de login
@fuelusumar | priority | create scripts on the client side for the management of login crear un script en el lado del cliente para el manejo de login fuelusumar | 1 |
599,991 | 18,287,472,370 | IssuesEvent | 2021-10-05 11:59:04 | opensrp/opensrp-client-reveal | https://api.github.com/repos/opensrp/opensrp-client-reveal | closed | Users Unable to Login to NTD App when User Is Offline | Priority: High | Users who get automatically logged out when online and try to login when offline are locked out of the APK. The client wants this to be factored to cover the possibility of a user being unable to work do to the above scenario. | 1.0 | Users Unable to Login to NTD App when User Is Offline - Users who get automatically logged out when online and try to login when offline are locked out of the APK. The client wants this to be factored to cover the possibility of a user being unable to work do to the above scenario. | priority | users unable to login to ntd app when user is offline users who get automatically logged out when online and try to login when offline are locked out of the apk the client wants this to be factored to cover the possibility of a user being unable to work do to the above scenario | 1 |
252,066 | 8,031,281,902 | IssuesEvent | 2018-07-27 23:54:01 | clearlinux/mixer-tools | https://api.github.com/repos/clearlinux/mixer-tools | closed | Mixer.state is overwritten if it already exists | bug easy high-priority | We need to do an os.Stat() and never overwrite the file if it already exists. | 1.0 | Mixer.state is overwritten if it already exists - We need to do an os.Stat() and never overwrite the file if it already exists. | priority | mixer state is overwritten if it already exists we need to do an os stat and never overwrite the file if it already exists | 1 |
583,647 | 17,394,632,629 | IssuesEvent | 2021-08-02 11:58:19 | django-cms/django-cms | https://api.github.com/repos/django-cms/django-cms | opened | [BUG] `ProgrammingError` on migrate when system check causes db query in raw_id_fields property | priority: high | ## Description
The exception (see stack trace below) is generated by a system check that checks raw id fields which in django CMS does a database query(!):
https://github.com/django-cms/django-cms/blob/release/3.9.x/cms/admin/permissionadmin.py#L158-L173
This function already expects an exception during migrate, but only an `OperationalError`. Apparently it also needs to catch a `ProgrammingError`. They both inherit from `DatabaseError`, but that might be to generic to mask here, feels quite brittle.
IMHO, `CMS_RAW_ID_USERS` should move from a threshold value that is measured at runtime to a boolean flag to avoid database queries.
## Steps to reproduce
Setup existing project with Django-CMS, custom user model and empty DB.
Run `./manage.py migrate`
## Expected behaviour
Migrations run.
## Actual behaviour
```
Traceback (most recent call last):
File "manage.py", line 11, in <module>
execute_from_command_line(sys.argv)
File "lib/python3.9/site-packages/django/core/management/__init__.py", line 419, in execute_from_command_line
utility.execute()
File "lib/python3.9/site-packages/django/core/management/__init__.py", line 413, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "lib/python3.9/site-packages/django/core/management/base.py", line 354, in run_from_argv
self.execute(*args, **cmd_options)
File "lib/python3.9/site-packages/django/core/management/base.py", line 398, in execute
output = self.handle(*args, **options)
File "lib/python3.9/site-packages/django/core/management/base.py", line 89, in wrapped
res = handle_func(*args, **kwargs)
File "lib/python3.9/site-packages/django/core/management/commands/migrate.py", line 75, in handle
self.check(databases=[database])
File "lib/python3.9/site-packages/django/core/management/base.py", line 419, in check
all_issues = checks.run_checks(
File "lib/python3.9/site-packages/django/core/checks/registry.py", line 76, in run_checks
new_errors = check(app_configs=app_configs, databases=databases)
File "lib/python3.9/site-packages/django/contrib/admin/checks.py", line 54, in check_admin_app
errors.extend(site.check(app_configs))
File "lib/python3.9/site-packages/django/contrib/admin/sites.py", line 92, in check
errors.extend(modeladmin.check())
File "lib/python3.9/site-packages/django/contrib/admin/options.py", line 122, in check
return self.checks_class().check(self, **kwargs)
File "lib/python3.9/site-packages/django/contrib/admin/checks.py", line 642, in check
*super().check(admin_obj),
File "lib/python3.9/site-packages/django/contrib/admin/checks.py", line 151, in check
*self._check_raw_id_fields(admin_obj),
File "lib/python3.9/site-packages/django/contrib/admin/checks.py", line 224, in _check_raw_id_fields
if not isinstance(obj.raw_id_fields, (list, tuple)):
File "lib/python3.9/site-packages/cms/utils/helpers.py", line 39, in __get__
return self.fget(owner_cls)
File "lib/python3.9/site-packages/cms/admin/permissionadmin.py", line 169, in raw_id_fields
threshold = threshold and get_user_model().objects.count() > threshold
File "lib/python3.9/site-packages/django/db/models/manager.py", line 85, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "lib/python3.9/site-packages/django/db/models/query.py", line 412, in count
return self.query.get_count(using=self.db)
File "lib/python3.9/site-packages/django/db/models/sql/query.py", line 519, in get_count
number = obj.get_aggregation(using, ['__count'])['__count']
File "lib/python3.9/site-packages/django/db/models/sql/query.py", line 504, in get_aggregation
result = compiler.execute_sql(SINGLE)
File "lib/python3.9/site-packages/django/db/models/sql/compiler.py", line 1175, in execute_sql
cursor.execute(sql, params)
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 98, in execute
return super().execute(sql, params)
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 66, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
return executor(sql, params, many, context)
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "lib/python3.9/site-packages/django/db/utils.py", line 90, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
django.db.utils.ProgrammingError: relation "account_user" does not exist
LINE 1: SELECT COUNT(*) AS "__count" FROM "account_user"
```
## Additional information (CMS/Python/Django versions)
Django-CMS==3.9.0
Django==3.2.4
Python 3.8
| 1.0 | [BUG] `ProgrammingError` on migrate when system check causes db query in raw_id_fields property - ## Description
The exception (see stack trace below) is generated by a system check that checks raw id fields which in django CMS does a database query(!):
https://github.com/django-cms/django-cms/blob/release/3.9.x/cms/admin/permissionadmin.py#L158-L173
This function already expects an exception during migrate, but only an `OperationalError`. Apparently it also needs to catch a `ProgrammingError`. They both inherit from `DatabaseError`, but that might be to generic to mask here, feels quite brittle.
IMHO, `CMS_RAW_ID_USERS` should move from a threshold value that is measured at runtime to a boolean flag to avoid database queries.
## Steps to reproduce
Setup existing project with Django-CMS, custom user model and empty DB.
Run `./manage.py migrate`
## Expected behaviour
Migrations run.
## Actual behaviour
```
Traceback (most recent call last):
File "manage.py", line 11, in <module>
execute_from_command_line(sys.argv)
File "lib/python3.9/site-packages/django/core/management/__init__.py", line 419, in execute_from_command_line
utility.execute()
File "lib/python3.9/site-packages/django/core/management/__init__.py", line 413, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "lib/python3.9/site-packages/django/core/management/base.py", line 354, in run_from_argv
self.execute(*args, **cmd_options)
File "lib/python3.9/site-packages/django/core/management/base.py", line 398, in execute
output = self.handle(*args, **options)
File "lib/python3.9/site-packages/django/core/management/base.py", line 89, in wrapped
res = handle_func(*args, **kwargs)
File "lib/python3.9/site-packages/django/core/management/commands/migrate.py", line 75, in handle
self.check(databases=[database])
File "lib/python3.9/site-packages/django/core/management/base.py", line 419, in check
all_issues = checks.run_checks(
File "lib/python3.9/site-packages/django/core/checks/registry.py", line 76, in run_checks
new_errors = check(app_configs=app_configs, databases=databases)
File "lib/python3.9/site-packages/django/contrib/admin/checks.py", line 54, in check_admin_app
errors.extend(site.check(app_configs))
File "lib/python3.9/site-packages/django/contrib/admin/sites.py", line 92, in check
errors.extend(modeladmin.check())
File "lib/python3.9/site-packages/django/contrib/admin/options.py", line 122, in check
return self.checks_class().check(self, **kwargs)
File "lib/python3.9/site-packages/django/contrib/admin/checks.py", line 642, in check
*super().check(admin_obj),
File "lib/python3.9/site-packages/django/contrib/admin/checks.py", line 151, in check
*self._check_raw_id_fields(admin_obj),
File "lib/python3.9/site-packages/django/contrib/admin/checks.py", line 224, in _check_raw_id_fields
if not isinstance(obj.raw_id_fields, (list, tuple)):
File "lib/python3.9/site-packages/cms/utils/helpers.py", line 39, in __get__
return self.fget(owner_cls)
File "lib/python3.9/site-packages/cms/admin/permissionadmin.py", line 169, in raw_id_fields
threshold = threshold and get_user_model().objects.count() > threshold
File "lib/python3.9/site-packages/django/db/models/manager.py", line 85, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "lib/python3.9/site-packages/django/db/models/query.py", line 412, in count
return self.query.get_count(using=self.db)
File "lib/python3.9/site-packages/django/db/models/sql/query.py", line 519, in get_count
number = obj.get_aggregation(using, ['__count'])['__count']
File "lib/python3.9/site-packages/django/db/models/sql/query.py", line 504, in get_aggregation
result = compiler.execute_sql(SINGLE)
File "lib/python3.9/site-packages/django/db/models/sql/compiler.py", line 1175, in execute_sql
cursor.execute(sql, params)
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 98, in execute
return super().execute(sql, params)
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 66, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers
return executor(sql, params, many, context)
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
File "lib/python3.9/site-packages/django/db/utils.py", line 90, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
File "lib/python3.9/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
django.db.utils.ProgrammingError: relation "account_user" does not exist
LINE 1: SELECT COUNT(*) AS "__count" FROM "account_user"
```
## Additional information (CMS/Python/Django versions)
Django-CMS==3.9.0
Django==3.2.4
Python 3.8
| priority | programmingerror on migrate when system check causes db query in raw id fields property description the exception see stack trace below is generated by a system check that checks raw id fields which in django cms does a database query this function already expects an exception during migrate but only an operationalerror apparently it also needs to catch a programmingerror they both inherit from databaseerror but that might be to generic to mask here feels quite brittle imho cms raw id users should move from a threshold value that is measured at runtime to a boolean flag to avoid database queries steps to reproduce setup existing project with django cms custom user model and empty db run manage py migrate expected behaviour migrations run actual behaviour traceback most recent call last file manage py line in execute from command line sys argv file lib site packages django core management init py line in execute from command line utility execute file lib site packages django core management init py line in execute self fetch command subcommand run from argv self argv file lib site packages django core management base py line in run from argv self execute args cmd options file lib site packages django core management base py line in execute output self handle args options file lib site packages django core management base py line in wrapped res handle func args kwargs file lib site packages django core management commands migrate py line in handle self check databases file lib site packages django core management base py line in check all issues checks run checks file lib site packages django core checks registry py line in run checks new errors check app configs app configs databases databases file lib site packages django contrib admin checks py line in check admin app errors extend site check app configs file lib site packages django contrib admin sites py line in check errors extend modeladmin check file lib site packages django contrib admin options py line in check return self checks class check self kwargs file lib site packages django contrib admin checks py line in check super check admin obj file lib site packages django contrib admin checks py line in check self check raw id fields admin obj file lib site packages django contrib admin checks py line in check raw id fields if not isinstance obj raw id fields list tuple file lib site packages cms utils helpers py line in get return self fget owner cls file lib site packages cms admin permissionadmin py line in raw id fields threshold threshold and get user model objects count threshold file lib site packages django db models manager py line in manager method return getattr self get queryset name args kwargs file lib site packages django db models query py line in count return self query get count using self db file lib site packages django db models sql query py line in get count number obj get aggregation using file lib site packages django db models sql query py line in get aggregation result compiler execute sql single file lib site packages django db models sql compiler py line in execute sql cursor execute sql params file lib site packages django db backends utils py line in execute return super execute sql params file lib site packages django db backends utils py line in execute return self execute with wrappers sql params many false executor self execute file lib site packages django db backends utils py line in execute with wrappers return executor sql params many context file lib site packages django db backends utils py line in execute return self cursor execute sql params file lib site packages django db utils py line in exit raise dj exc value with traceback traceback from exc value file lib site packages django db backends utils py line in execute return self cursor execute sql params django db utils programmingerror relation account user does not exist line select count as count from account user additional information cms python django versions django cms django python | 1 |
376,697 | 11,150,329,329 | IssuesEvent | 2019-12-23 22:08:41 | FusionCorps/2020-Green | https://api.github.com/repos/FusionCorps/2020-Green | opened | Working joystick driving | feature high-priority subsystem | The Chassis should be able to move in a predictable, stable manner via joystick control.
# Issues to be addressed
- Requires #5
- Voltage ramp-up shape and aggressiveness
- Possibility of using PID Controller to achieve speeds instead of raw output (within limits, naturally)
- Some sort of `ChassisWarden` that modifies behavior based on other subsystems' states (e.g. reducing speed maximum when a subsystem moves the robot's center of mass upwards) | 1.0 | Working joystick driving - The Chassis should be able to move in a predictable, stable manner via joystick control.
# Issues to be addressed
- Requires #5
- Voltage ramp-up shape and aggressiveness
- Possibility of using PID Controller to achieve speeds instead of raw output (within limits, naturally)
- Some sort of `ChassisWarden` that modifies behavior based on other subsystems' states (e.g. reducing speed maximum when a subsystem moves the robot's center of mass upwards) | priority | working joystick driving the chassis should be able to move in a predictable stable manner via joystick control issues to be addressed requires voltage ramp up shape and aggressiveness possibility of using pid controller to achieve speeds instead of raw output within limits naturally some sort of chassiswarden that modifies behavior based on other subsystems states e g reducing speed maximum when a subsystem moves the robot s center of mass upwards | 1 |
111,866 | 4,493,465,510 | IssuesEvent | 2016-08-31 00:04:32 | washingtonstateuniversity/WSUWP-spine-parent-theme | https://api.github.com/repos/washingtonstateuniversity/WSUWP-spine-parent-theme | opened | Check for the existence of the University Taxonomy before attempting to use it | bug priority:high | Our `has_term()` checks don't appear to be enough. We should also check if the taxonomy exists. | 1.0 | Check for the existence of the University Taxonomy before attempting to use it - Our `has_term()` checks don't appear to be enough. We should also check if the taxonomy exists. | priority | check for the existence of the university taxonomy before attempting to use it our has term checks don t appear to be enough we should also check if the taxonomy exists | 1 |
410,114 | 11,983,487,540 | IssuesEvent | 2020-04-07 14:30:43 | AugurProject/augur | https://api.github.com/repos/AugurProject/augur | opened | categories should sit on the same line as shield, share and favourite icons | Needed for V2 launch Priority: High | These should get pushed below when there is not enough room due to a scalar or in-reporting tag being there. But generally in open markets, categories should sit on the top line where possible

Design:
https://www.figma.com/file/Do4qnkCNM8P7lwBmCdYZCS4X/Market-Cards?node-id=189%3A97


| 1.0 | categories should sit on the same line as shield, share and favourite icons - These should get pushed below when there is not enough room due to a scalar or in-reporting tag being there. But generally in open markets, categories should sit on the top line where possible

Design:
https://www.figma.com/file/Do4qnkCNM8P7lwBmCdYZCS4X/Market-Cards?node-id=189%3A97


| priority | categories should sit on the same line as shield share and favourite icons these should get pushed below when there is not enough room due to a scalar or in reporting tag being there but generally in open markets categories should sit on the top line where possible design | 1 |
353,094 | 10,548,821,623 | IssuesEvent | 2019-10-03 07:08:10 | AbsaOSS/enceladus | https://api.github.com/repos/AbsaOSS/enceladus | closed | Empty body is sent on the initial Run creation via a POST request | Menas Standardization bug priority: high | ## Describe the bug
When Standardization sends a POST request to Menas for the initial creation of a run object an empty JSON body is sent.
For some reason, it seems runs are not serialized and no exception is thrown.
## To Reproduce
Run a Standardization job.
## Expected behaviour
- [x] Any objects sent via a POST request should be serialized as JSONs.
- [x] If an empty (not deserialized) body is sent, Menas should return status of 400 (Bad request) instead of 201.
## Log
Here is an example that shows that a null run is created successfully.
```
19/10/01 13:18:57 INFO RestClient: POST - URL: http://localhost:8080/menas/api/runs
19/10/01 13:18:57 INFO RestClient: POST - BODY: Run(None,0,Cobol1,2,SplineReference(application_1569914102171_0123,),01-10-2019 11:18:57 +0000,RunStatus(running,None),ControlMeasure(ControlMeasureMetadata(Test1,CZ,Snapshot,CobolFile.bin,G,1,25-02-2019,Map()),None,List(Checkpoint(Source,25-02-2019 08:00:00,25-02-2019 08:00:00,Source,1,List(Measurement(recordCount,controlType.Count,id,4964))), Checkpoint(Raw,25-02-2019 08:00:00,25-02-2019 08:00:00,Raw,2,List(Measurement(recordCount,controlType.Count,*,4964))))))
19/10/01 13:18:57 INFO RestClient: Response (201): {"uniqueId":"3553a588-3cff-44a9-a91c-9e11380c2121","runId":5,"dataset":null,"datasetVersion":0,"splineRef":null,"startDateTime":null,"runStatus":null,"controlMeasure":null}
```
| 1.0 | Empty body is sent on the initial Run creation via a POST request - ## Describe the bug
When Standardization sends a POST request to Menas for the initial creation of a run object an empty JSON body is sent.
For some reason, it seems runs are not serialized and no exception is thrown.
## To Reproduce
Run a Standardization job.
## Expected behaviour
- [x] Any objects sent via a POST request should be serialized as JSONs.
- [x] If an empty (not deserialized) body is sent, Menas should return status of 400 (Bad request) instead of 201.
## Log
Here is an example that shows that a null run is created successfully.
```
19/10/01 13:18:57 INFO RestClient: POST - URL: http://localhost:8080/menas/api/runs
19/10/01 13:18:57 INFO RestClient: POST - BODY: Run(None,0,Cobol1,2,SplineReference(application_1569914102171_0123,),01-10-2019 11:18:57 +0000,RunStatus(running,None),ControlMeasure(ControlMeasureMetadata(Test1,CZ,Snapshot,CobolFile.bin,G,1,25-02-2019,Map()),None,List(Checkpoint(Source,25-02-2019 08:00:00,25-02-2019 08:00:00,Source,1,List(Measurement(recordCount,controlType.Count,id,4964))), Checkpoint(Raw,25-02-2019 08:00:00,25-02-2019 08:00:00,Raw,2,List(Measurement(recordCount,controlType.Count,*,4964))))))
19/10/01 13:18:57 INFO RestClient: Response (201): {"uniqueId":"3553a588-3cff-44a9-a91c-9e11380c2121","runId":5,"dataset":null,"datasetVersion":0,"splineRef":null,"startDateTime":null,"runStatus":null,"controlMeasure":null}
```
| priority | empty body is sent on the initial run creation via a post request describe the bug when standardization sends a post request to menas for the initial creation of a run object an empty json body is sent for some reason it seems runs are not serialized and no exception is thrown to reproduce run a standardization job expected behaviour any objects sent via a post request should be serialized as jsons if an empty not deserialized body is sent menas should return status of bad request instead of log here is an example that shows that a null run is created successfully info restclient post url info restclient post body run none splinereference application runstatus running none controlmeasure controlmeasuremetadata cz snapshot cobolfile bin g map none list checkpoint source source list measurement recordcount controltype count id checkpoint raw raw list measurement recordcount controltype count info restclient response uniqueid runid dataset null datasetversion splineref null startdatetime null runstatus null controlmeasure null | 1 |
438,791 | 12,651,447,391 | IssuesEvent | 2020-06-17 00:20:42 | Lychfindel/v4w_website | https://api.github.com/repos/Lychfindel/v4w_website | opened | Bug in fuzzywuzzy | high priority | La ricerca di fuzzywuzzy ha dei bug importanti con python 3.7 (https://github.com/seatgeek/fuzzywuzzy/issues/216).
Noto ora che la libreria non è aggiornata da un bel po'.
La mia proposta è forkare la libreria da github e metterla a posto per farla funzionare senza errori.
Un piccolo workaround per evitare errori macroscopici è cambiare la funzione di scorer:
`> process.extract("Zattere",choices)
[(<Poi(id=1031,name='A',types=['ferry_terminal (amenity)'])>, 90),
(<Poi(id=1515,name='Alle Zattere',types=['restaurant (amenity)', 'italian (cuisine)'])>,
90),
(<Poi(id=1517,name='Alle Zattere',types=['restaurant (amenity)'])>, 90),
(<Poi(id=1802,name='Scuola materne "Isidoro Barbon"',types=['kindergarten (amenity)'])>,
64),
(<Poi(id=1858,name='Latteria 2465',types=['restaurant (amenity)'])>, 64)]
> process.extract("Zattere",choices,scorer=fuzz.token_set_ratio)
[(<Poi(id=1515,name='Alle Zattere',types=['restaurant (amenity)', 'italian (cuisine)'])>,
100),
(<Poi(id=1517,name='Alle Zattere',types=['restaurant (amenity)'])>, 100),
(<Poi(id=1952,name='Santa Teresa',types=['place_of_worship (amenity)', 'church (building)'])>,
63),
(<Poi(id=1509,name='Ai Botteri',types=['restaurant (amenity)', 'italian (cuisine)'])>,
59),
(<Poi(id=2204,name='Panetteria',types=['bakery (shop)'])>, 59)]
> process.extract("Zattere",choices,scorer=fuzz.token_sort_ratio)
[(<Poi(id=1515,name='Alle Zattere',types=['restaurant (amenity)', 'italian (cuisine)'])>,
74),
(<Poi(id=1517,name='Alle Zattere',types=['restaurant (amenity)'])>, 74),
(<Poi(id=1952,name='Santa Teresa',types=['place_of_worship (amenity)', 'church (building)'])>,
63),
(<Poi(id=1509,name='Ai Botteri',types=['restaurant (amenity)', 'italian (cuisine)'])>,
59),
(<Poi(id=2204,name='Panetteria',types=['bakery (shop)'])>, 59)]
> process.extract("Ospedale",choices)
[(<Poi(id=1031,name='A',types=['ferry_terminal (amenity)'])>, 90),
(<Poi(id=1920,name="Chiesa dell'Ospedaletto",types=['place_of_worship (amenity)', 'church (building)'])>,
90),
(<Poi(id=1949,name='Ospedale Giustinian',types=['hospital (amenity)'])>, 90),
(<Poi(id=1470,name='Istituto Ospedaliero Fatebenefratelli',types=['hospital (amenity)'])>,
79),
(<Poi(id=937,name='Cea',types=['restaurant (amenity)'])>, 60)]
> process.extract("Ospedale",choices,scorer=fuzz.token_set_ratio)
[(<Poi(id=1949,name='Ospedale Giustinian',types=['hospital (amenity)'])>, 100),
(<Poi(id=246,name='Posteitaliane',types=['post_office (amenity)'])>, 57),
(<Poi(id=281,name='Salute',types=['ferry_terminal (amenity)'])>, 57),
(<Poi(id=9677,name='Salute',types=['roof (building)'])>, 57),
(<Poi(id=2780,name='Donà Palace',types=['hotel (tourism)'])>, 56)]
> process.extract("Ospedale",choices,scorer=fuzz.token_sort_ratio)
[(<Poi(id=1949,name='Ospedale Giustinian',types=['hospital (amenity)'])>, 59),
(<Poi(id=246,name='Posteitaliane',types=['post_office (amenity)'])>, 57),
(<Poi(id=281,name='Salute',types=['ferry_terminal (amenity)'])>, 57),
(<Poi(id=9677,name='Salute',types=['roof (building)'])>, 57),
(<Poi(id=2780,name='Donà Palace',types=['hotel (tourism)'])>, 56)]` | 1.0 | Bug in fuzzywuzzy - La ricerca di fuzzywuzzy ha dei bug importanti con python 3.7 (https://github.com/seatgeek/fuzzywuzzy/issues/216).
Noto ora che la libreria non è aggiornata da un bel po'.
La mia proposta è forkare la libreria da github e metterla a posto per farla funzionare senza errori.
Un piccolo workaround per evitare errori macroscopici è cambiare la funzione di scorer:
`> process.extract("Zattere",choices)
[(<Poi(id=1031,name='A',types=['ferry_terminal (amenity)'])>, 90),
(<Poi(id=1515,name='Alle Zattere',types=['restaurant (amenity)', 'italian (cuisine)'])>,
90),
(<Poi(id=1517,name='Alle Zattere',types=['restaurant (amenity)'])>, 90),
(<Poi(id=1802,name='Scuola materne "Isidoro Barbon"',types=['kindergarten (amenity)'])>,
64),
(<Poi(id=1858,name='Latteria 2465',types=['restaurant (amenity)'])>, 64)]
> process.extract("Zattere",choices,scorer=fuzz.token_set_ratio)
[(<Poi(id=1515,name='Alle Zattere',types=['restaurant (amenity)', 'italian (cuisine)'])>,
100),
(<Poi(id=1517,name='Alle Zattere',types=['restaurant (amenity)'])>, 100),
(<Poi(id=1952,name='Santa Teresa',types=['place_of_worship (amenity)', 'church (building)'])>,
63),
(<Poi(id=1509,name='Ai Botteri',types=['restaurant (amenity)', 'italian (cuisine)'])>,
59),
(<Poi(id=2204,name='Panetteria',types=['bakery (shop)'])>, 59)]
> process.extract("Zattere",choices,scorer=fuzz.token_sort_ratio)
[(<Poi(id=1515,name='Alle Zattere',types=['restaurant (amenity)', 'italian (cuisine)'])>,
74),
(<Poi(id=1517,name='Alle Zattere',types=['restaurant (amenity)'])>, 74),
(<Poi(id=1952,name='Santa Teresa',types=['place_of_worship (amenity)', 'church (building)'])>,
63),
(<Poi(id=1509,name='Ai Botteri',types=['restaurant (amenity)', 'italian (cuisine)'])>,
59),
(<Poi(id=2204,name='Panetteria',types=['bakery (shop)'])>, 59)]
> process.extract("Ospedale",choices)
[(<Poi(id=1031,name='A',types=['ferry_terminal (amenity)'])>, 90),
(<Poi(id=1920,name="Chiesa dell'Ospedaletto",types=['place_of_worship (amenity)', 'church (building)'])>,
90),
(<Poi(id=1949,name='Ospedale Giustinian',types=['hospital (amenity)'])>, 90),
(<Poi(id=1470,name='Istituto Ospedaliero Fatebenefratelli',types=['hospital (amenity)'])>,
79),
(<Poi(id=937,name='Cea',types=['restaurant (amenity)'])>, 60)]
> process.extract("Ospedale",choices,scorer=fuzz.token_set_ratio)
[(<Poi(id=1949,name='Ospedale Giustinian',types=['hospital (amenity)'])>, 100),
(<Poi(id=246,name='Posteitaliane',types=['post_office (amenity)'])>, 57),
(<Poi(id=281,name='Salute',types=['ferry_terminal (amenity)'])>, 57),
(<Poi(id=9677,name='Salute',types=['roof (building)'])>, 57),
(<Poi(id=2780,name='Donà Palace',types=['hotel (tourism)'])>, 56)]
> process.extract("Ospedale",choices,scorer=fuzz.token_sort_ratio)
[(<Poi(id=1949,name='Ospedale Giustinian',types=['hospital (amenity)'])>, 59),
(<Poi(id=246,name='Posteitaliane',types=['post_office (amenity)'])>, 57),
(<Poi(id=281,name='Salute',types=['ferry_terminal (amenity)'])>, 57),
(<Poi(id=9677,name='Salute',types=['roof (building)'])>, 57),
(<Poi(id=2780,name='Donà Palace',types=['hotel (tourism)'])>, 56)]` | priority | bug in fuzzywuzzy la ricerca di fuzzywuzzy ha dei bug importanti con python noto ora che la libreria non è aggiornata da un bel po la mia proposta è forkare la libreria da github e metterla a posto per farla funzionare senza errori un piccolo workaround per evitare errori macroscopici è cambiare la funzione di scorer process extract zattere choices process extract zattere choices scorer fuzz token set ratio process extract zattere choices scorer fuzz token sort ratio process extract ospedale choices process extract ospedale choices scorer fuzz token set ratio process extract ospedale choices scorer fuzz token sort ratio | 1 |
19,003 | 2,616,017,182 | IssuesEvent | 2015-03-02 00:59:12 | jasonhall/bwapi | https://api.github.com/repos/jasonhall/bwapi | closed | getRace() reveals "Random" selection | auto-migrated Milestone-Tournament NewFeature Priority-High Type-Enhancement | ```
getRace() will return a player's race even if they have chosen Random and have
not yet been scouted.
```
Original issue reported on code.google.com by `AHeinerm` on 14 Jul 2011 at 4:00 | 1.0 | getRace() reveals "Random" selection - ```
getRace() will return a player's race even if they have chosen Random and have
not yet been scouted.
```
Original issue reported on code.google.com by `AHeinerm` on 14 Jul 2011 at 4:00 | priority | getrace reveals random selection getrace will return a player s race even if they have chosen random and have not yet been scouted original issue reported on code google com by aheinerm on jul at | 1 |
360,146 | 10,684,725,633 | IssuesEvent | 2019-10-22 11:08:22 | AY1920S1-CS2113T-T09-1/main | https://api.github.com/repos/AY1920S1-CS2113T-T09-1/main | closed | Add recommended schedule to timer feature. | priority.High status.Ongoing type.Task | When user uses the timer command telling Hustler the amount of time he/she has available, a recommended schedule for the said amount of time is displayed. | 1.0 | Add recommended schedule to timer feature. - When user uses the timer command telling Hustler the amount of time he/she has available, a recommended schedule for the said amount of time is displayed. | priority | add recommended schedule to timer feature when user uses the timer command telling hustler the amount of time he she has available a recommended schedule for the said amount of time is displayed | 1 |
506,754 | 14,672,175,104 | IssuesEvent | 2020-12-30 09:59:54 | fossasia/open-event-frontend | https://api.github.com/repos/fossasia/open-event-frontend | opened | Virtual Event: Do not show sidebar panel after user has left the event | Priority: High bug | When the user is on an event with the sidebar active and clicks on the top left logo "eventyay" they are leaving the event. When the user goes back to the event page afterwards it would be expected that the user has to join the event again by clicking on the "Join Video" or "Join Event" button. This means when the user visits the event page again (after leaving it) to some other outside event areas there should not be a side panel.
Currently, there is a side panel even after the user has left the event. | 1.0 | Virtual Event: Do not show sidebar panel after user has left the event - When the user is on an event with the sidebar active and clicks on the top left logo "eventyay" they are leaving the event. When the user goes back to the event page afterwards it would be expected that the user has to join the event again by clicking on the "Join Video" or "Join Event" button. This means when the user visits the event page again (after leaving it) to some other outside event areas there should not be a side panel.
Currently, there is a side panel even after the user has left the event. | priority | virtual event do not show sidebar panel after user has left the event when the user is on an event with the sidebar active and clicks on the top left logo eventyay they are leaving the event when the user goes back to the event page afterwards it would be expected that the user has to join the event again by clicking on the join video or join event button this means when the user visits the event page again after leaving it to some other outside event areas there should not be a side panel currently there is a side panel even after the user has left the event | 1 |
412,457 | 12,042,766,830 | IssuesEvent | 2020-04-14 11:11:35 | input-output-hk/ouroboros-network | https://api.github.com/repos/input-output-hk/ouroboros-network | closed | Anachronistic protocol ledger view is the wrong concept | bug byron consensus priority high | The anachronistic ledger view returns a `LedgerView` within a certain window from the current ledger tip
```
<---------|--------->
|
---------------------------X-----------------
```
If we use Byron as our running example, the `LedgerView` is a `Delegation.Map`, and the range is `±2k`. This is fine as long this `LedgerView` is only on the same fork, but _this is wrong when used across forks_. Suppose we have
```
<---------|--------->
|
--------------------A------X-----------------
\
-------------Y---
```
where we have a point `Y` on a different fork than `X`, where `Y` still falls within the bounds that the anachronistic ledger views, but is _outside_ that same `2k` range from `A`. Then the `Delegation.Map` as `X` may well not apply anymore to `Y`; after all, there could have been some delegation certificates on `Y`'s branch between `A` and `Y` that have come into effect.
The primary use case of the anachronistic ledger view is to use _our current ledger_ to validate block headers received by the chain sync client, which may indeed well live on a different chain. This means that we may currently accept some headers as valid that aren't (although they will then subsequently be rejected by the chain DB), or -- potentially worse -- reject some headers as invalid that in fact are valid.
The right approach is to split this into two steps: in principle at least, we should _first_ go back to the intersection point `A`, get the delegation state there (that is, the current mapping as well as any scheduled delegations), then use that to derive a "forecast" which we can use to derive conclusions about `Y`; moreover, the range of that forecast should be determined by `A`, not by `X`. We don't literally have to implement that (though we might want to, see #1935 ), but what we do implement should be equivalent to that. | 1.0 | Anachronistic protocol ledger view is the wrong concept - The anachronistic ledger view returns a `LedgerView` within a certain window from the current ledger tip
```
<---------|--------->
|
---------------------------X-----------------
```
If we use Byron as our running example, the `LedgerView` is a `Delegation.Map`, and the range is `±2k`. This is fine as long this `LedgerView` is only on the same fork, but _this is wrong when used across forks_. Suppose we have
```
<---------|--------->
|
--------------------A------X-----------------
\
-------------Y---
```
where we have a point `Y` on a different fork than `X`, where `Y` still falls within the bounds that the anachronistic ledger views, but is _outside_ that same `2k` range from `A`. Then the `Delegation.Map` as `X` may well not apply anymore to `Y`; after all, there could have been some delegation certificates on `Y`'s branch between `A` and `Y` that have come into effect.
The primary use case of the anachronistic ledger view is to use _our current ledger_ to validate block headers received by the chain sync client, which may indeed well live on a different chain. This means that we may currently accept some headers as valid that aren't (although they will then subsequently be rejected by the chain DB), or -- potentially worse -- reject some headers as invalid that in fact are valid.
The right approach is to split this into two steps: in principle at least, we should _first_ go back to the intersection point `A`, get the delegation state there (that is, the current mapping as well as any scheduled delegations), then use that to derive a "forecast" which we can use to derive conclusions about `Y`; moreover, the range of that forecast should be determined by `A`, not by `X`. We don't literally have to implement that (though we might want to, see #1935 ), but what we do implement should be equivalent to that. | priority | anachronistic protocol ledger view is the wrong concept the anachronistic ledger view returns a ledgerview within a certain window from the current ledger tip x if we use byron as our running example the ledgerview is a delegation map and the range is ± this is fine as long this ledgerview is only on the same fork but this is wrong when used across forks suppose we have a x y where we have a point y on a different fork than x where y still falls within the bounds that the anachronistic ledger views but is outside that same range from a then the delegation map as x may well not apply anymore to y after all there could have been some delegation certificates on y s branch between a and y that have come into effect the primary use case of the anachronistic ledger view is to use our current ledger to validate block headers received by the chain sync client which may indeed well live on a different chain this means that we may currently accept some headers as valid that aren t although they will then subsequently be rejected by the chain db or potentially worse reject some headers as invalid that in fact are valid the right approach is to split this into two steps in principle at least we should first go back to the intersection point a get the delegation state there that is the current mapping as well as any scheduled delegations then use that to derive a forecast which we can use to derive conclusions about y moreover the range of that forecast should be determined by a not by x we don t literally have to implement that though we might want to see but what we do implement should be equivalent to that | 1 |
769,512 | 27,009,933,456 | IssuesEvent | 2023-02-10 14:40:00 | projectdiscovery/nuclei | https://api.github.com/repos/projectdiscovery/nuclei | closed | Path handling issues with {{RootURL}} variables | Priority: High Status: Completed Type: Bug |
### Nuclei version:
dev, main
### Current Behavior:
```console
echo https://example.com:80 | nuclei -id CVE-2022-35405 <a href="https://github.com/projectdiscovery/nuclei-templates/blob/main/cves/2022/CVE-2022-35405.yaml" name="pd-nuclei-tmpl-id" target="_blank" rel="noopener noreferrer"><img src="chrome-extension://inaimkpcmmnpkflcfloaccafldgnnfnp/nuclei.png" role="button" style="width: 20px; height: 20px;"></a> -v
__ _
____ __ _______/ /__ (_)
/ __ \/ / / / ___/ / _ \/ /
/ / / / /_/ / /__/ / __/ /
/_/ /_/\__,_/\___/_/\___/_/ v2.8.8
projectdiscovery.io
[INF] Using Nuclei Engine 2.8.8 (latest)
[INF] Using Nuclei Templates 9.3.5 (latest)
[INF] Templates added in last update: 61
[INF] Templates loaded for scan: 1
[INF] Targets loaded for scan: 1
[WRN] [CVE-2022-35405] Could not execute request for https://example.com:80: POST https://example.com:80/https://example.com:80/xmlrpc giving up after 2 attempts: Post "https://example.com:80/https://example.com:80/xmlrpc": http: server gave HTTP response to HTTPS client
[WRN] [CVE-2022-35405] Could not execute request for https://example.com:80: POST https://example.com:80/https://example.com:80:8282/xmlrpc giving up after 2 attempts: Post "https://example.com:80/https://example.com:80:8282/xmlrpc": http: server gave HTTP response to HTTPS client
[WRN] [CVE-2022-35405] Could not execute request for https://example.com:80: POST https://example.com:80/https://example.com:80:9292/xmlrpc giving up after 2 attempts: Post "https://example.com:80/https://example.com:80:9292/xmlrpc": http: server gave HTTP response to HTTPS client
[WRN] [CVE-2022-35405] Could not execute request for https://example.com:80: POST https://example.com:80/https://example.com:80:7272/xmlrpc giving up after 2 attempts: Post "https://example.com:80/https://example.com:80:7272/xmlrpc": http: server gave HTTP response to HTTPS client
[INF] No results found. Better luck next time!
```
### Steps To Reproduce:
`echo https://example.com:80 | nuclei -id CVE-2022-35405 -v`
| 1.0 | Path handling issues with {{RootURL}} variables -
### Nuclei version:
dev, main
### Current Behavior:
```console
echo https://example.com:80 | nuclei -id CVE-2022-35405 <a href="https://github.com/projectdiscovery/nuclei-templates/blob/main/cves/2022/CVE-2022-35405.yaml" name="pd-nuclei-tmpl-id" target="_blank" rel="noopener noreferrer"><img src="chrome-extension://inaimkpcmmnpkflcfloaccafldgnnfnp/nuclei.png" role="button" style="width: 20px; height: 20px;"></a> -v
__ _
____ __ _______/ /__ (_)
/ __ \/ / / / ___/ / _ \/ /
/ / / / /_/ / /__/ / __/ /
/_/ /_/\__,_/\___/_/\___/_/ v2.8.8
projectdiscovery.io
[INF] Using Nuclei Engine 2.8.8 (latest)
[INF] Using Nuclei Templates 9.3.5 (latest)
[INF] Templates added in last update: 61
[INF] Templates loaded for scan: 1
[INF] Targets loaded for scan: 1
[WRN] [CVE-2022-35405] Could not execute request for https://example.com:80: POST https://example.com:80/https://example.com:80/xmlrpc giving up after 2 attempts: Post "https://example.com:80/https://example.com:80/xmlrpc": http: server gave HTTP response to HTTPS client
[WRN] [CVE-2022-35405] Could not execute request for https://example.com:80: POST https://example.com:80/https://example.com:80:8282/xmlrpc giving up after 2 attempts: Post "https://example.com:80/https://example.com:80:8282/xmlrpc": http: server gave HTTP response to HTTPS client
[WRN] [CVE-2022-35405] Could not execute request for https://example.com:80: POST https://example.com:80/https://example.com:80:9292/xmlrpc giving up after 2 attempts: Post "https://example.com:80/https://example.com:80:9292/xmlrpc": http: server gave HTTP response to HTTPS client
[WRN] [CVE-2022-35405] Could not execute request for https://example.com:80: POST https://example.com:80/https://example.com:80:7272/xmlrpc giving up after 2 attempts: Post "https://example.com:80/https://example.com:80:7272/xmlrpc": http: server gave HTTP response to HTTPS client
[INF] No results found. Better luck next time!
```
### Steps To Reproduce:
`echo https://example.com:80 | nuclei -id CVE-2022-35405 -v`
| priority | path handling issues with rooturl variables nuclei version dev main current behavior console echo nuclei id cve v projectdiscovery io using nuclei engine latest using nuclei templates latest templates added in last update templates loaded for scan targets loaded for scan could not execute request for post giving up after attempts post http server gave http response to https client could not execute request for post giving up after attempts post http server gave http response to https client could not execute request for post giving up after attempts post http server gave http response to https client could not execute request for post giving up after attempts post http server gave http response to https client no results found better luck next time steps to reproduce echo nuclei id cve v | 1 |
141,606 | 5,438,990,845 | IssuesEvent | 2017-03-06 12:07:05 | CS2103JAN2017-T09-B1/main | https://api.github.com/repos/CS2103JAN2017-T09-B1/main | opened | As a user I can specify a location to save the storage file | priority.high type.story | ...so that I can choose where to save the file to | 1.0 | As a user I can specify a location to save the storage file - ...so that I can choose where to save the file to | priority | as a user i can specify a location to save the storage file so that i can choose where to save the file to | 1 |
451,161 | 13,025,689,954 | IssuesEvent | 2020-07-27 13:55:22 | bbc/simorgh | https://api.github.com/repos/bbc/simorgh | closed | Pre-warm the cache for OD Radio Services Batch 2 | high-priority ws-media ws-media-ondemandRadio | **Is your feature request related to a problem? Please describe.**
We will pre-warm the ARES cache for the OD episodes ahead of the release OD radio release on the the 2nd of July.
This is to prevent alarms being triggered on cloudwatch as assets are requested for the first time.
The ARES team have a solution to pre-cache episode and brand URLs for OD radio as they become available in the schedules.
However, there is a long tail of episodes and brand pages that have never been accessed via ARES.
**Describe the solution you'd like**
Take a list of historic URLs for OD radio on Afrique, Amharic, Bengali, Burmese, Gahuza, Korean, Kyrqyz, Nepali, Persian, Sinhala, Swahili, Tamil, Tigrinya, Urdu, Uzbek, and hit equivalent endpoints in ARES.
We will need to this periodically so we don't overwhelm Ares and Nitro.
@aeroplanejane to provide the CSVs that cover visits to the services over the last 3 months
@pharingee has a python script available do this.
Return any 404s so we can republish them.
**Describe alternatives you've considered**
ARES have considered future episodes for us.
**Testing notes**
Dev insight: Will Cypress tests be required or are unit tests sufficient? Will there be any potential regression? etc
- [ ] This feature is expected to need manual testing.
**Additional context**
Add any other context or screenshots about the feature request here. | 1.0 | Pre-warm the cache for OD Radio Services Batch 2 - **Is your feature request related to a problem? Please describe.**
We will pre-warm the ARES cache for the OD episodes ahead of the release OD radio release on the the 2nd of July.
This is to prevent alarms being triggered on cloudwatch as assets are requested for the first time.
The ARES team have a solution to pre-cache episode and brand URLs for OD radio as they become available in the schedules.
However, there is a long tail of episodes and brand pages that have never been accessed via ARES.
**Describe the solution you'd like**
Take a list of historic URLs for OD radio on Afrique, Amharic, Bengali, Burmese, Gahuza, Korean, Kyrqyz, Nepali, Persian, Sinhala, Swahili, Tamil, Tigrinya, Urdu, Uzbek, and hit equivalent endpoints in ARES.
We will need to this periodically so we don't overwhelm Ares and Nitro.
@aeroplanejane to provide the CSVs that cover visits to the services over the last 3 months
@pharingee has a python script available do this.
Return any 404s so we can republish them.
**Describe alternatives you've considered**
ARES have considered future episodes for us.
**Testing notes**
Dev insight: Will Cypress tests be required or are unit tests sufficient? Will there be any potential regression? etc
- [ ] This feature is expected to need manual testing.
**Additional context**
Add any other context or screenshots about the feature request here. | priority | pre warm the cache for od radio services batch is your feature request related to a problem please describe we will pre warm the ares cache for the od episodes ahead of the release od radio release on the the of july this is to prevent alarms being triggered on cloudwatch as assets are requested for the first time the ares team have a solution to pre cache episode and brand urls for od radio as they become available in the schedules however there is a long tail of episodes and brand pages that have never been accessed via ares describe the solution you d like take a list of historic urls for od radio on afrique amharic bengali burmese gahuza korean kyrqyz nepali persian sinhala swahili tamil tigrinya urdu uzbek and hit equivalent endpoints in ares we will need to this periodically so we don t overwhelm ares and nitro aeroplanejane to provide the csvs that cover visits to the services over the last months pharingee has a python script available do this return any so we can republish them describe alternatives you ve considered ares have considered future episodes for us testing notes dev insight will cypress tests be required or are unit tests sufficient will there be any potential regression etc this feature is expected to need manual testing additional context add any other context or screenshots about the feature request here | 1 |
725,561 | 24,966,312,940 | IssuesEvent | 2022-11-01 19:42:52 | dtcenter/METviewer | https://api.github.com/repos/dtcenter/METviewer | opened | Plot the new ECNT statistics: MAE, MAE_OERR, BIAS_RATIO, ME_LT_OBS, and ME_GT_OBS | type: enhancement priority: high requestor: NOAA/EMC alert: NEED ACCOUNT KEY requestor: UK Met Office METviewer: Plotting METviewer: Statistics METviewer: Scorecard | ## Describe the Enhancement ##
MET development version 11.0.0-beta4 made several changes to the "stat" output. This issue is to enhance METviewer to plot the newly added statistics and enable them to be included in scorecards.
I don't see a need to plot the N_GE_OBS and N_LT_OBS columns that were also added, but they are needed in the aggregation of the other columns.
- Issue dtcenter/MET#2325 adds 2 new columns (MAE and MAE_OERR) to the ECNT line type generated by Ensemble-Stat and the HiRA method in Point-Stat. See [Table 13.2](https://met.readthedocs.io/en/develop/Users_Guide/ensemble-stat.html?highlight=ECNT#id2). The MAE is the mean absolute error. These columns should be aggregated together over multiple cases using a weighted average approach, where the weight is defined by the number of matched pairs in the TOTAL column.
These MAE's should be added to the list of statistics where 0 is the perfect score.
- Issue dtcenter/MET#2058 adds 5 new columns (BIAS_RATIO, N_GE_OBS, ME_GE_OBS, N_LT_OBS, ME_LT_OBS) to the ECNT line type generated by Ensemble-Stat and the HiRA method in Point-Stat. See [Table 13.2](https://met.readthedocs.io/en/develop/Users_Guide/ensemble-stat.html?highlight=ECNT#id2). All 5 columns are added so that the BIAS_RATIO can be aggregated over multiple runs, as described below.
- N_GE_OBS is an integer and is aggregated over multiple runs by summing the values.
- ME_GE_OBS is a float and is aggregated as a weighted average where the weights are defined by the N_GE_OBS column.
- N_LT_OBS is an integer and is aggregated over multiple runs by summing the values.
- ME_LT_OBS is a float and is aggregated as a weighted average where the weights are defined by the N_LT_OBS column.
- BIAS_RATIO is a float >0. It aggregated by first aggregating ME_GE_OBS and ME_LT_OBS and then computing BIAS_RATIO = ME_GE_OBS / absolute value of ME_LT_OBS.
The ME_GE_OBS and ME_LT_OBS columns are mean errors and should added to list of statistics where 0 is the perfect score.
The BIAS_RATIO is the ratio of those 2 ME values, and I suppose a perfect score would be 0/0 which is undefined. This *probably* should go in the list of statistics where 1 is the perfect score... where the amount of high bias equal the amount of low bias. In this way, its similar to the frequency bias (FBIAS) statistic.
Sample data for this issue can be found in the nightly build output in seneca:/d1/projects/MET/MET_regression/develop/NB20221101/MET-develop/test_output (or a more recent date).
And here's a tarfile of that output:
ftp://ftp.rap.ucar.edu/incoming/irap/met_help/NB20221101_develop_test_output.tar.gz
### Time Estimate ###
*Estimate the amount of work required here.*
*Issues should represent approximately 1 to 3 days of work.*
### Sub-Issues ###
Consider breaking the enhancement down into sub-issues.
- [ ] *Add a checkbox for each sub-issue here.*
### Relevant Deadlines ###
*List relevant project deadlines here or state NONE.*
### Funding Source ###
*Define the source of funding and account keys here or state NONE.*
## Define the Metadata ##
### Assignee ###
- [ ] Select **engineer(s)** or **no engineer** required
- [ ] Select **scientist(s)** or **no scientist** required
### Labels ###
- [ ] Select **component(s)**
- [ ] Select **priority**
- [ ] Select **requestor(s)**
### Projects and Milestone ###
- [ ] Select **Repository** and/or **Organization** level **Project(s)** or add **alert: NEED PROJECT ASSIGNMENT** label
- [ ] Select **Milestone** as the next official version or **Future Versions**
## Define Related Issue(s) ##
Consider the impact to the other METplus components.
- [ ] [METplus](https://github.com/dtcenter/METplus/issues/new/choose), [MET](https://github.com/dtcenter/MET/issues/new/choose), [METdataio](https://github.com/dtcenter/METdataio/issues/new/choose), [METviewer](https://github.com/dtcenter/METviewer/issues/new/choose), [METexpress](https://github.com/dtcenter/METexpress/issues/new/choose), [METcalcpy](https://github.com/dtcenter/METcalcpy/issues/new/choose), [METplotpy](https://github.com/dtcenter/METplotpy/issues/new/choose)
## Enhancement Checklist ##
See the [METplus Workflow](https://metplus.readthedocs.io/en/latest/Contributors_Guide/github_workflow.html) for details.
- [ ] Complete the issue definition above, including the **Time Estimate** and **Funding Source**.
- [ ] Fork this repository or create a branch of **develop**.
Branch name: `feature_<Issue Number>_<Description>`
- [ ] Complete the development and test your changes.
- [ ] Add/update log messages for easier debugging.
- [ ] Add/update unit tests.
- [ ] Add/update documentation.
- [ ] Push local changes to GitHub.
- [ ] Submit a pull request to merge into **develop**.
Pull request: `feature <Issue Number> <Description>`
- [ ] Define the pull request metadata, as permissions allow.
Select: **Reviewer(s)** and **Linked issues**
Select: **Repository** level development cycle **Project** for the next official release
Select: **Milestone** as the next official version
- [ ] Iterate until the reviewer(s) accept and merge your changes.
- [ ] Delete your fork or branch.
- [ ] Close this issue.
| 1.0 | Plot the new ECNT statistics: MAE, MAE_OERR, BIAS_RATIO, ME_LT_OBS, and ME_GT_OBS - ## Describe the Enhancement ##
MET development version 11.0.0-beta4 made several changes to the "stat" output. This issue is to enhance METviewer to plot the newly added statistics and enable them to be included in scorecards.
I don't see a need to plot the N_GE_OBS and N_LT_OBS columns that were also added, but they are needed in the aggregation of the other columns.
- Issue dtcenter/MET#2325 adds 2 new columns (MAE and MAE_OERR) to the ECNT line type generated by Ensemble-Stat and the HiRA method in Point-Stat. See [Table 13.2](https://met.readthedocs.io/en/develop/Users_Guide/ensemble-stat.html?highlight=ECNT#id2). The MAE is the mean absolute error. These columns should be aggregated together over multiple cases using a weighted average approach, where the weight is defined by the number of matched pairs in the TOTAL column.
These MAE's should be added to the list of statistics where 0 is the perfect score.
- Issue dtcenter/MET#2058 adds 5 new columns (BIAS_RATIO, N_GE_OBS, ME_GE_OBS, N_LT_OBS, ME_LT_OBS) to the ECNT line type generated by Ensemble-Stat and the HiRA method in Point-Stat. See [Table 13.2](https://met.readthedocs.io/en/develop/Users_Guide/ensemble-stat.html?highlight=ECNT#id2). All 5 columns are added so that the BIAS_RATIO can be aggregated over multiple runs, as described below.
- N_GE_OBS is an integer and is aggregated over multiple runs by summing the values.
- ME_GE_OBS is a float and is aggregated as a weighted average where the weights are defined by the N_GE_OBS column.
- N_LT_OBS is an integer and is aggregated over multiple runs by summing the values.
- ME_LT_OBS is a float and is aggregated as a weighted average where the weights are defined by the N_LT_OBS column.
- BIAS_RATIO is a float >0. It aggregated by first aggregating ME_GE_OBS and ME_LT_OBS and then computing BIAS_RATIO = ME_GE_OBS / absolute value of ME_LT_OBS.
The ME_GE_OBS and ME_LT_OBS columns are mean errors and should added to list of statistics where 0 is the perfect score.
The BIAS_RATIO is the ratio of those 2 ME values, and I suppose a perfect score would be 0/0 which is undefined. This *probably* should go in the list of statistics where 1 is the perfect score... where the amount of high bias equal the amount of low bias. In this way, its similar to the frequency bias (FBIAS) statistic.
Sample data for this issue can be found in the nightly build output in seneca:/d1/projects/MET/MET_regression/develop/NB20221101/MET-develop/test_output (or a more recent date).
And here's a tarfile of that output:
ftp://ftp.rap.ucar.edu/incoming/irap/met_help/NB20221101_develop_test_output.tar.gz
### Time Estimate ###
*Estimate the amount of work required here.*
*Issues should represent approximately 1 to 3 days of work.*
### Sub-Issues ###
Consider breaking the enhancement down into sub-issues.
- [ ] *Add a checkbox for each sub-issue here.*
### Relevant Deadlines ###
*List relevant project deadlines here or state NONE.*
### Funding Source ###
*Define the source of funding and account keys here or state NONE.*
## Define the Metadata ##
### Assignee ###
- [ ] Select **engineer(s)** or **no engineer** required
- [ ] Select **scientist(s)** or **no scientist** required
### Labels ###
- [ ] Select **component(s)**
- [ ] Select **priority**
- [ ] Select **requestor(s)**
### Projects and Milestone ###
- [ ] Select **Repository** and/or **Organization** level **Project(s)** or add **alert: NEED PROJECT ASSIGNMENT** label
- [ ] Select **Milestone** as the next official version or **Future Versions**
## Define Related Issue(s) ##
Consider the impact to the other METplus components.
- [ ] [METplus](https://github.com/dtcenter/METplus/issues/new/choose), [MET](https://github.com/dtcenter/MET/issues/new/choose), [METdataio](https://github.com/dtcenter/METdataio/issues/new/choose), [METviewer](https://github.com/dtcenter/METviewer/issues/new/choose), [METexpress](https://github.com/dtcenter/METexpress/issues/new/choose), [METcalcpy](https://github.com/dtcenter/METcalcpy/issues/new/choose), [METplotpy](https://github.com/dtcenter/METplotpy/issues/new/choose)
## Enhancement Checklist ##
See the [METplus Workflow](https://metplus.readthedocs.io/en/latest/Contributors_Guide/github_workflow.html) for details.
- [ ] Complete the issue definition above, including the **Time Estimate** and **Funding Source**.
- [ ] Fork this repository or create a branch of **develop**.
Branch name: `feature_<Issue Number>_<Description>`
- [ ] Complete the development and test your changes.
- [ ] Add/update log messages for easier debugging.
- [ ] Add/update unit tests.
- [ ] Add/update documentation.
- [ ] Push local changes to GitHub.
- [ ] Submit a pull request to merge into **develop**.
Pull request: `feature <Issue Number> <Description>`
- [ ] Define the pull request metadata, as permissions allow.
Select: **Reviewer(s)** and **Linked issues**
Select: **Repository** level development cycle **Project** for the next official release
Select: **Milestone** as the next official version
- [ ] Iterate until the reviewer(s) accept and merge your changes.
- [ ] Delete your fork or branch.
- [ ] Close this issue.
| priority | plot the new ecnt statistics mae mae oerr bias ratio me lt obs and me gt obs describe the enhancement met development version made several changes to the stat output this issue is to enhance metviewer to plot the newly added statistics and enable them to be included in scorecards i don t see a need to plot the n ge obs and n lt obs columns that were also added but they are needed in the aggregation of the other columns issue dtcenter met adds new columns mae and mae oerr to the ecnt line type generated by ensemble stat and the hira method in point stat see the mae is the mean absolute error these columns should be aggregated together over multiple cases using a weighted average approach where the weight is defined by the number of matched pairs in the total column these mae s should be added to the list of statistics where is the perfect score issue dtcenter met adds new columns bias ratio n ge obs me ge obs n lt obs me lt obs to the ecnt line type generated by ensemble stat and the hira method in point stat see all columns are added so that the bias ratio can be aggregated over multiple runs as described below n ge obs is an integer and is aggregated over multiple runs by summing the values me ge obs is a float and is aggregated as a weighted average where the weights are defined by the n ge obs column n lt obs is an integer and is aggregated over multiple runs by summing the values me lt obs is a float and is aggregated as a weighted average where the weights are defined by the n lt obs column bias ratio is a float it aggregated by first aggregating me ge obs and me lt obs and then computing bias ratio me ge obs absolute value of me lt obs the me ge obs and me lt obs columns are mean errors and should added to list of statistics where is the perfect score the bias ratio is the ratio of those me values and i suppose a perfect score would be which is undefined this probably should go in the list of statistics where is the perfect score where the amount of high bias equal the amount of low bias in this way its similar to the frequency bias fbias statistic sample data for this issue can be found in the nightly build output in seneca projects met met regression develop met develop test output or a more recent date and here s a tarfile of that output ftp ftp rap ucar edu incoming irap met help develop test output tar gz time estimate estimate the amount of work required here issues should represent approximately to days of work sub issues consider breaking the enhancement down into sub issues add a checkbox for each sub issue here relevant deadlines list relevant project deadlines here or state none funding source define the source of funding and account keys here or state none define the metadata assignee select engineer s or no engineer required select scientist s or no scientist required labels select component s select priority select requestor s projects and milestone select repository and or organization level project s or add alert need project assignment label select milestone as the next official version or future versions define related issue s consider the impact to the other metplus components enhancement checklist see the for details complete the issue definition above including the time estimate and funding source fork this repository or create a branch of develop branch name feature complete the development and test your changes add update log messages for easier debugging add update unit tests add update documentation push local changes to github submit a pull request to merge into develop pull request feature define the pull request metadata as permissions allow select reviewer s and linked issues select repository level development cycle project for the next official release select milestone as the next official version iterate until the reviewer s accept and merge your changes delete your fork or branch close this issue | 1 |
538,315 | 15,766,860,219 | IssuesEvent | 2021-03-31 15:28:40 | monarch-initiative/mondo | https://api.github.com/repos/monarch-initiative/mondo | closed | Disambiguate neurodegeneration with brain iron accumulation prototype from 2A | high priority merge split | currently NBIA2A is conflated with the more generic NBIA2
this is spotted by the reasoner:

| 1.0 | Disambiguate neurodegeneration with brain iron accumulation prototype from 2A - currently NBIA2A is conflated with the more generic NBIA2
this is spotted by the reasoner:

| priority | disambiguate neurodegeneration with brain iron accumulation prototype from currently is conflated with the more generic this is spotted by the reasoner | 1 |
548,290 | 16,061,568,707 | IssuesEvent | 2021-04-23 13:16:54 | timotheecour/Nim | https://api.github.com/repos/timotheecour/Nim | opened | switch to destrutors | high priority | legacy modules which are too important to change(need more think)
- [ ] File Handle
- [ ] Socket Handle
Less important modules
provide a wrapper for them with destructors
- [ ] Lock
- [ ] RLock
- [ ] Cond
Unstable modules
can we remove deinit**** procs and use destructors?
- [ ] sharedlists
- [ ] sharedtables | 1.0 | switch to destrutors - legacy modules which are too important to change(need more think)
- [ ] File Handle
- [ ] Socket Handle
Less important modules
provide a wrapper for them with destructors
- [ ] Lock
- [ ] RLock
- [ ] Cond
Unstable modules
can we remove deinit**** procs and use destructors?
- [ ] sharedlists
- [ ] sharedtables | priority | switch to destrutors legacy modules which are too important to change need more think file handle socket handle less important modules provide a wrapper for them with destructors lock rlock cond unstable modules can we remove deinit procs and use destructors sharedlists sharedtables | 1 |
163,200 | 6,193,383,838 | IssuesEvent | 2017-07-05 07:00:42 | BuckleTypes/bs-react-native | https://api.github.com/repos/BuckleTypes/bs-react-native | closed | Contributing guide | high priority | When contributors show up, probably mostly from the JS community they are going to need some advice.
1. References to langauge manual (and probably RWO)
2. References to Buckelscript manual
3. Where to start (we probably will need something like `good first issue`)
4. Naming conventions
5. Development workflow (from my contributing experience this is particularly important to address)
6. Where to document stuff | 1.0 | Contributing guide - When contributors show up, probably mostly from the JS community they are going to need some advice.
1. References to langauge manual (and probably RWO)
2. References to Buckelscript manual
3. Where to start (we probably will need something like `good first issue`)
4. Naming conventions
5. Development workflow (from my contributing experience this is particularly important to address)
6. Where to document stuff | priority | contributing guide when contributors show up probably mostly from the js community they are going to need some advice references to langauge manual and probably rwo references to buckelscript manual where to start we probably will need something like good first issue naming conventions development workflow from my contributing experience this is particularly important to address where to document stuff | 1 |
409,865 | 11,968,943,197 | IssuesEvent | 2020-04-06 09:30:00 | ITISFoundation/osparc-simcore | https://api.github.com/repos/ITISFoundation/osparc-simcore | closed | bug: services are broken in master | High Priority bug | Since osparc-internal and osparc-external pipelines were fixed, error went into the services that need to be updated.
 | 1.0 | bug: services are broken in master - Since osparc-internal and osparc-external pipelines were fixed, error went into the services that need to be updated.
 | priority | bug services are broken in master since osparc internal and osparc external pipelines were fixed error went into the services that need to be updated | 1 |
255,216 | 8,114,713,135 | IssuesEvent | 2018-08-15 02:07:31 | AnalyticalGraphicsInc/gltf-pipeline | https://api.github.com/repos/AnalyticalGraphicsInc/gltf-pipeline | closed | updateVersion is creating a lot of extra nodes | priority - high | With this model: https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/1.0/BrainStem/glTF-Binary
The original glTF has 3 meshes, each with 10-25 primitives
The glTF returned from gltf-pipeline has ~50 meshes, each with one primitive. And each of these new meshes need to be referenced by a node, so it also creates a ton of extra nodes.
As a result, the hierarchy goes from looking like this:

and after it's processed it looks like this:

This intuitively doesn't seem as optimal, but I'm not really sure. @lilleyse is looking into it
| 1.0 | updateVersion is creating a lot of extra nodes - With this model: https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/1.0/BrainStem/glTF-Binary
The original glTF has 3 meshes, each with 10-25 primitives
The glTF returned from gltf-pipeline has ~50 meshes, each with one primitive. And each of these new meshes need to be referenced by a node, so it also creates a ton of extra nodes.
As a result, the hierarchy goes from looking like this:

and after it's processed it looks like this:

This intuitively doesn't seem as optimal, but I'm not really sure. @lilleyse is looking into it
| priority | updateversion is creating a lot of extra nodes with this model the original gltf has meshes each with primitives the gltf returned from gltf pipeline has meshes each with one primitive and each of these new meshes need to be referenced by a node so it also creates a ton of extra nodes as a result the hierarchy goes from looking like this and after it s processed it looks like this this intuitively doesn t seem as optimal but i m not really sure lilleyse is looking into it | 1 |
146,402 | 5,620,912,954 | IssuesEvent | 2017-04-04 08:32:22 | leo-project/leofs | https://api.github.com/repos/leo-project/leofs | opened | [leo_storage][leo_backend_db] leo_storage can be rebooted when lots of badarg from eleveldb happened | Priority-HIGH survey v1.3 _leo_backend_db _leo_storage | Reported on https://github.com/leo-project/leofs/issues/644#issuecomment-290717176.
Now I think the following thing can happen in eleveldb.
- During Comaction (NOT LeoFS BUT Leveldb)
Any Operation (PUT/GET/DELETE/FETCH) to leo_backend_db backed by eleveldb can block due to
- An OS thread managed by eleveldb being blocked until the compaction finished
- The corresponding OS thread managed by Erlang Runtime being blocked until the OS thread managed by eleveldb responded to the request (PUT/GET/DELETE/FETCH)
- There are multiple leveldb instances on the same node in which the number of its instances is same with the number of AVS files (default: 8) so that **leo_storage with the number of cpu cores <= 8** can get stuck under high load during compaction happened at leveldb
- Cause Erlang Runtime no to respond heartbeat any more and as a result heart triggers the restart for leo_storage
As we have test/benchmark(ed) LeoFS on relatively high spec machines (IIRC, the number of cores is 24/32),
there is little chance to see the restart happened in such reason.
Now I'm working to confirm whether the above assumption is correct or not. | 1.0 | [leo_storage][leo_backend_db] leo_storage can be rebooted when lots of badarg from eleveldb happened - Reported on https://github.com/leo-project/leofs/issues/644#issuecomment-290717176.
Now I think the following thing can happen in eleveldb.
- During Comaction (NOT LeoFS BUT Leveldb)
Any Operation (PUT/GET/DELETE/FETCH) to leo_backend_db backed by eleveldb can block due to
- An OS thread managed by eleveldb being blocked until the compaction finished
- The corresponding OS thread managed by Erlang Runtime being blocked until the OS thread managed by eleveldb responded to the request (PUT/GET/DELETE/FETCH)
- There are multiple leveldb instances on the same node in which the number of its instances is same with the number of AVS files (default: 8) so that **leo_storage with the number of cpu cores <= 8** can get stuck under high load during compaction happened at leveldb
- Cause Erlang Runtime no to respond heartbeat any more and as a result heart triggers the restart for leo_storage
As we have test/benchmark(ed) LeoFS on relatively high spec machines (IIRC, the number of cores is 24/32),
there is little chance to see the restart happened in such reason.
Now I'm working to confirm whether the above assumption is correct or not. | priority | leo storage can be rebooted when lots of badarg from eleveldb happened reported on now i think the following thing can happen in eleveldb during comaction not leofs but leveldb any operation put get delete fetch to leo backend db backed by eleveldb can block due to an os thread managed by eleveldb being blocked until the compaction finished the corresponding os thread managed by erlang runtime being blocked until the os thread managed by eleveldb responded to the request put get delete fetch there are multiple leveldb instances on the same node in which the number of its instances is same with the number of avs files default so that leo storage with the number of cpu cores can get stuck under high load during compaction happened at leveldb cause erlang runtime no to respond heartbeat any more and as a result heart triggers the restart for leo storage as we have test benchmark ed leofs on relatively high spec machines iirc the number of cores is there is little chance to see the restart happened in such reason now i m working to confirm whether the above assumption is correct or not | 1 |
294,202 | 9,014,277,173 | IssuesEvent | 2019-02-05 21:54:37 | blackbaud/skyux2 | https://api.github.com/repos/blackbaud/skyux2 | closed | Port over the summary actionbar functionality | Difficulty: Medium Priority: High Status: Ready for release Type: Port | UX 1 documentation: https://skyux.developer.blackbaud.com/components/summaryactionbar/
---
### For SKY UX team only
- [x] Feature approved (pull request: https://github.com/blackbaud/skyux-action-bars/pull/1)
- [ ] Released in `x.x.x`.
- [ ] Demo written (pull request: ___)
- [ ] Documentation written (pull request: ___) | 1.0 | Port over the summary actionbar functionality - UX 1 documentation: https://skyux.developer.blackbaud.com/components/summaryactionbar/
---
### For SKY UX team only
- [x] Feature approved (pull request: https://github.com/blackbaud/skyux-action-bars/pull/1)
- [ ] Released in `x.x.x`.
- [ ] Demo written (pull request: ___)
- [ ] Documentation written (pull request: ___) | priority | port over the summary actionbar functionality ux documentation for sky ux team only feature approved pull request released in x x x demo written pull request documentation written pull request | 1 |
413,070 | 12,059,994,584 | IssuesEvent | 2020-04-15 20:19:48 | monarch-initiative/mondo | https://api.github.com/repos/monarch-initiative/mondo | closed | Please remove xref EFO:0000378 from MONDO:0005010 coronary artery disease | EFO high priority xref | **MONDO:0005010 coronary artery disease:**
**Xref that should be fixed: EFO:0000378 coronary artery disease**
I'm addressing a duplication in EFO (EFO:0000378 coronary artery disease vs. EFO:0001645 coronary heart disease, FYI see https://github.com/EBISPOT/efo/issues/667#issuecomment-588172575). MONDO:0005010 coronary artery disease currently xrefs to both EFO terms. Could you please
- [x] Remove EFO:0000378 from MONDO:0005010.
Tagging this as important as it would help us a lot if it could be fixed in the upcoming Mondo release, so we can address more easily from our side. Many thanks. | 1.0 | Please remove xref EFO:0000378 from MONDO:0005010 coronary artery disease - **MONDO:0005010 coronary artery disease:**
**Xref that should be fixed: EFO:0000378 coronary artery disease**
I'm addressing a duplication in EFO (EFO:0000378 coronary artery disease vs. EFO:0001645 coronary heart disease, FYI see https://github.com/EBISPOT/efo/issues/667#issuecomment-588172575). MONDO:0005010 coronary artery disease currently xrefs to both EFO terms. Could you please
- [x] Remove EFO:0000378 from MONDO:0005010.
Tagging this as important as it would help us a lot if it could be fixed in the upcoming Mondo release, so we can address more easily from our side. Many thanks. | priority | please remove xref efo from mondo coronary artery disease mondo coronary artery disease xref that should be fixed efo coronary artery disease i m addressing a duplication in efo efo coronary artery disease vs efo coronary heart disease fyi see mondo coronary artery disease currently xrefs to both efo terms could you please remove efo from mondo tagging this as important as it would help us a lot if it could be fixed in the upcoming mondo release so we can address more easily from our side many thanks | 1 |
302,916 | 9,300,493,594 | IssuesEvent | 2019-03-23 14:15:52 | siphomateke/zra-helper | https://api.github.com/repos/siphomateke/zra-helper | closed | Some receipts for some clients not timing out | action: return history bug priority: high | v1.4.0-beta.1
In a list of about 30 clients about 3 clients will have a point where some receipts show #39 but then instead don't timeout.
Then those receipts fill up the max slots and halt execution (I close those, it continues).
Many other receipts for different clients timeout successfully.
Just those three(default) receipts don't timeout for about three clients per about 30.
This happens nearly every run, that has that number of clients (about 30). | 1.0 | Some receipts for some clients not timing out - v1.4.0-beta.1
In a list of about 30 clients about 3 clients will have a point where some receipts show #39 but then instead don't timeout.
Then those receipts fill up the max slots and halt execution (I close those, it continues).
Many other receipts for different clients timeout successfully.
Just those three(default) receipts don't timeout for about three clients per about 30.
This happens nearly every run, that has that number of clients (about 30). | priority | some receipts for some clients not timing out beta in a list of about clients about clients will have a point where some receipts show but then instead don t timeout then those receipts fill up the max slots and halt execution i close those it continues many other receipts for different clients timeout successfully just those three default receipts don t timeout for about three clients per about this happens nearly every run that has that number of clients about | 1 |
354,001 | 10,561,596,225 | IssuesEvent | 2019-10-04 16:13:41 | pytorch/pytorch | https://api.github.com/repos/pytorch/pytorch | closed | [jit] Possible to create dependency cycle using _Const* ScriptModule | high priority jit triaged | By dependency cycle, I mean: in our serialized model, "A.py depends on B.py depends on A.py"
In our serialization format, dependency cycles are blocked by the fact that we lay out the files like Python does, so cycles can't be made by construction. `_ConstSequential` and friends violate this by being dynamically created in `torch/jit.py`, so it is possible to architect a cycle.
Simple repro:
```
class A(torch.jit.ScriptModule):
def __init__(self):
super(A, self).__init__()
@torch.jit.script_method
def forward(self, x):
return x
class B(torch.jit.ScriptModule):
def __init__(self):
super(B, self).__init__()
self.foo = torch.nn.ModuleList([A()])
@torch.jit.script_method
def forward(self, x):
for f in self.foo:
x = f(x)
return x
class C(torch.jit.ScriptModule):
def __init__(self):
super(C, self).__init__()
self.foo = torch.nn.Sequential(B())
@torch.jit.script_method
def forward(self, x):
for f in self.foo:
x = f(x)
return x
a = C()
a.save("test.pt")
x = torch.jit.load("test.pt")
```
cc @ezyang @gchanan @zou3519 @suo | 1.0 | [jit] Possible to create dependency cycle using _Const* ScriptModule - By dependency cycle, I mean: in our serialized model, "A.py depends on B.py depends on A.py"
In our serialization format, dependency cycles are blocked by the fact that we lay out the files like Python does, so cycles can't be made by construction. `_ConstSequential` and friends violate this by being dynamically created in `torch/jit.py`, so it is possible to architect a cycle.
Simple repro:
```
class A(torch.jit.ScriptModule):
def __init__(self):
super(A, self).__init__()
@torch.jit.script_method
def forward(self, x):
return x
class B(torch.jit.ScriptModule):
def __init__(self):
super(B, self).__init__()
self.foo = torch.nn.ModuleList([A()])
@torch.jit.script_method
def forward(self, x):
for f in self.foo:
x = f(x)
return x
class C(torch.jit.ScriptModule):
def __init__(self):
super(C, self).__init__()
self.foo = torch.nn.Sequential(B())
@torch.jit.script_method
def forward(self, x):
for f in self.foo:
x = f(x)
return x
a = C()
a.save("test.pt")
x = torch.jit.load("test.pt")
```
cc @ezyang @gchanan @zou3519 @suo | priority | possible to create dependency cycle using const scriptmodule by dependency cycle i mean in our serialized model a py depends on b py depends on a py in our serialization format dependency cycles are blocked by the fact that we lay out the files like python does so cycles can t be made by construction constsequential and friends violate this by being dynamically created in torch jit py so it is possible to architect a cycle simple repro class a torch jit scriptmodule def init self super a self init torch jit script method def forward self x return x class b torch jit scriptmodule def init self super b self init self foo torch nn modulelist torch jit script method def forward self x for f in self foo x f x return x class c torch jit scriptmodule def init self super c self init self foo torch nn sequential b torch jit script method def forward self x for f in self foo x f x return x a c a save test pt x torch jit load test pt cc ezyang gchanan suo | 1 |
545,761 | 15,963,159,905 | IssuesEvent | 2021-04-16 03:11:07 | rescript-lang/rescript-compiler | https://api.github.com/repos/rescript-lang/rescript-compiler | closed | ReScript 9.1: weird error message if optional prop has no type annotation | PRIORITY:HIGH | Consider the following React component:
Test.resi:
```rescript
@react.component
let make: (~s: string=?) => React.element
```
Test.res:
```rescript
@react.component
let make = (~s=?) =>
switch s {
| Some(s) => React.string(s)
| None => React.null
}
```
This compiles fine in ReScript 9.0.
In ReScript 9.1, it gives me the following weird error message:
```
The implementation /Users/christoph/projects/cca/xxx/src/navigation/Test.res
does not match the interface src/navigation/test.cmi:
Values do not match:
external makeProps: (~?s: 's, ~?key: string, unit) => {"s": option<'s>} =
"" "
A!s@A#keyA@@@"
is not included in
external makeProps: (~?s: string, ~?key: string, unit) => {
"s": option<string>,
} =
"" "
A!sAA#keyA@@@"
File "/Users/christoph/projects/cca/xxx/src/navigation/Test.resi", line 1, characters 0-58:
Expected declaration
File "Test", line 1: Actual declaration
```
If I change Test.res to
```rescript
@react.component
let make = (~s: option<string>=?) =>
switch s {
| Some(s) => React.string(s)
| None => React.null
}
```
it compiles fine with ReScript 9.1. | 1.0 | ReScript 9.1: weird error message if optional prop has no type annotation - Consider the following React component:
Test.resi:
```rescript
@react.component
let make: (~s: string=?) => React.element
```
Test.res:
```rescript
@react.component
let make = (~s=?) =>
switch s {
| Some(s) => React.string(s)
| None => React.null
}
```
This compiles fine in ReScript 9.0.
In ReScript 9.1, it gives me the following weird error message:
```
The implementation /Users/christoph/projects/cca/xxx/src/navigation/Test.res
does not match the interface src/navigation/test.cmi:
Values do not match:
external makeProps: (~?s: 's, ~?key: string, unit) => {"s": option<'s>} =
"" "
A!s@A#keyA@@@"
is not included in
external makeProps: (~?s: string, ~?key: string, unit) => {
"s": option<string>,
} =
"" "
A!sAA#keyA@@@"
File "/Users/christoph/projects/cca/xxx/src/navigation/Test.resi", line 1, characters 0-58:
Expected declaration
File "Test", line 1: Actual declaration
```
If I change Test.res to
```rescript
@react.component
let make = (~s: option<string>=?) =>
switch s {
| Some(s) => React.string(s)
| None => React.null
}
```
it compiles fine with ReScript 9.1. | priority | rescript weird error message if optional prop has no type annotation consider the following react component test resi rescript react component let make s string react element test res rescript react component let make s switch s some s react string s none react null this compiles fine in rescript in rescript it gives me the following weird error message the implementation users christoph projects cca xxx src navigation test res does not match the interface src navigation test cmi values do not match external makeprops s s key string unit s option a s a keya is not included in external makeprops s string key string unit s option a saa keya file users christoph projects cca xxx src navigation test resi line characters expected declaration file test line actual declaration if i change test res to rescript react component let make s option switch s some s react string s none react null it compiles fine with rescript | 1 |
104,463 | 4,212,014,963 | IssuesEvent | 2016-06-29 15:07:38 | Cadasta/cadasta-platform | https://api.github.com/repos/Cadasta/cadasta-platform | closed | Design CSS for Wizard pages | enhancement high priority | Rework wizard page layout to match wireframes.
Rework progress indicator to be more flexible for different scenarios.
Add back/previous? | 1.0 | Design CSS for Wizard pages - Rework wizard page layout to match wireframes.
Rework progress indicator to be more flexible for different scenarios.
Add back/previous? | priority | design css for wizard pages rework wizard page layout to match wireframes rework progress indicator to be more flexible for different scenarios add back previous | 1 |
155,559 | 5,956,980,210 | IssuesEvent | 2017-05-28 21:49:34 | yarnpkg/yarn | https://api.github.com/repos/yarnpkg/yarn | reopened | yarn install hangs during "Fetching packages..." | bug-fetching bug-high-priority discussion git dependencies triaged | **Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
yarn install hangs at fetching packages and does not provide any further information as to the cause.
**If the current behavior is a bug, please provide the steps to reproduce.**
With the following [package.json](https://gist.github.com/indieisaconcept/875c30f41eb0683e17628c6b6f7b5ae1) run the below
```
> yarn cache clean & yarn install
```
**What is the expected behavior?**
Installation should succeed.
**Please mention your node.js, yarn and operating system version.**
- yarn@v0.15.1
- node@v4.4.6
- osx@10.10.5
| 1.0 | yarn install hangs during "Fetching packages..." - **Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
yarn install hangs at fetching packages and does not provide any further information as to the cause.
**If the current behavior is a bug, please provide the steps to reproduce.**
With the following [package.json](https://gist.github.com/indieisaconcept/875c30f41eb0683e17628c6b6f7b5ae1) run the below
```
> yarn cache clean & yarn install
```
**What is the expected behavior?**
Installation should succeed.
**Please mention your node.js, yarn and operating system version.**
- yarn@v0.15.1
- node@v4.4.6
- osx@10.10.5
| priority | yarn install hangs during fetching packages do you want to request a feature or report a bug bug what is the current behavior yarn install hangs at fetching packages and does not provide any further information as to the cause if the current behavior is a bug please provide the steps to reproduce with the following run the below yarn cache clean yarn install what is the expected behavior installation should succeed please mention your node js yarn and operating system version yarn node osx | 1 |
803,348 | 29,173,703,153 | IssuesEvent | 2023-05-19 05:47:47 | curiouslearning/FeedTheMonsterJS | https://api.github.com/repos/curiouslearning/FeedTheMonsterJS | closed | Adjust FTM gameplay timing | High Priority | **User Story**
As a Product Owner,
I want to match FTM Unity's gameplay timing wherein the target letter will appear and be spoken and the app will wait 5-6 seconds before the letter stone options appear OR if the user taps anywhere on the screen after the target letter audio has been spoken,
So that we don't overwhelm the user with too much information by waiting for the target audio to finish playing before presenting choices, to allow the user to speed up the experience by tapping the screen to reveal the letter stones they could pick, and to move the game along by displaying the stones without user input if they are not paying attention.
**Acceptance Criteria**
Given that I am playing a FTM level,
When the puzzle loads,
Then I should see the target (if available) and the target audio should play.
Given that I am playing a FTM level puzzle, the puzzle has loaded, and the target audio is playing,
When the target audio finishes playing,
Then I should be able to tap the screen anywhere to reveal the answer stones.
Given that I am playing a FTM level puzzle, the puzzle has loaded, and the target audio is playing,
When the target audio finishes playing and the game receives no touch input from the player after 5-6 seconds,
Then the answer stones should appear automatically. | 1.0 | Adjust FTM gameplay timing - **User Story**
As a Product Owner,
I want to match FTM Unity's gameplay timing wherein the target letter will appear and be spoken and the app will wait 5-6 seconds before the letter stone options appear OR if the user taps anywhere on the screen after the target letter audio has been spoken,
So that we don't overwhelm the user with too much information by waiting for the target audio to finish playing before presenting choices, to allow the user to speed up the experience by tapping the screen to reveal the letter stones they could pick, and to move the game along by displaying the stones without user input if they are not paying attention.
**Acceptance Criteria**
Given that I am playing a FTM level,
When the puzzle loads,
Then I should see the target (if available) and the target audio should play.
Given that I am playing a FTM level puzzle, the puzzle has loaded, and the target audio is playing,
When the target audio finishes playing,
Then I should be able to tap the screen anywhere to reveal the answer stones.
Given that I am playing a FTM level puzzle, the puzzle has loaded, and the target audio is playing,
When the target audio finishes playing and the game receives no touch input from the player after 5-6 seconds,
Then the answer stones should appear automatically. | priority | adjust ftm gameplay timing user story as a product owner i want to match ftm unity s gameplay timing wherein the target letter will appear and be spoken and the app will wait seconds before the letter stone options appear or if the user taps anywhere on the screen after the target letter audio has been spoken so that we don t overwhelm the user with too much information by waiting for the target audio to finish playing before presenting choices to allow the user to speed up the experience by tapping the screen to reveal the letter stones they could pick and to move the game along by displaying the stones without user input if they are not paying attention acceptance criteria given that i am playing a ftm level when the puzzle loads then i should see the target if available and the target audio should play given that i am playing a ftm level puzzle the puzzle has loaded and the target audio is playing when the target audio finishes playing then i should be able to tap the screen anywhere to reveal the answer stones given that i am playing a ftm level puzzle the puzzle has loaded and the target audio is playing when the target audio finishes playing and the game receives no touch input from the player after seconds then the answer stones should appear automatically | 1 |
557,998 | 16,523,986,182 | IssuesEvent | 2021-05-26 17:35:20 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | m.facebook.com - desktop site instead of mobile site | browser-fenix bugbug-probability-high engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical | <!-- @browser: Firefox Mobile 89.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:89.0) Gecko/89.0 Firefox/89.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/75102 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://m.facebook.com/login/account_recovery/name_search/?cuid=AYiXuqwhRH_0YOTgVkctps0KrKvnOasO_6ynbpitNt2DHhRT-IUtjeBkm-yNrhzSfRQTwDBEcamAgMImudU6zT0F7wyw3fURlK6d670SV0tArFdaeqXvMfIDVwBc27LkFgHmm1piezlJSIsSQ_4kYe_L-d0ij2HaIkUG8QofYZAjMWNp43kGBzgwCaPsO9C7Ro2LmyDevoyHLENC36ZCmp1s7cExmQqA6N97pYuFRIn4rQ&flow=ncpfar&ls=no_cp_for_ar&c=%2Flogin%2F&_rdr
**Browser / Version**: Firefox Mobile 89.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: Yes Internet Explorer
**Problem type**: Desktop site instead of mobile site
**Description**: Desktop site instead of mobile site
**Steps to Reproduce**:
saya lupa kata sandi email mati
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/5/08abebc6-2c78-456f-818f-4754745a08a1.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20210509185840</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2021/5/fab8daac-89bd-420a-a75c-f7b282b68b32)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | m.facebook.com - desktop site instead of mobile site - <!-- @browser: Firefox Mobile 89.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 8.1.0; Mobile; rv:89.0) Gecko/89.0 Firefox/89.0 -->
<!-- @reported_with: android-components-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/75102 -->
<!-- @extra_labels: browser-fenix -->
**URL**: https://m.facebook.com/login/account_recovery/name_search/?cuid=AYiXuqwhRH_0YOTgVkctps0KrKvnOasO_6ynbpitNt2DHhRT-IUtjeBkm-yNrhzSfRQTwDBEcamAgMImudU6zT0F7wyw3fURlK6d670SV0tArFdaeqXvMfIDVwBc27LkFgHmm1piezlJSIsSQ_4kYe_L-d0ij2HaIkUG8QofYZAjMWNp43kGBzgwCaPsO9C7Ro2LmyDevoyHLENC36ZCmp1s7cExmQqA6N97pYuFRIn4rQ&flow=ncpfar&ls=no_cp_for_ar&c=%2Flogin%2F&_rdr
**Browser / Version**: Firefox Mobile 89.0
**Operating System**: Android 8.1.0
**Tested Another Browser**: Yes Internet Explorer
**Problem type**: Desktop site instead of mobile site
**Description**: Desktop site instead of mobile site
**Steps to Reproduce**:
saya lupa kata sandi email mati
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/5/08abebc6-2c78-456f-818f-4754745a08a1.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20210509185840</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2021/5/fab8daac-89bd-420a-a75c-f7b282b68b32)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | m facebook com desktop site instead of mobile site url browser version firefox mobile operating system android tested another browser yes internet explorer problem type desktop site instead of mobile site description desktop site instead of mobile site steps to reproduce saya lupa kata sandi email mati view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
701,088 | 24,085,489,241 | IssuesEvent | 2022-09-19 10:31:59 | Toma400/The_Isle_of_Ansur | https://api.github.com/repos/Toma400/The_Isle_of_Ansur | closed | Adjustments for 7125420 commit | high priority bulk topic | 7125420 commit initialised two things that should be adressed:
- [x] Removed `Credit (Valley)` font and changed Polish trkeys rendering - this will produce issues, so font replacing Credit is needed
- [x] Initialised font positioning based on `start`-`end` values; this should be finished, as currently it is just poor addition without any use
Bulk topic, but to be adressed quickly. | 1.0 | Adjustments for 7125420 commit - 7125420 commit initialised two things that should be adressed:
- [x] Removed `Credit (Valley)` font and changed Polish trkeys rendering - this will produce issues, so font replacing Credit is needed
- [x] Initialised font positioning based on `start`-`end` values; this should be finished, as currently it is just poor addition without any use
Bulk topic, but to be adressed quickly. | priority | adjustments for commit commit initialised two things that should be adressed removed credit valley font and changed polish trkeys rendering this will produce issues so font replacing credit is needed initialised font positioning based on start end values this should be finished as currently it is just poor addition without any use bulk topic but to be adressed quickly | 1 |
215,008 | 7,285,815,941 | IssuesEvent | 2018-02-23 06:48:23 | uva-slp/meals | https://api.github.com/repos/uva-slp/meals | closed | Create standard testing database | client-database database priority-high story-points-5 volunteer-database | Make a new `slp_meals` file with a sizeable amount of users of varying types, volunteers, customers (with different recurrences) and routes.
Make each of these people realistic with reasonable personas (Charlottesville-Albemarle addresses, ages, diets, numbers, needs, etc.)
This will take some time but we need a standardized set of data to play around with so that we don't have to keep enumerating fresh database files. | 1.0 | Create standard testing database - Make a new `slp_meals` file with a sizeable amount of users of varying types, volunteers, customers (with different recurrences) and routes.
Make each of these people realistic with reasonable personas (Charlottesville-Albemarle addresses, ages, diets, numbers, needs, etc.)
This will take some time but we need a standardized set of data to play around with so that we don't have to keep enumerating fresh database files. | priority | create standard testing database make a new slp meals file with a sizeable amount of users of varying types volunteers customers with different recurrences and routes make each of these people realistic with reasonable personas charlottesville albemarle addresses ages diets numbers needs etc this will take some time but we need a standardized set of data to play around with so that we don t have to keep enumerating fresh database files | 1 |
106,562 | 4,274,393,943 | IssuesEvent | 2016-07-13 20:22:47 | dmusican/Elegit | https://api.github.com/repos/dmusican/Elegit | closed | Make status stuff update with git status | enhancement priority high | current local branch, remote tracking branch, if there are new changes to fetch
behind/ahead? | 1.0 | Make status stuff update with git status - current local branch, remote tracking branch, if there are new changes to fetch
behind/ahead? | priority | make status stuff update with git status current local branch remote tracking branch if there are new changes to fetch behind ahead | 1 |
116,257 | 4,699,342,135 | IssuesEvent | 2016-10-12 15:25:12 | tschoppi/starsystem-gen | https://api.github.com/repos/tschoppi/starsystem-gen | closed | Some gas giants do not have orbital eccentricity | bug high priority | The error comes up when running the example script:
```
Traceback (most recent call last):
File "example.py", line 22, in <module>
mysys.write_latex()
File "[...]/gurpsspace/starsystem.py", line 264, in write_latex
writer.write()
File "[...]/gurpsspace/output/latexout.py", line 32, in write
file.write(self.overviews())
File "[...]/gurpsspace/output/latexout.py", line 223, in overviews
str += '{:.2f} & '.format(oc[skey].get_eccentricity())
TypeError: non-empty format string passed to object.__format__
```
I can also see on the web GUI that some gas giants have an orbital eccentricity of `None`:

I think the underlying issue here is that eccentricities of 0 are not set explicitly, but I will have to check the code for that. | 1.0 | Some gas giants do not have orbital eccentricity - The error comes up when running the example script:
```
Traceback (most recent call last):
File "example.py", line 22, in <module>
mysys.write_latex()
File "[...]/gurpsspace/starsystem.py", line 264, in write_latex
writer.write()
File "[...]/gurpsspace/output/latexout.py", line 32, in write
file.write(self.overviews())
File "[...]/gurpsspace/output/latexout.py", line 223, in overviews
str += '{:.2f} & '.format(oc[skey].get_eccentricity())
TypeError: non-empty format string passed to object.__format__
```
I can also see on the web GUI that some gas giants have an orbital eccentricity of `None`:

I think the underlying issue here is that eccentricities of 0 are not set explicitly, but I will have to check the code for that. | priority | some gas giants do not have orbital eccentricity the error comes up when running the example script traceback most recent call last file example py line in mysys write latex file gurpsspace starsystem py line in write latex writer write file gurpsspace output latexout py line in write file write self overviews file gurpsspace output latexout py line in overviews str format oc get eccentricity typeerror non empty format string passed to object format i can also see on the web gui that some gas giants have an orbital eccentricity of none i think the underlying issue here is that eccentricities of are not set explicitly but i will have to check the code for that | 1 |
752,362 | 26,282,877,153 | IssuesEvent | 2023-01-07 14:00:07 | Blade2021/HIVE | https://api.github.com/repos/Blade2021/HIVE | closed | [FR] Stream Handler | Type: feature Priority: high Status: In progress Status: approved | ### Is your feature request related to a problem? Please describe.
Tracking list of objectives for the stream handler:
### Describe the solution you'd like
- [x] Queue System
- [x] Proper Database transactions
- [x] Refund points on fail
- [x] Moderation control
- [x] Logging
- [ ] Record first here
- [ ] Reporting of usage
- [ ] Report of Stream Totals
### Describe alternatives you've considered
_No response_
### Additional context
_No response_ | 1.0 | [FR] Stream Handler - ### Is your feature request related to a problem? Please describe.
Tracking list of objectives for the stream handler:
### Describe the solution you'd like
- [x] Queue System
- [x] Proper Database transactions
- [x] Refund points on fail
- [x] Moderation control
- [x] Logging
- [ ] Record first here
- [ ] Reporting of usage
- [ ] Report of Stream Totals
### Describe alternatives you've considered
_No response_
### Additional context
_No response_ | priority | stream handler is your feature request related to a problem please describe tracking list of objectives for the stream handler describe the solution you d like queue system proper database transactions refund points on fail moderation control logging record first here reporting of usage report of stream totals describe alternatives you ve considered no response additional context no response | 1 |
354,162 | 10,563,214,593 | IssuesEvent | 2019-10-04 20:21:39 | OkunaOrg/okuna-app | https://api.github.com/repos/OkunaOrg/okuna-app | opened | Guage battery impact | performance priority:high | A lot of people have complained the app consumes too much battery. Xcode has an profiler to guage battery impact, perhaps we can use that to see what it says.
Also refer this issue:
https://github.com/flutter/flutter/issues/26895
A widget that calls setState repeatedly even when nothing changes, can causes re-renders impacting battery.. things like these need to be looked out for. | 1.0 | Guage battery impact - A lot of people have complained the app consumes too much battery. Xcode has an profiler to guage battery impact, perhaps we can use that to see what it says.
Also refer this issue:
https://github.com/flutter/flutter/issues/26895
A widget that calls setState repeatedly even when nothing changes, can causes re-renders impacting battery.. things like these need to be looked out for. | priority | guage battery impact a lot of people have complained the app consumes too much battery xcode has an profiler to guage battery impact perhaps we can use that to see what it says also refer this issue a widget that calls setstate repeatedly even when nothing changes can causes re renders impacting battery things like these need to be looked out for | 1 |
743,054 | 25,885,420,561 | IssuesEvent | 2022-12-14 14:14:49 | mi6/ic-design-system | https://api.github.com/repos/mi6/ic-design-system | closed | Add ability to enable/disable Google Analytics depending on the environment | priority: high | ## Summary
Add ability to enable/disable Google Analytics depending on the environment.
## 💬 Description
For certain environments, we need the ability to disable Google Analytics.
## Acceptance criteria
1. A bool can be passed to enable or disable Google Analytics through environment variables, so there are no calls attempted to be sent to Google.
| 1.0 | Add ability to enable/disable Google Analytics depending on the environment - ## Summary
Add ability to enable/disable Google Analytics depending on the environment.
## 💬 Description
For certain environments, we need the ability to disable Google Analytics.
## Acceptance criteria
1. A bool can be passed to enable or disable Google Analytics through environment variables, so there are no calls attempted to be sent to Google.
| priority | add ability to enable disable google analytics depending on the environment summary add ability to enable disable google analytics depending on the environment 💬 description for certain environments we need the ability to disable google analytics acceptance criteria a bool can be passed to enable or disable google analytics through environment variables so there are no calls attempted to be sent to google | 1 |
96,947 | 3,975,990,728 | IssuesEvent | 2016-05-05 09:14:29 | DigitalCampus/oppia-mobile-android | https://api.github.com/repos/DigitalCampus/oppia-mobile-android | closed | Permissions management in Android M | bug High priority | Tested in a Samsung Galaxy S7, but probably happening in every phone with Android sdkversion>23.
Beginning in Android 6.0 (API level 23), users grant permissions to apps while the app is running, not when they install the app. According to the docs:
> Note: Beginning with Android 6.0 (API level 23), users can revoke permissions from any app at any time, even if the app targets a lower API level. You should test your app to verify that it behaves properly when it's missing a needed permission, regardless of what API level your app targets.
So the app can crash if a user revoke any needed permission that it needs to work. In this example, was the `READ_PHONE_STATE` one, used in the login task to send device info to the server:
```
04-12 17:22:46.642 16029 16070 E AndroidRuntime: FATAL EXCEPTION: AsyncTask #4
04-12 17:22:46.642 16029 16070 E AndroidRuntime: Process: org.digitalcampus.mobile.learning, PID: 16029
04-12 17:22:46.642 16029 16070 E AndroidRuntime: java.lang.RuntimeException: An error occurred while executing doInBackground()
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.os.AsyncTask$3.done(AsyncTask.java:309)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.FutureTask.setException(FutureTask.java:223)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:242)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:234)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.lang.Thread.run(Thread.java:818)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: Caused by: java.lang.SecurityException: getDeviceId: Neither user 10193 nor current process has android.permission.READ_PHONE_STATE.
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1620)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1573)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at com.android.internal.telephony.ITelephony$Stub$Proxy.getDeviceId(ITelephony.java:5371)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.telephony.TelephonyManager.getDeviceId(TelephonyManager.java:812)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at org.digitalcampus.oppia.utils.MetaDataUtils.<init>(MetaDataUtils.java:46)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at org.digitalcampus.oppia.task.LoginTask.doInBackground(LoginTask.java:120)
``` | 1.0 | Permissions management in Android M - Tested in a Samsung Galaxy S7, but probably happening in every phone with Android sdkversion>23.
Beginning in Android 6.0 (API level 23), users grant permissions to apps while the app is running, not when they install the app. According to the docs:
> Note: Beginning with Android 6.0 (API level 23), users can revoke permissions from any app at any time, even if the app targets a lower API level. You should test your app to verify that it behaves properly when it's missing a needed permission, regardless of what API level your app targets.
So the app can crash if a user revoke any needed permission that it needs to work. In this example, was the `READ_PHONE_STATE` one, used in the login task to send device info to the server:
```
04-12 17:22:46.642 16029 16070 E AndroidRuntime: FATAL EXCEPTION: AsyncTask #4
04-12 17:22:46.642 16029 16070 E AndroidRuntime: Process: org.digitalcampus.mobile.learning, PID: 16029
04-12 17:22:46.642 16029 16070 E AndroidRuntime: java.lang.RuntimeException: An error occurred while executing doInBackground()
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.os.AsyncTask$3.done(AsyncTask.java:309)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.FutureTask.setException(FutureTask.java:223)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.FutureTask.run(FutureTask.java:242)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:234)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at java.lang.Thread.run(Thread.java:818)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: Caused by: java.lang.SecurityException: getDeviceId: Neither user 10193 nor current process has android.permission.READ_PHONE_STATE.
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1620)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1573)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at com.android.internal.telephony.ITelephony$Stub$Proxy.getDeviceId(ITelephony.java:5371)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at android.telephony.TelephonyManager.getDeviceId(TelephonyManager.java:812)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at org.digitalcampus.oppia.utils.MetaDataUtils.<init>(MetaDataUtils.java:46)
04-12 17:22:46.642 16029 16070 E AndroidRuntime: at org.digitalcampus.oppia.task.LoginTask.doInBackground(LoginTask.java:120)
``` | priority | permissions management in android m tested in a samsung galaxy but probably happening in every phone with android sdkversion beginning in android api level users grant permissions to apps while the app is running not when they install the app according to the docs note beginning with android api level users can revoke permissions from any app at any time even if the app targets a lower api level you should test your app to verify that it behaves properly when it s missing a needed permission regardless of what api level your app targets so the app can crash if a user revoke any needed permission that it needs to work in this example was the read phone state one used in the login task to send device info to the server e androidruntime fatal exception asynctask e androidruntime process org digitalcampus mobile learning pid e androidruntime java lang runtimeexception an error occurred while executing doinbackground e androidruntime at android os asynctask done asynctask java e androidruntime at java util concurrent futuretask finishcompletion futuretask java e androidruntime at java util concurrent futuretask setexception futuretask java e androidruntime at java util concurrent futuretask run futuretask java e androidruntime at android os asynctask serialexecutor run asynctask java e androidruntime at java util concurrent threadpoolexecutor runworker threadpoolexecutor java e androidruntime at java util concurrent threadpoolexecutor worker run threadpoolexecutor java e androidruntime at java lang thread run thread java e androidruntime caused by java lang securityexception getdeviceid neither user nor current process has android permission read phone state e androidruntime at android os parcel readexception parcel java e androidruntime at android os parcel readexception parcel java e androidruntime at com android internal telephony itelephony stub proxy getdeviceid itelephony java e androidruntime at android telephony telephonymanager getdeviceid telephonymanager java e androidruntime at org digitalcampus oppia utils metadatautils metadatautils java e androidruntime at org digitalcampus oppia task logintask doinbackground logintask java | 1 |
668,093 | 22,551,701,024 | IssuesEvent | 2022-06-27 06:27:11 | ballerina-platform/ballerina-lang | https://api.github.com/repos/ballerina-platform/ballerina-lang | closed | Runtime changes for langlib function to dynamically call a function | Type/NewFeature Priority/High Team/jBallerina Points/1 | **Description:**
Capture runtime implementation of https://github.com/ballerina-platform/ballerina-lang/issues/36195 | 1.0 | Runtime changes for langlib function to dynamically call a function - **Description:**
Capture runtime implementation of https://github.com/ballerina-platform/ballerina-lang/issues/36195 | priority | runtime changes for langlib function to dynamically call a function description capture runtime implementation of | 1 |
747,137 | 26,074,385,230 | IssuesEvent | 2022-12-24 09:08:59 | Bartuzen/qBitController | https://api.github.com/repos/Bartuzen/qBitController | closed | Crashes after clicking an existing torrent process | bug priority: high | Can't open any downloading/seeding torrents without crashing
Running on Android 9 on a Samsung Galaxy S8
Not sure where to attach the logs | 1.0 | Crashes after clicking an existing torrent process - Can't open any downloading/seeding torrents without crashing
Running on Android 9 on a Samsung Galaxy S8
Not sure where to attach the logs | priority | crashes after clicking an existing torrent process can t open any downloading seeding torrents without crashing running on android on a samsung galaxy not sure where to attach the logs | 1 |
506,014 | 14,656,557,332 | IssuesEvent | 2020-12-28 13:41:28 | epam/ketcher | https://api.github.com/repos/epam/ketcher | opened | 'Calculated Values' calculate values for all elements on canvas if they are located separately | bug high priority | **Affected Version:** _Standalone_
**Steps to Reproduce:**
1. Click on 'Cl' atom and place it on canvas.
2. Repeat p.1 with 'N' and 'Br'.
3. Click 'Calculated Values' button.
**Expected Result:**
Information about HCl, NH4 and HBr displays separately using ;

**Actual Result:**
Information displays for all canvas without separation.

| 1.0 | 'Calculated Values' calculate values for all elements on canvas if they are located separately - **Affected Version:** _Standalone_
**Steps to Reproduce:**
1. Click on 'Cl' atom and place it on canvas.
2. Repeat p.1 with 'N' and 'Br'.
3. Click 'Calculated Values' button.
**Expected Result:**
Information about HCl, NH4 and HBr displays separately using ;

**Actual Result:**
Information displays for all canvas without separation.

| priority | calculated values calculate values for all elements on canvas if they are located separately affected version standalone steps to reproduce click on cl atom and place it on canvas repeat p with n and br click calculated values button expected result information about hcl and hbr displays separately using actual result information displays for all canvas without separation | 1 |
823,883 | 31,072,219,906 | IssuesEvent | 2023-08-12 03:45:20 | fossasia/open-event-frontend | https://api.github.com/repos/fossasia/open-event-frontend | closed | Video rooms not displayed in order and other issues | bug Priority: High Priority: Urgent | There is something wrong with the display of the videos channels. Compare the "Plenary" on the Wikimania event (need to get a free virtual event ticket to join the event and see the issue).
1. If the room name is long there is no spacing between the "Room Name" and the button "Languages"
2. Currently after adding translated languages the order of rooms changes (can be tested by reload). It is different than the order define in the wizard.

| 2.0 | Video rooms not displayed in order and other issues - There is something wrong with the display of the videos channels. Compare the "Plenary" on the Wikimania event (need to get a free virtual event ticket to join the event and see the issue).
1. If the room name is long there is no spacing between the "Room Name" and the button "Languages"
2. Currently after adding translated languages the order of rooms changes (can be tested by reload). It is different than the order define in the wizard.

| priority | video rooms not displayed in order and other issues there is something wrong with the display of the videos channels compare the plenary on the wikimania event need to get a free virtual event ticket to join the event and see the issue if the room name is long there is no spacing between the room name and the button languages currently after adding translated languages the order of rooms changes can be tested by reload it is different than the order define in the wizard | 1 |
766,760 | 26,897,624,408 | IssuesEvent | 2023-02-06 13:35:08 | EddieHubCommunity/LinkFree | https://api.github.com/repos/EddieHubCommunity/LinkFree | closed | [FEATURE] Embed quickstart YouTube video into quickstart guide | ⭐ goal: addition 🏁 status: ready for dev 🟧 priority: high 🔢 points: 2 | ### Description
At the top of the quickstart docs it would be good to embed the YouTube video for it https://linkfree.eddiehub.io/docs/quickstart
YouTube video https://www.youtube.com/watch?v=05HEeCQSKRE
### Screenshots
_No response_
### Additional information
_No response_ | 1.0 | [FEATURE] Embed quickstart YouTube video into quickstart guide - ### Description
At the top of the quickstart docs it would be good to embed the YouTube video for it https://linkfree.eddiehub.io/docs/quickstart
YouTube video https://www.youtube.com/watch?v=05HEeCQSKRE
### Screenshots
_No response_
### Additional information
_No response_ | priority | embed quickstart youtube video into quickstart guide description at the top of the quickstart docs it would be good to embed the youtube video for it youtube video screenshots no response additional information no response | 1 |
279,746 | 8,672,557,076 | IssuesEvent | 2018-11-29 22:31:51 | AugurProject/augur-ui | https://api.github.com/repos/AugurProject/augur-ui | closed | Order Book calculates estimate cost using incorrect number of shares | Priority: Very High | This is easiest to replicate using the dev seed data from a pop-geth.
When looking at any market (even yesNo), with an account that is NOT the main 0x913 account (since taking own orders is a different code path), do this:
- Sell into the best green buy order. you should now have 0.001 no.
- Click on the best red ask order but don't take it. Those estimated values make sense. You satisfy that order with the "no" share you previously purchased and no eth
- Click on the next best red ask order but don't take it. Those estimated values are wrong because the UI is estimating it as if you had 0.002 shares. Because it thinks you have this much, it doesn't forward enough ETH in the transaction.
- Same thing with the worst red ask order, it assumes you have 0.003 when you click on it, but your quantity of available shares to sell doesn't increase just because you click on different order, the number should have been 0.001 no matter which you clicked on.
| 1.0 | Order Book calculates estimate cost using incorrect number of shares - This is easiest to replicate using the dev seed data from a pop-geth.
When looking at any market (even yesNo), with an account that is NOT the main 0x913 account (since taking own orders is a different code path), do this:
- Sell into the best green buy order. you should now have 0.001 no.
- Click on the best red ask order but don't take it. Those estimated values make sense. You satisfy that order with the "no" share you previously purchased and no eth
- Click on the next best red ask order but don't take it. Those estimated values are wrong because the UI is estimating it as if you had 0.002 shares. Because it thinks you have this much, it doesn't forward enough ETH in the transaction.
- Same thing with the worst red ask order, it assumes you have 0.003 when you click on it, but your quantity of available shares to sell doesn't increase just because you click on different order, the number should have been 0.001 no matter which you clicked on.
| priority | order book calculates estimate cost using incorrect number of shares this is easiest to replicate using the dev seed data from a pop geth when looking at any market even yesno with an account that is not the main account since taking own orders is a different code path do this sell into the best green buy order you should now have no click on the best red ask order but don t take it those estimated values make sense you satisfy that order with the no share you previously purchased and no eth click on the next best red ask order but don t take it those estimated values are wrong because the ui is estimating it as if you had shares because it thinks you have this much it doesn t forward enough eth in the transaction same thing with the worst red ask order it assumes you have when you click on it but your quantity of available shares to sell doesn t increase just because you click on different order the number should have been no matter which you clicked on | 1 |
322,014 | 9,811,566,946 | IssuesEvent | 2019-06-13 00:20:17 | zulip/zulip | https://api.github.com/repos/zulip/zulip | opened | Setup `fs.inotify.max_user_watches` sysctl | area: provision bug priority: high | Sometimes, the Zulip development environment will issue these errors, even when one isn't out of space:
```
2019-06-13 00:12:46.934 ERR [pyinotify] add_watch: cannot watch /home/tabbott/zulip/static/locale/uk/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
[2019-06-13 00:12:46,935 pyinotify ERROR] add_watch: cannot watch /home/tabbott/zulip/static/locale/ca/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
2019-06-13 00:12:46.935 ERR [pyinotify] add_watch: cannot watch /home/tabbott/zulip/static/locale/ca/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
[2019-06-13 00:12:46,935 pyinotify ERROR] add_watch: cannot watch /home/tabbott/zulip/static/locale/fi/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
2019-06-13 00:12:46.935 ERR [pyinotify] add_watch: cannot watch /home/tabbott/zulip/static/locale/fi/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
```
Based on https://code.djangoproject.com/ticket/23523, the root cause here is pyinotify leaking watches. We can work around it by updating the kernel settings for the maximum number of files for pyinotify to watch, see the Django ticket for details. Upstream issue seems to be https://github.com/seb-m/pyinotify/issues/95 (open for ~4 years...).
I think it makes sense for us to create e.g. `/etc/sysctl.d/99-zulip.conf` in `tools/lib/provision.py` to resolve this (probably makes sense to set the limit to 32768); I imagine over time we'll run into other kernel limits that make sense to increase. Our code should be conditional on the value of `sysctl -n fs.inotify.max_user_watches`; if it's already high enough, there's no reason to adjust the limit.
(Also, I suppose we should test whether this actually works with Docker when done from the guest or whether we need to do it on the host).
@andersk this may be a good issue for you given the Docker issue involved.
| 1.0 | Setup `fs.inotify.max_user_watches` sysctl - Sometimes, the Zulip development environment will issue these errors, even when one isn't out of space:
```
2019-06-13 00:12:46.934 ERR [pyinotify] add_watch: cannot watch /home/tabbott/zulip/static/locale/uk/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
[2019-06-13 00:12:46,935 pyinotify ERROR] add_watch: cannot watch /home/tabbott/zulip/static/locale/ca/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
2019-06-13 00:12:46.935 ERR [pyinotify] add_watch: cannot watch /home/tabbott/zulip/static/locale/ca/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
[2019-06-13 00:12:46,935 pyinotify ERROR] add_watch: cannot watch /home/tabbott/zulip/static/locale/fi/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
2019-06-13 00:12:46.935 ERR [pyinotify] add_watch: cannot watch /home/tabbott/zulip/static/locale/fi/LC_MESSAGES/django.mo WD=-1, Errno=No space left on device (ENOSPC)
```
Based on https://code.djangoproject.com/ticket/23523, the root cause here is pyinotify leaking watches. We can work around it by updating the kernel settings for the maximum number of files for pyinotify to watch, see the Django ticket for details. Upstream issue seems to be https://github.com/seb-m/pyinotify/issues/95 (open for ~4 years...).
I think it makes sense for us to create e.g. `/etc/sysctl.d/99-zulip.conf` in `tools/lib/provision.py` to resolve this (probably makes sense to set the limit to 32768); I imagine over time we'll run into other kernel limits that make sense to increase. Our code should be conditional on the value of `sysctl -n fs.inotify.max_user_watches`; if it's already high enough, there's no reason to adjust the limit.
(Also, I suppose we should test whether this actually works with Docker when done from the guest or whether we need to do it on the host).
@andersk this may be a good issue for you given the Docker issue involved.
| priority | setup fs inotify max user watches sysctl sometimes the zulip development environment will issue these errors even when one isn t out of space err add watch cannot watch home tabbott zulip static locale uk lc messages django mo wd errno no space left on device enospc add watch cannot watch home tabbott zulip static locale ca lc messages django mo wd errno no space left on device enospc err add watch cannot watch home tabbott zulip static locale ca lc messages django mo wd errno no space left on device enospc add watch cannot watch home tabbott zulip static locale fi lc messages django mo wd errno no space left on device enospc err add watch cannot watch home tabbott zulip static locale fi lc messages django mo wd errno no space left on device enospc based on the root cause here is pyinotify leaking watches we can work around it by updating the kernel settings for the maximum number of files for pyinotify to watch see the django ticket for details upstream issue seems to be open for years i think it makes sense for us to create e g etc sysctl d zulip conf in tools lib provision py to resolve this probably makes sense to set the limit to i imagine over time we ll run into other kernel limits that make sense to increase our code should be conditional on the value of sysctl n fs inotify max user watches if it s already high enough there s no reason to adjust the limit also i suppose we should test whether this actually works with docker when done from the guest or whether we need to do it on the host andersk this may be a good issue for you given the docker issue involved | 1 |
540,665 | 15,815,645,361 | IssuesEvent | 2021-04-05 11:43:35 | AY2021S2-CS2103T-T12-4/tp | https://api.github.com/repos/AY2021S2-CS2103T-T12-4/tp | closed | [PE-D] Term URI not explained in User guide, could be easily confused with URL which is also used in the UG. | priority.High severity.Low type.Bug | Definition/ explanation for URI not found below/in glossary

<!--session: 1617429875593-dcdd67d2-97a2-4f0f-9da4-b5ab7ad08181-->
-------------
Labels: `severity.Low` `type.DocumentationBug`
original: candyhy/ped#4 | 1.0 | [PE-D] Term URI not explained in User guide, could be easily confused with URL which is also used in the UG. - Definition/ explanation for URI not found below/in glossary

<!--session: 1617429875593-dcdd67d2-97a2-4f0f-9da4-b5ab7ad08181-->
-------------
Labels: `severity.Low` `type.DocumentationBug`
original: candyhy/ped#4 | priority | term uri not explained in user guide could be easily confused with url which is also used in the ug definition explanation for uri not found below in glossary labels severity low type documentationbug original candyhy ped | 1 |
176,244 | 6,557,631,547 | IssuesEvent | 2017-09-06 18:10:23 | glutanimate/anki-addons-misc | https://api.github.com/repos/glutanimate/anki-addons-misc | closed | [Toggle Full Screen and Hide Menu Bar] Keep some essential hotkeys working | enhancement high priority | When hiding the menu bar, Qt's default behaviour will disable all main window hotkeys that have been assigned through menu QAction's. While most of them are not that important, it would make sense to at least rebind Ctrl+Z and other hotkeys that are essential to reviewing (if possible). | 1.0 | [Toggle Full Screen and Hide Menu Bar] Keep some essential hotkeys working - When hiding the menu bar, Qt's default behaviour will disable all main window hotkeys that have been assigned through menu QAction's. While most of them are not that important, it would make sense to at least rebind Ctrl+Z and other hotkeys that are essential to reviewing (if possible). | priority | keep some essential hotkeys working when hiding the menu bar qt s default behaviour will disable all main window hotkeys that have been assigned through menu qaction s while most of them are not that important it would make sense to at least rebind ctrl z and other hotkeys that are essential to reviewing if possible | 1 |
262,014 | 8,249,126,336 | IssuesEvent | 2018-09-11 20:34:56 | End-to-end-provenance/RDataTracker | https://api.github.com/repos/End-to-end-provenance/RDataTracker | closed | Incorrect DDG when assigning to multiple variables simultaneously | bug high priority | In the following example,
```
a <- b <- 5
d <- a
e <- b
```
The generated DDG is below:

| 1.0 | Incorrect DDG when assigning to multiple variables simultaneously - In the following example,
```
a <- b <- 5
d <- a
e <- b
```
The generated DDG is below:

| priority | incorrect ddg when assigning to multiple variables simultaneously in the following example a b d a e b the generated ddg is below | 1 |
53,294 | 3,038,045,416 | IssuesEvent | 2015-08-06 20:19:41 | space-concordia-robotics/robotics-networking | https://api.github.com/repos/space-concordia-robotics/robotics-networking | opened | Re-arrange the protocl values and add reserved slots. | enhancement priority: high | Need to Re-arrange the protcol values to something more organized and add reserved slots between different group actions so we dont to keep pushing everythign around. | 1.0 | Re-arrange the protocl values and add reserved slots. - Need to Re-arrange the protcol values to something more organized and add reserved slots between different group actions so we dont to keep pushing everythign around. | priority | re arrange the protocl values and add reserved slots need to re arrange the protcol values to something more organized and add reserved slots between different group actions so we dont to keep pushing everythign around | 1 |
152,737 | 5,868,145,401 | IssuesEvent | 2017-05-14 09:45:15 | aristath/kirki | https://api.github.com/repos/aristath/kirki | closed | Append to existing controls vs overwrite? | priority: high | I have a theme that already has a set of controls that I'd simply like to style and add to. when I activate Kirki, I notice it removes all existing controls. Is there a way to simply append to existing customizer controls or simply use kirki to style everything that's already there?
## <bountysource-plugin>
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/29309898-append-to-existing-controls-vs-overwrite?utm_campaign=plugin&utm_content=tracker%2F2030945&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F2030945&utm_medium=issues&utm_source=github).
</bountysource-plugin>
| 1.0 | Append to existing controls vs overwrite? - I have a theme that already has a set of controls that I'd simply like to style and add to. when I activate Kirki, I notice it removes all existing controls. Is there a way to simply append to existing customizer controls or simply use kirki to style everything that's already there?
## <bountysource-plugin>
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/29309898-append-to-existing-controls-vs-overwrite?utm_campaign=plugin&utm_content=tracker%2F2030945&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F2030945&utm_medium=issues&utm_source=github).
</bountysource-plugin>
| priority | append to existing controls vs overwrite i have a theme that already has a set of controls that i d simply like to style and add to when i activate kirki i notice it removes all existing controls is there a way to simply append to existing customizer controls or simply use kirki to style everything that s already there want to back this issue we accept bounties via | 1 |
646,202 | 21,041,049,859 | IssuesEvent | 2022-03-31 12:22:28 | zowe/api-layer | https://api.github.com/repos/zowe/api-layer | closed | Return possibility to specify the external directory for the static onboarding | enhancement Priority: High docs 22PI1 v2 | **Is your feature request related to a problem? Please describe.**
As a service admin, I don't have the proper rights to put the static onboarding document into the Zowe directory but I want to use the static registration for my service.
I can specify one at the moment, but the usual use case is that the service owners get a directory assigned on a per-service basis. Therefore we should provide a way to specify multiple directories.
**Describe the solution you'd like**
Provide again a gateway component configuration that allows me to do so. | 1.0 | Return possibility to specify the external directory for the static onboarding - **Is your feature request related to a problem? Please describe.**
As a service admin, I don't have the proper rights to put the static onboarding document into the Zowe directory but I want to use the static registration for my service.
I can specify one at the moment, but the usual use case is that the service owners get a directory assigned on a per-service basis. Therefore we should provide a way to specify multiple directories.
**Describe the solution you'd like**
Provide again a gateway component configuration that allows me to do so. | priority | return possibility to specify the external directory for the static onboarding is your feature request related to a problem please describe as a service admin i don t have the proper rights to put the static onboarding document into the zowe directory but i want to use the static registration for my service i can specify one at the moment but the usual use case is that the service owners get a directory assigned on a per service basis therefore we should provide a way to specify multiple directories describe the solution you d like provide again a gateway component configuration that allows me to do so | 1 |
405,856 | 11,883,583,286 | IssuesEvent | 2020-03-27 16:11:09 | Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth | https://api.github.com/repos/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth | closed | Sway/Antagonize by AI on targets with religion that forbids it. | :beetle: bug :beetle: :exclamation: priority high | **Your mod version is:**
32e75534c28ee1c52707c0db3a1fd26590f0244f
**What expansions do you have installed?**
All
**Are you using any submods/mods? If so, which?**
No
**Please explain your issue in as much detail as possible:**
Eredun (demon, Fel) AI was swaying and antagonizing other Eredun (demon, Fel). Noticed it when I switched to the antagonized (victim) and I got the Rival event to popup. Switched to the aggressor, couldn't reproduce antagonize probably because she ended it with the Rival event decision, but I found out she was swaying someone as well.
CharID 2107771 is swaying 2104946 (top vassal's husband). Save & screenshot provided below.
**Steps to reproduce the issue:**
As I was switching control to playable characters, just noticed being antagonized by AI. Unable to reproduce.
**Upload an attachment below: .zip of your save, or screenshots:**
<details>
<summary>Click to expand</summary>

</details>
Note: Antagonize target is long gone, only Sway target remains.
[Eredun sway bug.zip](https://github.com/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth/files/4366260/Eredun.sway.bug.zip)
| 1.0 | Sway/Antagonize by AI on targets with religion that forbids it. - **Your mod version is:**
32e75534c28ee1c52707c0db3a1fd26590f0244f
**What expansions do you have installed?**
All
**Are you using any submods/mods? If so, which?**
No
**Please explain your issue in as much detail as possible:**
Eredun (demon, Fel) AI was swaying and antagonizing other Eredun (demon, Fel). Noticed it when I switched to the antagonized (victim) and I got the Rival event to popup. Switched to the aggressor, couldn't reproduce antagonize probably because she ended it with the Rival event decision, but I found out she was swaying someone as well.
CharID 2107771 is swaying 2104946 (top vassal's husband). Save & screenshot provided below.
**Steps to reproduce the issue:**
As I was switching control to playable characters, just noticed being antagonized by AI. Unable to reproduce.
**Upload an attachment below: .zip of your save, or screenshots:**
<details>
<summary>Click to expand</summary>

</details>
Note: Antagonize target is long gone, only Sway target remains.
[Eredun sway bug.zip](https://github.com/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth/files/4366260/Eredun.sway.bug.zip)
| priority | sway antagonize by ai on targets with religion that forbids it your mod version is what expansions do you have installed all are you using any submods mods if so which no please explain your issue in as much detail as possible eredun demon fel ai was swaying and antagonizing other eredun demon fel noticed it when i switched to the antagonized victim and i got the rival event to popup switched to the aggressor couldn t reproduce antagonize probably because she ended it with the rival event decision but i found out she was swaying someone as well charid is swaying top vassal s husband save screenshot provided below steps to reproduce the issue as i was switching control to playable characters just noticed being antagonized by ai unable to reproduce upload an attachment below zip of your save or screenshots click to expand note antagonize target is long gone only sway target remains | 1 |
778,895 | 27,332,992,778 | IssuesEvent | 2023-02-25 21:36:47 | X-Plane/XPlane2Blender | https://api.github.com/repos/X-Plane/XPlane2Blender | closed | Blender 3.1 and release 4.1.0 beta 2 compatibility | Bug priority high | On upgrading to Blender 3.1 from Blender 3.0 the plugin was still there, active, but not visible in the sidebar.
Removing the plugin and attempting a reinstall caused the plugin to unactivate and return this message...
<img width="904" alt="Schermata 2022-03-10 alle 08 56 41" src="https://user-images.githubusercontent.com/57137483/157615170-f15be40e-2a30-4ee9-9c3e-93f12e91d69f.png">
| 1.0 | Blender 3.1 and release 4.1.0 beta 2 compatibility - On upgrading to Blender 3.1 from Blender 3.0 the plugin was still there, active, but not visible in the sidebar.
Removing the plugin and attempting a reinstall caused the plugin to unactivate and return this message...
<img width="904" alt="Schermata 2022-03-10 alle 08 56 41" src="https://user-images.githubusercontent.com/57137483/157615170-f15be40e-2a30-4ee9-9c3e-93f12e91d69f.png">
| priority | blender and release beta compatibility on upgrading to blender from blender the plugin was still there active but not visible in the sidebar removing the plugin and attempting a reinstall caused the plugin to unactivate and return this message img width alt schermata alle src | 1 |
260,163 | 8,204,600,717 | IssuesEvent | 2018-09-03 07:16:49 | pombase/website | https://api.github.com/repos/pombase/website | reopened | Atkinson et al 2018 transcript tracks | announce genome browser high priority | Load Atkinson 2018 transcript data
All files are bigwig
I have updated pombase_jbrowse_track_metadata.csv with track descriptions (display in JBrowse set to no)
There are 66 tracks to load
Danny says he named the chromosomes as specified i.e. I,II,II and mitochondrial
To get the bigwig files:
Use Jurgs ftp
windows host name: jb-gate1.biol.ucl.ac.uk
mac sftp://jb-gate1.biol.ucl.ac.uk
User name: tmp-sook
i'll email you the pw separately
@bahler | 1.0 | Atkinson et al 2018 transcript tracks - Load Atkinson 2018 transcript data
All files are bigwig
I have updated pombase_jbrowse_track_metadata.csv with track descriptions (display in JBrowse set to no)
There are 66 tracks to load
Danny says he named the chromosomes as specified i.e. I,II,II and mitochondrial
To get the bigwig files:
Use Jurgs ftp
windows host name: jb-gate1.biol.ucl.ac.uk
mac sftp://jb-gate1.biol.ucl.ac.uk
User name: tmp-sook
i'll email you the pw separately
@bahler | priority | atkinson et al transcript tracks load atkinson transcript data all files are bigwig i have updated pombase jbrowse track metadata csv with track descriptions display in jbrowse set to no there are tracks to load danny says he named the chromosomes as specified i e i ii ii and mitochondrial to get the bigwig files use jurgs ftp windows host name jb biol ucl ac uk mac sftp jb biol ucl ac uk user name tmp sook i ll email you the pw separately bahler | 1 |
610,603 | 18,912,150,873 | IssuesEvent | 2021-11-16 15:05:45 | ibissource/frank-flow | https://api.github.com/repos/ibissource/frank-flow | closed | Implement folder modifications via the Explorer | feature priority:medium work:high | Tasks:
- [x] Make backend endpoints
- [x] Add calls to frontend
- [x] Make saving toastr work again
Includes:
- [x] #195
- [x] #193 | 1.0 | Implement folder modifications via the Explorer - Tasks:
- [x] Make backend endpoints
- [x] Add calls to frontend
- [x] Make saving toastr work again
Includes:
- [x] #195
- [x] #193 | priority | implement folder modifications via the explorer tasks make backend endpoints add calls to frontend make saving toastr work again includes | 1 |
669,507 | 22,628,938,357 | IssuesEvent | 2022-06-30 13:11:12 | avalonmediasystem/avalon | https://api.github.com/repos/avalonmediasystem/avalon | reopened | Browse Everything Shows Dropbox Directory Root | bug 🐛 high priority ❗️ | # Description
Selecting 'Open Dropbox' launches the Browse Everything file navigator modal, but instead of a view of the contents of the collection's dropbox folder, all collection folders in the dropbox are visible. This is probably a side effect of the changes introduced for Google Drive Support
# Environment
Avalon 7.3 on avalon-staging, Firefox 100 on macOS.
# Done Criteria
The Browse Everything modal window shows the root of the dropbox folder directory for the current collection, rather than the root directory displaying the folders for each collection.
# Example
## Currently
<img width="1055" alt="Screen Shot 2022-06-01 at 2 05 48 PM" src="https://user-images.githubusercontent.com/1406618/171472879-3b0c716e-a2d3-4319-a6e6-0153495cc6c6.png">
## Expected
<img width="746" alt="Screen Shot 2022-06-01 at 2 04 49 PM" src="https://user-images.githubusercontent.com/1406618/171472951-fac37920-a3ee-4adb-98d1-689c8ffb43d1.png">
| 1.0 | Browse Everything Shows Dropbox Directory Root - # Description
Selecting 'Open Dropbox' launches the Browse Everything file navigator modal, but instead of a view of the contents of the collection's dropbox folder, all collection folders in the dropbox are visible. This is probably a side effect of the changes introduced for Google Drive Support
# Environment
Avalon 7.3 on avalon-staging, Firefox 100 on macOS.
# Done Criteria
The Browse Everything modal window shows the root of the dropbox folder directory for the current collection, rather than the root directory displaying the folders for each collection.
# Example
## Currently
<img width="1055" alt="Screen Shot 2022-06-01 at 2 05 48 PM" src="https://user-images.githubusercontent.com/1406618/171472879-3b0c716e-a2d3-4319-a6e6-0153495cc6c6.png">
## Expected
<img width="746" alt="Screen Shot 2022-06-01 at 2 04 49 PM" src="https://user-images.githubusercontent.com/1406618/171472951-fac37920-a3ee-4adb-98d1-689c8ffb43d1.png">
| priority | browse everything shows dropbox directory root description selecting open dropbox launches the browse everything file navigator modal but instead of a view of the contents of the collection s dropbox folder all collection folders in the dropbox are visible this is probably a side effect of the changes introduced for google drive support environment avalon on avalon staging firefox on macos done criteria the browse everything modal window shows the root of the dropbox folder directory for the current collection rather than the root directory displaying the folders for each collection example currently img width alt screen shot at pm src expected img width alt screen shot at pm src | 1 |
355,722 | 10,583,887,162 | IssuesEvent | 2019-10-08 14:30:17 | AY1920S1-CS2103-T11-2/main | https://api.github.com/repos/AY1920S1-CS2103-T11-2/main | opened | As an admin, I want to be able to find a module/appeal/student using their unique ID sequences. | priority.High type.Epic | ... so that I can locate details of persons without having to go through the entire list | 1.0 | As an admin, I want to be able to find a module/appeal/student using their unique ID sequences. - ... so that I can locate details of persons without having to go through the entire list | priority | as an admin i want to be able to find a module appeal student using their unique id sequences so that i can locate details of persons without having to go through the entire list | 1 |
271,689 | 8,488,531,242 | IssuesEvent | 2018-10-26 16:56:07 | FIDUCEO/FCDR_HIRS | https://api.github.com/repos/FIDUCEO/FCDR_HIRS | closed | Odd values for channel 4 and 12 on metopa | Priority: High |

particularly clear in time series

should investigate!
Compare also Shi and Bates (2011). | 1.0 | Odd values for channel 4 and 12 on metopa -

particularly clear in time series

should investigate!
Compare also Shi and Bates (2011). | priority | odd values for channel and on metopa particularly clear in time series should investigate compare also shi and bates | 1 |
214,519 | 7,274,088,085 | IssuesEvent | 2018-02-21 08:44:04 | getcanoe/canoe | https://api.github.com/repos/getcanoe/canoe | closed | Missing warning of loosing accounts when importing a seed | Priority: High Type: Bug | There should be a warning (and passwd?) that this action will disable all accounts present, similar the "type: clear keys" in rai_wallet. | 1.0 | Missing warning of loosing accounts when importing a seed - There should be a warning (and passwd?) that this action will disable all accounts present, similar the "type: clear keys" in rai_wallet. | priority | missing warning of loosing accounts when importing a seed there should be a warning and passwd that this action will disable all accounts present similar the type clear keys in rai wallet | 1 |
30,883 | 2,728,848,609 | IssuesEvent | 2015-04-16 02:01:52 | jakepaulus/collate-network | https://api.github.com/repos/jakepaulus/collate-network | closed | Install.php enhancements | Asthetic enhancement Priority-High Usability | failing to connect to the database for any reason should take the user to install.php
install.php should perform environment health checks
* php version
* php features: ldap, mbstring
* php configuration: permit uploads, max file size
* mysql connection and database account permission
Prompt user to agree to install/upgrade as needed or state that the system is up-to-date. | 1.0 | Install.php enhancements - failing to connect to the database for any reason should take the user to install.php
install.php should perform environment health checks
* php version
* php features: ldap, mbstring
* php configuration: permit uploads, max file size
* mysql connection and database account permission
Prompt user to agree to install/upgrade as needed or state that the system is up-to-date. | priority | install php enhancements failing to connect to the database for any reason should take the user to install php install php should perform environment health checks php version php features ldap mbstring php configuration permit uploads max file size mysql connection and database account permission prompt user to agree to install upgrade as needed or state that the system is up to date | 1 |
481,071 | 13,879,807,855 | IssuesEvent | 2020-10-17 16:01:48 | sunpy/sunpy | https://api.github.com/repos/sunpy/sunpy | closed | JSOC providing empty blocks for IRIS | Bug(?) Effort High Package Novice Priority Low net | Reported in the mailing list by: [Jakub](https://groups.google.com/d/topic/sunpy/FTQ6P9yjyGI/discussion)
This query:
```python
response = client.query(jsoc.Time('2017-02-09T00:00:00', '2017-02-09T00:01:00'),
jsoc.Series('iris.lev1'), jsoc.Notify('your@email.com'))
```
Produce few resuls
```
<Table length=8>
DATE TELESCOP INSTRUME T_OBS WAVELNTH WAVEUNIT
str20 str4 str3 str23 str15 str15
-------------------- -------- -------- ----------------------- --------------- ---------------
2017-02-12T00:00:39Z IRIS FUV 2017-02-08T23:59:40.49Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:41Z IRIS SJI 2017-02-08T23:59:41.79Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:43Z IRIS NUV 2017-02-08T23:59:42.84Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:44Z IRIS FUV 2017-02-08T23:59:43.76Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:46Z IRIS SJI 2017-02-08T23:59:45.76Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:48Z IRIS NUV 2017-02-08T23:59:47.88Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:50Z IRIS FUV 2017-02-08T23:59:49.95Z Invalid KeyLink Invalid KeyLink
2017-02-12T14:04:40Z IRIS SJI 2017-02-09T00:00:21.13Z Invalid KeyLink Invalid KeyLink
```
But JSOC produces an empty file
```python
>>> rr = client.get(response)
Request JSOC_20170215_520_X_IN was exported at 2017.02.15_21:30:35_UT and is ready to download.
1 URLs found for download. Totalling 0MB
[Errno 21] Is a directory: '~/sunpy/data/'
```
Why does this happen is still to know.
Using `dmrs` ( #1909 ) is a solution.
| 1.0 | JSOC providing empty blocks for IRIS - Reported in the mailing list by: [Jakub](https://groups.google.com/d/topic/sunpy/FTQ6P9yjyGI/discussion)
This query:
```python
response = client.query(jsoc.Time('2017-02-09T00:00:00', '2017-02-09T00:01:00'),
jsoc.Series('iris.lev1'), jsoc.Notify('your@email.com'))
```
Produce few resuls
```
<Table length=8>
DATE TELESCOP INSTRUME T_OBS WAVELNTH WAVEUNIT
str20 str4 str3 str23 str15 str15
-------------------- -------- -------- ----------------------- --------------- ---------------
2017-02-12T00:00:39Z IRIS FUV 2017-02-08T23:59:40.49Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:41Z IRIS SJI 2017-02-08T23:59:41.79Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:43Z IRIS NUV 2017-02-08T23:59:42.84Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:44Z IRIS FUV 2017-02-08T23:59:43.76Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:46Z IRIS SJI 2017-02-08T23:59:45.76Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:48Z IRIS NUV 2017-02-08T23:59:47.88Z Invalid KeyLink Invalid KeyLink
2017-02-12T00:00:50Z IRIS FUV 2017-02-08T23:59:49.95Z Invalid KeyLink Invalid KeyLink
2017-02-12T14:04:40Z IRIS SJI 2017-02-09T00:00:21.13Z Invalid KeyLink Invalid KeyLink
```
But JSOC produces an empty file
```python
>>> rr = client.get(response)
Request JSOC_20170215_520_X_IN was exported at 2017.02.15_21:30:35_UT and is ready to download.
1 URLs found for download. Totalling 0MB
[Errno 21] Is a directory: '~/sunpy/data/'
```
Why does this happen is still to know.
Using `dmrs` ( #1909 ) is a solution.
| priority | jsoc providing empty blocks for iris reported in the mailing list by this query python response client query jsoc time jsoc series iris jsoc notify your email com produce few resuls date telescop instrume t obs wavelnth waveunit iris fuv invalid keylink invalid keylink iris sji invalid keylink invalid keylink iris nuv invalid keylink invalid keylink iris fuv invalid keylink invalid keylink iris sji invalid keylink invalid keylink iris nuv invalid keylink invalid keylink iris fuv invalid keylink invalid keylink iris sji invalid keylink invalid keylink but jsoc produces an empty file python rr client get response request jsoc x in was exported at ut and is ready to download urls found for download totalling is a directory sunpy data why does this happen is still to know using dmrs is a solution | 1 |
48,984 | 3,001,307,683 | IssuesEvent | 2015-07-24 10:16:44 | marvinlabs/customer-area | https://api.github.com/repos/marvinlabs/customer-area | closed | Redirection not working when Authentication forms is enabled | bug Premium add-ons Priority - high | From : http://wp-customerarea.com/support/topic/force-login-for-entire-site/
I keep getting redirected to the dashboard even though I am specifying the redirect URL. I tried on your demo and the same thing occurs. Go to any page, copy the URL, log out, go to the copied URL and you’ll be asked to log in. But after logging in you end up back at the dashboard.
this does not happen when the Authentication forms add-on is not enabled. I think this has got broken the day we have added compatibility with Peter's login redirect plugin. | 1.0 | Redirection not working when Authentication forms is enabled - From : http://wp-customerarea.com/support/topic/force-login-for-entire-site/
I keep getting redirected to the dashboard even though I am specifying the redirect URL. I tried on your demo and the same thing occurs. Go to any page, copy the URL, log out, go to the copied URL and you’ll be asked to log in. But after logging in you end up back at the dashboard.
this does not happen when the Authentication forms add-on is not enabled. I think this has got broken the day we have added compatibility with Peter's login redirect plugin. | priority | redirection not working when authentication forms is enabled from i keep getting redirected to the dashboard even though i am specifying the redirect url i tried on your demo and the same thing occurs go to any page copy the url log out go to the copied url and you’ll be asked to log in but after logging in you end up back at the dashboard this does not happen when the authentication forms add on is not enabled i think this has got broken the day we have added compatibility with peter s login redirect plugin | 1 |
39,385 | 2,854,219,151 | IssuesEvent | 2015-06-01 22:48:01 | IQSS/dataverse | https://api.github.com/repos/IQSS/dataverse | opened | File Upload: CSV files are not being detected as such, not undergoing ingest. | Component: File Upload & Handling Priority: High Status: Dev Type: Bug |
While testing a customer issue, see RT 214978, I found his csv file was not being ingested.
Discussed with Leonid and seems csv type is not being detected, instead shows up as plain text.
Last, the original ingest issue in the RT ticket seems to be due to a comma in a string variable causing that string to be counted as two a parts, throwing off the variable/ column count and causing the ingest failure. | 1.0 | File Upload: CSV files are not being detected as such, not undergoing ingest. -
While testing a customer issue, see RT 214978, I found his csv file was not being ingested.
Discussed with Leonid and seems csv type is not being detected, instead shows up as plain text.
Last, the original ingest issue in the RT ticket seems to be due to a comma in a string variable causing that string to be counted as two a parts, throwing off the variable/ column count and causing the ingest failure. | priority | file upload csv files are not being detected as such not undergoing ingest while testing a customer issue see rt i found his csv file was not being ingested discussed with leonid and seems csv type is not being detected instead shows up as plain text last the original ingest issue in the rt ticket seems to be due to a comma in a string variable causing that string to be counted as two a parts throwing off the variable column count and causing the ingest failure | 1 |
580,981 | 17,271,323,514 | IssuesEvent | 2021-07-22 20:17:39 | eclipse/dirigible | https://api.github.com/repos/eclipse/dirigible | closed | [Core] Remove Guice from the project | component-core dependencies efforts-high java priority-high | Guice as dependency injection framework does not bring so much benefits, but prevent easy integration of Dirigible modules in e.g. Spring applications | 1.0 | [Core] Remove Guice from the project - Guice as dependency injection framework does not bring so much benefits, but prevent easy integration of Dirigible modules in e.g. Spring applications | priority | remove guice from the project guice as dependency injection framework does not bring so much benefits but prevent easy integration of dirigible modules in e g spring applications | 1 |
283,042 | 8,713,480,494 | IssuesEvent | 2018-12-07 02:51:06 | aowen87/TicketTester | https://api.github.com/repos/aowen87/TicketTester | closed | It isn't possible to see the material specific values in a mixed material zone in Label plot | bug crash likelihood medium priority reviewed severity high wrong results | Matt Obrien reported that with code he has mixed materials with material specific values. Normally VisIt always displays the whole zone values unless some material selection is being performed. If there are no materials being selected there is a setting that forces material interface reconstruction and allows seeing the per material values. Neither of these mechanisms appear to be working. I couldn't verify this since none of our test data sets appear to have per material values for variables (or at least none that I could find). The first step is to modify the curv2d.silo generator to put out material specific values for the density that are markedly different so that we can test this. Then we should get this working.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 3002
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: High
Subject: It isn't possible to see the material specific values in a mixed material zone in Label plot
Assigned to: Alister Maguire
Category:
Target version: 2.13.1
Author: Eric Brugger
Start: 01/29/2018
Due date:
% Done: 100
Estimated time: 4.0
Created: 01/29/2018 08:17 pm
Updated: 02/26/2018 05:00 pm
Likelihood: 3 - Occasional
Severity: 4 - Crash / Wrong Results
Found in version: 2.12.3
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
Matt Obrien reported that with code he has mixed materials with material specific values. Normally VisIt always displays the whole zone values unless some material selection is being performed. If there are no materials being selected there is a setting that forces material interface reconstruction and allows seeing the per material values. Neither of these mechanisms appear to be working. I couldn't verify this since none of our test data sets appear to have per material values for variables (or at least none that I could find). The first step is to modify the curv2d.silo generator to put out material specific values for the density that are markedly different so that we can test this. Then we should get this working.
Comments:
pdbdatabase.C has a mixed scalar.
Thanks for the tip about pdbdatabase.C containing mixed material variables. I tested VisIt 2.12.3 and it did the right thing. I will ask Matt for a data file.
Matt gave me his file and when I force interface reconstruction, a Pseudocolor plot of the mixed material variable splits the cells and displays the material specific value in each piece. When I do a label plot of materials, it splits the cells and labels each piece with the correct material label. When I do a label plot of the mixed material variable it doesn't split the cell and displays the whole zone value. So, it is as Matt described, almost everything works correctly, just this one case doesn't. The data file he gave me is in ~brugger1/visit_obrien_bug on kickit. I suspect that the database generated by pdbdatabase.C should show the same behavior.
Ok, specmix_ucd.silo has mixed variable values for variables "p" and "d"
Hey everyone,Iâve committed two revisions to the trunk.Revision 32458:This revision fixes a bug with the label plot not being able to correctly label mixed variables. Iâve only been able to test on one dataset, but the issue should be resolved in general.M src/plots/Label/avtLabelFilter.CM src/plots/Label/avtLabelFilter.hRevision 32459:I added in a couple of tests to the label plot test file. These new tests will check to make sure that cells with mixed variables are being labeled correctly.A test/baseline/plots/label/label_11_00.pngA test/baseline/plots/label/label_11_01.pngM test/tests/plots/label.pyBest,Alister
| 1.0 | It isn't possible to see the material specific values in a mixed material zone in Label plot - Matt Obrien reported that with code he has mixed materials with material specific values. Normally VisIt always displays the whole zone values unless some material selection is being performed. If there are no materials being selected there is a setting that forces material interface reconstruction and allows seeing the per material values. Neither of these mechanisms appear to be working. I couldn't verify this since none of our test data sets appear to have per material values for variables (or at least none that I could find). The first step is to modify the curv2d.silo generator to put out material specific values for the density that are markedly different so that we can test this. Then we should get this working.
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 3002
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: High
Subject: It isn't possible to see the material specific values in a mixed material zone in Label plot
Assigned to: Alister Maguire
Category:
Target version: 2.13.1
Author: Eric Brugger
Start: 01/29/2018
Due date:
% Done: 100
Estimated time: 4.0
Created: 01/29/2018 08:17 pm
Updated: 02/26/2018 05:00 pm
Likelihood: 3 - Occasional
Severity: 4 - Crash / Wrong Results
Found in version: 2.12.3
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
Matt Obrien reported that with code he has mixed materials with material specific values. Normally VisIt always displays the whole zone values unless some material selection is being performed. If there are no materials being selected there is a setting that forces material interface reconstruction and allows seeing the per material values. Neither of these mechanisms appear to be working. I couldn't verify this since none of our test data sets appear to have per material values for variables (or at least none that I could find). The first step is to modify the curv2d.silo generator to put out material specific values for the density that are markedly different so that we can test this. Then we should get this working.
Comments:
pdbdatabase.C has a mixed scalar.
Thanks for the tip about pdbdatabase.C containing mixed material variables. I tested VisIt 2.12.3 and it did the right thing. I will ask Matt for a data file.
Matt gave me his file and when I force interface reconstruction, a Pseudocolor plot of the mixed material variable splits the cells and displays the material specific value in each piece. When I do a label plot of materials, it splits the cells and labels each piece with the correct material label. When I do a label plot of the mixed material variable it doesn't split the cell and displays the whole zone value. So, it is as Matt described, almost everything works correctly, just this one case doesn't. The data file he gave me is in ~brugger1/visit_obrien_bug on kickit. I suspect that the database generated by pdbdatabase.C should show the same behavior.
Ok, specmix_ucd.silo has mixed variable values for variables "p" and "d"
Hey everyone,Iâve committed two revisions to the trunk.Revision 32458:This revision fixes a bug with the label plot not being able to correctly label mixed variables. Iâve only been able to test on one dataset, but the issue should be resolved in general.M src/plots/Label/avtLabelFilter.CM src/plots/Label/avtLabelFilter.hRevision 32459:I added in a couple of tests to the label plot test file. These new tests will check to make sure that cells with mixed variables are being labeled correctly.A test/baseline/plots/label/label_11_00.pngA test/baseline/plots/label/label_11_01.pngM test/tests/plots/label.pyBest,Alister
| priority | it isn t possible to see the material specific values in a mixed material zone in label plot matt obrien reported that with code he has mixed materials with material specific values normally visit always displays the whole zone values unless some material selection is being performed if there are no materials being selected there is a setting that forces material interface reconstruction and allows seeing the per material values neither of these mechanisms appear to be working i couldn t verify this since none of our test data sets appear to have per material values for variables or at least none that i could find the first step is to modify the silo generator to put out material specific values for the density that are markedly different so that we can test this then we should get this working redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status resolved project visit tracker bug priority high subject it isn t possible to see the material specific values in a mixed material zone in label plot assigned to alister maguire category target version author eric brugger start due date done estimated time created pm updated pm likelihood occasional severity crash wrong results found in version impact expected use os all support group any description matt obrien reported that with code he has mixed materials with material specific values normally visit always displays the whole zone values unless some material selection is being performed if there are no materials being selected there is a setting that forces material interface reconstruction and allows seeing the per material values neither of these mechanisms appear to be working i couldn t verify this since none of our test data sets appear to have per material values for variables or at least none that i could find the first step is to modify the silo generator to put out material specific values for the density that are markedly different so that we can test this then we should get this working comments pdbdatabase c has a mixed scalar thanks for the tip about pdbdatabase c containing mixed material variables i tested visit and it did the right thing i will ask matt for a data file matt gave me his file and when i force interface reconstruction a pseudocolor plot of the mixed material variable splits the cells and displays the material specific value in each piece when i do a label plot of materials it splits the cells and labels each piece with the correct material label when i do a label plot of the mixed material variable it doesn t split the cell and displays the whole zone value so it is as matt described almost everything works correctly just this one case doesn t the data file he gave me is in visit obrien bug on kickit i suspect that the database generated by pdbdatabase c should show the same behavior ok specmix ucd silo has mixed variable values for variables p and d hey everyone iâve committed two revisions to the trunk revision this revision fixes a bug with the label plot not being able to correctly label mixed variables iâve only been able to test on one dataset but the issue should be resolved in general m src plots label avtlabelfilter cm src plots label avtlabelfilter hrevision i added in a couple of tests to the label plot test file these new tests will check to make sure that cells with mixed variables are being labeled correctly a test baseline plots label label pnga test baseline plots label label pngm test tests plots label pybest alister | 1 |
390,477 | 11,544,022,981 | IssuesEvent | 2020-02-18 10:39:44 | chaosblade-io/chaosblade | https://api.github.com/repos/chaosblade-io/chaosblade | closed | mem load destroy error | chaosblade-exec-os enhancement priority/high | ## Bug report ##
I found some `mem load` chaos error in SUSE Linux Enterprise Server 12 SP3.
When Destroying `mem load` chaos , sometimes I got the error response as follows.
```
#the right response
$ sudo ./blade create mem load --mem-percent=90
{"code":200,"success":true,"result":"bd1612853e5ca897"}
$ sudo ./blade destroy bd1612853e5ca897
{"code":200,"success":true,"result":"command: mem load --debug false --help false --mem-percent 90"}
#somttimes the error response
$ sudo ./blade create mem load --mem-percent=90
{"code":200,"success":true,"result":"3916faf7f520311b"}
$ sudo ./blade destroy 3916faf7f520311b
{"code":604,"success":false,"error":"{\"code\":604,\"success\":false,\"error\":\"umount:xxxx/bin/burnmem_tmpfs:target is busy\\n exit status 32\"} exit status 1"}
$ sudo ./blade destroy 3916faf7f520311b
{"code":200,"success":true,"result":"command: mem load --debug false --help false --mem-percent 90"}
```
I think the reason is the kill command in stopBurnMem() of exe/os/bin/burnmem/burnmem.go, which is an Asynchronous Signal. If umount executes when kill is not over, the error would be cause.
```
func stopBurnMem() (success bool, errs string) {
ctx := context.WithValue(context.Background(), exec.ProcessKey, "nohup")
pids, _ := exec.GetPidsByProcessName(burnMemBin, ctx)
var response *transport.Response
if pids != nil && len(pids) != 0 {
response = channel.Run(ctx, "kill", fmt.Sprintf(`-9 %s`, strings.Join(pids, " ")))
if !response.Success {
return false, response.Err
}
}
dirPath := path.Join(util.GetProgramPath(), dirName)
if _, err := os.Stat(dirPath); err == nil {
response = channel.Run(ctx, "umount", dirPath)
if !response.Success {
bin.PrintErrAndExit(response.Error())
}
err = os.RemoveAll(dirPath)
if err != nil {
bin.PrintErrAndExit(err.Error())
}
}
return true, errs
}
```
## environment ##
chaosblade 0.3.0
## about solution ##
I think set a delay is not a good idea. Is There an other idea to resolve this in Golang? If there is a good way, I'm glad to try to fix it. Thanks. | 1.0 | mem load destroy error - ## Bug report ##
I found some `mem load` chaos error in SUSE Linux Enterprise Server 12 SP3.
When Destroying `mem load` chaos , sometimes I got the error response as follows.
```
#the right response
$ sudo ./blade create mem load --mem-percent=90
{"code":200,"success":true,"result":"bd1612853e5ca897"}
$ sudo ./blade destroy bd1612853e5ca897
{"code":200,"success":true,"result":"command: mem load --debug false --help false --mem-percent 90"}
#somttimes the error response
$ sudo ./blade create mem load --mem-percent=90
{"code":200,"success":true,"result":"3916faf7f520311b"}
$ sudo ./blade destroy 3916faf7f520311b
{"code":604,"success":false,"error":"{\"code\":604,\"success\":false,\"error\":\"umount:xxxx/bin/burnmem_tmpfs:target is busy\\n exit status 32\"} exit status 1"}
$ sudo ./blade destroy 3916faf7f520311b
{"code":200,"success":true,"result":"command: mem load --debug false --help false --mem-percent 90"}
```
I think the reason is the kill command in stopBurnMem() of exe/os/bin/burnmem/burnmem.go, which is an Asynchronous Signal. If umount executes when kill is not over, the error would be cause.
```
func stopBurnMem() (success bool, errs string) {
ctx := context.WithValue(context.Background(), exec.ProcessKey, "nohup")
pids, _ := exec.GetPidsByProcessName(burnMemBin, ctx)
var response *transport.Response
if pids != nil && len(pids) != 0 {
response = channel.Run(ctx, "kill", fmt.Sprintf(`-9 %s`, strings.Join(pids, " ")))
if !response.Success {
return false, response.Err
}
}
dirPath := path.Join(util.GetProgramPath(), dirName)
if _, err := os.Stat(dirPath); err == nil {
response = channel.Run(ctx, "umount", dirPath)
if !response.Success {
bin.PrintErrAndExit(response.Error())
}
err = os.RemoveAll(dirPath)
if err != nil {
bin.PrintErrAndExit(err.Error())
}
}
return true, errs
}
```
## environment ##
chaosblade 0.3.0
## about solution ##
I think set a delay is not a good idea. Is There an other idea to resolve this in Golang? If there is a good way, I'm glad to try to fix it. Thanks. | priority | mem load destroy error bug report i found some mem load chaos error in suse linux enterprise server when destroying mem load chaos sometimes i got the error response as follows the right response sudo blade create mem load mem percent code success true result sudo blade destroy code success true result command mem load debug false help false mem percent somttimes the error response sudo blade create mem load mem percent code success true result sudo blade destroy code success false error code success false error umount xxxx bin burnmem tmpfs target is busy n exit status exit status sudo blade destroy code success true result command mem load debug false help false mem percent i think the reason is the kill command in stopburnmem of exe os bin burnmem burnmem go which is an asynchronous signal if umount executes when kill is not over the error would be cause func stopburnmem success bool errs string ctx context withvalue context background exec processkey nohup pids exec getpidsbyprocessname burnmembin ctx var response transport response if pids nil len pids response channel run ctx kill fmt sprintf s strings join pids if response success return false response err dirpath path join util getprogrampath dirname if err os stat dirpath err nil response channel run ctx umount dirpath if response success bin printerrandexit response error err os removeall dirpath if err nil bin printerrandexit err error return true errs environment chaosblade about solution i think set a delay is not a good idea is there an other idea to resolve this in golang if there is a good way i m glad to try to fix it thanks | 1 |
260,997 | 8,222,398,152 | IssuesEvent | 2018-09-06 07:20:25 | cdnjs/cdnjs | https://api.github.com/repos/cdnjs/cdnjs | closed | [Request] Update Bootswatch 3.3.7 to add "solar" theme | :arrows_counterclockwise: Wait for response :label: Library Request :rotating_light: High Priority | **Library name**: bootswatch
**Git repository url**: https://github.com/thomaspark/bootswatch
**License**: MIT
**Official homepage**: https://bootswatch.com/
Recently, a new theme named "Solar" was added to both v4.x and v3.3.7. I'd like to request an update of this library to add this theme, as v3.3.7 is absent on cdnjs.
I'd have sent in the pull request myself, but the process of cloning (even with a sparse checkout) has been very slow, and I can't actually push the new changes since Github refuses the request after transferring ~3.7 GB of data. | 1.0 | [Request] Update Bootswatch 3.3.7 to add "solar" theme - **Library name**: bootswatch
**Git repository url**: https://github.com/thomaspark/bootswatch
**License**: MIT
**Official homepage**: https://bootswatch.com/
Recently, a new theme named "Solar" was added to both v4.x and v3.3.7. I'd like to request an update of this library to add this theme, as v3.3.7 is absent on cdnjs.
I'd have sent in the pull request myself, but the process of cloning (even with a sparse checkout) has been very slow, and I can't actually push the new changes since Github refuses the request after transferring ~3.7 GB of data. | priority | update bootswatch to add solar theme library name bootswatch git repository url license mit official homepage recently a new theme named solar was added to both x and i d like to request an update of this library to add this theme as is absent on cdnjs i d have sent in the pull request myself but the process of cloning even with a sparse checkout has been very slow and i can t actually push the new changes since github refuses the request after transferring gb of data | 1 |
491,075 | 14,144,639,278 | IssuesEvent | 2020-11-10 16:41:50 | Scholar-6/brillder | https://api.github.com/repos/Scholar-6/brillder | closed | Intro page updates | High Level Priority Onboarding | UX | <img width="709" alt="Screenshot 2020-11-10 at 12 50 40" src="https://user-images.githubusercontent.com/59654112/98670773-7e1cb380-2353-11eb-9084-2b39feaae626.png">
- [x] keep subject circle fixed
- [x] make brick title black not bold
- [x] change 'Brief' and 'Prep' to 2.4 vw (smaller) | 1.0 | Intro page updates - <img width="709" alt="Screenshot 2020-11-10 at 12 50 40" src="https://user-images.githubusercontent.com/59654112/98670773-7e1cb380-2353-11eb-9084-2b39feaae626.png">
- [x] keep subject circle fixed
- [x] make brick title black not bold
- [x] change 'Brief' and 'Prep' to 2.4 vw (smaller) | priority | intro page updates img width alt screenshot at src keep subject circle fixed make brick title black not bold change brief and prep to vw smaller | 1 |
354,860 | 10,573,762,252 | IssuesEvent | 2019-10-07 12:43:38 | zeit/next.js | https://api.github.com/repos/zeit/next.js | reopened | Couldn't find a `pages` directory in v9.0.7 | Type: Needs Investigation priority: high | # Bug report
My project has a custom structure but so far it worked pretty well. Since I updated to v9.0.7 I get this error:
`Error: > Couldn't find a `pages` directory. Please create one under the project root
at Object.findPagesDir [...]
`
So far running `next src/app` worked just fine. Is there anything different I should do now?
## Screenshot

## System information
- OS: [macOS]
- Version of Next.js: [9.0.7]
| 1.0 | Couldn't find a `pages` directory in v9.0.7 - # Bug report
My project has a custom structure but so far it worked pretty well. Since I updated to v9.0.7 I get this error:
`Error: > Couldn't find a `pages` directory. Please create one under the project root
at Object.findPagesDir [...]
`
So far running `next src/app` worked just fine. Is there anything different I should do now?
## Screenshot

## System information
- OS: [macOS]
- Version of Next.js: [9.0.7]
| priority | couldn t find a pages directory in bug report my project has a custom structure but so far it worked pretty well since i updated to i get this error error couldn t find a pages directory please create one under the project root at object findpagesdir so far running next src app worked just fine is there anything different i should do now screenshot system information os version of next js | 1 |
809,943 | 30,218,097,400 | IssuesEvent | 2023-07-05 17:04:38 | fpsim/fpsim | https://api.github.com/repos/fpsim/fpsim | closed | Only allow sexually active agents to enter the contraceptive matrix | highpriority | - Set guardrails so that intervention scenarios are targeting only sexually active women
- Consider applying to sexual debut so only women who have debuted may enter the matrix
- Need to solve for fact that contraceptive use probabilities come from all women annually
- Compare current version vs new version to see how much affect this has on overall model outcomes
| 1.0 | Only allow sexually active agents to enter the contraceptive matrix - - Set guardrails so that intervention scenarios are targeting only sexually active women
- Consider applying to sexual debut so only women who have debuted may enter the matrix
- Need to solve for fact that contraceptive use probabilities come from all women annually
- Compare current version vs new version to see how much affect this has on overall model outcomes
| priority | only allow sexually active agents to enter the contraceptive matrix set guardrails so that intervention scenarios are targeting only sexually active women consider applying to sexual debut so only women who have debuted may enter the matrix need to solve for fact that contraceptive use probabilities come from all women annually compare current version vs new version to see how much affect this has on overall model outcomes | 1 |
170,637 | 6,461,713,685 | IssuesEvent | 2017-08-16 08:50:58 | blibli-future/detroit | https://api.github.com/repos/blibli-future/detroit | opened | UX Feedback | area/frontend priority/high | - Warna button action terlalu banyak, kurangi, pakai di tombol2 yg penting saja.
- Konsistensi form | 1.0 | UX Feedback - - Warna button action terlalu banyak, kurangi, pakai di tombol2 yg penting saja.
- Konsistensi form | priority | ux feedback warna button action terlalu banyak kurangi pakai di yg penting saja konsistensi form | 1 |
351,585 | 10,520,823,953 | IssuesEvent | 2019-09-30 03:10:05 | steedos/creator | https://api.github.com/repos/steedos/creator | closed | 提交申请单报错 | fix:Done priority:High | 
- 是steedos-workflow包中`db.instance_record_queue = new Meteor.Collection('instance_record_queue')`这行代码注释造成的
- 是在申请单到对象的同步 settings 配置了cron.instancerecordqueue_interval 才会执行的。 | 1.0 | 提交申请单报错 - 
- 是steedos-workflow包中`db.instance_record_queue = new Meteor.Collection('instance_record_queue')`这行代码注释造成的
- 是在申请单到对象的同步 settings 配置了cron.instancerecordqueue_interval 才会执行的。 | priority | 提交申请单报错 是steedos workflow包中 db instance record queue new meteor collection instance record queue 这行代码注释造成的 是在申请单到对象的同步 settings 配置了cron instancerecordqueue interval 才会执行的。 | 1 |
481,856 | 13,893,109,291 | IssuesEvent | 2020-10-19 13:07:24 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Build: Eco Staging build failing to create new default world | Category: DevOps Priority: High Status: Fixed | It seems like sometimes the Eco Staging build fails to save the world when it's generating a new one to replace DefaultWorld | 1.0 | Build: Eco Staging build failing to create new default world - It seems like sometimes the Eco Staging build fails to save the world when it's generating a new one to replace DefaultWorld | priority | build eco staging build failing to create new default world it seems like sometimes the eco staging build fails to save the world when it s generating a new one to replace defaultworld | 1 |
648,804 | 21,194,289,778 | IssuesEvent | 2022-04-08 21:29:54 | status-im/status-desktop | https://api.github.com/repos/status-im/status-desktop | opened | group modal is missing context menu options | bug priority 1: high groups | # Bug Report
## Description
There is suppose to be kebab menus next to the member list users so we can kick a user, make them admin etc..

| 1.0 | group modal is missing context menu options - # Bug Report
## Description
There is suppose to be kebab menus next to the member list users so we can kick a user, make them admin etc..

| priority | group modal is missing context menu options bug report description there is suppose to be kebab menus next to the member list users so we can kick a user make them admin etc | 1 |
478,620 | 13,782,435,807 | IssuesEvent | 2020-10-08 17:38:44 | JDMCreator/LaTeXTableEditor | https://api.github.com/repos/JDMCreator/LaTeXTableEditor | closed | Remove Row removes the entire table | Priority: High Type: bug confirmed | After Loading from Excel, extra rows were added. However, when I tried to delete some unnecessary rows, it removes the entire table. | 1.0 | Remove Row removes the entire table - After Loading from Excel, extra rows were added. However, when I tried to delete some unnecessary rows, it removes the entire table. | priority | remove row removes the entire table after loading from excel extra rows were added however when i tried to delete some unnecessary rows it removes the entire table | 1 |
789,282 | 27,785,367,627 | IssuesEvent | 2023-03-17 02:23:50 | Wizleap-Inc/wiz-ui | https://api.github.com/repos/Wizleap-Inc/wiz-ui | closed | Feat(Component): 選択Popup系のButtonGroupを一つのComponentとして切り出す | 📦 component 🔼 High Priority | **機能追加理由・詳細**
今はSelectBox等でしか使われてないが、今後派生する予定なため
**解決策の提案(任意)**
**その他考慮事項(任意)**
| 1.0 | Feat(Component): 選択Popup系のButtonGroupを一つのComponentとして切り出す - **機能追加理由・詳細**
今はSelectBox等でしか使われてないが、今後派生する予定なため
**解決策の提案(任意)**
**その他考慮事項(任意)**
| priority | feat component 選択popup系のbuttongroupを一つのcomponentとして切り出す 機能追加理由・詳細 今はselectbox等でしか使われてないが、今後派生する予定なため 解決策の提案(任意) その他考慮事項(任意) | 1 |
24,649 | 2,671,320,390 | IssuesEvent | 2015-03-24 04:57:33 | nickpaventi/culligan-diy | https://api.github.com/repos/nickpaventi/culligan-diy | closed | Global Navigation [Mobile]: DIY Text adjustment needed | bug High Priority | If the 'Do it yourself' text needs to wrap, it should align with the left edge of the 'C' in the logo

| 1.0 | Global Navigation [Mobile]: DIY Text adjustment needed - If the 'Do it yourself' text needs to wrap, it should align with the left edge of the 'C' in the logo

| priority | global navigation diy text adjustment needed if the do it yourself text needs to wrap it should align with the left edge of the c in the logo | 1 |
324,192 | 9,885,874,211 | IssuesEvent | 2019-06-25 04:31:14 | CalNourish/ucbfpa-android | https://api.github.com/repos/CalNourish/ucbfpa-android | closed | Receive Push Notifications | feature 🚀 high priority 🔥 | - [ ] Enable the food pantry to send push notifications to users
- [ ] Users should be able to review recent notifications
- [ ] [firebase cloud messaging](https://firebase.google.com/docs/cloud-messaging/) | 1.0 | Receive Push Notifications - - [ ] Enable the food pantry to send push notifications to users
- [ ] Users should be able to review recent notifications
- [ ] [firebase cloud messaging](https://firebase.google.com/docs/cloud-messaging/) | priority | receive push notifications enable the food pantry to send push notifications to users users should be able to review recent notifications | 1 |
331,741 | 10,076,528,024 | IssuesEvent | 2019-07-24 16:27:04 | plotly/dash-sample-apps | https://api.github.com/repos/plotly/dash-sample-apps | closed | Oil and Gas Ternary Diagram [PYTHON] | dash high priority | # App name
dash-oil-and-gas-ternary
# App
- [ ] This app is currently deployed on Dash(R) Gallery: [deployment URL]
- [x] This app is new
# Source code repository
https://github.com/plotly/dash-oil-gas-ternary
# Current appearance

# Redesign

# Playground deployment
https://dash-playground.plotly.host/dash-oil-gas-ternary/ | 1.0 | Oil and Gas Ternary Diagram [PYTHON] - # App name
dash-oil-and-gas-ternary
# App
- [ ] This app is currently deployed on Dash(R) Gallery: [deployment URL]
- [x] This app is new
# Source code repository
https://github.com/plotly/dash-oil-gas-ternary
# Current appearance

# Redesign

# Playground deployment
https://dash-playground.plotly.host/dash-oil-gas-ternary/ | priority | oil and gas ternary diagram app name dash oil and gas ternary app this app is currently deployed on dash r gallery this app is new source code repository current appearance redesign playground deployment | 1 |
489,384 | 14,105,572,238 | IssuesEvent | 2020-11-06 13:42:39 | AY2021S1-CS2113T-W12-2/tp | https://api.github.com/repos/AY2021S1-CS2113T-W12-2/tp | closed | [PE-D] Exception when format of parameters is wrong | priority.High type.Bug | 
As shown in the image above, the format of the parameter TIME is wrong since I did not input it the same as in the User Guide. It appears that there is no written exceptions for incorrect parameter format and the team is assuming that all parameter input will follow the User Guide exactly. I think it will be better to write an exception for incorrect format of parameters.
<!--session: 1604047641344-43c903f3-64bc-4cb8-8c67-bd712f74cf4a-->
-------------
Labels: `severity.Medium` `type.FeatureFlaw`
original: max-wunan/ped#2 | 1.0 | [PE-D] Exception when format of parameters is wrong - 
As shown in the image above, the format of the parameter TIME is wrong since I did not input it the same as in the User Guide. It appears that there is no written exceptions for incorrect parameter format and the team is assuming that all parameter input will follow the User Guide exactly. I think it will be better to write an exception for incorrect format of parameters.
<!--session: 1604047641344-43c903f3-64bc-4cb8-8c67-bd712f74cf4a-->
-------------
Labels: `severity.Medium` `type.FeatureFlaw`
original: max-wunan/ped#2 | priority | exception when format of parameters is wrong as shown in the image above the format of the parameter time is wrong since i did not input it the same as in the user guide it appears that there is no written exceptions for incorrect parameter format and the team is assuming that all parameter input will follow the user guide exactly i think it will be better to write an exception for incorrect format of parameters labels severity medium type featureflaw original max wunan ped | 1 |
323,394 | 9,854,137,490 | IssuesEvent | 2019-06-19 16:09:02 | geosolutions-it/MapStore2-C098 | https://api.github.com/repos/geosolutions-it/MapStore2-C098 | closed | Mission's anomalies list | Frontend Priority: High Project: C098 SCIADRO review | - [ ] Show the list of detected anomalies during the mission (Objects previously ingested in the mission creation)
- [ ] Each Object in the list allows to show the related frame (it will be retrieved from the backend)
- [ ] Each Object in the list allows to show object point on map | 1.0 | Mission's anomalies list - - [ ] Show the list of detected anomalies during the mission (Objects previously ingested in the mission creation)
- [ ] Each Object in the list allows to show the related frame (it will be retrieved from the backend)
- [ ] Each Object in the list allows to show object point on map | priority | mission s anomalies list show the list of detected anomalies during the mission objects previously ingested in the mission creation each object in the list allows to show the related frame it will be retrieved from the backend each object in the list allows to show object point on map | 1 |
513 | 2,497,597,356 | IssuesEvent | 2015-01-07 09:02:37 | fire-uta/ir-simulation | https://api.github.com/repos/fire-uta/ir-simulation | closed | Triggering next query may advance to an invalid query | bug high priority | After reaching the last query, and triggering next query, the simulator seems to jump into some random query. This should not happen. | 1.0 | Triggering next query may advance to an invalid query - After reaching the last query, and triggering next query, the simulator seems to jump into some random query. This should not happen. | priority | triggering next query may advance to an invalid query after reaching the last query and triggering next query the simulator seems to jump into some random query this should not happen | 1 |
272,823 | 8,518,084,899 | IssuesEvent | 2018-11-01 10:21:20 | CS2103-AY1819S1-F10-1/main | https://api.github.com/repos/CS2103-AY1819S1-F10-1/main | closed | Modify find to support searching for parts of name | priority.High severity.High status.Ongoing type.Bug | Currently, it only supports for the full name (within spaces).
Possibly add support for * as generic matcher. | 1.0 | Modify find to support searching for parts of name - Currently, it only supports for the full name (within spaces).
Possibly add support for * as generic matcher. | priority | modify find to support searching for parts of name currently it only supports for the full name within spaces possibly add support for as generic matcher | 1 |
291,833 | 8,950,173,320 | IssuesEvent | 2019-01-25 10:00:36 | vanilla-framework/vanilla-framework | https://api.github.com/repos/vanilla-framework/vanilla-framework | opened | html background not explicitly set | Priority: High | **Describe the bug**
[Originally reported on [snapcraft](https://github.com/canonical-websites/snapcraft.io/issues/1533#event-2096726030)]
We do not explicitly set the background of the root element.
When someone configures their browser to default to anything other than #fff, this creates accessibility issues.
**To Reproduce**
Steps to reproduce the behavior:
1. Set background to black in firefox
2. Load any site using vanilla, e.g. snapcraft.io
3. Backgrounds of many sections turn black
**Expected behavior**
Background should be white, as this is what most pattern assume is the case.
**Screenshots**

**Desktop (please complete the following information):**
- Any
- Browser: Firefox, probably others too.
| 1.0 | html background not explicitly set - **Describe the bug**
[Originally reported on [snapcraft](https://github.com/canonical-websites/snapcraft.io/issues/1533#event-2096726030)]
We do not explicitly set the background of the root element.
When someone configures their browser to default to anything other than #fff, this creates accessibility issues.
**To Reproduce**
Steps to reproduce the behavior:
1. Set background to black in firefox
2. Load any site using vanilla, e.g. snapcraft.io
3. Backgrounds of many sections turn black
**Expected behavior**
Background should be white, as this is what most pattern assume is the case.
**Screenshots**

**Desktop (please complete the following information):**
- Any
- Browser: Firefox, probably others too.
| priority | html background not explicitly set describe the bug we do not explicitly set the background of the root element when someone configures their browser to default to anything other than fff this creates accessibility issues to reproduce steps to reproduce the behavior set background to black in firefox load any site using vanilla e g snapcraft io backgrounds of many sections turn black expected behavior background should be white as this is what most pattern assume is the case screenshots desktop please complete the following information any browser firefox probably others too | 1 |
324,620 | 9,906,338,569 | IssuesEvent | 2019-06-27 13:40:18 | cilium/cilium | https://api.github.com/repos/cilium/cilium | closed | bpf: improve debugging of complexity issues | area/kernel kernel/mw-1 priority/high | Fixing up complexity issues can be like finding a needle in the haystack. A single event may lead to significant increase in complexity, so stats don't really tell too much. Add pruning infomation about complexity into the verifier log. E.g. next to the existing global count it would be more useful to have an additional count for the currently analysed path and information on why this specific path could not be pruned (e.g. register mismatch, stack mismatch, etc). | 1.0 | bpf: improve debugging of complexity issues - Fixing up complexity issues can be like finding a needle in the haystack. A single event may lead to significant increase in complexity, so stats don't really tell too much. Add pruning infomation about complexity into the verifier log. E.g. next to the existing global count it would be more useful to have an additional count for the currently analysed path and information on why this specific path could not be pruned (e.g. register mismatch, stack mismatch, etc). | priority | bpf improve debugging of complexity issues fixing up complexity issues can be like finding a needle in the haystack a single event may lead to significant increase in complexity so stats don t really tell too much add pruning infomation about complexity into the verifier log e g next to the existing global count it would be more useful to have an additional count for the currently analysed path and information on why this specific path could not be pruned e g register mismatch stack mismatch etc | 1 |
227,660 | 7,540,813,851 | IssuesEvent | 2018-04-17 07:52:54 | HGustavs/LenaSYS | https://api.github.com/repos/HGustavs/LenaSYS | reopened | Using a direct link to a page that requires login is shown to guest | Fix now Group 1 (2018) Group 1 (2018) Access Needs Fixing bug highPriority | There does not seem to be a proper credentials check for showdoc.
Using a direct link to a page that requires login is served by showdoc to guest
| 1.0 | Using a direct link to a page that requires login is shown to guest - There does not seem to be a proper credentials check for showdoc.
Using a direct link to a page that requires login is served by showdoc to guest
| priority | using a direct link to a page that requires login is shown to guest there does not seem to be a proper credentials check for showdoc using a direct link to a page that requires login is served by showdoc to guest | 1 |
185,937 | 6,732,061,355 | IssuesEvent | 2017-10-18 09:58:25 | SpamExperts/cpanel-addon | https://api.github.com/repos/SpamExperts/cpanel-addon | closed | Incompatibility with WHM 56.0 | bug priority-highest | ### Version information
WHM 56.0
### Steps to replicate
1. Install addon
2. View list domains
### Actual result
```
Warning: Invalid argument supplied for foreach() in /usr/local/prospamfilter/library/SpamFilter/PanelSupport/Cpanel.php on line 1677
```
### Expected result
Functionality on domain lists on version 56.0 WHM
### Other notes
Untested no access to 56.0 testing server | 1.0 | Incompatibility with WHM 56.0 - ### Version information
WHM 56.0
### Steps to replicate
1. Install addon
2. View list domains
### Actual result
```
Warning: Invalid argument supplied for foreach() in /usr/local/prospamfilter/library/SpamFilter/PanelSupport/Cpanel.php on line 1677
```
### Expected result
Functionality on domain lists on version 56.0 WHM
### Other notes
Untested no access to 56.0 testing server | priority | incompatibility with whm version information whm steps to replicate install addon view list domains actual result warning invalid argument supplied for foreach in usr local prospamfilter library spamfilter panelsupport cpanel php on line expected result functionality on domain lists on version whm other notes untested no access to testing server | 1 |
110,260 | 4,424,236,294 | IssuesEvent | 2016-08-16 11:44:35 | zoonproject/zoon | https://api.github.com/repos/zoonproject/zoon | opened | on.exit behaviour changed | bug help wanted Priority - high | `on.exit` has had a change to its behaviour which means that it can no longer modify the returned object. The result is that on failure the partial workflow is not returned
```r
testf <- function(x){
y <- 'tom'
on.exit(return(y))
if(x>5){ stop('x is too big')}
}
out1 <- testf(6)
#Error in testf(6) : x is too big
out1
#Error: object 'out1' not found
```
This is a big shame as it makes debugging much more difficult. I have not been able to find a work around but will continue to look into it. | 1.0 | on.exit behaviour changed - `on.exit` has had a change to its behaviour which means that it can no longer modify the returned object. The result is that on failure the partial workflow is not returned
```r
testf <- function(x){
y <- 'tom'
on.exit(return(y))
if(x>5){ stop('x is too big')}
}
out1 <- testf(6)
#Error in testf(6) : x is too big
out1
#Error: object 'out1' not found
```
This is a big shame as it makes debugging much more difficult. I have not been able to find a work around but will continue to look into it. | priority | on exit behaviour changed on exit has had a change to its behaviour which means that it can no longer modify the returned object the result is that on failure the partial workflow is not returned r testf function x y tom on exit return y if x stop x is too big testf error in testf x is too big error object not found this is a big shame as it makes debugging much more difficult i have not been able to find a work around but will continue to look into it | 1 |
582,466 | 17,361,877,997 | IssuesEvent | 2021-07-29 22:03:22 | jessebw/activeVote | https://api.github.com/repos/jessebw/activeVote | closed | current poll view - Form Validation | High Priority | - [x] Validate the user facing vote form
- [x] add a toast telling a user they have already voted if their email already exist on in the db
| 1.0 | current poll view - Form Validation - - [x] Validate the user facing vote form
- [x] add a toast telling a user they have already voted if their email already exist on in the db
| priority | current poll view form validation validate the user facing vote form add a toast telling a user they have already voted if their email already exist on in the db | 1 |
382,332 | 11,304,014,069 | IssuesEvent | 2020-01-17 21:40:19 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [search] Fix transitive dependency | bug priority: high | It looks like the repo `http://maven.restlet.org` is not working anymore so all builds are broken | 1.0 | [search] Fix transitive dependency - It looks like the repo `http://maven.restlet.org` is not working anymore so all builds are broken | priority | fix transitive dependency it looks like the repo is not working anymore so all builds are broken | 1 |
236,848 | 7,753,077,235 | IssuesEvent | 2018-05-30 22:39:57 | Gloirin/m2gTest | https://api.github.com/repos/Gloirin/m2gTest | closed | 0004360:
get user quota (of INBOX) in updateMessageCache | Feature Request Felamimail high priority | **Reported by pschuele on 18 May 2011 13:09**
get user quota (of INBOX) in updateMessageCache
| 1.0 | 0004360:
get user quota (of INBOX) in updateMessageCache - **Reported by pschuele on 18 May 2011 13:09**
get user quota (of INBOX) in updateMessageCache
| priority | get user quota of inbox in updatemessagecache reported by pschuele on may get user quota of inbox in updatemessagecache | 1 |
206,824 | 7,121,544,088 | IssuesEvent | 2018-01-19 08:17:58 | leo-project/leofs | https://api.github.com/repos/leo-project/leofs | opened | [leo_object_storage] Avoid gen_server crash due to timeout | Bug Priority-HIGH Refactor _leo_object_storage v1.4 | As reported on https://github.com/leo-project/leofs/issues/966, timeout happened on calling https://github.com/leo-project/leo_object_storage/blob/develop/src/leo_object_storage_server.erl#L792-L793 caused leo_object_storage_server to crash. Add `catch` statement here.
NOTE:
Since it turned out that leo_object_storage_event_notifier and some other ones (leo_object_storage_event and leo_storage_msg_collector) could be bottleneck in case many slow processing happen, we will have to refactor those modules so this issue should be fixed after the refactor gets finished. | 1.0 | [leo_object_storage] Avoid gen_server crash due to timeout - As reported on https://github.com/leo-project/leofs/issues/966, timeout happened on calling https://github.com/leo-project/leo_object_storage/blob/develop/src/leo_object_storage_server.erl#L792-L793 caused leo_object_storage_server to crash. Add `catch` statement here.
NOTE:
Since it turned out that leo_object_storage_event_notifier and some other ones (leo_object_storage_event and leo_storage_msg_collector) could be bottleneck in case many slow processing happen, we will have to refactor those modules so this issue should be fixed after the refactor gets finished. | priority | avoid gen server crash due to timeout as reported on timeout happened on calling caused leo object storage server to crash add catch statement here note since it turned out that leo object storage event notifier and some other ones leo object storage event and leo storage msg collector could be bottleneck in case many slow processing happen we will have to refactor those modules so this issue should be fixed after the refactor gets finished | 1 |
491,619 | 14,167,573,642 | IssuesEvent | 2020-11-12 10:28:40 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | Cannot refresh the console app when in connector pages | Priority/High Severity/Blocker bug console ux | **Describe the issue:**

on refresh app redirects to `/console/manage/governance-connectors/:id`
**How to reproduce:**
1. Log in to console app
2. Navigate to Manage -> User Onboarding
3. Refresh the page
**Expected behavior:**
Stay on the same page upon page refresh
**Environment information** (_Please complete the following information; remove any unnecessary fields_) **:**
- Product Version: IS 5.11.0-beta6-SNAPSHOT
- OS: Windows
- Browser: Chrome
| 1.0 | Cannot refresh the console app when in connector pages - **Describe the issue:**

on refresh app redirects to `/console/manage/governance-connectors/:id`
**How to reproduce:**
1. Log in to console app
2. Navigate to Manage -> User Onboarding
3. Refresh the page
**Expected behavior:**
Stay on the same page upon page refresh
**Environment information** (_Please complete the following information; remove any unnecessary fields_) **:**
- Product Version: IS 5.11.0-beta6-SNAPSHOT
- OS: Windows
- Browser: Chrome
| priority | cannot refresh the console app when in connector pages describe the issue on refresh app redirects to console manage governance connectors id how to reproduce log in to console app navigate to manage user onboarding refresh the page expected behavior stay on the same page upon page refresh environment information please complete the following information remove any unnecessary fields product version is snapshot os windows browser chrome | 1 |
270,078 | 8,446,248,616 | IssuesEvent | 2018-10-19 01:31:10 | CS2113-AY1819S1-T09-4/main | https://api.github.com/repos/CS2113-AY1819S1-T09-4/main | closed | @Vincent | priority.high type.story type.task | 1. We need to do the diagrams for each of our features by Thursday , must be at least 1 page long
2. We need to annotate the code base with what we wrote following the guidelines on the website
3. Update Issue trackers and set deadlines for your own features
4. Tag v1.2 for the features that we want to show at v1.2 | 1.0 | @Vincent - 1. We need to do the diagrams for each of our features by Thursday , must be at least 1 page long
2. We need to annotate the code base with what we wrote following the guidelines on the website
3. Update Issue trackers and set deadlines for your own features
4. Tag v1.2 for the features that we want to show at v1.2 | priority | vincent we need to do the diagrams for each of our features by thursday must be at least page long we need to annotate the code base with what we wrote following the guidelines on the website update issue trackers and set deadlines for your own features tag for the features that we want to show at | 1 |
438,576 | 12,641,512,935 | IssuesEvent | 2020-06-16 06:20:36 | buddyboss/buddyboss-platform | https://api.github.com/repos/buddyboss/buddyboss-platform | closed | Activity feed: showing only the Activities for the logged-in Account | bug component: activity priority: high | **Describe the bug**
If a User or Admin is logged in, he can only see the Activities he's done on the feed (example: posting in a Group or replying to a discussion).
When you log out, you can see ALL USERS activity.
**To Reproduce**
Steps to reproduce the behavior:
1. Logged in as a User
2. Post something on your Group discussion
3. Go to activity feed, you can see only see activities you have done on the feed
4. Log out and view the feed again, you can see Activities from all users
5. Log in as a different user, you could not see the feed from other users
**Expected behavior**
Even if a user is logged in or not, they must have the capability to view the activity of users
**Screenshots**
https://drive.google.com/open?id=1s82R6t7wQmGhh6aqpWXh2Pm5lwA6_wrq
or
https://www.loom.com/share/b0b5e3fd0e824e22bbe7ba9b707b8ed9
**Support ticket links**
https://secure.helpscout.net/conversation/1186451388/76405 | 1.0 | Activity feed: showing only the Activities for the logged-in Account - **Describe the bug**
If a User or Admin is logged in, he can only see the Activities he's done on the feed (example: posting in a Group or replying to a discussion).
When you log out, you can see ALL USERS activity.
**To Reproduce**
Steps to reproduce the behavior:
1. Logged in as a User
2. Post something on your Group discussion
3. Go to activity feed, you can see only see activities you have done on the feed
4. Log out and view the feed again, you can see Activities from all users
5. Log in as a different user, you could not see the feed from other users
**Expected behavior**
Even if a user is logged in or not, they must have the capability to view the activity of users
**Screenshots**
https://drive.google.com/open?id=1s82R6t7wQmGhh6aqpWXh2Pm5lwA6_wrq
or
https://www.loom.com/share/b0b5e3fd0e824e22bbe7ba9b707b8ed9
**Support ticket links**
https://secure.helpscout.net/conversation/1186451388/76405 | priority | activity feed showing only the activities for the logged in account describe the bug if a user or admin is logged in he can only see the activities he s done on the feed example posting in a group or replying to a discussion when you log out you can see all users activity to reproduce steps to reproduce the behavior logged in as a user post something on your group discussion go to activity feed you can see only see activities you have done on the feed log out and view the feed again you can see activities from all users log in as a different user you could not see the feed from other users expected behavior even if a user is logged in or not they must have the capability to view the activity of users screenshots or support ticket links | 1 |
453,946 | 13,092,389,244 | IssuesEvent | 2020-08-03 08:30:30 | projectdissolve/dissolve | https://api.github.com/repos/projectdissolve/dissolve | opened | Epic / 0.7 / Forcefields | Priority: High | ### Focus
Addresses critical issues and improvements to forcefield implementation and behaviour, driven by user requests.
### Workload
- [ ] #195
- [ ] #326
- [ ] #327
| 1.0 | Epic / 0.7 / Forcefields - ### Focus
Addresses critical issues and improvements to forcefield implementation and behaviour, driven by user requests.
### Workload
- [ ] #195
- [ ] #326
- [ ] #327
| priority | epic forcefields focus addresses critical issues and improvements to forcefield implementation and behaviour driven by user requests workload | 1 |
31,610 | 2,734,622,784 | IssuesEvent | 2015-04-17 21:07:13 | blacklocus/anvil | https://api.github.com/repos/blacklocus/anvil | closed | make walls bucket and prefix configurable | priority-high | so that this app can be used by anyone
- If bucket and prefix are not defined, let user define them.
* ~~Provide means to create the bucket directly from the UI?~~ screep
- Links should include this information, so that such boards can be shared. | 1.0 | make walls bucket and prefix configurable - so that this app can be used by anyone
- If bucket and prefix are not defined, let user define them.
* ~~Provide means to create the bucket directly from the UI?~~ screep
- Links should include this information, so that such boards can be shared. | priority | make walls bucket and prefix configurable so that this app can be used by anyone if bucket and prefix are not defined let user define them provide means to create the bucket directly from the ui screep links should include this information so that such boards can be shared | 1 |
588,310 | 17,651,832,167 | IssuesEvent | 2021-08-20 14:10:35 | eclipse/dirigible | https://api.github.com/repos/eclipse/dirigible | opened | [Editors] CSV Editor ignoring delimiter and quote char options if header is false | component-ide priority-high efforts-medium | **Describe the bug**
When opening CSV files from the CSVIM Editor into CSV Editor, the delimiter and quote char arguments are ignored if the header argument is false.
**To Reproduce**
Steps to reproduce the behavior:
1. Open a csvim file
2. Disable header
3. Click on "Open"
4. See error
**Expected behavior**
Arguments passed to the CSV Editor should not be dependent on each other.
**Desktop:**
- OS: macOS 11.5
- Browser: Firefox 91
- Version: Dirigible 5.12.12
| 1.0 | [Editors] CSV Editor ignoring delimiter and quote char options if header is false - **Describe the bug**
When opening CSV files from the CSVIM Editor into CSV Editor, the delimiter and quote char arguments are ignored if the header argument is false.
**To Reproduce**
Steps to reproduce the behavior:
1. Open a csvim file
2. Disable header
3. Click on "Open"
4. See error
**Expected behavior**
Arguments passed to the CSV Editor should not be dependent on each other.
**Desktop:**
- OS: macOS 11.5
- Browser: Firefox 91
- Version: Dirigible 5.12.12
| priority | csv editor ignoring delimiter and quote char options if header is false describe the bug when opening csv files from the csvim editor into csv editor the delimiter and quote char arguments are ignored if the header argument is false to reproduce steps to reproduce the behavior open a csvim file disable header click on open see error expected behavior arguments passed to the csv editor should not be dependent on each other desktop os macos browser firefox version dirigible | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.