Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
957
labels
stringlengths
4
795
body
stringlengths
1
259k
index
stringclasses
12 values
text_combine
stringlengths
96
259k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
190,035
6,803,952,577
IssuesEvent
2017-11-03 05:11:37
zehro/UAH-Theatre
https://api.github.com/repos/zehro/UAH-Theatre
closed
Create the Add Item Page
Priority - Medium Team - Database Team - Front End
## Description There needs to be a UI page for adding items to the inventory. ## Tasks - [ ] Create UI page - [ ] Code back-end logic ## Done Done Criteria 1. The page is tested and accepted by at least one other team member 2. The code is reviewed and passed any unit/acceptance tests 3. The code is merged with master branch
1.0
Create the Add Item Page - ## Description There needs to be a UI page for adding items to the inventory. ## Tasks - [ ] Create UI page - [ ] Code back-end logic ## Done Done Criteria 1. The page is tested and accepted by at least one other team member 2. The code is reviewed and passed any unit/acceptance tests 3. The code is merged with master branch
priority
create the add item page description there needs to be a ui page for adding items to the inventory tasks create ui page code back end logic done done criteria the page is tested and accepted by at least one other team member the code is reviewed and passed any unit acceptance tests the code is merged with master branch
1
687,571
23,531,978,119
IssuesEvent
2022-08-19 16:13:12
ArjunSharda/TimeConv
https://api.github.com/repos/ArjunSharda/TimeConv
opened
Multiple div elements not closed
help wanted good first issue Priority: Medium
In the HTML files of TimeConv (docs), there are some div elements that are left Un closed. I am starting a fix on this, however I might need some help as for spotting this. I’ve created a branch called “ArjunSharda/CloseDivElements” which I will be working on and will merge after done.
1.0
Multiple div elements not closed - In the HTML files of TimeConv (docs), there are some div elements that are left Un closed. I am starting a fix on this, however I might need some help as for spotting this. I’ve created a branch called “ArjunSharda/CloseDivElements” which I will be working on and will merge after done.
priority
multiple div elements not closed in the html files of timeconv docs there are some div elements that are left un closed i am starting a fix on this however i might need some help as for spotting this i’ve created a branch called “arjunsharda closedivelements” which i will be working on and will merge after done
1
657,433
21,793,891,442
IssuesEvent
2022-05-15 10:31:47
minsk-hackerspace/hackerspace.by
https://api.github.com/repos/minsk-hackerspace/hackerspace.by
opened
Дадаць sidekiq для месаджаў і паведамленняў
enhancement Priority: Medium feature
https://sidekiq.org/ - [ ] Вынесці месаджы ТГ у асобныя сэрвісы і джобы - [ ] Вынесці адпраўку эмэйлаў у фонавыя джобы
1.0
Дадаць sidekiq для месаджаў і паведамленняў - https://sidekiq.org/ - [ ] Вынесці месаджы ТГ у асобныя сэрвісы і джобы - [ ] Вынесці адпраўку эмэйлаў у фонавыя джобы
priority
дадаць sidekiq для месаджаў і паведамленняў вынесці месаджы тг у асобныя сэрвісы і джобы вынесці адпраўку эмэйлаў у фонавыя джобы
1
544,305
15,892,146,980
IssuesEvent
2021-04-10 22:27:21
Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2
https://api.github.com/repos/Warcraft-GoA-Development-Team/Warcraft-Guardians-of-Azeroth-2
closed
Custom Born Dates
:books: lore :books: :grey_exclamation: priority medium :question: suggestion :question:
<!-- DO NOT REMOVE PRE-EXISTING LINES IF YOU WANT TO SUGGEST A FEW THINGS, OPEN A NEW ISSUE PER EVERY SUGGESTION ---------------------------------------------------------------------------------------------------------- --> **Describe your suggestion in full detail below:** Try to tweak the interface and localization a bit to show that Tyrande and other really old characters were born a long time ago. <details> <summary>Click to expand</summary> ![image](https://user-images.githubusercontent.com/46384992/108601969-f5cd9600-73b8-11eb-92d1-bcd503ff16d6.png) </details> I advise using some kind of character variable alternative to the character's real age.
1.0
Custom Born Dates - <!-- DO NOT REMOVE PRE-EXISTING LINES IF YOU WANT TO SUGGEST A FEW THINGS, OPEN A NEW ISSUE PER EVERY SUGGESTION ---------------------------------------------------------------------------------------------------------- --> **Describe your suggestion in full detail below:** Try to tweak the interface and localization a bit to show that Tyrande and other really old characters were born a long time ago. <details> <summary>Click to expand</summary> ![image](https://user-images.githubusercontent.com/46384992/108601969-f5cd9600-73b8-11eb-92d1-bcd503ff16d6.png) </details> I advise using some kind of character variable alternative to the character's real age.
priority
custom born dates do not remove pre existing lines if you want to suggest a few things open a new issue per every suggestion describe your suggestion in full detail below try to tweak the interface and localization a bit to show that tyrande and other really old characters were born a long time ago click to expand i advise using some kind of character variable alternative to the character s real age
1
767,397
26,922,820,802
IssuesEvent
2023-02-07 11:43:11
minio/minio
https://api.github.com/repos/minio/minio
closed
Unable to access files when using ldap:username policy substitution
community priority: medium
I'm attempting to setup home directory access for LDAP-authenticated users as described in the [MinIO Multi-user Quickstart Guide](https://github.com/minio/minio/blob/master/docs/multi-user/README.md). In my environment, I'd like to have a bucket named `user-data` with subdirectories containing LDAP usernames with access scoped to the corresponding LDAP user, e.g., ``` └── user-data └── example.username ``` I've defined the following policy file to enable this scenario: ``` { "Version": "2012-10-17", "Statement": [ { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data" ] }, { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data" ], "Condition": { "StringLike": { "s3:prefix": [ "${ldap:username}/*" ] } } }, { "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data/${ldap:username}/*" ] } ] } ``` ## Expected Behavior LDAP-authenticated users should be able view the contents of their home directory as well as create and delete files. <!--- If you're describing a bug, tell us what should happen --> <!--- If you're suggesting a change/improvement, tell us how it should work --> ## Current Behavior <!--- If describing a bug, tell us what happens instead of the expected behavior --> <!--- If suggesting a change/improvement, explain the difference from current behavior --> Contents of the home directory can be viewed but access to upload or delete files is denied. ## Possible Solution <!--- Not obligatory, but suggest a fix/reason for the bug, --> <!--- or ideas how to implement the addition or change --> A static policy file defined on a per-user basis could be used to workaround the issue. ## Steps to Reproduce (for bugs) <!--- Provide a link to a live example, or an unambiguous set of steps to --> <!--- reproduce this bug. Include code to reproduce, if relevant --> <!--- and make sure you have followed https://github.com/minio/minio/tree/release/docs/debugging to capture relevant logs --> The following steps can be used to reproduce the issue: 1. Start a local MinIO instance using `docker-compose`: ``` cat docker-compose.yaml << EOF version: '3' services: minio: image: minio/minio:RELEASE.2023-01-31T02-24-19Z ports: - "9000:9000" - "9001:9001" environment: MINIO_ROOT_USER: admin MINIO_ROOT_PASSWORD: secretkey volumes: - minio-data:/data command: server /data --console-address ":9001" volumes: minio-data: EOF ``` ``` docker-compose up -d ``` 2. Define an alias for the MinIO instance: ``` mc alias set localdev-admin http://localhost:9000 admin secretkey ``` 3. Enable the LDAP identity provider: ``` mc admin config set localdev-admin identity_ldap \ server_addr="*****" \ lookup_bind_dn="*****" \ lookup_bind_password="*****" \ user_dn_search_base_dn="*****" \ user_dn_search_filter="*****" \ group_search_filter="*****" \ group_search_base_dn="*****" ``` ``` mc admin service restart localdev-admin ``` 4. Create the `user-data` bucket and copy a file into it. ``` mc mb localdev-admin/user-data ``` ``` touch test.txt mc cp test.txt localdev-admin/user-data/example.username/test.txt ``` 5. Add the home directory policy using LDAP username policy substitution: ``` cat user-data-readwrite.json << EOF { "Version": "2012-10-17", "Statement": [ { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data" ] }, { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data" ], "Condition": { "StringLike": { "s3:prefix": [ "${ldap:username}/*" ] } } }, { "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data/${ldap:username}/*" ] } ] } EOF ``` ``` mc admin policy add localdev-admin user-data-readwrite user-data-readwrite.json ``` 6. Assign the home directory policy to an LDAP user: ``` mc admin policy set localdev-admin user-data-readwrite user='CN=Example Username,OU=Users,DC=company,DC=com' ``` 7. Log in to the web console as the LDAP user and create a service account with credentials `user:secretkey`. 8. Define an alias for the MinIO instance using the LDAP user's service account: ``` mc alias set localdev-user http://localhost:9000 user secretkey ``` 9. Observe that the home directory contents can be listed: ``` mc ls localdev-user/user-data ``` 10. Attempt to copy the file created in step 4: ``` mc cp --debug localdev-user/user-data/example.username/test.txt /tmp/test.txt ``` The following output is produced: ``` mc: <DEBUG> GET /user-data/?location= HTTP/1.1 Host: localhost:9000 User-Agent: MinIO (darwin; amd64) minio-go/v7.0.46 mc/RELEASE.2023-01-28T20-29-38Z Authorization: AWS4-HMAC-SHA256 Credential=user/20230206/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=**REDACTED** X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: 20230206T192300Z Accept-Encoding: gzip mc: <DEBUG> HTTP/1.1 403 Forbidden Content-Length: 270 Accept-Ranges: bytes Content-Security-Policy: block-all-mixed-content Content-Type: application/xml Date: Mon, 06 Feb 2023 19:23:00 GMT Server: MinIO Strict-Transport-Security: max-age=31536000; includeSubDomains Vary: Origin Vary: Accept-Encoding X-Amz-Id-2: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Request-Id: 1741529F5FE77EF4 X-Content-Type-Options: nosniff X-Xss-Protection: 1; mode=block <?xml version="1.0" encoding="UTF-8"?> <Error><Code>AccessDenied</Code><Message>Access Denied.</Message><BucketName>user-data</BucketName><Resource>/user-data/</Resource><RequestId>1741529F5FE77EF4</RequestId><HostId>ace2bdb5-ed3b-4da0-a485-a02021c57f8c</HostId></Error>mc: <DEBUG> Response Time: 4.496965ms mc: <DEBUG> HEAD /user-data/example.username/test.txt HTTP/1.1 Host: localhost:9000 User-Agent: MinIO (darwin; amd64) minio-go/v7.0.46 mc/RELEASE.2023-01-28T20-29-38Z Authorization: AWS4-HMAC-SHA256 Credential=user/20230206/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=**REDACTED** X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: 20230206T192300Z mc: <DEBUG> HTTP/1.1 403 Forbidden Content-Length: 319 Accept-Ranges: bytes Content-Security-Policy: block-all-mixed-content Content-Type: application/xml Date: Mon, 06 Feb 2023 19:23:00 GMT Server: MinIO Strict-Transport-Security: max-age=31536000; includeSubDomains Vary: Origin Vary: Accept-Encoding X-Amz-Id-2: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Request-Id: 1741529F601A9FA0 X-Content-Type-Options: nosniff X-Xss-Protection: 1; mode=block mc: <DEBUG> Response Time: 2.844763ms mc: <ERROR> Unable to validate source `localdev-user/user-data/example.username/test.txt`. ``` *Note: Access is also denied when the LDAP user is logged into the web console. ## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * MinIO server version: RELEASE.2023-01-31T02-24-19Z * MinIO client version: RELEASE.2023-01-28T20-29-38Z * Operating System and version (`uname -a`): 21.6.0 Darwin Kernel Version 21.6.0; root:xnu-8020.140.49~2/RELEASE_X86_64 x86_64
1.0
Unable to access files when using ldap:username policy substitution - I'm attempting to setup home directory access for LDAP-authenticated users as described in the [MinIO Multi-user Quickstart Guide](https://github.com/minio/minio/blob/master/docs/multi-user/README.md). In my environment, I'd like to have a bucket named `user-data` with subdirectories containing LDAP usernames with access scoped to the corresponding LDAP user, e.g., ``` └── user-data └── example.username ``` I've defined the following policy file to enable this scenario: ``` { "Version": "2012-10-17", "Statement": [ { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data" ] }, { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data" ], "Condition": { "StringLike": { "s3:prefix": [ "${ldap:username}/*" ] } } }, { "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data/${ldap:username}/*" ] } ] } ``` ## Expected Behavior LDAP-authenticated users should be able view the contents of their home directory as well as create and delete files. <!--- If you're describing a bug, tell us what should happen --> <!--- If you're suggesting a change/improvement, tell us how it should work --> ## Current Behavior <!--- If describing a bug, tell us what happens instead of the expected behavior --> <!--- If suggesting a change/improvement, explain the difference from current behavior --> Contents of the home directory can be viewed but access to upload or delete files is denied. ## Possible Solution <!--- Not obligatory, but suggest a fix/reason for the bug, --> <!--- or ideas how to implement the addition or change --> A static policy file defined on a per-user basis could be used to workaround the issue. ## Steps to Reproduce (for bugs) <!--- Provide a link to a live example, or an unambiguous set of steps to --> <!--- reproduce this bug. Include code to reproduce, if relevant --> <!--- and make sure you have followed https://github.com/minio/minio/tree/release/docs/debugging to capture relevant logs --> The following steps can be used to reproduce the issue: 1. Start a local MinIO instance using `docker-compose`: ``` cat docker-compose.yaml << EOF version: '3' services: minio: image: minio/minio:RELEASE.2023-01-31T02-24-19Z ports: - "9000:9000" - "9001:9001" environment: MINIO_ROOT_USER: admin MINIO_ROOT_PASSWORD: secretkey volumes: - minio-data:/data command: server /data --console-address ":9001" volumes: minio-data: EOF ``` ``` docker-compose up -d ``` 2. Define an alias for the MinIO instance: ``` mc alias set localdev-admin http://localhost:9000 admin secretkey ``` 3. Enable the LDAP identity provider: ``` mc admin config set localdev-admin identity_ldap \ server_addr="*****" \ lookup_bind_dn="*****" \ lookup_bind_password="*****" \ user_dn_search_base_dn="*****" \ user_dn_search_filter="*****" \ group_search_filter="*****" \ group_search_base_dn="*****" ``` ``` mc admin service restart localdev-admin ``` 4. Create the `user-data` bucket and copy a file into it. ``` mc mb localdev-admin/user-data ``` ``` touch test.txt mc cp test.txt localdev-admin/user-data/example.username/test.txt ``` 5. Add the home directory policy using LDAP username policy substitution: ``` cat user-data-readwrite.json << EOF { "Version": "2012-10-17", "Statement": [ { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data" ] }, { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data" ], "Condition": { "StringLike": { "s3:prefix": [ "${ldap:username}/*" ] } } }, { "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::user-data/${ldap:username}/*" ] } ] } EOF ``` ``` mc admin policy add localdev-admin user-data-readwrite user-data-readwrite.json ``` 6. Assign the home directory policy to an LDAP user: ``` mc admin policy set localdev-admin user-data-readwrite user='CN=Example Username,OU=Users,DC=company,DC=com' ``` 7. Log in to the web console as the LDAP user and create a service account with credentials `user:secretkey`. 8. Define an alias for the MinIO instance using the LDAP user's service account: ``` mc alias set localdev-user http://localhost:9000 user secretkey ``` 9. Observe that the home directory contents can be listed: ``` mc ls localdev-user/user-data ``` 10. Attempt to copy the file created in step 4: ``` mc cp --debug localdev-user/user-data/example.username/test.txt /tmp/test.txt ``` The following output is produced: ``` mc: <DEBUG> GET /user-data/?location= HTTP/1.1 Host: localhost:9000 User-Agent: MinIO (darwin; amd64) minio-go/v7.0.46 mc/RELEASE.2023-01-28T20-29-38Z Authorization: AWS4-HMAC-SHA256 Credential=user/20230206/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=**REDACTED** X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: 20230206T192300Z Accept-Encoding: gzip mc: <DEBUG> HTTP/1.1 403 Forbidden Content-Length: 270 Accept-Ranges: bytes Content-Security-Policy: block-all-mixed-content Content-Type: application/xml Date: Mon, 06 Feb 2023 19:23:00 GMT Server: MinIO Strict-Transport-Security: max-age=31536000; includeSubDomains Vary: Origin Vary: Accept-Encoding X-Amz-Id-2: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Request-Id: 1741529F5FE77EF4 X-Content-Type-Options: nosniff X-Xss-Protection: 1; mode=block <?xml version="1.0" encoding="UTF-8"?> <Error><Code>AccessDenied</Code><Message>Access Denied.</Message><BucketName>user-data</BucketName><Resource>/user-data/</Resource><RequestId>1741529F5FE77EF4</RequestId><HostId>ace2bdb5-ed3b-4da0-a485-a02021c57f8c</HostId></Error>mc: <DEBUG> Response Time: 4.496965ms mc: <DEBUG> HEAD /user-data/example.username/test.txt HTTP/1.1 Host: localhost:9000 User-Agent: MinIO (darwin; amd64) minio-go/v7.0.46 mc/RELEASE.2023-01-28T20-29-38Z Authorization: AWS4-HMAC-SHA256 Credential=user/20230206/us-east-1/s3/aws4_request, SignedHeaders=host;x-amz-content-sha256;x-amz-date, Signature=**REDACTED** X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: 20230206T192300Z mc: <DEBUG> HTTP/1.1 403 Forbidden Content-Length: 319 Accept-Ranges: bytes Content-Security-Policy: block-all-mixed-content Content-Type: application/xml Date: Mon, 06 Feb 2023 19:23:00 GMT Server: MinIO Strict-Transport-Security: max-age=31536000; includeSubDomains Vary: Origin Vary: Accept-Encoding X-Amz-Id-2: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Request-Id: 1741529F601A9FA0 X-Content-Type-Options: nosniff X-Xss-Protection: 1; mode=block mc: <DEBUG> Response Time: 2.844763ms mc: <ERROR> Unable to validate source `localdev-user/user-data/example.username/test.txt`. ``` *Note: Access is also denied when the LDAP user is logged into the web console. ## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * MinIO server version: RELEASE.2023-01-31T02-24-19Z * MinIO client version: RELEASE.2023-01-28T20-29-38Z * Operating System and version (`uname -a`): 21.6.0 Darwin Kernel Version 21.6.0; root:xnu-8020.140.49~2/RELEASE_X86_64 x86_64
priority
unable to access files when using ldap username policy substitution i m attempting to setup home directory access for ldap authenticated users as described in the in my environment i d like to have a bucket named user data with subdirectories containing ldap usernames with access scoped to the corresponding ldap user e g └── user data └── example username i ve defined the following policy file to enable this scenario version statement action listbucket effect allow resource arn aws user data action listbucket effect allow resource arn aws user data condition stringlike prefix ldap username action getobject putobject deleteobject effect allow resource arn aws user data ldap username expected behavior ldap authenticated users should be able view the contents of their home directory as well as create and delete files current behavior contents of the home directory can be viewed but access to upload or delete files is denied possible solution a static policy file defined on a per user basis could be used to workaround the issue steps to reproduce for bugs the following steps can be used to reproduce the issue start a local minio instance using docker compose cat docker compose yaml eof version services minio image minio minio release ports environment minio root user admin minio root password secretkey volumes minio data data command server data console address volumes minio data eof docker compose up d define an alias for the minio instance mc alias set localdev admin admin secretkey enable the ldap identity provider mc admin config set localdev admin identity ldap server addr lookup bind dn lookup bind password user dn search base dn user dn search filter group search filter group search base dn mc admin service restart localdev admin create the user data bucket and copy a file into it mc mb localdev admin user data touch test txt mc cp test txt localdev admin user data example username test txt add the home directory policy using ldap username policy substitution cat user data readwrite json eof version statement action listbucket effect allow resource arn aws user data action listbucket effect allow resource arn aws user data condition stringlike prefix ldap username action getobject putobject deleteobject effect allow resource arn aws user data ldap username eof mc admin policy add localdev admin user data readwrite user data readwrite json assign the home directory policy to an ldap user mc admin policy set localdev admin user data readwrite user cn example username ou users dc company dc com log in to the web console as the ldap user and create a service account with credentials user secretkey define an alias for the minio instance using the ldap user s service account mc alias set localdev user user secretkey observe that the home directory contents can be listed mc ls localdev user user data attempt to copy the file created in step mc cp debug localdev user user data example username test txt tmp test txt the following output is produced mc get user data location http host localhost user agent minio darwin minio go mc release authorization hmac credential user us east request signedheaders host x amz content x amz date signature redacted x amz content x amz date accept encoding gzip mc http forbidden content length accept ranges bytes content security policy block all mixed content content type application xml date mon feb gmt server minio strict transport security max age includesubdomains vary origin vary accept encoding x amz id x amz request id x content type options nosniff x xss protection mode block accessdenied access denied user data user data mc response time mc head user data example username test txt http host localhost user agent minio darwin minio go mc release authorization hmac credential user us east request signedheaders host x amz content x amz date signature redacted x amz content x amz date mc http forbidden content length accept ranges bytes content security policy block all mixed content content type application xml date mon feb gmt server minio strict transport security max age includesubdomains vary origin vary accept encoding x amz id x amz request id x content type options nosniff x xss protection mode block mc response time mc unable to validate source localdev user user data example username test txt note access is also denied when the ldap user is logged into the web console your environment minio server version release minio client version release operating system and version uname a darwin kernel version root xnu release
1
788,786
27,766,268,474
IssuesEvent
2023-03-16 11:40:00
Farfetch/kafkaflow-retry-extensions
https://api.github.com/repos/Farfetch/kafkaflow-retry-extensions
opened
[Feature Request]: Create admin Web UI - Cancellation of items
enhancement medium priority
### Is your request related to a problem you have? Be able to manage queues and items in retry, which users can deem unprocessable for any reason. ### Describe the solution you'd like Be able to have a specific UI functionality to cancel queues and specific items in a queue. Suppose we have a listing of queues, the user should be able to select multiple queues and trigger a cancel over them. Also, assuming that the user can open a queue detail (and view which items are included), he should be able to select multiple (ordered, starting on the first item) items and trigger a cancel over them. ### Are you able to help bring it to life and contribute with a Pull Request? Yes ### Additional context _No response_
1.0
[Feature Request]: Create admin Web UI - Cancellation of items - ### Is your request related to a problem you have? Be able to manage queues and items in retry, which users can deem unprocessable for any reason. ### Describe the solution you'd like Be able to have a specific UI functionality to cancel queues and specific items in a queue. Suppose we have a listing of queues, the user should be able to select multiple queues and trigger a cancel over them. Also, assuming that the user can open a queue detail (and view which items are included), he should be able to select multiple (ordered, starting on the first item) items and trigger a cancel over them. ### Are you able to help bring it to life and contribute with a Pull Request? Yes ### Additional context _No response_
priority
create admin web ui cancellation of items is your request related to a problem you have be able to manage queues and items in retry which users can deem unprocessable for any reason describe the solution you d like be able to have a specific ui functionality to cancel queues and specific items in a queue suppose we have a listing of queues the user should be able to select multiple queues and trigger a cancel over them also assuming that the user can open a queue detail and view which items are included he should be able to select multiple ordered starting on the first item items and trigger a cancel over them are you able to help bring it to life and contribute with a pull request yes additional context no response
1
140,766
5,415,816,027
IssuesEvent
2017-03-01 22:33:20
benvenutti/lili8
https://api.github.com/repos/benvenutti/lili8
closed
Add core8 package
priority: medium status: in progress type: feature
Use conan to add core8 package to the project (https://www.conan.io/source/core8/0.1/benvenutti/testing). Create a main (at lili8.cpp with a proper CMake file) to test the dependencies.
1.0
Add core8 package - Use conan to add core8 package to the project (https://www.conan.io/source/core8/0.1/benvenutti/testing). Create a main (at lili8.cpp with a proper CMake file) to test the dependencies.
priority
add package use conan to add package to the project create a main at cpp with a proper cmake file to test the dependencies
1
41,606
2,869,066,429
IssuesEvent
2015-06-05 23:03:38
dart-lang/polymer-dart
https://api.github.com/repos/dart-lang/polymer-dart
closed
Support SVGUseElement in Polymer.dart element
AssumedStale bug PolymerMilestone-Later Priority-Medium
<a href="https://github.com/ggirou"><img src="https://avatars.githubusercontent.com/u/739916?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [ggirou](https://github.com/ggirou)** _Originally opened as dart-lang/sdk#17230_ ---- **What steps will reproduce the problem?** `svg:use` tag doesn't work inside a Polymer element: &lt;polymer-element name=&quot;x-test&quot;&gt; &nbsp;&nbsp;&lt;template&gt; &nbsp;&nbsp;&lt;svg viewBox = &quot;0 0 1000 1000&quot; version = &quot;1.1&quot;&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;defs&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;!-- A circle of radius 200 --&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;circle id = &quot;s1&quot; cx = &quot;200&quot; cy = &quot;200&quot; r = &quot;200&quot; fill = &quot;yellow&quot; stroke = &quot;black&quot; stroke-width = &quot;3&quot;/&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;!-- An ellipse (rx=200,ry=150) --&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ellipse id = &quot;s2&quot; cx = &quot;200&quot; cy = &quot;150&quot; rx = &quot;200&quot; ry = &quot;150&quot; fill = &quot;salmon&quot; stroke = &quot;black&quot; stroke-width = &quot;3&quot;/&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/defs&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;use x = &quot;100&quot; y = &quot;100&quot; xlink:href = &quot;#s1&quot;/&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;use x = &quot;100&quot; y = &quot;650&quot; xlink:href = &quot;#s2&quot;/&gt; &nbsp;&nbsp;&lt;/svg&gt; &nbsp;&nbsp;&lt;/template&gt; &nbsp;&nbsp;&lt;script type=&quot;application/dart&quot; src=&quot;test.dart&quot;&gt;&lt;/script&gt; &lt;/polymer-element&gt; **What is the expected output? What do you see instead?** We should see a circle and an ellipse. **What version of the product are you using? On what operating system?** Dart Editor version 1.2.0.release (STABLE) Dart SDK version 1.2.0 polymer 0.9.5 **Please provide any additional information below.** Similar bugs in Polymer.js: https://github.com/Polymer/ShadowDOM/issues/342 https://github.com/Polymer/polymer/issues/388
1.0
Support SVGUseElement in Polymer.dart element - <a href="https://github.com/ggirou"><img src="https://avatars.githubusercontent.com/u/739916?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [ggirou](https://github.com/ggirou)** _Originally opened as dart-lang/sdk#17230_ ---- **What steps will reproduce the problem?** `svg:use` tag doesn't work inside a Polymer element: &lt;polymer-element name=&quot;x-test&quot;&gt; &nbsp;&nbsp;&lt;template&gt; &nbsp;&nbsp;&lt;svg viewBox = &quot;0 0 1000 1000&quot; version = &quot;1.1&quot;&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;defs&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;!-- A circle of radius 200 --&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;circle id = &quot;s1&quot; cx = &quot;200&quot; cy = &quot;200&quot; r = &quot;200&quot; fill = &quot;yellow&quot; stroke = &quot;black&quot; stroke-width = &quot;3&quot;/&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;!-- An ellipse (rx=200,ry=150) --&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ellipse id = &quot;s2&quot; cx = &quot;200&quot; cy = &quot;150&quot; rx = &quot;200&quot; ry = &quot;150&quot; fill = &quot;salmon&quot; stroke = &quot;black&quot; stroke-width = &quot;3&quot;/&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/defs&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;use x = &quot;100&quot; y = &quot;100&quot; xlink:href = &quot;#s1&quot;/&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;use x = &quot;100&quot; y = &quot;650&quot; xlink:href = &quot;#s2&quot;/&gt; &nbsp;&nbsp;&lt;/svg&gt; &nbsp;&nbsp;&lt;/template&gt; &nbsp;&nbsp;&lt;script type=&quot;application/dart&quot; src=&quot;test.dart&quot;&gt;&lt;/script&gt; &lt;/polymer-element&gt; **What is the expected output? What do you see instead?** We should see a circle and an ellipse. **What version of the product are you using? On what operating system?** Dart Editor version 1.2.0.release (STABLE) Dart SDK version 1.2.0 polymer 0.9.5 **Please provide any additional information below.** Similar bugs in Polymer.js: https://github.com/Polymer/ShadowDOM/issues/342 https://github.com/Polymer/polymer/issues/388
priority
support svguseelement in polymer dart element issue by originally opened as dart lang sdk what steps will reproduce the problem svg use tag doesn t work inside a polymer element lt polymer element name quot x test quot gt nbsp nbsp lt template gt nbsp nbsp lt svg viewbox quot quot version quot quot gt nbsp nbsp nbsp nbsp nbsp nbsp lt defs gt nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp lt a circle of radius gt nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp lt circle id quot quot cx quot quot cy quot quot r quot quot fill quot yellow quot stroke quot black quot stroke width quot quot gt nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp lt an ellipse rx ry gt nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp lt ellipse id quot quot cx quot quot cy quot quot rx quot quot ry quot quot fill quot salmon quot stroke quot black quot stroke width quot quot gt nbsp nbsp nbsp nbsp nbsp nbsp lt defs gt nbsp nbsp nbsp nbsp nbsp nbsp lt use x quot quot y quot quot xlink href quot quot gt nbsp nbsp nbsp nbsp nbsp nbsp lt use x quot quot y quot quot xlink href quot quot gt nbsp nbsp lt svg gt nbsp nbsp lt template gt nbsp nbsp lt script type quot application dart quot src quot test dart quot gt lt script gt lt polymer element gt what is the expected output what do you see instead we should see a circle and an ellipse what version of the product are you using on what operating system dart editor version release stable dart sdk version polymer please provide any additional information below similar bugs in polymer js
1
383,803
11,362,530,488
IssuesEvent
2020-01-26 21:53:46
Flash3388/Flash2020
https://api.github.com/repos/Flash3388/Flash2020
opened
Add safty measures that will limit automation
Priority: MEDIUM enhancement
For example, a button that disables some function that might cause problem and allow for manual spin of the motors.
1.0
Add safty measures that will limit automation - For example, a button that disables some function that might cause problem and allow for manual spin of the motors.
priority
add safty measures that will limit automation for example a button that disables some function that might cause problem and allow for manual spin of the motors
1
35,823
2,793,195,705
IssuesEvent
2015-05-11 09:19:00
airoldilab/sgd
https://api.github.com/repos/airoldilab/sgd
opened
one-dimensional learning rates should return a scalar, not a matrix
medium priority
It doesn't make sense to have them output matrices, which makes them slower in the copmutation
1.0
one-dimensional learning rates should return a scalar, not a matrix - It doesn't make sense to have them output matrices, which makes them slower in the copmutation
priority
one dimensional learning rates should return a scalar not a matrix it doesn t make sense to have them output matrices which makes them slower in the copmutation
1
790,628
27,830,858,278
IssuesEvent
2023-03-20 04:40:34
AY2223S2-CS2103-F10-2/tp
https://api.github.com/repos/AY2223S2-CS2103-F10-2/tp
closed
As a user, I can filter and find specific videos by keyword with referenced to a module and lecture
type.Story priority.Medium
find {keyword} /mod /lec
1.0
As a user, I can filter and find specific videos by keyword with referenced to a module and lecture - find {keyword} /mod /lec
priority
as a user i can filter and find specific videos by keyword with referenced to a module and lecture find keyword mod lec
1
409,852
11,968,744,771
IssuesEvent
2020-04-06 09:10:29
airshipit/airshipctl
https://api.github.com/repos/airshipit/airshipctl
closed
Add remotedirect command
enhancement priority/medium ready for review
**Problem description (if applicable)** Currently, remotedirect functionality exists under the bootstrap command. There is a desire to add more functionality to control servers outside of the bootstrap workflow, i.e. powering off the ephemeral node. This will enable #5. **Proposed change** Add a `remotedirect` command that exists outside of the `bootstrap` command. This command will include functionality to directly interact with nodes using Redfish.
1.0
Add remotedirect command - **Problem description (if applicable)** Currently, remotedirect functionality exists under the bootstrap command. There is a desire to add more functionality to control servers outside of the bootstrap workflow, i.e. powering off the ephemeral node. This will enable #5. **Proposed change** Add a `remotedirect` command that exists outside of the `bootstrap` command. This command will include functionality to directly interact with nodes using Redfish.
priority
add remotedirect command problem description if applicable currently remotedirect functionality exists under the bootstrap command there is a desire to add more functionality to control servers outside of the bootstrap workflow i e powering off the ephemeral node this will enable proposed change add a remotedirect command that exists outside of the bootstrap command this command will include functionality to directly interact with nodes using redfish
1
676,726
23,135,637,829
IssuesEvent
2022-07-28 14:07:36
pystardust/ani-cli
https://api.github.com/repos/pystardust/ani-cli
closed
ani-cli Video player not opening issue
type: bug priority 2: medium
**Metadata (please complete the following information)** Version: [e.g. 3.3.1] OS: [Android-Termux] Shell: [bashl] **Describe the bug** ani-cli is not asking which video player to use, it shows the video is playing and i have multiple video player in my phones but ani-cli is not even opening one of them. so all i have is a screen that is showing me option to quit,next, previous. **Steps To Reproduce** 1. Run `ani-cli` 2. select anime and episode number **Expected behavior** A video player should play the anime. **Screenshots (if applicable; you can just drag the image onto github)** ![image](https://user-images.githubusercontent.com/32749921/181510647-2a0f0980-af15-49b5-8711-fab546c62db0.png) So this is all i am getting, and no video player is starting to play the anime.
1.0
ani-cli Video player not opening issue - **Metadata (please complete the following information)** Version: [e.g. 3.3.1] OS: [Android-Termux] Shell: [bashl] **Describe the bug** ani-cli is not asking which video player to use, it shows the video is playing and i have multiple video player in my phones but ani-cli is not even opening one of them. so all i have is a screen that is showing me option to quit,next, previous. **Steps To Reproduce** 1. Run `ani-cli` 2. select anime and episode number **Expected behavior** A video player should play the anime. **Screenshots (if applicable; you can just drag the image onto github)** ![image](https://user-images.githubusercontent.com/32749921/181510647-2a0f0980-af15-49b5-8711-fab546c62db0.png) So this is all i am getting, and no video player is starting to play the anime.
priority
ani cli video player not opening issue metadata please complete the following information version os shell describe the bug ani cli is not asking which video player to use it shows the video is playing and i have multiple video player in my phones but ani cli is not even opening one of them so all i have is a screen that is showing me option to quit next previous steps to reproduce run ani cli select anime and episode number expected behavior a video player should play the anime screenshots if applicable you can just drag the image onto github so this is all i am getting and no video player is starting to play the anime
1
156,122
5,964,474,508
IssuesEvent
2017-05-30 08:58:57
mkdo/kapow-core
https://api.github.com/repos/mkdo/kapow-core
closed
Include a config.php and a config-local.php
Priority: Medium Status: Pending Type: Enhancement
Do this to enable the turning on and off of features within the build.
1.0
Include a config.php and a config-local.php - Do this to enable the turning on and off of features within the build.
priority
include a config php and a config local php do this to enable the turning on and off of features within the build
1
99,401
4,054,518,757
IssuesEvent
2016-05-24 12:43:45
SharpScratchMod/SharpScratchMod.github.io
https://api.github.com/repos/SharpScratchMod/SharpScratchMod.github.io
closed
Two 404 Links in Footer
bug medium priority style
Just wanted to say that there are two broken links in the footer of the webpage. (/about and /news) It brings you to the 404 page from GitHub. I'd suggest removing those two links. :)
1.0
Two 404 Links in Footer - Just wanted to say that there are two broken links in the footer of the webpage. (/about and /news) It brings you to the 404 page from GitHub. I'd suggest removing those two links. :)
priority
two links in footer just wanted to say that there are two broken links in the footer of the webpage about and news it brings you to the page from github i d suggest removing those two links
1
203,693
7,072,553,554
IssuesEvent
2018-01-09 01:15:44
DrDragonKiller/TDBugs
https://api.github.com/repos/DrDragonKiller/TDBugs
closed
blue blur behind safe wasn't transparent
Priority: medium Safe bug effort: high graphical/visual menu
the safe in the safe windows had a wierd blur. It wasn't transparent thus it looked way bigger. <img src="https://user-images.githubusercontent.com/17345712/34426899-cd8c2c68-ec3b-11e7-806d-91aea2eee647.png" width="300"> <img src="https://user-images.githubusercontent.com/17345712/34426900-cda30dde-ec3b-11e7-974f-879774bddd90.png" width="300"> (this happened after I opened a safe with 00:00:00 #24 ) I also sent an ingame feedback linking this post
1.0
blue blur behind safe wasn't transparent - the safe in the safe windows had a wierd blur. It wasn't transparent thus it looked way bigger. <img src="https://user-images.githubusercontent.com/17345712/34426899-cd8c2c68-ec3b-11e7-806d-91aea2eee647.png" width="300"> <img src="https://user-images.githubusercontent.com/17345712/34426900-cda30dde-ec3b-11e7-974f-879774bddd90.png" width="300"> (this happened after I opened a safe with 00:00:00 #24 ) I also sent an ingame feedback linking this post
priority
blue blur behind safe wasn t transparent the safe in the safe windows had a wierd blur it wasn t transparent thus it looked way bigger this happened after i opened a safe with i also sent an ingame feedback linking this post
1
470,663
13,542,521,445
IssuesEvent
2020-09-16 17:28:37
threefoldtech/freeflowconnect_frontend
https://api.github.com/repos/threefoldtech/freeflowconnect_frontend
closed
[ ANDROID CHROME ] Changing to another tab breaks the camera
priority_medium type_bug
**Repro steps** 1) Go to https://ffc.staging.jimber.org/room/patatt on chrome android 2) Change to another tab and change back **Expected Result** Chat keeps working **Actual Result** Camera breaks and stays frozen, re enabling camera does not fix this, Only a refresh does **System Info**
1.0
[ ANDROID CHROME ] Changing to another tab breaks the camera - **Repro steps** 1) Go to https://ffc.staging.jimber.org/room/patatt on chrome android 2) Change to another tab and change back **Expected Result** Chat keeps working **Actual Result** Camera breaks and stays frozen, re enabling camera does not fix this, Only a refresh does **System Info**
priority
changing to another tab breaks the camera repro steps go to on chrome android change to another tab and change back expected result chat keeps working actual result camera breaks and stays frozen re enabling camera does not fix this only a refresh does system info
1
463,432
13,265,395,940
IssuesEvent
2020-08-21 06:25:46
pingcap/dumpling
https://api.github.com/repos/pingcap/dumpling
closed
Do not log password config.
difficulty/2-medium priority/P1
## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. create dumpling in DM 2. What did you expect to see? no password in log file 3. What did you see instead? password in log file 4. Versions of the cluster - Dumpling version (run `dumpling -V`): ``` (paste Dumpling version here) ``` - Source database version (execute `SELECT version();` in a MySQL client): ``` (paste source database version here) ``` - Other interesting information (system version, hardware config, etc): > > 5. Operation logs - Please upload `dumpling.log` for Dumpling if possible - Other interesting logs 6. Configuration of the cluster and the task - running command for Dumpling if possible
1.0
Do not log password config. - ## Bug Report Please answer these questions before submitting your issue. Thanks! 1. What did you do? If possible, provide a recipe for reproducing the error. create dumpling in DM 2. What did you expect to see? no password in log file 3. What did you see instead? password in log file 4. Versions of the cluster - Dumpling version (run `dumpling -V`): ``` (paste Dumpling version here) ``` - Source database version (execute `SELECT version();` in a MySQL client): ``` (paste source database version here) ``` - Other interesting information (system version, hardware config, etc): > > 5. Operation logs - Please upload `dumpling.log` for Dumpling if possible - Other interesting logs 6. Configuration of the cluster and the task - running command for Dumpling if possible
priority
do not log password config bug report please answer these questions before submitting your issue thanks what did you do if possible provide a recipe for reproducing the error create dumpling in dm what did you expect to see no password in log file what did you see instead password in log file versions of the cluster dumpling version run dumpling v paste dumpling version here source database version execute select version in a mysql client paste source database version here other interesting information system version hardware config etc operation logs please upload dumpling log for dumpling if possible other interesting logs configuration of the cluster and the task running command for dumpling if possible
1
161,109
6,109,512,151
IssuesEvent
2017-06-21 13:15:50
Linaro/mr-provisioner
https://api.github.com/repos/Linaro/mr-provisioner
opened
Implement a REST API
difficulty/medium enhancement priority/P1
We need to design and implement a REST API for whatever tasks we want to be able to automate. This should not just be wrapping every database model into a REST endpoint, but, instead, only implementing what makes sense for the automation we have planned. I'm currently working through some high-level bits and pieces on this, and will share the current thinking later on.
1.0
Implement a REST API - We need to design and implement a REST API for whatever tasks we want to be able to automate. This should not just be wrapping every database model into a REST endpoint, but, instead, only implementing what makes sense for the automation we have planned. I'm currently working through some high-level bits and pieces on this, and will share the current thinking later on.
priority
implement a rest api we need to design and implement a rest api for whatever tasks we want to be able to automate this should not just be wrapping every database model into a rest endpoint but instead only implementing what makes sense for the automation we have planned i m currently working through some high level bits and pieces on this and will share the current thinking later on
1
311,257
9,531,066,734
IssuesEvent
2019-04-29 15:11:20
franceme/cryptoguard
https://api.github.com/repos/franceme/cryptoguard
closed
Create Java Class File(s) scan pathway
Priority: Medium Status: In Progress Type: Enhancement
Enable functionality for RigorityJ/Octopus to scan Java Class file(s). Includes Full Unit Tests.
1.0
Create Java Class File(s) scan pathway - Enable functionality for RigorityJ/Octopus to scan Java Class file(s). Includes Full Unit Tests.
priority
create java class file s scan pathway enable functionality for rigorityj octopus to scan java class file s includes full unit tests
1
380,755
11,270,824,006
IssuesEvent
2020-01-14 11:43:00
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
USER ISSUE: Connection failed
Priority: Medium
**Version:** 0.7.2.4 beta **Steps to Reproduce:** When I click on "Continue" the game trys to start, but then the message "Connection Failed" popp up. **Expected behavior:** The game should start. **Actual behavior:** Connection failed ``` --BEGIN DUMP-- Dump Time 03/14/2018 07:36:44 Exception System.AggregateException: Mindestens ein Fehler ist aufgetreten. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.ArgumentException: Ein Element mit dem gleichen Schlüssel wurde bereits hinzugefügt. bei System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) bei System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) bei Eco.Simulation.RouteProbing.RouteCache`1.Add(WorldPosition3i key, T value) --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) bei System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) bei System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) bei Eco.Core.Serialization.Serializers.DictionarySerializer`3.Decode(BinaryReader reader) bei Eco.Core.Serialization.Serializers.ClassSerializer`1.DecodeToInstance(Object& instance, BinaryReader reader) bei Eco.Core.Serialization.Serializers.ObjectSerializer.Decode(BinaryReader reader) bei Eco.Core.Serialization.SimpleSerializer.Deserialize(Stream stream) bei Eco.Core.Serialization.DataStore.Load[T](String folder, Action`2 createFunc) bei Eco.Core.Plugins.StorageManager.CreateOrLoad[StorageType](String folder, Action`1 onCreate) bei Eco.Core.Plugins.SimplePlugin`1.DoLoad(String name) bei Eco.Core.Plugins.SimplePlugin`1..ctor(String name) bei Eco.Simulation.RouteProbing.RouteProbingPlugin..ctor() --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) bei System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, Boolean nonPublic) bei System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) bei System.Activator.CreateInstance(Type type, Object[] args) bei Eco.Server.PluginManager.AddPlugin(Type pluginType, Object[] p) bei Eco.Server.PluginManager.<.ctor>b__10_3() bei System.Threading.Tasks.Task.Execute() --- Ende der internen Ausnahmestapelüberwachung --- bei System.Threading.Tasks.Task.WaitAll(Task[] tasks, Int32 millisecondsTimeout, CancellationToken cancellationToken) bei Eco.Server.PluginManager..ctor() bei Eco.Server.Startup.Start(String[] args) bei Eco.Server.MainClass.Main(String[] args) ---> (Interne Ausnahme #0) System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.ArgumentException: Ein Element mit dem gleichen Schlüssel wurde bereits hinzugefügt. bei System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) bei System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) bei Eco.Simulation.RouteProbing.RouteCache`1.Add(WorldPosition3i key, T value) --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) bei System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) bei System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) bei Eco.Core.Serialization.Serializers.DictionarySerializer`3.Decode(BinaryReader reader) bei Eco.Core.Serialization.Serializers.ClassSerializer`1.DecodeToInstance(Object& instance, BinaryReader reader) bei Eco.Core.Serialization.Serializers.ObjectSerializer.Decode(BinaryReader reader) bei Eco.Core.Serialization.SimpleSerializer.Deserialize(Stream stream) bei Eco.Core.Serialization.DataStore.Load[T](String folder, Action`2 createFunc) bei Eco.Core.Plugins.StorageManager.CreateOrLoad[StorageType](String folder, Action`1 onCreate) bei Eco.Core.Plugins.SimplePlugin`1.DoLoad(String name) bei Eco.Core.Plugins.SimplePlugin`1..ctor(String name) bei Eco.Simulation.RouteProbing.RouteProbingPlugin..ctor() --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) bei System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, Boolean nonPublic) bei System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) bei System.Activator.CreateInstance(Type type, Object[] args) bei Eco.Server.PluginManager.AddPlugin(Type pluginType, Object[] p) bei Eco.Server.PluginManager.<.ctor>b__10_3() bei System.Threading.Tasks.Task.Execute()<--- Inner Exception System.AggregateException: Mindestens ein Fehler ist aufgetreten. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.ArgumentException: Ein Element mit dem gleichen Schlüssel wurde bereits hinzugefügt. bei System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) bei System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) bei Eco.Simulation.RouteProbing.RouteCache`1.Add(WorldPosition3i key, T value) --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) bei System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) bei System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) bei Eco.Core.Serialization.Serializers.DictionarySerializer`3.Decode(BinaryReader reader) bei Eco.Core.Serialization.Serializers.ClassSerializer`1.DecodeToInstance(Object& instance, BinaryReader reader) bei Eco.Core.Serialization.Serializers.ObjectSerializer.Decode(BinaryReader reader) bei Eco.Core.Serialization.SimpleSerializer.Deserialize(Stream stream) bei Eco.Core.Serialization.DataStore.Load[T](String folder, Action`2 createFunc) bei Eco.Core.Plugins.StorageManager.CreateOrLoad[StorageType](String folder, Action`1 onCreate) bei Eco.Core.Plugins.SimplePlugin`1.DoLoad(String name) bei Eco.Core.Plugins.SimplePlugin`1..ctor(String name) bei Eco.Simulation.RouteProbing.RouteProbingPlugin..ctor() --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) bei System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, Boolean nonPublic) bei System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) bei System.Activator.CreateInstance(Type type, Object[] args) bei Eco.Server.PluginManager.AddPlugin(Type pluginType, Object[] p) bei Eco.Server.PluginManager.<.ctor>b__10_3() bei System.Threading.Tasks.Task.Execute() --- Ende der internen Ausnahmestapelüberwachung --- bei System.Threading.Tasks.Task.WaitAll(Task[] tasks, Int32 millisecondsTimeout, CancellationToken cancellationToken) bei Eco.Server.PluginManager..ctor() bei Eco.Server.Startup.Start(String[] args) bei Eco.Server.MainClass.Main(String[] args) ---> (Interne Ausnahme #0) System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.ArgumentException: Ein Element mit dem gleichen Schlüssel wurde bereits hinzugefügt. bei System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) bei System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) bei Eco.Simulation.RouteProbing.RouteCache`1.Add(WorldPosition3i key, T value) --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) bei System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) bei System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) bei Eco.Core.Serialization.Serializers.DictionarySerializer`3.Decode(BinaryReader reader) bei Eco.Core.Serialization.Serializers.ClassSerializer`1.DecodeToInstance(Object& instance, BinaryReader reader) bei Eco.Core.Serialization.Serializers.ObjectSerializer.Decode(BinaryReader reader) bei Eco.Core.Serialization.SimpleSerializer.Deserialize(Stream stream) bei Eco.Core.Serialization.DataStore.Load[T](String folder, Action`2 createFunc) bei Eco.Core.Plugins.StorageManager.CreateOrLoad[StorageType](String folder, Action`1 onCreate) bei Eco.Core.Plugins.SimplePlugin`1.DoLoad(String name) bei Eco.Core.Plugins.SimplePlugin`1..ctor(String name) bei Eco.Simulation.RouteProbing.RouteProbingPlugin..ctor() --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) bei System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, Boolean nonPublic) bei System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) bei System.Activator.CreateInstance(Type type, Object[] args) bei Eco.Server.PluginManager.AddPlugin(Type pluginType, Object[] p) bei Eco.Server.PluginManager.<.ctor>b__10_3() bei System.Threading.Tasks.Task.Execute()<--- --END DUMP-- ```
1.0
USER ISSUE: Connection failed - **Version:** 0.7.2.4 beta **Steps to Reproduce:** When I click on "Continue" the game trys to start, but then the message "Connection Failed" popp up. **Expected behavior:** The game should start. **Actual behavior:** Connection failed ``` --BEGIN DUMP-- Dump Time 03/14/2018 07:36:44 Exception System.AggregateException: Mindestens ein Fehler ist aufgetreten. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.ArgumentException: Ein Element mit dem gleichen Schlüssel wurde bereits hinzugefügt. bei System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) bei System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) bei Eco.Simulation.RouteProbing.RouteCache`1.Add(WorldPosition3i key, T value) --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) bei System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) bei System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) bei Eco.Core.Serialization.Serializers.DictionarySerializer`3.Decode(BinaryReader reader) bei Eco.Core.Serialization.Serializers.ClassSerializer`1.DecodeToInstance(Object& instance, BinaryReader reader) bei Eco.Core.Serialization.Serializers.ObjectSerializer.Decode(BinaryReader reader) bei Eco.Core.Serialization.SimpleSerializer.Deserialize(Stream stream) bei Eco.Core.Serialization.DataStore.Load[T](String folder, Action`2 createFunc) bei Eco.Core.Plugins.StorageManager.CreateOrLoad[StorageType](String folder, Action`1 onCreate) bei Eco.Core.Plugins.SimplePlugin`1.DoLoad(String name) bei Eco.Core.Plugins.SimplePlugin`1..ctor(String name) bei Eco.Simulation.RouteProbing.RouteProbingPlugin..ctor() --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) bei System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, Boolean nonPublic) bei System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) bei System.Activator.CreateInstance(Type type, Object[] args) bei Eco.Server.PluginManager.AddPlugin(Type pluginType, Object[] p) bei Eco.Server.PluginManager.<.ctor>b__10_3() bei System.Threading.Tasks.Task.Execute() --- Ende der internen Ausnahmestapelüberwachung --- bei System.Threading.Tasks.Task.WaitAll(Task[] tasks, Int32 millisecondsTimeout, CancellationToken cancellationToken) bei Eco.Server.PluginManager..ctor() bei Eco.Server.Startup.Start(String[] args) bei Eco.Server.MainClass.Main(String[] args) ---> (Interne Ausnahme #0) System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.ArgumentException: Ein Element mit dem gleichen Schlüssel wurde bereits hinzugefügt. bei System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) bei System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) bei Eco.Simulation.RouteProbing.RouteCache`1.Add(WorldPosition3i key, T value) --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) bei System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) bei System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) bei Eco.Core.Serialization.Serializers.DictionarySerializer`3.Decode(BinaryReader reader) bei Eco.Core.Serialization.Serializers.ClassSerializer`1.DecodeToInstance(Object& instance, BinaryReader reader) bei Eco.Core.Serialization.Serializers.ObjectSerializer.Decode(BinaryReader reader) bei Eco.Core.Serialization.SimpleSerializer.Deserialize(Stream stream) bei Eco.Core.Serialization.DataStore.Load[T](String folder, Action`2 createFunc) bei Eco.Core.Plugins.StorageManager.CreateOrLoad[StorageType](String folder, Action`1 onCreate) bei Eco.Core.Plugins.SimplePlugin`1.DoLoad(String name) bei Eco.Core.Plugins.SimplePlugin`1..ctor(String name) bei Eco.Simulation.RouteProbing.RouteProbingPlugin..ctor() --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) bei System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, Boolean nonPublic) bei System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) bei System.Activator.CreateInstance(Type type, Object[] args) bei Eco.Server.PluginManager.AddPlugin(Type pluginType, Object[] p) bei Eco.Server.PluginManager.<.ctor>b__10_3() bei System.Threading.Tasks.Task.Execute()<--- Inner Exception System.AggregateException: Mindestens ein Fehler ist aufgetreten. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.ArgumentException: Ein Element mit dem gleichen Schlüssel wurde bereits hinzugefügt. bei System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) bei System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) bei Eco.Simulation.RouteProbing.RouteCache`1.Add(WorldPosition3i key, T value) --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) bei System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) bei System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) bei Eco.Core.Serialization.Serializers.DictionarySerializer`3.Decode(BinaryReader reader) bei Eco.Core.Serialization.Serializers.ClassSerializer`1.DecodeToInstance(Object& instance, BinaryReader reader) bei Eco.Core.Serialization.Serializers.ObjectSerializer.Decode(BinaryReader reader) bei Eco.Core.Serialization.SimpleSerializer.Deserialize(Stream stream) bei Eco.Core.Serialization.DataStore.Load[T](String folder, Action`2 createFunc) bei Eco.Core.Plugins.StorageManager.CreateOrLoad[StorageType](String folder, Action`1 onCreate) bei Eco.Core.Plugins.SimplePlugin`1.DoLoad(String name) bei Eco.Core.Plugins.SimplePlugin`1..ctor(String name) bei Eco.Simulation.RouteProbing.RouteProbingPlugin..ctor() --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) bei System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, Boolean nonPublic) bei System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) bei System.Activator.CreateInstance(Type type, Object[] args) bei Eco.Server.PluginManager.AddPlugin(Type pluginType, Object[] p) bei Eco.Server.PluginManager.<.ctor>b__10_3() bei System.Threading.Tasks.Task.Execute() --- Ende der internen Ausnahmestapelüberwachung --- bei System.Threading.Tasks.Task.WaitAll(Task[] tasks, Int32 millisecondsTimeout, CancellationToken cancellationToken) bei Eco.Server.PluginManager..ctor() bei Eco.Server.Startup.Start(String[] args) bei Eco.Server.MainClass.Main(String[] args) ---> (Interne Ausnahme #0) System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.Reflection.TargetInvocationException: Ein Aufrufziel hat einen Ausnahmefehler verursacht. ---> System.ArgumentException: Ein Element mit dem gleichen Schlüssel wurde bereits hinzugefügt. bei System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) bei System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add) bei Eco.Simulation.RouteProbing.RouteCache`1.Add(WorldPosition3i key, T value) --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) bei System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) bei System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) bei Eco.Core.Serialization.Serializers.DictionarySerializer`3.Decode(BinaryReader reader) bei Eco.Core.Serialization.Serializers.ClassSerializer`1.DecodeToInstance(Object& instance, BinaryReader reader) bei Eco.Core.Serialization.Serializers.ObjectSerializer.Decode(BinaryReader reader) bei Eco.Core.Serialization.SimpleSerializer.Deserialize(Stream stream) bei Eco.Core.Serialization.DataStore.Load[T](String folder, Action`2 createFunc) bei Eco.Core.Plugins.StorageManager.CreateOrLoad[StorageType](String folder, Action`1 onCreate) bei Eco.Core.Plugins.SimplePlugin`1.DoLoad(String name) bei Eco.Core.Plugins.SimplePlugin`1..ctor(String name) bei Eco.Simulation.RouteProbing.RouteProbingPlugin..ctor() --- Ende der internen Ausnahmestapelüberwachung --- bei System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) bei System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, Boolean nonPublic) bei System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark) bei System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) bei System.Activator.CreateInstance(Type type, Object[] args) bei Eco.Server.PluginManager.AddPlugin(Type pluginType, Object[] p) bei Eco.Server.PluginManager.<.ctor>b__10_3() bei System.Threading.Tasks.Task.Execute()<--- --END DUMP-- ```
priority
user issue connection failed version beta steps to reproduce when i click on continue the game trys to start but then the message connection failed popp up expected behavior the game should start actual behavior connection failed begin dump dump time exception system aggregateexception mindestens ein fehler ist aufgetreten system reflection targetinvocationexception ein aufrufziel hat einen ausnahmefehler verursacht system reflection targetinvocationexception ein aufrufziel hat einen ausnahmefehler verursacht system argumentexception ein element mit dem gleichen schlüssel wurde bereits hinzugefügt bei system throwhelper throwargumentexception exceptionresource resource bei system collections generic dictionary insert tkey key tvalue value boolean add bei eco simulation routeprobing routecache add key t value ende der internen ausnahmestapelüberwachung bei system runtimemethodhandle invokemethod object target object arguments signature sig boolean constructor bei system reflection runtimemethodinfo unsafeinvokeinternal object obj object parameters object arguments bei system reflection runtimemethodinfo invoke object obj bindingflags invokeattr binder binder object parameters cultureinfo culture bei eco core serialization serializers dictionaryserializer decode binaryreader reader bei eco core serialization serializers classserializer decodetoinstance object instance binaryreader reader bei eco core serialization serializers objectserializer decode binaryreader reader bei eco core serialization simpleserializer deserialize stream stream bei eco core serialization datastore load string folder action createfunc bei eco core plugins storagemanager createorload string folder action oncreate bei eco core plugins simpleplugin doload string name bei eco core plugins simpleplugin ctor string name bei eco simulation routeprobing routeprobingplugin ctor ende der internen ausnahmestapelüberwachung bei system runtimetypehandle createinstance runtimetype type boolean publiconly boolean nocheck boolean canbecached runtimemethodhandleinternal ctor boolean bneedsecuritycheck bei system runtimetype createinstanceslow boolean publiconly boolean skipcheckthis boolean fillcache stackcrawlmark stackmark bei system activator createinstance type type boolean nonpublic bei system runtimetype createinstanceimpl bindingflags bindingattr binder binder object args cultureinfo culture object activationattributes stackcrawlmark stackmark bei system activator createinstance type type bindingflags bindingattr binder binder object args cultureinfo culture object activationattributes bei system activator createinstance type type object args bei eco server pluginmanager addplugin type plugintype object p bei eco server pluginmanager b bei system threading tasks task execute ende der internen ausnahmestapelüberwachung bei system threading tasks task waitall task tasks millisecondstimeout cancellationtoken cancellationtoken bei eco server pluginmanager ctor bei eco server startup start string args bei eco server mainclass main string args interne ausnahme system reflection targetinvocationexception ein aufrufziel hat einen ausnahmefehler verursacht system reflection targetinvocationexception ein aufrufziel hat einen ausnahmefehler verursacht system argumentexception ein element mit dem gleichen schlüssel wurde bereits hinzugefügt bei system throwhelper throwargumentexception exceptionresource resource bei system collections generic dictionary insert tkey key tvalue value boolean add bei eco simulation routeprobing routecache add key t value ende der internen ausnahmestapelüberwachung bei system runtimemethodhandle invokemethod object target object arguments signature sig boolean constructor bei system reflection runtimemethodinfo unsafeinvokeinternal object obj object parameters object arguments bei system reflection runtimemethodinfo invoke object obj bindingflags invokeattr binder binder object parameters cultureinfo culture bei eco core serialization serializers dictionaryserializer decode binaryreader reader bei eco core serialization serializers classserializer decodetoinstance object instance binaryreader reader bei eco core serialization serializers objectserializer decode binaryreader reader bei eco core serialization simpleserializer deserialize stream stream bei eco core serialization datastore load string folder action createfunc bei eco core plugins storagemanager createorload string folder action oncreate bei eco core plugins simpleplugin doload string name bei eco core plugins simpleplugin ctor string name bei eco simulation routeprobing routeprobingplugin ctor ende der internen ausnahmestapelüberwachung bei system runtimetypehandle createinstance runtimetype type boolean publiconly boolean nocheck boolean canbecached runtimemethodhandleinternal ctor boolean bneedsecuritycheck bei system runtimetype createinstanceslow boolean publiconly boolean skipcheckthis boolean fillcache stackcrawlmark stackmark bei system activator createinstance type type boolean nonpublic bei system runtimetype createinstanceimpl bindingflags bindingattr binder binder object args cultureinfo culture object activationattributes stackcrawlmark stackmark bei system activator createinstance type type bindingflags bindingattr binder binder object args cultureinfo culture object activationattributes bei system activator createinstance type type object args bei eco server pluginmanager addplugin type plugintype object p bei eco server pluginmanager b bei system threading tasks task execute inner exception system aggregateexception mindestens ein fehler ist aufgetreten system reflection targetinvocationexception ein aufrufziel hat einen ausnahmefehler verursacht system reflection targetinvocationexception ein aufrufziel hat einen ausnahmefehler verursacht system argumentexception ein element mit dem gleichen schlüssel wurde bereits hinzugefügt bei system throwhelper throwargumentexception exceptionresource resource bei system collections generic dictionary insert tkey key tvalue value boolean add bei eco simulation routeprobing routecache add key t value ende der internen ausnahmestapelüberwachung bei system runtimemethodhandle invokemethod object target object arguments signature sig boolean constructor bei system reflection runtimemethodinfo unsafeinvokeinternal object obj object parameters object arguments bei system reflection runtimemethodinfo invoke object obj bindingflags invokeattr binder binder object parameters cultureinfo culture bei eco core serialization serializers dictionaryserializer decode binaryreader reader bei eco core serialization serializers classserializer decodetoinstance object instance binaryreader reader bei eco core serialization serializers objectserializer decode binaryreader reader bei eco core serialization simpleserializer deserialize stream stream bei eco core serialization datastore load string folder action createfunc bei eco core plugins storagemanager createorload string folder action oncreate bei eco core plugins simpleplugin doload string name bei eco core plugins simpleplugin ctor string name bei eco simulation routeprobing routeprobingplugin ctor ende der internen ausnahmestapelüberwachung bei system runtimetypehandle createinstance runtimetype type boolean publiconly boolean nocheck boolean canbecached runtimemethodhandleinternal ctor boolean bneedsecuritycheck bei system runtimetype createinstanceslow boolean publiconly boolean skipcheckthis boolean fillcache stackcrawlmark stackmark bei system activator createinstance type type boolean nonpublic bei system runtimetype createinstanceimpl bindingflags bindingattr binder binder object args cultureinfo culture object activationattributes stackcrawlmark stackmark bei system activator createinstance type type bindingflags bindingattr binder binder object args cultureinfo culture object activationattributes bei system activator createinstance type type object args bei eco server pluginmanager addplugin type plugintype object p bei eco server pluginmanager b bei system threading tasks task execute ende der internen ausnahmestapelüberwachung bei system threading tasks task waitall task tasks millisecondstimeout cancellationtoken cancellationtoken bei eco server pluginmanager ctor bei eco server startup start string args bei eco server mainclass main string args interne ausnahme system reflection targetinvocationexception ein aufrufziel hat einen ausnahmefehler verursacht system reflection targetinvocationexception ein aufrufziel hat einen ausnahmefehler verursacht system argumentexception ein element mit dem gleichen schlüssel wurde bereits hinzugefügt bei system throwhelper throwargumentexception exceptionresource resource bei system collections generic dictionary insert tkey key tvalue value boolean add bei eco simulation routeprobing routecache add key t value ende der internen ausnahmestapelüberwachung bei system runtimemethodhandle invokemethod object target object arguments signature sig boolean constructor bei system reflection runtimemethodinfo unsafeinvokeinternal object obj object parameters object arguments bei system reflection runtimemethodinfo invoke object obj bindingflags invokeattr binder binder object parameters cultureinfo culture bei eco core serialization serializers dictionaryserializer decode binaryreader reader bei eco core serialization serializers classserializer decodetoinstance object instance binaryreader reader bei eco core serialization serializers objectserializer decode binaryreader reader bei eco core serialization simpleserializer deserialize stream stream bei eco core serialization datastore load string folder action createfunc bei eco core plugins storagemanager createorload string folder action oncreate bei eco core plugins simpleplugin doload string name bei eco core plugins simpleplugin ctor string name bei eco simulation routeprobing routeprobingplugin ctor ende der internen ausnahmestapelüberwachung bei system runtimetypehandle createinstance runtimetype type boolean publiconly boolean nocheck boolean canbecached runtimemethodhandleinternal ctor boolean bneedsecuritycheck bei system runtimetype createinstanceslow boolean publiconly boolean skipcheckthis boolean fillcache stackcrawlmark stackmark bei system activator createinstance type type boolean nonpublic bei system runtimetype createinstanceimpl bindingflags bindingattr binder binder object args cultureinfo culture object activationattributes stackcrawlmark stackmark bei system activator createinstance type type bindingflags bindingattr binder binder object args cultureinfo culture object activationattributes bei system activator createinstance type type object args bei eco server pluginmanager addplugin type plugintype object p bei eco server pluginmanager b bei system threading tasks task execute end dump
1
467,113
13,441,338,017
IssuesEvent
2020-09-08 03:48:49
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
closed
Login Information screen, password should get an "eye" to toggle it on and off.
Has-PR bug priority: medium
**Describe the bug** On the login screen there is an eye to toggle it on/off - https://prnt.sc/sptj2v But our Login information screen does not - https://prnt.sc/tnopcu **Expected behavior** We should add the "eye" on the password field/s on Profile > Account > Login Information screen. **Screenshots** https://prnt.sc/sptj2v https://prnt.sc/tnopcu **Support ticket links** Reported on Youtube video: https://www.youtube.com/watch?v=p196OOrAF-A&lc=UgxxxsCqwh8GxteWxot4AaABAg&feature=em-comments **Related Issue** https://github.com/buddyboss/buddyboss-platform/issues/944
1.0
Login Information screen, password should get an "eye" to toggle it on and off. - **Describe the bug** On the login screen there is an eye to toggle it on/off - https://prnt.sc/sptj2v But our Login information screen does not - https://prnt.sc/tnopcu **Expected behavior** We should add the "eye" on the password field/s on Profile > Account > Login Information screen. **Screenshots** https://prnt.sc/sptj2v https://prnt.sc/tnopcu **Support ticket links** Reported on Youtube video: https://www.youtube.com/watch?v=p196OOrAF-A&lc=UgxxxsCqwh8GxteWxot4AaABAg&feature=em-comments **Related Issue** https://github.com/buddyboss/buddyboss-platform/issues/944
priority
login information screen password should get an eye to toggle it on and off describe the bug on the login screen there is an eye to toggle it on off but our login information screen does not expected behavior we should add the eye on the password field s on profile account login information screen screenshots support ticket links reported on youtube video related issue
1
795,858
28,089,446,074
IssuesEvent
2023-03-30 12:07:18
kdt-final-3/salarying-be
https://api.github.com/repos/kdt-final-3/salarying-be
opened
feat: 인재 상세 페이지 서비스 - 지원자 찜하기 및 탈락인재 보관함 등록
For: API Priority: Medium Status: In Progress Type: Feature
## Description(설명) 인재 상세 페이지 서비스 - 지원자에 대한 찜 등록 / 해제 처리 기능 구현 - 합격하지 못한 지원자를 탈락인재 보관함에 등록하는 기능 구현 ## Tasks(New feature) - [ ] 지원자 찜 등록 / 해제 - [ ] 탈락인재 보관함 등록 / 해제
1.0
feat: 인재 상세 페이지 서비스 - 지원자 찜하기 및 탈락인재 보관함 등록 - ## Description(설명) 인재 상세 페이지 서비스 - 지원자에 대한 찜 등록 / 해제 처리 기능 구현 - 합격하지 못한 지원자를 탈락인재 보관함에 등록하는 기능 구현 ## Tasks(New feature) - [ ] 지원자 찜 등록 / 해제 - [ ] 탈락인재 보관함 등록 / 해제
priority
feat 인재 상세 페이지 서비스 지원자 찜하기 및 탈락인재 보관함 등록 description 설명 인재 상세 페이지 서비스 지원자에 대한 찜 등록 해제 처리 기능 구현 합격하지 못한 지원자를 탈락인재 보관함에 등록하는 기능 구현 tasks new feature 지원자 찜 등록 해제 탈락인재 보관함 등록 해제
1
434,572
12,520,205,491
IssuesEvent
2020-06-03 15:31:18
geosolutions-it/MapStore2
https://api.github.com/repos/geosolutions-it/MapStore2
opened
Map info data wrongly requested for static map configurations
Priority: Medium bug
## Description <!-- Add here a few sentences describing the bug. --> Map info data wrongly requested for static map configurations. ![image](https://user-images.githubusercontent.com/19175505/83655629-ec986100-a5be-11ea-9c3c-6f35a29d2cff.png) - `/rest/geostore/extjs/resource/{mapId}` - `/rest/geostore/resources/resource/{mapId}/attributes` - `/rest/geostore/data/{mapId}` Note: MapStore can detect static map configuration when the `mapId` in the path `#/viewer/{mapType}/{mapId}` is alphanumeric. ## How to reproduce <!-- A list of steps to reproduce the bug --> - open a static configuration map ( eg. `#/viewer/oprnlayers/config` ) *Expected Result* <!-- Describe here the expected result --> Only the json with the static configuration should be requested *Current Result* <!-- Describe here the current behavior --> Additional map info are requested and they throw a 404 error in network - [x] Not browser related <details><summary> <b>Browser info</b> </summary> <!-- If browser related, please compile the following table --> <!-- If your browser is not in the list please add a new row to the table with the version --> (use this site: <a href="https://www.whatsmybrowser.org/">https://www.whatsmybrowser.org/</a> for non expert users) | Browser Affected | Version | |---|---| |Internet Explorer| | |Edge| | |Chrome| | |Firefox| | |Safari| | </details> ## Other useful information <!-- error stack trace, screenshot, videos, or link to repository code are welcome -->
1.0
Map info data wrongly requested for static map configurations - ## Description <!-- Add here a few sentences describing the bug. --> Map info data wrongly requested for static map configurations. ![image](https://user-images.githubusercontent.com/19175505/83655629-ec986100-a5be-11ea-9c3c-6f35a29d2cff.png) - `/rest/geostore/extjs/resource/{mapId}` - `/rest/geostore/resources/resource/{mapId}/attributes` - `/rest/geostore/data/{mapId}` Note: MapStore can detect static map configuration when the `mapId` in the path `#/viewer/{mapType}/{mapId}` is alphanumeric. ## How to reproduce <!-- A list of steps to reproduce the bug --> - open a static configuration map ( eg. `#/viewer/oprnlayers/config` ) *Expected Result* <!-- Describe here the expected result --> Only the json with the static configuration should be requested *Current Result* <!-- Describe here the current behavior --> Additional map info are requested and they throw a 404 error in network - [x] Not browser related <details><summary> <b>Browser info</b> </summary> <!-- If browser related, please compile the following table --> <!-- If your browser is not in the list please add a new row to the table with the version --> (use this site: <a href="https://www.whatsmybrowser.org/">https://www.whatsmybrowser.org/</a> for non expert users) | Browser Affected | Version | |---|---| |Internet Explorer| | |Edge| | |Chrome| | |Firefox| | |Safari| | </details> ## Other useful information <!-- error stack trace, screenshot, videos, or link to repository code are welcome -->
priority
map info data wrongly requested for static map configurations description map info data wrongly requested for static map configurations rest geostore extjs resource mapid rest geostore resources resource mapid attributes rest geostore data mapid note mapstore can detect static map configuration when the mapid in the path viewer maptype mapid is alphanumeric how to reproduce open a static configuration map eg viewer oprnlayers config expected result only the json with the static configuration should be requested current result additional map info are requested and they throw a error in network not browser related browser info use this site a href for non expert users browser affected version internet explorer edge chrome firefox safari other useful information
1
48,831
3,000,285,307
IssuesEvent
2015-07-24 00:06:11
opendatakit/opendatakit
https://api.github.com/repos/opendatakit/opendatakit
closed
ODK Survey: ENOENT (no such file or directory)
Priority-Medium Survey Type-Other
Originally reported on Google Code with ID 850 ``` When trying to get form "Common Javascript Framework" (version 20140308) in ODK Survey (version 2.0 Alpha rev 105) receive error message: "open failed: ENOENT (No such file or directory)." Same error message received when trying to get "Example Form" (version 20130408). Behavior experienced on Asus Nexus 7 running Android 4.2.2. ``` Reported by `fitzed` on 2013-06-18 19:29:24
1.0
ODK Survey: ENOENT (no such file or directory) - Originally reported on Google Code with ID 850 ``` When trying to get form "Common Javascript Framework" (version 20140308) in ODK Survey (version 2.0 Alpha rev 105) receive error message: "open failed: ENOENT (No such file or directory)." Same error message received when trying to get "Example Form" (version 20130408). Behavior experienced on Asus Nexus 7 running Android 4.2.2. ``` Reported by `fitzed` on 2013-06-18 19:29:24
priority
odk survey enoent no such file or directory originally reported on google code with id when trying to get form common javascript framework version in odk survey version alpha rev receive error message open failed enoent no such file or directory same error message received when trying to get example form version behavior experienced on asus nexus running android reported by fitzed on
1
56,257
3,078,642,267
IssuesEvent
2015-08-21 11:45:37
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
Не сохраняются настройки панели инструментов
bug imported Priority-Medium
_From [shkiper911@list.ru](https://code.google.com/u/shkiper911@list.ru/) on August 13, 2011 20:30:44_ Перестали сохраняются настройки панели инструментов. После перезапуска программы они сбрасываются. Глюк появился в последней версии r501 beta20. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=532_
1.0
Не сохраняются настройки панели инструментов - _From [shkiper911@list.ru](https://code.google.com/u/shkiper911@list.ru/) on August 13, 2011 20:30:44_ Перестали сохраняются настройки панели инструментов. После перезапуска программы они сбрасываются. Глюк появился в последней версии r501 beta20. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=532_
priority
не сохраняются настройки панели инструментов from on august перестали сохраняются настройки панели инструментов после перезапуска программы они сбрасываются глюк появился в последней версии original issue
1
144,845
5,546,777,766
IssuesEvent
2017-03-23 02:26:04
CS2103JAN2017-F12-B2/main
https://api.github.com/repos/CS2103JAN2017-F12-B2/main
closed
as a user, I want to know that the index I want to delete is out of range
priority.medium type.bug
when trying to delete an index out of range, toDoApp will do nothing. However, should return "The task index provided is invalid"
1.0
as a user, I want to know that the index I want to delete is out of range - when trying to delete an index out of range, toDoApp will do nothing. However, should return "The task index provided is invalid"
priority
as a user i want to know that the index i want to delete is out of range when trying to delete an index out of range todoapp will do nothing however should return the task index provided is invalid
1
244,408
7,874,986,546
IssuesEvent
2018-06-25 18:52:05
less/less.js
https://api.github.com/repos/less/less.js
reopened
LESS Code Style Checker / Parser to save whitespace information
feature request medium priority
I am looking for a tool for LESS that does what [`node-jscs`](https://github.com/mdevils/node-jscs) does for JavaScript. It would be useful on project with large teams to enforce a code style throughout the LESS files. I could not find any such tool on npm. I guess the only technical aspect blocking one from using the LESS Parser from this package to build such a tool is that the Parser discards all whitespace information when building the tree. Otherwise, if one were to build a code style tool one would have to write a new parser for LESS. I propose an optional setting for the Parser that would make it save the whitespace information in the tree. Hopefully others out there would use such a tool (LESS code style checker).
1.0
LESS Code Style Checker / Parser to save whitespace information - I am looking for a tool for LESS that does what [`node-jscs`](https://github.com/mdevils/node-jscs) does for JavaScript. It would be useful on project with large teams to enforce a code style throughout the LESS files. I could not find any such tool on npm. I guess the only technical aspect blocking one from using the LESS Parser from this package to build such a tool is that the Parser discards all whitespace information when building the tree. Otherwise, if one were to build a code style tool one would have to write a new parser for LESS. I propose an optional setting for the Parser that would make it save the whitespace information in the tree. Hopefully others out there would use such a tool (LESS code style checker).
priority
less code style checker parser to save whitespace information i am looking for a tool for less that does what does for javascript it would be useful on project with large teams to enforce a code style throughout the less files i could not find any such tool on npm i guess the only technical aspect blocking one from using the less parser from this package to build such a tool is that the parser discards all whitespace information when building the tree otherwise if one were to build a code style tool one would have to write a new parser for less i propose an optional setting for the parser that would make it save the whitespace information in the tree hopefully others out there would use such a tool less code style checker
1
543,503
15,883,121,390
IssuesEvent
2021-04-09 16:56:47
ansible/awx
https://api.github.com/repos/ansible/awx
closed
Missing Python module openshift in image ansible/awx_task:latest
component:installer priority:medium state:needs_devel type:enhancement
##### ISSUE TYPE - Bug Report ##### COMPONENT NAME - Installer ##### SUMMARY I played around with the k8s plugin in Ansible and set up an according project on AWX. The playbook contains a task for creating an OpenShift namespace. My configured job aborted with an error: `"msg": "This module requires the OpenShift Python client. Try pip install openshift"` Due to user restrictions in OpenShift I'm not able to install the Python module manually. ##### ENVIRONMENT * AWX version: 2.0.1 * AWX install method: openshift/minishift * Ansible version: 2.7.0 * Operating System: macOS * Web Browser: Chrome ##### STEPS TO REPRODUCE - Install AWX on OpenShift/MiniShift - Create an ansible git project containing this task: ``` - name: Create a k8s namespace k8s: host: <OPENSHIFT_HOST_IP> username: <OPENSHIFT_USER> password: <OPENSHIFT_PASSWORD> name: sampleproject api_version: v1 kind: Namespace state: present ``` - Set up project, inventory - Create and run job ##### EXPECTED RESULTS - AWX interacts with my OpenShift/MiniShift environment, i.e. the k8s plugin is fully usable. ##### ACTUAL RESULTS - Job aborts with error: `"msg": "This module requires the OpenShift Python client. Try pip install openshift"` ##### ADDITIONAL INFORMATION <!-- Include any links to sosreport, database dumps, screenshots or other information. -->
1.0
Missing Python module openshift in image ansible/awx_task:latest - ##### ISSUE TYPE - Bug Report ##### COMPONENT NAME - Installer ##### SUMMARY I played around with the k8s plugin in Ansible and set up an according project on AWX. The playbook contains a task for creating an OpenShift namespace. My configured job aborted with an error: `"msg": "This module requires the OpenShift Python client. Try pip install openshift"` Due to user restrictions in OpenShift I'm not able to install the Python module manually. ##### ENVIRONMENT * AWX version: 2.0.1 * AWX install method: openshift/minishift * Ansible version: 2.7.0 * Operating System: macOS * Web Browser: Chrome ##### STEPS TO REPRODUCE - Install AWX on OpenShift/MiniShift - Create an ansible git project containing this task: ``` - name: Create a k8s namespace k8s: host: <OPENSHIFT_HOST_IP> username: <OPENSHIFT_USER> password: <OPENSHIFT_PASSWORD> name: sampleproject api_version: v1 kind: Namespace state: present ``` - Set up project, inventory - Create and run job ##### EXPECTED RESULTS - AWX interacts with my OpenShift/MiniShift environment, i.e. the k8s plugin is fully usable. ##### ACTUAL RESULTS - Job aborts with error: `"msg": "This module requires the OpenShift Python client. Try pip install openshift"` ##### ADDITIONAL INFORMATION <!-- Include any links to sosreport, database dumps, screenshots or other information. -->
priority
missing python module openshift in image ansible awx task latest issue type bug report component name installer summary i played around with the plugin in ansible and set up an according project on awx the playbook contains a task for creating an openshift namespace my configured job aborted with an error msg this module requires the openshift python client try pip install openshift due to user restrictions in openshift i m not able to install the python module manually environment awx version awx install method openshift minishift ansible version operating system macos web browser chrome steps to reproduce install awx on openshift minishift create an ansible git project containing this task name create a namespace host username password name sampleproject api version kind namespace state present set up project inventory create and run job expected results awx interacts with my openshift minishift environment i e the plugin is fully usable actual results job aborts with error msg this module requires the openshift python client try pip install openshift additional information include any links to sosreport database dumps screenshots or other information
1
25,461
2,683,808,070
IssuesEvent
2015-03-28 10:27:38
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
closed
Fix far borders
2–5 stars bug imported Priority-Medium
_From [andrew.grechkin](https://code.google.com/u/andrew.grechkin/) on June 26, 2009 19:31:25_ Версия ОС: XP SP3 Версия FAR: Far Manager, version 2.0 (build 1003) x86 Описание бага... При использовании опции Fix Far borders, появляется возможность использовать шрифты в которых нет поддержки псевдографических символов, но есть одно но: Зачем-то при включении этой опции перерисовываются еще первые 32 символа, а так же символы с 249 по 255, и они становятся очень некрасивыми. Хотелось бы чтобы опция Far borders отвечала именно за символы псевдографики и не трогала лишних. Я понимаю что возможно другие люди просили вас чтобы работало именно так как сейчас, но может быть лучше разделить Fix Far borders и добавить еще опцию которая бы включала перерисовку первых 32 и последних символов. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=25_
1.0
Fix far borders - _From [andrew.grechkin](https://code.google.com/u/andrew.grechkin/) on June 26, 2009 19:31:25_ Версия ОС: XP SP3 Версия FAR: Far Manager, version 2.0 (build 1003) x86 Описание бага... При использовании опции Fix Far borders, появляется возможность использовать шрифты в которых нет поддержки псевдографических символов, но есть одно но: Зачем-то при включении этой опции перерисовываются еще первые 32 символа, а так же символы с 249 по 255, и они становятся очень некрасивыми. Хотелось бы чтобы опция Far borders отвечала именно за символы псевдографики и не трогала лишних. Я понимаю что возможно другие люди просили вас чтобы работало именно так как сейчас, но может быть лучше разделить Fix Far borders и добавить еще опцию которая бы включала перерисовку первых 32 и последних символов. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=25_
priority
fix far borders from on june версия ос xp версия far far manager version build описание бага при использовании опции fix far borders появляется возможность использовать шрифты в которых нет поддержки псевдографических символов но есть одно но зачем то при включении этой опции перерисовываются еще первые символа а так же символы с по и они становятся очень некрасивыми хотелось бы чтобы опция far borders отвечала именно за символы псевдографики и не трогала лишних я понимаю что возможно другие люди просили вас чтобы работало именно так как сейчас но может быть лучше разделить fix far borders и добавить еще опцию которая бы включала перерисовку первых и последних символов original issue
1
516,646
14,985,605,006
IssuesEvent
2021-01-28 20:10:18
coyim/coyim
https://api.github.com/repos/coyim/coyim
reopened
Be notified when you are removed as admin (10.7)
Estimate - medium MUC MUC - Room Owner Capabilities Functionality Priority: Now State: Done
When an owner decides to remove admin affiliation for a user, that user should be notified. Since this, at least in theory, can happen even when the owner or the admin are not actually inside the room, we might need two notifications - one when there is no room view open, and one when it's open. The notification should say different things depending on what the new affiliation of the user is. **Note:** Please see the reference on https://xmpp.org/extensions/xep-0045.html
1.0
Be notified when you are removed as admin (10.7) - When an owner decides to remove admin affiliation for a user, that user should be notified. Since this, at least in theory, can happen even when the owner or the admin are not actually inside the room, we might need two notifications - one when there is no room view open, and one when it's open. The notification should say different things depending on what the new affiliation of the user is. **Note:** Please see the reference on https://xmpp.org/extensions/xep-0045.html
priority
be notified when you are removed as admin when an owner decides to remove admin affiliation for a user that user should be notified since this at least in theory can happen even when the owner or the admin are not actually inside the room we might need two notifications one when there is no room view open and one when it s open the notification should say different things depending on what the new affiliation of the user is note please see the reference on
1
40,470
2,868,921,559
IssuesEvent
2015-06-05 21:58:36
dart-lang/pub
https://api.github.com/repos/dart-lang/pub
closed
Add some third-party packages to pub.dartlang.org
bug Fixed Priority-Medium
<a href="https://github.com/munificent"><img src="https://avatars.githubusercontent.com/u/46275?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [munificent](https://github.com/munificent)** _Originally opened as dart-lang/sdk#4973_ ---- Right now, pubsite doesn't have a UI for letting normal users upload their own packages, and won't until after launch. We do want to have some third-party packages on their at M1, though. So we should hand-select a couple, work with their owners and manually add them to pub.dartlang.org on their behalf.
1.0
Add some third-party packages to pub.dartlang.org - <a href="https://github.com/munificent"><img src="https://avatars.githubusercontent.com/u/46275?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [munificent](https://github.com/munificent)** _Originally opened as dart-lang/sdk#4973_ ---- Right now, pubsite doesn't have a UI for letting normal users upload their own packages, and won't until after launch. We do want to have some third-party packages on their at M1, though. So we should hand-select a couple, work with their owners and manually add them to pub.dartlang.org on their behalf.
priority
add some third party packages to pub dartlang org issue by originally opened as dart lang sdk right now pubsite doesn t have a ui for letting normal users upload their own packages and won t until after launch we do want to have some third party packages on their at though so we should hand select a couple work with their owners and manually add them to pub dartlang org on their behalf
1
78,620
3,511,866,970
IssuesEvent
2016-01-10 16:33:07
jekyll/jekyll-assets
https://api.github.com/repos/jekyll/jekyll-assets
closed
Javascript compress?
bug cant-reproduce priority:medium ★★★★
Hello, Reading the README jekyll-assets should compress my javascript. But it doesn't seams to work. I probably miss something either a gem or a config... _config.yml: ``` [...] # Assets settings. gems: - jekyll-assets - mini_magick assets: skip_baseurl_with_cdn: false skip_prefix_with_cdn: false prefix: "/assets" digest: false sources: - /assets features: liquid: false automatic_img_size: false automatic_img_alt : false [...] ``` _includes/_head.html: ``` [...] {% javascript js/main %} [...] ``` _assets/js/main.js: ``` //= require js/vendor/jquery.min //= require js/vendor/bootstrap.min //= require js/plugins/bootstrap-formhelpers //= require js/plugins/ekko-lightbox //= require js/plugins/jquery.validate ```
1.0
Javascript compress? - Hello, Reading the README jekyll-assets should compress my javascript. But it doesn't seams to work. I probably miss something either a gem or a config... _config.yml: ``` [...] # Assets settings. gems: - jekyll-assets - mini_magick assets: skip_baseurl_with_cdn: false skip_prefix_with_cdn: false prefix: "/assets" digest: false sources: - /assets features: liquid: false automatic_img_size: false automatic_img_alt : false [...] ``` _includes/_head.html: ``` [...] {% javascript js/main %} [...] ``` _assets/js/main.js: ``` //= require js/vendor/jquery.min //= require js/vendor/bootstrap.min //= require js/plugins/bootstrap-formhelpers //= require js/plugins/ekko-lightbox //= require js/plugins/jquery.validate ```
priority
javascript compress hello reading the readme jekyll assets should compress my javascript but it doesn t seams to work i probably miss something either a gem or a config config yml assets settings gems jekyll assets mini magick assets skip baseurl with cdn false skip prefix with cdn false prefix assets digest false sources assets features liquid false automatic img size false automatic img alt false includes head html javascript js main assets js main js require js vendor jquery min require js vendor bootstrap min require js plugins bootstrap formhelpers require js plugins ekko lightbox require js plugins jquery validate
1
113,949
4,581,967,551
IssuesEvent
2016-09-19 08:29:04
LARP-Platform-Team/larp-platform
https://api.github.com/repos/LARP-Platform-Team/larp-platform
closed
Не обновляются роли на форме редактирования персонажа
complexity:medium component:Управление Играми priority:major type:bug workflow:resolved
Сделать обновление без обновления страницы
1.0
Не обновляются роли на форме редактирования персонажа - Сделать обновление без обновления страницы
priority
не обновляются роли на форме редактирования персонажа сделать обновление без обновления страницы
1
721,950
24,844,692,698
IssuesEvent
2022-10-26 15:03:24
AY2223S1-CS2113-F11-4/tp
https://api.github.com/repos/AY2223S1-CS2113-F11-4/tp
closed
Revert chnages for edit prescription
type.Task priority.Medium
Revert the edit prescription function to edit the prescription itself instead of deactivating the original one and add a new one.
1.0
Revert chnages for edit prescription - Revert the edit prescription function to edit the prescription itself instead of deactivating the original one and add a new one.
priority
revert chnages for edit prescription revert the edit prescription function to edit the prescription itself instead of deactivating the original one and add a new one
1
705,244
24,227,588,780
IssuesEvent
2022-09-26 15:29:45
mito-ds/monorepo
https://api.github.com/repos/mito-ds/monorepo
closed
Upgrade displays the install checklist
effort: 3 priority: medium next-bug-squash
When I run the upgrade command it displays the checklist, which includes language about installing <img width="831" alt="Screen Shot 2022-07-31 at 5 33 37 PM" src="https://user-images.githubusercontent.com/18709905/182046216-c4b0c2e2-3ea1-4ee4-a826-cb7b96b12d6e.png">
1.0
Upgrade displays the install checklist - When I run the upgrade command it displays the checklist, which includes language about installing <img width="831" alt="Screen Shot 2022-07-31 at 5 33 37 PM" src="https://user-images.githubusercontent.com/18709905/182046216-c4b0c2e2-3ea1-4ee4-a826-cb7b96b12d6e.png">
priority
upgrade displays the install checklist when i run the upgrade command it displays the checklist which includes language about installing img width alt screen shot at pm src
1
588,688
17,668,858,714
IssuesEvent
2021-08-23 00:53:09
gw2efficiency/issues
https://api.github.com/repos/gw2efficiency/issues
closed
Show guild storage contents
1-Type: Feature 2-Priority: B 3-Complexity: Low 5-Area: Account 9-Status: For next release 4-Impact: Medium
It turns out `/guild/:id/storage` exists, which I didnt know about. Resolvable against `/guild/upgrades`.
1.0
Show guild storage contents - It turns out `/guild/:id/storage` exists, which I didnt know about. Resolvable against `/guild/upgrades`.
priority
show guild storage contents it turns out guild id storage exists which i didnt know about resolvable against guild upgrades
1
553,458
16,372,244,583
IssuesEvent
2021-05-15 11:22:19
pesos/grofer
https://api.github.com/repos/pesos/grofer
closed
Library Migration
enhancement help wanted on-hold priority: medium
**Is your request related to a problem? Please describe.** Running `grofer` on certain terminal dimensions causes the Network and Memory graphs to go past the widget borders. This is most likely a bug in [termui](https://github.com/gizak/termui), which is no longer maintained. **Describe the solution you'd like** Migrating to another library like [termdash](https://github.com/mum4k/termdash) would be one possible solution, which has cleaner looking widgets and could prove to be better for future applications. Further discussion on compatibility and ease of migration is required. A new branch could be created for this migration. **Screenshots** ![issues](https://user-images.githubusercontent.com/44816445/89521094-85846c00-d7fc-11ea-9e92-79fb055e5c97.png) **Desktop (please complete the following information):** * OS: Kubuntu 18.04 * Terminal: konsole 17.12.3 * Go: 1.14.6
1.0
Library Migration - **Is your request related to a problem? Please describe.** Running `grofer` on certain terminal dimensions causes the Network and Memory graphs to go past the widget borders. This is most likely a bug in [termui](https://github.com/gizak/termui), which is no longer maintained. **Describe the solution you'd like** Migrating to another library like [termdash](https://github.com/mum4k/termdash) would be one possible solution, which has cleaner looking widgets and could prove to be better for future applications. Further discussion on compatibility and ease of migration is required. A new branch could be created for this migration. **Screenshots** ![issues](https://user-images.githubusercontent.com/44816445/89521094-85846c00-d7fc-11ea-9e92-79fb055e5c97.png) **Desktop (please complete the following information):** * OS: Kubuntu 18.04 * Terminal: konsole 17.12.3 * Go: 1.14.6
priority
library migration is your request related to a problem please describe running grofer on certain terminal dimensions causes the network and memory graphs to go past the widget borders this is most likely a bug in which is no longer maintained describe the solution you d like migrating to another library like would be one possible solution which has cleaner looking widgets and could prove to be better for future applications further discussion on compatibility and ease of migration is required a new branch could be created for this migration screenshots desktop please complete the following information os kubuntu terminal konsole go
1
168,992
6,393,159,342
IssuesEvent
2017-08-04 06:23:47
HAS-CRM/IssueTracker
https://api.github.com/repos/HAS-CRM/IssueTracker
closed
Multiple Occurrences: Wrong customer code selected [Amy]
Priority.Medium Status.Done Type.ChangeRequest
Background: Due to the formation of FIBU, which contains identical account with different customer code. When selecting account, the account looks extremely similar and it is easy to select account with the wrong customer code.
1.0
Multiple Occurrences: Wrong customer code selected [Amy] - Background: Due to the formation of FIBU, which contains identical account with different customer code. When selecting account, the account looks extremely similar and it is easy to select account with the wrong customer code.
priority
multiple occurrences wrong customer code selected background due to the formation of fibu which contains identical account with different customer code when selecting account the account looks extremely similar and it is easy to select account with the wrong customer code
1
271,321
8,482,683,631
IssuesEvent
2018-10-25 19:15:12
bounswe/bounswe2018group10
https://api.github.com/repos/bounswe/bounswe2018group10
opened
Sign up should auto login
bug priority: medium
<!--You can use this issue template for creating your issues. Try to stick to it as much as possible. Any modifications to the issue template itself are welcome.---> ### I'm submitting a ... <!--Check the most relevant one with an x--> - [x] bug report ### Expected behavior When a user signs up, the system should also login. ### Actual behavior When a user signs up, the user is redirected to login page. ### Steps to reproduce the behavior 1. On homepage click sign up button. 1. Fill the form. 1. Press sign up button at the bottom of the form.
1.0
Sign up should auto login - <!--You can use this issue template for creating your issues. Try to stick to it as much as possible. Any modifications to the issue template itself are welcome.---> ### I'm submitting a ... <!--Check the most relevant one with an x--> - [x] bug report ### Expected behavior When a user signs up, the system should also login. ### Actual behavior When a user signs up, the user is redirected to login page. ### Steps to reproduce the behavior 1. On homepage click sign up button. 1. Fill the form. 1. Press sign up button at the bottom of the form.
priority
sign up should auto login you can use this issue template for creating your issues try to stick to it as much as possible any modifications to the issue template itself are welcome i m submitting a bug report expected behavior when a user signs up the system should also login actual behavior when a user signs up the user is redirected to login page steps to reproduce the behavior on homepage click sign up button fill the form press sign up button at the bottom of the form
1
507,932
14,684,737,235
IssuesEvent
2021-01-01 04:55:51
ragaeeb/quran10
https://api.github.com/repos/ragaeeb/quran10
closed
Integrate King Fahad complex translations
Component-Persistence Milestone-Release4.0 Priority-Medium Type-Enhancement auto-migrated enhancement
``` Since these are the most authentic and correct translations, use the King Fahad complex translations which also include the tafsir in there as well. ``` Original issue reported on code.google.com by `canadai...@gmail.com` on 27 Jul 2013 at 5:50
1.0
Integrate King Fahad complex translations - ``` Since these are the most authentic and correct translations, use the King Fahad complex translations which also include the tafsir in there as well. ``` Original issue reported on code.google.com by `canadai...@gmail.com` on 27 Jul 2013 at 5:50
priority
integrate king fahad complex translations since these are the most authentic and correct translations use the king fahad complex translations which also include the tafsir in there as well original issue reported on code google com by canadai gmail com on jul at
1
590,570
17,781,138,985
IssuesEvent
2021-08-31 04:43:55
The-Academic-Observatory/observatory-platform
https://api.github.com/repos/The-Academic-Observatory/observatory-platform
closed
REPORTS: Provide clean repository with examples for COKI use
Priority: Medium Observatory: Reports
Clean up the existing coki-reports repository and provide some stripped down examples of report generation.
1.0
REPORTS: Provide clean repository with examples for COKI use - Clean up the existing coki-reports repository and provide some stripped down examples of report generation.
priority
reports provide clean repository with examples for coki use clean up the existing coki reports repository and provide some stripped down examples of report generation
1
672,148
22,793,088,416
IssuesEvent
2022-07-10 09:53:43
stax76/mpv.net
https://api.github.com/repos/stax76/mpv.net
closed
auto-load-folder not working
bug fixed/added priority medium
**Describe the bug** Autoplay near doubles the amount of files in your playlist and either plays files in random order or repeats itself. **To Reproduce** Steps to reproduce the behavior: 1. Go into any folder with several video files ie (S01E01, S01E02, etc) 2. Click on any file, preferrably one that isn't the very first in the folder 3. Skip to next file 4. Player will jump back to the 1st file in the folder and double the amount of files in the playlist 5. If the bug does not occur for you on step 4 repeat steps 2 and 3, you may have to do this anywhere from 5-20 times before it happens **Expected behavior** For the autoplay to play the files in order and for the playlist to have the correct amount of files. **Screenshot** ![playlist](https://user-images.githubusercontent.com/54498049/176997186-5b2a15a8-b06d-4a55-9dd6-b1c00dcdd6ac.jpg) Playlist is supposed to be 8 files total, as you can see it has counted it as 15. **Additional context** Weirdly enough this does not seem to happen every time, so you may have to exit the player and try again a few times to replicate the bug. Reason I say preferrably not the first is just that it is easier to spot when the bug occurs this way because it jumps back to the first file in the folder, it still happens when you start from the first. I wish it was easier to reproduce because you may have to try at this 5-20 times before the bug even appears, and when it does you'll notice the playlist gets broken, sometimes files are in order and just repeated twice, sometimes they're in a random order. I cleared my mpv.net config folder to ensure this wasn't some compatability issue with past settings I had used for older versions, and the bug still persists. I have gone back and tested 5.7.0.0 and this bug does not occur on that version, or 5.8.0.0
1.0
auto-load-folder not working - **Describe the bug** Autoplay near doubles the amount of files in your playlist and either plays files in random order or repeats itself. **To Reproduce** Steps to reproduce the behavior: 1. Go into any folder with several video files ie (S01E01, S01E02, etc) 2. Click on any file, preferrably one that isn't the very first in the folder 3. Skip to next file 4. Player will jump back to the 1st file in the folder and double the amount of files in the playlist 5. If the bug does not occur for you on step 4 repeat steps 2 and 3, you may have to do this anywhere from 5-20 times before it happens **Expected behavior** For the autoplay to play the files in order and for the playlist to have the correct amount of files. **Screenshot** ![playlist](https://user-images.githubusercontent.com/54498049/176997186-5b2a15a8-b06d-4a55-9dd6-b1c00dcdd6ac.jpg) Playlist is supposed to be 8 files total, as you can see it has counted it as 15. **Additional context** Weirdly enough this does not seem to happen every time, so you may have to exit the player and try again a few times to replicate the bug. Reason I say preferrably not the first is just that it is easier to spot when the bug occurs this way because it jumps back to the first file in the folder, it still happens when you start from the first. I wish it was easier to reproduce because you may have to try at this 5-20 times before the bug even appears, and when it does you'll notice the playlist gets broken, sometimes files are in order and just repeated twice, sometimes they're in a random order. I cleared my mpv.net config folder to ensure this wasn't some compatability issue with past settings I had used for older versions, and the bug still persists. I have gone back and tested 5.7.0.0 and this bug does not occur on that version, or 5.8.0.0
priority
auto load folder not working describe the bug autoplay near doubles the amount of files in your playlist and either plays files in random order or repeats itself to reproduce steps to reproduce the behavior go into any folder with several video files ie etc click on any file preferrably one that isn t the very first in the folder skip to next file player will jump back to the file in the folder and double the amount of files in the playlist if the bug does not occur for you on step repeat steps and you may have to do this anywhere from times before it happens expected behavior for the autoplay to play the files in order and for the playlist to have the correct amount of files screenshot playlist is supposed to be files total as you can see it has counted it as additional context weirdly enough this does not seem to happen every time so you may have to exit the player and try again a few times to replicate the bug reason i say preferrably not the first is just that it is easier to spot when the bug occurs this way because it jumps back to the first file in the folder it still happens when you start from the first i wish it was easier to reproduce because you may have to try at this times before the bug even appears and when it does you ll notice the playlist gets broken sometimes files are in order and just repeated twice sometimes they re in a random order i cleared my mpv net config folder to ensure this wasn t some compatability issue with past settings i had used for older versions and the bug still persists i have gone back and tested and this bug does not occur on that version or
1
30,565
2,724,042,141
IssuesEvent
2015-04-14 15:44:19
CruxFramework/crux-widgets
https://api.github.com/repos/CruxFramework/crux-widgets
closed
Crux Installer - the message about missing GWT jars is not clear
enhancement imported Milestone-4.0.0 Priority-Medium
_From [ge...@cruxframework.org](https://code.google.com/u/108728025643241132101/) on July 20, 2011 16:25:59_ A newbie user may not understand that the folder of the jars to be informed must be the GWT installation root. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=265_
1.0
Crux Installer - the message about missing GWT jars is not clear - _From [ge...@cruxframework.org](https://code.google.com/u/108728025643241132101/) on July 20, 2011 16:25:59_ A newbie user may not understand that the folder of the jars to be informed must be the GWT installation root. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=265_
priority
crux installer the message about missing gwt jars is not clear from on july a newbie user may not understand that the folder of the jars to be informed must be the gwt installation root original issue
1
820,597
30,779,770,538
IssuesEvent
2023-07-31 09:12:50
vscentrum/vsc-software-stack
https://api.github.com/repos/vscentrum/vsc-software-stack
opened
medaka
difficulty: medium priority: medium site:ugent conda easyconfig
* link to support ticket: [#2023072860000271](https://otrsdict.ugent.be/otrs/index.pl?Action=AgentTicketZoom;TicketID=126026) * website: https://github.com/nanoporetech/medaka * installation docs: https://github.com/nanoporetech/medaka * toolchain: `not specifies 2022a or 2022b` * easyblock to use: `PythonBundle' * required dependencies: * [ ] Python with cffi == 1.15.0 OR * [ ] cffi == 1.15.0 * [ ] Tensorflow ~= v2.8.0 * optional dependencies: * * notes: * latest version of medaka (currently 1.8.1) * effort: *(TBD)* * other install methods * conda: yes (https://github.com/nanoporetech/medaka) * container image: yes (link?) / no * pre-built binaries (RHEL8 Linux x86_64): yes (link?) / no * easyconfig outside EasyBuild: yes / no
1.0
medaka - * link to support ticket: [#2023072860000271](https://otrsdict.ugent.be/otrs/index.pl?Action=AgentTicketZoom;TicketID=126026) * website: https://github.com/nanoporetech/medaka * installation docs: https://github.com/nanoporetech/medaka * toolchain: `not specifies 2022a or 2022b` * easyblock to use: `PythonBundle' * required dependencies: * [ ] Python with cffi == 1.15.0 OR * [ ] cffi == 1.15.0 * [ ] Tensorflow ~= v2.8.0 * optional dependencies: * * notes: * latest version of medaka (currently 1.8.1) * effort: *(TBD)* * other install methods * conda: yes (https://github.com/nanoporetech/medaka) * container image: yes (link?) / no * pre-built binaries (RHEL8 Linux x86_64): yes (link?) / no * easyconfig outside EasyBuild: yes / no
priority
medaka link to support ticket website installation docs toolchain not specifies or easyblock to use pythonbundle required dependencies python with cffi or cffi tensorflow optional dependencies notes latest version of medaka currently effort tbd other install methods conda yes container image yes link no pre built binaries linux yes link no easyconfig outside easybuild yes no
1
552,397
16,240,058,819
IssuesEvent
2021-05-07 08:25:27
LDSSA/portal
https://api.github.com/repos/LDSSA/portal
opened
Create infrastructure terraform Part I
enhancement priority:medium
The terraform should: * Have shared state in an s3 bucket * Create a database for batch5 We keep all infrastructure as code in the `portal-deployment` repo.
1.0
Create infrastructure terraform Part I - The terraform should: * Have shared state in an s3 bucket * Create a database for batch5 We keep all infrastructure as code in the `portal-deployment` repo.
priority
create infrastructure terraform part i the terraform should have shared state in an bucket create a database for we keep all infrastructure as code in the portal deployment repo
1
445,320
12,828,979,872
IssuesEvent
2020-07-06 21:42:44
umple/umple
https://api.github.com/repos/umple/umple
closed
Incorrect class diagram drawn by GraphViz when there is an ampersand in a variable comment
Component-UmpleOnline Diffic-Easy Priority-Medium bug
The following is independent of recent bugs related to ampersands as it existed both before and afterwards. If you enter the following code and generate a GraphViz class diagram (G), X and Y appear on their own without boxes and without attributes. If you take out an ampersand from a comment all goes back to normal for that class. Note just editing a comment deliberately doesn't cause a diagram redraw, so you have to edit a variable (e.g., change its name) to force a new diagram to be drawn. ``` class X { a; // This is a test & more stuff b; c; } class Y { qr; // & another comment qs; } ```
1.0
Incorrect class diagram drawn by GraphViz when there is an ampersand in a variable comment - The following is independent of recent bugs related to ampersands as it existed both before and afterwards. If you enter the following code and generate a GraphViz class diagram (G), X and Y appear on their own without boxes and without attributes. If you take out an ampersand from a comment all goes back to normal for that class. Note just editing a comment deliberately doesn't cause a diagram redraw, so you have to edit a variable (e.g., change its name) to force a new diagram to be drawn. ``` class X { a; // This is a test & more stuff b; c; } class Y { qr; // & another comment qs; } ```
priority
incorrect class diagram drawn by graphviz when there is an ampersand in a variable comment the following is independent of recent bugs related to ampersands as it existed both before and afterwards if you enter the following code and generate a graphviz class diagram g x and y appear on their own without boxes and without attributes if you take out an ampersand from a comment all goes back to normal for that class note just editing a comment deliberately doesn t cause a diagram redraw so you have to edit a variable e g change its name to force a new diagram to be drawn class x a this is a test more stuff b c class y qr another comment qs
1
41,378
2,869,001,871
IssuesEvent
2015-06-05 22:29:59
dart-lang/barback
https://api.github.com/repos/dart-lang/barback
opened
An asset whose path is a prefix of another should cause a collision
bug Priority-Medium
<a href="https://github.com/munificent"><img src="https://avatars.githubusercontent.com/u/46275?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [munificent](https://github.com/munificent)** _Originally opened as dart-lang/sdk#17150_ ---- Since barback doesn't have a concept of directories, it's possible to emit two assets like: foo/bar // a file &quot;bar&quot; with no extension foo/bar/baz.txt That will fail horribly with something like pub build when it tries to output those two files. Instead of allowing this, barback should probably treat that like a collision.
1.0
An asset whose path is a prefix of another should cause a collision - <a href="https://github.com/munificent"><img src="https://avatars.githubusercontent.com/u/46275?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [munificent](https://github.com/munificent)** _Originally opened as dart-lang/sdk#17150_ ---- Since barback doesn't have a concept of directories, it's possible to emit two assets like: foo/bar // a file &quot;bar&quot; with no extension foo/bar/baz.txt That will fail horribly with something like pub build when it tries to output those two files. Instead of allowing this, barback should probably treat that like a collision.
priority
an asset whose path is a prefix of another should cause a collision issue by originally opened as dart lang sdk since barback doesn t have a concept of directories it s possible to emit two assets like foo bar a file quot bar quot with no extension foo bar baz txt that will fail horribly with something like pub build when it tries to output those two files instead of allowing this barback should probably treat that like a collision
1
314,333
9,595,583,705
IssuesEvent
2019-05-09 16:23:44
EUCweb/BIS-F
https://api.github.com/repos/EUCweb/BIS-F
opened
Disable Microsoft Office updates
Priority: Medium Type: Enhancement
Microsoft Updates updates should be disabled during the sealing process to avoid updates from running on production machines. The installed version Office should be detected and the registry values to disable Office updates should be added automatically. https://social.technet.microsoft.com/Forums/en-US/9124a98f-50c8-4bde-8104-5d18200a31b4/office-365-how-to-temorarily-disable-the-update-feature-for-all-users?forum=Office2016ITPro
1.0
Disable Microsoft Office updates - Microsoft Updates updates should be disabled during the sealing process to avoid updates from running on production machines. The installed version Office should be detected and the registry values to disable Office updates should be added automatically. https://social.technet.microsoft.com/Forums/en-US/9124a98f-50c8-4bde-8104-5d18200a31b4/office-365-how-to-temorarily-disable-the-update-feature-for-all-users?forum=Office2016ITPro
priority
disable microsoft office updates microsoft updates updates should be disabled during the sealing process to avoid updates from running on production machines the installed version office should be detected and the registry values to disable office updates should be added automatically
1
94,135
3,921,638,722
IssuesEvent
2016-04-22 00:19:30
Maroski/VRProject
https://api.github.com/repos/Maroski/VRProject
closed
Improve the fireball mechanics
enhancement Priority - Medium
Things we should figure out: - Find a nice amount of time to propel the fireball before it explodes - Find a nice distance to keep the shrine activated for - Add a visual representation of the shrine's AoE - Get the fireball to explode when it collides with any (collidable) object - Add a firing rate timer and find a nice sweet spot to prevent spam shots and to minimize wait time when you miss - Consider replacing the use of a force with the use of a custom update method to propel the fireball. To make it easier to fine tune acceleration for instance. Another option would be to make initial velocity/acceleration fields in the fireball object and to convert those into impulse force/continuous force values to be used when the fireball is fired/in it's update loop. Some of these points will come down to fine tuning and may even change between shrines, but we should try to play test to get something that feels close to right.
1.0
Improve the fireball mechanics - Things we should figure out: - Find a nice amount of time to propel the fireball before it explodes - Find a nice distance to keep the shrine activated for - Add a visual representation of the shrine's AoE - Get the fireball to explode when it collides with any (collidable) object - Add a firing rate timer and find a nice sweet spot to prevent spam shots and to minimize wait time when you miss - Consider replacing the use of a force with the use of a custom update method to propel the fireball. To make it easier to fine tune acceleration for instance. Another option would be to make initial velocity/acceleration fields in the fireball object and to convert those into impulse force/continuous force values to be used when the fireball is fired/in it's update loop. Some of these points will come down to fine tuning and may even change between shrines, but we should try to play test to get something that feels close to right.
priority
improve the fireball mechanics things we should figure out find a nice amount of time to propel the fireball before it explodes find a nice distance to keep the shrine activated for add a visual representation of the shrine s aoe get the fireball to explode when it collides with any collidable object add a firing rate timer and find a nice sweet spot to prevent spam shots and to minimize wait time when you miss consider replacing the use of a force with the use of a custom update method to propel the fireball to make it easier to fine tune acceleration for instance another option would be to make initial velocity acceleration fields in the fireball object and to convert those into impulse force continuous force values to be used when the fireball is fired in it s update loop some of these points will come down to fine tuning and may even change between shrines but we should try to play test to get something that feels close to right
1
482,693
13,911,900,543
IssuesEvent
2020-10-20 18:03:36
cds-snc/report-a-cybercrime
https://api.github.com/repos/cds-snc/report-a-cybercrime
closed
Should not leave blank after "and" word at summary page
bug medium priority
## Summary If the user clicks all or some options before or after Other option in "How were your money or finances affected?" page, and don't put anything in the text area of other option. At summary page, it should not leave blank before and after "and" word at summary page. Currently, it shows "Method of Payment: E-transfer, Credit card, Gift card, Cryptocurrency, and " or "Method of Payment: and Cryptocurrency ![image](https://user-images.githubusercontent.com/60269104/96188823-65b0a900-0f0d-11eb-9d36-26d6b7db0ae7.png) ![image](https://user-images.githubusercontent.com/60269104/96189405-6c8beb80-0f0e-11eb-8645-df55f6e89a43.png) ## Steps to reproduce 1. Submit a report 2. At page "How were your money or finances affected?", click all options but don't put anything in other text area OR click other option first and then the other options 3. Complete the report until reach to summary page ## Unresolved questions > Are there any related issues you consider out of scope for this issue that could be addressed in the future?
1.0
Should not leave blank after "and" word at summary page - ## Summary If the user clicks all or some options before or after Other option in "How were your money or finances affected?" page, and don't put anything in the text area of other option. At summary page, it should not leave blank before and after "and" word at summary page. Currently, it shows "Method of Payment: E-transfer, Credit card, Gift card, Cryptocurrency, and " or "Method of Payment: and Cryptocurrency ![image](https://user-images.githubusercontent.com/60269104/96188823-65b0a900-0f0d-11eb-9d36-26d6b7db0ae7.png) ![image](https://user-images.githubusercontent.com/60269104/96189405-6c8beb80-0f0e-11eb-8645-df55f6e89a43.png) ## Steps to reproduce 1. Submit a report 2. At page "How were your money or finances affected?", click all options but don't put anything in other text area OR click other option first and then the other options 3. Complete the report until reach to summary page ## Unresolved questions > Are there any related issues you consider out of scope for this issue that could be addressed in the future?
priority
should not leave blank after and word at summary page summary if the user clicks all or some options before or after other option in how were your money or finances affected page and don t put anything in the text area of other option at summary page it should not leave blank before and after and word at summary page currently it shows method of payment e transfer credit card gift card cryptocurrency and or method of payment and cryptocurrency steps to reproduce submit a report at page how were your money or finances affected click all options but don t put anything in other text area or click other option first and then the other options complete the report until reach to summary page unresolved questions are there any related issues you consider out of scope for this issue that could be addressed in the future
1
778,390
27,314,393,777
IssuesEvent
2023-02-24 14:39:25
scaleway/terraform-provider-scaleway
https://api.github.com/repos/scaleway/terraform-provider-scaleway
closed
add data source for scaleway_lb_backend and scaleway_lb_backends
enhancement load-balancer priority:medium
<!--- Please keep this note for the community ---> ### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Description - Get a backend in a given load balancer - List backends in a given load balancer ### New or Affected Resource(s) <!--- Please list the new or affected resources and data sources. ---> - [x] #1784 - [x] #1802 ### Potential Terraform Configuration <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> ```hcl # Copy-paste your Terraform configurations here - for large Terraform configs, # please use a service like Dropbox and share a link to the ZIP file. For # security, you can also encrypt the files using our GPG public key. ``` ### References <!--- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests ---> * #0000
1.0
add data source for scaleway_lb_backend and scaleway_lb_backends - <!--- Please keep this note for the community ---> ### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Description - Get a backend in a given load balancer - List backends in a given load balancer ### New or Affected Resource(s) <!--- Please list the new or affected resources and data sources. ---> - [x] #1784 - [x] #1802 ### Potential Terraform Configuration <!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code ---> ```hcl # Copy-paste your Terraform configurations here - for large Terraform configs, # please use a service like Dropbox and share a link to the ZIP file. For # security, you can also encrypt the files using our GPG public key. ``` ### References <!--- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests ---> * #0000
priority
add data source for scaleway lb backend and scaleway lb backends community note please vote on this issue by adding a 👍 to the original issue to help the community and maintainers prioritize this request please do not leave or other comments that do not add relevant new information or questions they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment description get a backend in a given load balancer list backends in a given load balancer new or affected resource s potential terraform configuration hcl copy paste your terraform configurations here for large terraform configs please use a service like dropbox and share a link to the zip file for security you can also encrypt the files using our gpg public key references information about referencing github issues
1
57,141
3,081,243,142
IssuesEvent
2015-08-22 14:33:32
bitfighter/bitfighter
https://api.github.com/repos/bitfighter/bitfighter
closed
Any key to remove error.
enhancement imported Priority-Medium wontfix
_From [Cory.Pou...@gmail.com](https://code.google.com/u/105220164791991617712/) on January 06, 2014 11:14:16_ Currently when you get a error In the level editor or disconnected from a server And hit the red box you must press esc to remove the error. Why not make it any key or a mouse click as this is not very user friendly. _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=364_
1.0
Any key to remove error. - _From [Cory.Pou...@gmail.com](https://code.google.com/u/105220164791991617712/) on January 06, 2014 11:14:16_ Currently when you get a error In the level editor or disconnected from a server And hit the red box you must press esc to remove the error. Why not make it any key or a mouse click as this is not very user friendly. _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=364_
priority
any key to remove error from on january currently when you get a error in the level editor or disconnected from a server and hit the red box you must press esc to remove the error why not make it any key or a mouse click as this is not very user friendly original issue
1
492,994
14,224,130,723
IssuesEvent
2020-11-17 19:12:36
PastVu/pastvu
https://api.github.com/repos/PastVu/pastvu
closed
Show site version in production
Admin CI/CD Priority: Medium
Выводить в консоль версию **собранного** приложения, как здесь: https://github.com/PastVu/pastvu/issues/245#issuecomment-725949475 ![](https://user-images.githubusercontent.com/329780/98919825-3454da00-24c7-11eb-805b-cb074868f4f4.png) Нужно отображать раздельно версию как фронтенда, так и бэкенда, так как фронтенд обслуживается отдельным контейнером.
1.0
Show site version in production - Выводить в консоль версию **собранного** приложения, как здесь: https://github.com/PastVu/pastvu/issues/245#issuecomment-725949475 ![](https://user-images.githubusercontent.com/329780/98919825-3454da00-24c7-11eb-805b-cb074868f4f4.png) Нужно отображать раздельно версию как фронтенда, так и бэкенда, так как фронтенд обслуживается отдельным контейнером.
priority
show site version in production выводить в консоль версию собранного приложения как здесь нужно отображать раздельно версию как фронтенда так и бэкенда так как фронтенд обслуживается отдельным контейнером
1
445,338
12,829,148,902
IssuesEvent
2020-07-06 22:07:41
MrLever/VoidEngine
https://api.github.com/repos/MrLever/VoidEngine
opened
Banish dynamic allocation in property access
Improvement:Optimization Priority:Medium
Blocked by #168 - [ ] Add constexpr constructors for TypeDescriptor - [ ] Constexpr ClassDataInterface accessors - [ ] Return span of std::array of properties of size m_Data.GetProperties()
1.0
Banish dynamic allocation in property access - Blocked by #168 - [ ] Add constexpr constructors for TypeDescriptor - [ ] Constexpr ClassDataInterface accessors - [ ] Return span of std::array of properties of size m_Data.GetProperties()
priority
banish dynamic allocation in property access blocked by add constexpr constructors for typedescriptor constexpr classdatainterface accessors return span of std array of properties of size m data getproperties
1
217,022
7,313,966,232
IssuesEvent
2018-03-01 04:13:34
minio/minio
https://api.github.com/repos/minio/minio
closed
Issue starting minio server on MacOS (not using docker or home-brew)
priority: medium
When you try to launch minio via launchd (launchctl) on boot it does not work because it cannot find a home directory. A home directory seems to be a requirement even if --config-dir is used on the command line. ## Expected Behavior Home directory should not be required if --config-dir is passed. ## Current Behavior Code exits with an error. ## Possible Solution I believe the problem is in this code from config-dir.go : func mustGetDefaultConfigDir() string { homeDir, err := homedir.Dir() fatalIf(err, "Unable to get home directory.") return filepath.Join(homeDir, defaultMinioConfigDir) } Either this function should not be called if the config-dir is passed in, or this function should be modified to return the value from config-dir instead of failing. ## Steps to Reproduce (for bugs) Try to start on macOS at root without homer ## Context ## Your Environment I was able to work around this by adding the following to my plist file : <key>EnvironmentVariables</key> <dict> <key>HOME</key> <string> ---insert valid home dir here--- </string> </dict>
1.0
Issue starting minio server on MacOS (not using docker or home-brew) - When you try to launch minio via launchd (launchctl) on boot it does not work because it cannot find a home directory. A home directory seems to be a requirement even if --config-dir is used on the command line. ## Expected Behavior Home directory should not be required if --config-dir is passed. ## Current Behavior Code exits with an error. ## Possible Solution I believe the problem is in this code from config-dir.go : func mustGetDefaultConfigDir() string { homeDir, err := homedir.Dir() fatalIf(err, "Unable to get home directory.") return filepath.Join(homeDir, defaultMinioConfigDir) } Either this function should not be called if the config-dir is passed in, or this function should be modified to return the value from config-dir instead of failing. ## Steps to Reproduce (for bugs) Try to start on macOS at root without homer ## Context ## Your Environment I was able to work around this by adding the following to my plist file : <key>EnvironmentVariables</key> <dict> <key>HOME</key> <string> ---insert valid home dir here--- </string> </dict>
priority
issue starting minio server on macos not using docker or home brew when you try to launch minio via launchd launchctl on boot it does not work because it cannot find a home directory a home directory seems to be a requirement even if config dir is used on the command line expected behavior home directory should not be required if config dir is passed current behavior code exits with an error possible solution i believe the problem is in this code from config dir go func mustgetdefaultconfigdir string homedir err homedir dir fatalif err unable to get home directory return filepath join homedir defaultminioconfigdir either this function should not be called if the config dir is passed in or this function should be modified to return the value from config dir instead of failing steps to reproduce for bugs try to start on macos at root without homer context your environment i was able to work around this by adding the following to my plist file environmentvariables home insert valid home dir here
1
177,394
6,583,259,811
IssuesEvent
2017-09-13 04:21:57
opencurrents/opencurrents
https://api.github.com/repos/opencurrents/opencurrents
closed
create-event & edit-event: Invite unregistered coordinator to openCurrents
mvp priority medium
If admin who is creating an event selects someone else to be the coordinator, we need to check to see if this person has an account. If not, we need to send an invite email and inform the admin that he/she will remain the coordinator until the other admin creates an account.
1.0
create-event & edit-event: Invite unregistered coordinator to openCurrents - If admin who is creating an event selects someone else to be the coordinator, we need to check to see if this person has an account. If not, we need to send an invite email and inform the admin that he/she will remain the coordinator until the other admin creates an account.
priority
create event edit event invite unregistered coordinator to opencurrents if admin who is creating an event selects someone else to be the coordinator we need to check to see if this person has an account if not we need to send an invite email and inform the admin that he she will remain the coordinator until the other admin creates an account
1
699,895
24,036,367,225
IssuesEvent
2022-09-15 19:35:24
visit-dav/visit
https://api.github.com/repos/visit-dav/visit
closed
Mili plugin doesn't use initial nodal positions correctly.
bug likelihood high impact medium priority engineering
### Describe the bug The Mili plugin does attempt to get *initial* nodal positions from Mili via `mc_load_nodes` but it winds up favoring `nodpos` results data when those are available. These are not the same. And, it effects VisIt's ability to compute displacements.
1.0
Mili plugin doesn't use initial nodal positions correctly. - ### Describe the bug The Mili plugin does attempt to get *initial* nodal positions from Mili via `mc_load_nodes` but it winds up favoring `nodpos` results data when those are available. These are not the same. And, it effects VisIt's ability to compute displacements.
priority
mili plugin doesn t use initial nodal positions correctly describe the bug the mili plugin does attempt to get initial nodal positions from mili via mc load nodes but it winds up favoring nodpos results data when those are available these are not the same and it effects visit s ability to compute displacements
1
629,352
20,030,138,562
IssuesEvent
2022-02-02 04:07:12
TheButterbrotMan/Awesome-Plates
https://api.github.com/repos/TheButterbrotMan/Awesome-Plates
opened
Feature: Random Damage
enhancement Medium priority
### Is your feature request related to a problem? Please describe. _No response_ ### Describe the solution you'd like On crafting instead of 4 durability damage Hammers could lose from 1-4 + could take heavy damage or break completly. Maybe with a sound when the hammer breaks ### Additional context _No response_
1.0
Feature: Random Damage - ### Is your feature request related to a problem? Please describe. _No response_ ### Describe the solution you'd like On crafting instead of 4 durability damage Hammers could lose from 1-4 + could take heavy damage or break completly. Maybe with a sound when the hammer breaks ### Additional context _No response_
priority
feature random damage is your feature request related to a problem please describe no response describe the solution you d like on crafting instead of durability damage hammers could lose from could take heavy damage or break completly maybe with a sound when the hammer breaks additional context no response
1
344,132
10,340,162,365
IssuesEvent
2019-09-03 21:10:13
cuappdev/uplift-ios
https://api.github.com/repos/cuappdev/uplift-ios
opened
Gym busy times showing inconsistent titles
Priority: Medium Type: Bug
The Gym view will display a histogram of open hours and their associated busyness under the "Busy Times" label. Selecting one of the histogram's bars should display a label with the selected time and a message depending on the busyness of that particular time ("Not too busy", "A little busy", or "As busy as it gets"). However, the view currently displays labels inconsistent with the gym's busyness at that particular time, eg it will display "Not too busy" for a certain label, and "A little busy" for both labels with higher and lower busyness. It is worthwhile investigating `Histogram.swift` to see where this error is coming from.
1.0
Gym busy times showing inconsistent titles - The Gym view will display a histogram of open hours and their associated busyness under the "Busy Times" label. Selecting one of the histogram's bars should display a label with the selected time and a message depending on the busyness of that particular time ("Not too busy", "A little busy", or "As busy as it gets"). However, the view currently displays labels inconsistent with the gym's busyness at that particular time, eg it will display "Not too busy" for a certain label, and "A little busy" for both labels with higher and lower busyness. It is worthwhile investigating `Histogram.swift` to see where this error is coming from.
priority
gym busy times showing inconsistent titles the gym view will display a histogram of open hours and their associated busyness under the busy times label selecting one of the histogram s bars should display a label with the selected time and a message depending on the busyness of that particular time not too busy a little busy or as busy as it gets however the view currently displays labels inconsistent with the gym s busyness at that particular time eg it will display not too busy for a certain label and a little busy for both labels with higher and lower busyness it is worthwhile investigating histogram swift to see where this error is coming from
1
110,735
4,440,559,216
IssuesEvent
2016-08-19 04:29:45
mmisw/orr-portal
https://api.github.com/repos/mmisw/orr-portal
closed
google analytics
enhancement Priority-Medium
Primarily to track access to ontologies, but could be enabled also for other pages (sparql, search-terms, organizations, users, etc)
1.0
google analytics - Primarily to track access to ontologies, but could be enabled also for other pages (sparql, search-terms, organizations, users, etc)
priority
google analytics primarily to track access to ontologies but could be enabled also for other pages sparql search terms organizations users etc
1
117,797
4,727,735,181
IssuesEvent
2016-10-18 14:16:46
zoonproject/zoon
https://api.github.com/repos/zoonproject/zoon
closed
Rasters with different resolutions
enhancement module Priority - medium
Easiest way is a covariate module that does `localRastersAndFixResolution`. i.e. Read in two local raster and reduce resolution to lowest resolution. But further on we might want a meta module or a new verb or an argument or something.
1.0
Rasters with different resolutions - Easiest way is a covariate module that does `localRastersAndFixResolution`. i.e. Read in two local raster and reduce resolution to lowest resolution. But further on we might want a meta module or a new verb or an argument or something.
priority
rasters with different resolutions easiest way is a covariate module that does localrastersandfixresolution i e read in two local raster and reduce resolution to lowest resolution but further on we might want a meta module or a new verb or an argument or something
1
54,324
3,066,331,704
IssuesEvent
2015-08-18 00:35:37
theminted/lesswrong-migrated
https://api.github.com/repos/theminted/lesswrong-migrated
closed
Uploading an image with the same name overwrites the original one
bug imported Priority-Medium
_From [wjmo...@gmail.com](https://code.google.com/u/117567618910921056910/) on February 04, 2009 16:22:54_ When an image is uploaded for a post if it is given the same name as an existing image uploaded for the post it will replace it. There probably should be a warning about this. _Original issue: http://code.google.com/p/lesswrong/issues/detail?id=32_
1.0
Uploading an image with the same name overwrites the original one - _From [wjmo...@gmail.com](https://code.google.com/u/117567618910921056910/) on February 04, 2009 16:22:54_ When an image is uploaded for a post if it is given the same name as an existing image uploaded for the post it will replace it. There probably should be a warning about this. _Original issue: http://code.google.com/p/lesswrong/issues/detail?id=32_
priority
uploading an image with the same name overwrites the original one from on february when an image is uploaded for a post if it is given the same name as an existing image uploaded for the post it will replace it there probably should be a warning about this original issue
1
48,057
2,990,138,843
IssuesEvent
2015-07-21 07:14:02
jayway/rest-assured
https://api.github.com/repos/jayway/rest-assured
closed
Path params doesn't work for ports
bug imported Priority-Medium
_From [johan.ha...@gmail.com](https://code.google.com/u/105676376875942041029/) on November 26, 2013 10:04:35_ E.g. get("http://localhost:{port}/sns/{resource}/size 8765, resource); It work in releases prior to 1.9.0 _Original issue: http://code.google.com/p/rest-assured/issues/detail?id=275_
1.0
Path params doesn't work for ports - _From [johan.ha...@gmail.com](https://code.google.com/u/105676376875942041029/) on November 26, 2013 10:04:35_ E.g. get("http://localhost:{port}/sns/{resource}/size 8765, resource); It work in releases prior to 1.9.0 _Original issue: http://code.google.com/p/rest-assured/issues/detail?id=275_
priority
path params doesn t work for ports from on november e g get resource it work in releases prior to original issue
1
6,572
2,589,856,419
IssuesEvent
2015-02-18 15:34:56
olga-jane/prizm
https://api.github.com/repos/olga-jane/prizm
closed
CheckBox "Deactivate pipe"
bug bug - functional Coding MEDIUM priority Mill pipe
Mill->New pipe->Inspection operations. If I want to deactivate pipe then click "No", as a result CheckBox checked. But it must be unchecked.
1.0
CheckBox "Deactivate pipe" - Mill->New pipe->Inspection operations. If I want to deactivate pipe then click "No", as a result CheckBox checked. But it must be unchecked.
priority
checkbox deactivate pipe mill new pipe inspection operations if i want to deactivate pipe then click no as a result checkbox checked but it must be unchecked
1
423,738
12,301,376,223
IssuesEvent
2020-05-11 15:19:26
perslab/CELLEX
https://api.github.com/repos/perslab/CELLEX
opened
Warn if negative gene expression values
check&catch medium priority
Print warning if receiving negative gene expression values.
1.0
Warn if negative gene expression values - Print warning if receiving negative gene expression values.
priority
warn if negative gene expression values print warning if receiving negative gene expression values
1
388,342
11,486,808,221
IssuesEvent
2020-02-11 10:39:36
canonical-web-and-design/ubuntu.com
https://api.github.com/repos/canonical-web-and-design/ubuntu.com
closed
/download/raspberry-pi - replace logo
Priority: Medium
replace raspberry pi logo with this one: https://assets.ubuntu.com/v1/a8a6238c-RGB+RPi.svg --- *Reported from: https://ubuntu.com/download/raspberry-pi*
1.0
/download/raspberry-pi - replace logo - replace raspberry pi logo with this one: https://assets.ubuntu.com/v1/a8a6238c-RGB+RPi.svg --- *Reported from: https://ubuntu.com/download/raspberry-pi*
priority
download raspberry pi replace logo replace raspberry pi logo with this one reported from
1
107,947
4,322,439,366
IssuesEvent
2016-07-25 14:06:33
Metaswitch/cpp-common
https://api.github.com/repos/Metaswitch/cpp-common
closed
Crash in AlarmReqAgent
bug medium-priority
#### Symptoms A node that uses the alarm agent crashed with the following call stack: ``` #0 0x00007fc80c00fcc9 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56 #1 0x00007fc80c0130d8 in __GI_abort () at abort.c:89 #2 0x00000000004da4e6 in signal_handler (sig=6) at main.cpp:201 #3 <signal handler called> #4 0x00007fc80c00fcc9 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56 #5 0x00007fc80c0130d8 in __GI_abort () at abort.c:89 #6 0x00007fc80d014f39 in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #7 0x00007fc80d02baee in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #8 0x00007fc80d0182f7 in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #9 0x00007fc80d02cb06 in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #10 0x00007fc80d02d10f in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #11 0x00007fc80d040cd9 in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #12 0x00007fc80d040d49 in zmq_recv () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #13 0x000000000040dabd in AlarmReqAgent::agent (this=0x97dd40 <AlarmReqAgent::_instance>) at ../modules/cpp-common/src/alarm.cpp:481 #14 0x000000000040de59 in AlarmReqAgent::agent_thread (alarm_req_agent=<optimized out>) at ../modules/cpp-common/src/alarm.cpp:366 #15 0x00007fc80dd86182 in start_thread (arg=0x7fc801ffb700) at pthread_create.c:312 #16 0x00007fc80c0d347d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111 ``` #### Impact Depends on the parent process, but it could lead to call failures (e.g. if sprout hit it). #### Release and environment Seen when using this cpp-common commit: 1daad3245832748a4ae8a0850b57a925f73462c3 #### Steps to reproduce I wasn't doing anything specific at the time.
1.0
Crash in AlarmReqAgent - #### Symptoms A node that uses the alarm agent crashed with the following call stack: ``` #0 0x00007fc80c00fcc9 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56 #1 0x00007fc80c0130d8 in __GI_abort () at abort.c:89 #2 0x00000000004da4e6 in signal_handler (sig=6) at main.cpp:201 #3 <signal handler called> #4 0x00007fc80c00fcc9 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56 #5 0x00007fc80c0130d8 in __GI_abort () at abort.c:89 #6 0x00007fc80d014f39 in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #7 0x00007fc80d02baee in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #8 0x00007fc80d0182f7 in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #9 0x00007fc80d02cb06 in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #10 0x00007fc80d02d10f in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #11 0x00007fc80d040cd9 in ?? () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #12 0x00007fc80d040d49 in zmq_recv () from /usr/lib/x86_64-linux-gnu/libzmq.so.3 #13 0x000000000040dabd in AlarmReqAgent::agent (this=0x97dd40 <AlarmReqAgent::_instance>) at ../modules/cpp-common/src/alarm.cpp:481 #14 0x000000000040de59 in AlarmReqAgent::agent_thread (alarm_req_agent=<optimized out>) at ../modules/cpp-common/src/alarm.cpp:366 #15 0x00007fc80dd86182 in start_thread (arg=0x7fc801ffb700) at pthread_create.c:312 #16 0x00007fc80c0d347d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111 ``` #### Impact Depends on the parent process, but it could lead to call failures (e.g. if sprout hit it). #### Release and environment Seen when using this cpp-common commit: 1daad3245832748a4ae8a0850b57a925f73462c3 #### Steps to reproduce I wasn't doing anything specific at the time.
priority
crash in alarmreqagent symptoms a node that uses the alarm agent crashed with the following call stack in gi raise sig sig entry at nptl sysdeps unix sysv linux raise c in gi abort at abort c in signal handler sig at main cpp in gi raise sig sig entry at nptl sysdeps unix sysv linux raise c in gi abort at abort c in from usr lib linux gnu libzmq so in from usr lib linux gnu libzmq so in from usr lib linux gnu libzmq so in from usr lib linux gnu libzmq so in from usr lib linux gnu libzmq so in from usr lib linux gnu libzmq so in zmq recv from usr lib linux gnu libzmq so in alarmreqagent agent this at modules cpp common src alarm cpp in alarmreqagent agent thread alarm req agent at modules cpp common src alarm cpp in start thread arg at pthread create c in clone at sysdeps unix sysv linux clone s impact depends on the parent process but it could lead to call failures e g if sprout hit it release and environment seen when using this cpp common commit steps to reproduce i wasn t doing anything specific at the time
1
311,924
9,540,535,158
IssuesEvent
2019-04-30 19:48:12
spacetelescope/mirage
https://api.github.com/repos/spacetelescope/mirage
closed
Tangent plane projection
Enhancement Medium Priority
Investigate whether the source locations are correct, or if a tangent plane projection adjustment is needed. @Johannes-Sahlmann already has a function that makes this adjustment.
1.0
Tangent plane projection - Investigate whether the source locations are correct, or if a tangent plane projection adjustment is needed. @Johannes-Sahlmann already has a function that makes this adjustment.
priority
tangent plane projection investigate whether the source locations are correct or if a tangent plane projection adjustment is needed johannes sahlmann already has a function that makes this adjustment
1
251,719
8,025,997,864
IssuesEvent
2018-07-27 01:08:37
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Fertilizer Stacking Bug
Medium Priority
Fertilizer stacks show as a quantity of 1 in the store regardless of size. Fertilizer stacks can not be merged with each other. Single instances of fertilizer cannot be merged to create a stack. Soil samplers cannot be stacked.
1.0
Fertilizer Stacking Bug - Fertilizer stacks show as a quantity of 1 in the store regardless of size. Fertilizer stacks can not be merged with each other. Single instances of fertilizer cannot be merged to create a stack. Soil samplers cannot be stacked.
priority
fertilizer stacking bug fertilizer stacks show as a quantity of in the store regardless of size fertilizer stacks can not be merged with each other single instances of fertilizer cannot be merged to create a stack soil samplers cannot be stacked
1
67,767
3,281,889,449
IssuesEvent
2015-10-28 01:10:27
MozillaHive/HiveCHI-rwm
https://api.github.com/repos/MozillaHive/HiveCHI-rwm
closed
[Trello New Issue] Add descriptive text on nudge page (i.e. "Text a friend telling them you to go with them to this event")
Medium Priority
<b>Robert Friedman</b> added the card <a href="http://ift.tt/1K313D8">Add descriptive text on nudge page (i.e. "Text a friend telling them you to go with them to this event")</a> to the <b>New Issues</b> list in the <b>Polish ride5 for CSMMF Demo</b> board at August 4, 2015 at 07:54PM<br><br><br><br><a href="http://ift.tt/1K313D8">View on Trello</a>
1.0
[Trello New Issue] Add descriptive text on nudge page (i.e. "Text a friend telling them you to go with them to this event") - <b>Robert Friedman</b> added the card <a href="http://ift.tt/1K313D8">Add descriptive text on nudge page (i.e. "Text a friend telling them you to go with them to this event")</a> to the <b>New Issues</b> list in the <b>Polish ride5 for CSMMF Demo</b> board at August 4, 2015 at 07:54PM<br><br><br><br><a href="http://ift.tt/1K313D8">View on Trello</a>
priority
add descriptive text on nudge page i e text a friend telling them you to go with them to this event robert friedman added the card to the new issues list in the polish for csmmf demo board at august at
1
79,764
3,546,585,041
IssuesEvent
2016-01-20 03:38:44
DailyDilemma/COMP4350
https://api.github.com/repos/DailyDilemma/COMP4350
opened
Purchase frequency
Priority: Medium
As a user, I want to enter the frequency at which I buy certain groceries, so that I can get suggestions as to what groceries I may be low on. Cost: 1 day
1.0
Purchase frequency - As a user, I want to enter the frequency at which I buy certain groceries, so that I can get suggestions as to what groceries I may be low on. Cost: 1 day
priority
purchase frequency as a user i want to enter the frequency at which i buy certain groceries so that i can get suggestions as to what groceries i may be low on cost day
1
822,553
30,877,449,861
IssuesEvent
2023-08-03 15:09:00
EBISPOT/ols4
https://api.github.com/repos/EBISPOT/ols4
closed
Failure parsing ontologies
Medium priority
Convert RDF to JSON fails for a number of ontologies: 1. List failing ontologies. 2. For each failing ontology determine reason for failure. I.e., is it something OLS is not dealing with (OLS) or is it an error in creating the ontology (Provider) 3. For each OLS issue create a related issue. 4. For each provider create a corresponding issue in their issue tracker and reference it here.
1.0
Failure parsing ontologies - Convert RDF to JSON fails for a number of ontologies: 1. List failing ontologies. 2. For each failing ontology determine reason for failure. I.e., is it something OLS is not dealing with (OLS) or is it an error in creating the ontology (Provider) 3. For each OLS issue create a related issue. 4. For each provider create a corresponding issue in their issue tracker and reference it here.
priority
failure parsing ontologies convert rdf to json fails for a number of ontologies list failing ontologies for each failing ontology determine reason for failure i e is it something ols is not dealing with ols or is it an error in creating the ontology provider for each ols issue create a related issue for each provider create a corresponding issue in their issue tracker and reference it here
1
261,792
8,246,156,845
IssuesEvent
2018-09-11 12:04:11
canonical-websites/www.ubuntu.com
https://api.github.com/repos/canonical-websites/www.ubuntu.com
closed
Typo and other concerns on /support
Priority: Medium Type: Bug
"from our online store.." Also added some comments to the copy doc for review: https://docs.google.com/document/d/1liY2ulrI3JiICSJquTn9cH0Hu-R6H3ufmEmYhive-QI/edit# --- *Reported from: https://www.ubuntu.com/support*
1.0
Typo and other concerns on /support - "from our online store.." Also added some comments to the copy doc for review: https://docs.google.com/document/d/1liY2ulrI3JiICSJquTn9cH0Hu-R6H3ufmEmYhive-QI/edit# --- *Reported from: https://www.ubuntu.com/support*
priority
typo and other concerns on support from our online store also added some comments to the copy doc for review reported from
1
700,356
24,057,600,677
IssuesEvent
2022-09-16 18:28:32
xCDAT/xcdat
https://api.github.com/repos/xCDAT/xcdat
closed
[Bug]: 0.2.0 appears to be latest conda-forge release installed on arm64/windows
Type: Bug Priority: Medium
### What happened? (xcdat031spy532) ml-9953350:ESGFReports duro$ mamba create --dry-run -n xc030spy532mat352 -c conda-forge xcdat __ __ __ __ / \ / \ / \ / \ / \/ \/ \/ \ ███████████████/ /██/ /██/ /██/ /████████████████████████ / / \ / \ / \ / \ \____ / / \_/ \_/ \_/ \ o \__, / _/ \_____/ ` |/ ███╗ ███╗ █████╗ ███╗ ███╗██████╗ █████╗ ████╗ ████║██╔══██╗████╗ ████║██╔══██╗██╔══██╗ ██╔████╔██║███████║██╔████╔██║██████╔╝███████║ ██║╚██╔╝██║██╔══██║██║╚██╔╝██║██╔══██╗██╔══██║ ██║ ╚═╝ ██║██║ ██║██║ ╚═╝ ██║██████╔╝██║ ██║ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝ mamba (0.24.0) supported by @QuantStack GitHub: https://github.com/mamba-org/mamba Twitter: https://twitter.com/QuantStack █████████████████████████████████████████████████████████████ Looking for: ['xcdat'] conda-forge/osx-arm64 Using cache conda-forge/noarch Using cache Transaction Prefix: ~/mambaforge/envs/xc030spy532mat352 Updating specs: - xcdat Package Version Build Channel Size ──────────────────────────────────────────────────────────────────────────────────────────────── Install: ──────────────────────────────────────────────────────────────────────────────────────────────── + bokeh 2.4.3 pyhd8ed1ab_3 conda-forge/noarch 14MB ... + cf_xarray 0.7.4 pyhd8ed1ab_0 conda-forge/noarch Cached ... + dask 2022.8.0 pyhd8ed1ab_1 conda-forge/noarch 5kB + dask-core 2022.8.0 pyhd8ed1ab_0 conda-forge/noarch Cached ... + hdf4 4.2.15 hc683e77_4 conda-forge/osx-arm64 928kB + hdf5 1.12.2 nompi_h8968d4b_100 conda-forge/osx-arm64 Cached ... + libgfortran 5.0.0.dev0 11_0_1_hf114ba7_23 conda-forge/osx-arm64 Cached + libgfortran5 11.0.1.dev0 hf114ba7_23 conda-forge/osx-arm64 Cached + liblapack 3.9.0 16_osxarm64_openblas conda-forge/osx-arm64 13kB + libnetcdf 4.8.1 nompi_h996a5af_104 conda-forge/osx-arm64 1MB ... + netcdf4 1.6.0 nompi_py310h9d42ac0_101 conda-forge/osx-arm64 Cached + numpy 1.23.1 py310h0a343b5_0 conda-forge/osx-arm64 Cached ... + python 3.10.5 h71ab1a4_0_cpython conda-forge/osx-arm64 Cached ... + xarray 2022.6.0 pyhd8ed1ab_1 conda-forge/noarch Cached ***+ xcdat 0.2.0 pyhd8ed1ab_0 conda-forge/noarch Cached*** + xorg-libxau 1.0.9 h27ca646_0 conda-forge/osx-arm64 Cached ... ### What did you expect to happen? I had expected 0.3.0 to be installed, as per availability through the [`xcdat conda-forge channel`](https://anaconda.org/conda-forge/xcdat/files) ### Minimal Complete Verifiable Example ```python $ conda create --dry-run -n xc030 -c conda-forge xcdat xcdat conda-forge/noarch::xcdat-0.2.0-pyhd8ed1ab_0 ``` ### Relevant log output ```python See above ``` ### Anything else we need to know? Nil ### Environment Nil
1.0
[Bug]: 0.2.0 appears to be latest conda-forge release installed on arm64/windows - ### What happened? (xcdat031spy532) ml-9953350:ESGFReports duro$ mamba create --dry-run -n xc030spy532mat352 -c conda-forge xcdat __ __ __ __ / \ / \ / \ / \ / \/ \/ \/ \ ███████████████/ /██/ /██/ /██/ /████████████████████████ / / \ / \ / \ / \ \____ / / \_/ \_/ \_/ \ o \__, / _/ \_____/ ` |/ ███╗ ███╗ █████╗ ███╗ ███╗██████╗ █████╗ ████╗ ████║██╔══██╗████╗ ████║██╔══██╗██╔══██╗ ██╔████╔██║███████║██╔████╔██║██████╔╝███████║ ██║╚██╔╝██║██╔══██║██║╚██╔╝██║██╔══██╗██╔══██║ ██║ ╚═╝ ██║██║ ██║██║ ╚═╝ ██║██████╔╝██║ ██║ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝ mamba (0.24.0) supported by @QuantStack GitHub: https://github.com/mamba-org/mamba Twitter: https://twitter.com/QuantStack █████████████████████████████████████████████████████████████ Looking for: ['xcdat'] conda-forge/osx-arm64 Using cache conda-forge/noarch Using cache Transaction Prefix: ~/mambaforge/envs/xc030spy532mat352 Updating specs: - xcdat Package Version Build Channel Size ──────────────────────────────────────────────────────────────────────────────────────────────── Install: ──────────────────────────────────────────────────────────────────────────────────────────────── + bokeh 2.4.3 pyhd8ed1ab_3 conda-forge/noarch 14MB ... + cf_xarray 0.7.4 pyhd8ed1ab_0 conda-forge/noarch Cached ... + dask 2022.8.0 pyhd8ed1ab_1 conda-forge/noarch 5kB + dask-core 2022.8.0 pyhd8ed1ab_0 conda-forge/noarch Cached ... + hdf4 4.2.15 hc683e77_4 conda-forge/osx-arm64 928kB + hdf5 1.12.2 nompi_h8968d4b_100 conda-forge/osx-arm64 Cached ... + libgfortran 5.0.0.dev0 11_0_1_hf114ba7_23 conda-forge/osx-arm64 Cached + libgfortran5 11.0.1.dev0 hf114ba7_23 conda-forge/osx-arm64 Cached + liblapack 3.9.0 16_osxarm64_openblas conda-forge/osx-arm64 13kB + libnetcdf 4.8.1 nompi_h996a5af_104 conda-forge/osx-arm64 1MB ... + netcdf4 1.6.0 nompi_py310h9d42ac0_101 conda-forge/osx-arm64 Cached + numpy 1.23.1 py310h0a343b5_0 conda-forge/osx-arm64 Cached ... + python 3.10.5 h71ab1a4_0_cpython conda-forge/osx-arm64 Cached ... + xarray 2022.6.0 pyhd8ed1ab_1 conda-forge/noarch Cached ***+ xcdat 0.2.0 pyhd8ed1ab_0 conda-forge/noarch Cached*** + xorg-libxau 1.0.9 h27ca646_0 conda-forge/osx-arm64 Cached ... ### What did you expect to happen? I had expected 0.3.0 to be installed, as per availability through the [`xcdat conda-forge channel`](https://anaconda.org/conda-forge/xcdat/files) ### Minimal Complete Verifiable Example ```python $ conda create --dry-run -n xc030 -c conda-forge xcdat xcdat conda-forge/noarch::xcdat-0.2.0-pyhd8ed1ab_0 ``` ### Relevant log output ```python See above ``` ### Anything else we need to know? Nil ### Environment Nil
priority
appears to be latest conda forge release installed on windows what happened ml esgfreports duro mamba create dry run n c conda forge xcdat ███████████████ ██ ██ ██ ████████████████████████ o ███╗ ███╗ █████╗ ███╗ ███╗██████╗ █████╗ ████╗ ████║██╔══██╗████╗ ████║██╔══██╗██╔══██╗ ██╔████╔██║███████║██╔████╔██║██████╔╝███████║ ██║╚██╔╝██║██╔══██║██║╚██╔╝██║██╔══██╗██╔══██║ ██║ ╚═╝ ██║██║ ██║██║ ╚═╝ ██║██████╔╝██║ ██║ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝ mamba supported by quantstack github twitter █████████████████████████████████████████████████████████████ looking for conda forge osx using cache conda forge noarch using cache transaction prefix mambaforge envs updating specs xcdat package version build channel size ──────────────────────────────────────────────────────────────────────────────────────────────── install ──────────────────────────────────────────────────────────────────────────────────────────────── bokeh conda forge noarch cf xarray conda forge noarch cached dask conda forge noarch dask core conda forge noarch cached conda forge osx nompi conda forge osx cached libgfortran conda forge osx cached conda forge osx cached liblapack openblas conda forge osx libnetcdf nompi conda forge osx nompi conda forge osx cached numpy conda forge osx cached python cpython conda forge osx cached xarray conda forge noarch cached xcdat conda forge noarch cached xorg libxau conda forge osx cached what did you expect to happen i had expected to be installed as per availability through the minimal complete verifiable example python conda create dry run n c conda forge xcdat xcdat conda forge noarch xcdat relevant log output python see above anything else we need to know nil environment nil
1
64,026
3,203,821,964
IssuesEvent
2015-10-02 21:04:34
angular/material
https://api.github.com/repos/angular/material
closed
md-card-footer doesn't put content flush against the bottom edge of the card
priority: medium type: enhancement ui: CSS
As the title says, the directive docs say that md-card-footer puts the content against the bottom of the card, but doesn't actually do it. [Plunker.](http://plnkr.co/edit/keO0rG79Y53OcYL6e3fB?p=preview) I am trying to create a news section that works similarly to google play newsstand. The cards have to stay the same height, and the footer containing the author information should always be at the bottom. This image shows how google play newsstand does it. Unfortunately the footer isn't actually at the bottom, so I can't achieve this. The only styling applied to the cards in my Plunker is a width of 375px if the screen size is larger than small, to fit for desktop screens or landscape phones. **Google Play Newstand** ![screenshot_2015-06-05-17-40-26](https://cloud.githubusercontent.com/assets/7330103/8016080/f6793ea8-0bac-11e5-805d-bfcec94734c1.png) **My Plunker** ![image](https://cloud.githubusercontent.com/assets/7330103/8016248/fa67b79a-0bae-11e5-9456-3e455a2ff627.png)
1.0
md-card-footer doesn't put content flush against the bottom edge of the card - As the title says, the directive docs say that md-card-footer puts the content against the bottom of the card, but doesn't actually do it. [Plunker.](http://plnkr.co/edit/keO0rG79Y53OcYL6e3fB?p=preview) I am trying to create a news section that works similarly to google play newsstand. The cards have to stay the same height, and the footer containing the author information should always be at the bottom. This image shows how google play newsstand does it. Unfortunately the footer isn't actually at the bottom, so I can't achieve this. The only styling applied to the cards in my Plunker is a width of 375px if the screen size is larger than small, to fit for desktop screens or landscape phones. **Google Play Newstand** ![screenshot_2015-06-05-17-40-26](https://cloud.githubusercontent.com/assets/7330103/8016080/f6793ea8-0bac-11e5-805d-bfcec94734c1.png) **My Plunker** ![image](https://cloud.githubusercontent.com/assets/7330103/8016248/fa67b79a-0bae-11e5-9456-3e455a2ff627.png)
priority
md card footer doesn t put content flush against the bottom edge of the card as the title says the directive docs say that md card footer puts the content against the bottom of the card but doesn t actually do it i am trying to create a news section that works similarly to google play newsstand the cards have to stay the same height and the footer containing the author information should always be at the bottom this image shows how google play newsstand does it unfortunately the footer isn t actually at the bottom so i can t achieve this the only styling applied to the cards in my plunker is a width of if the screen size is larger than small to fit for desktop screens or landscape phones google play newstand my plunker
1
260,525
8,210,904,150
IssuesEvent
2018-09-04 12:19:50
opentargets/platform
https://api.github.com/repos/opentargets/platform
opened
do we need to show long description of genes in the target profile page?
Kind: Enhancement Priority: Medium
Some genes have rather long descriptions from UniProt e.g. https://www.targetvalidation.org/target/ENSG00000141867 They do take a big chunk of the laptop screen space. Given that we already have a [ show more ] option in there, I wonder if the length can be adjusted perhaps to show two-three lines only? We would then show the sections "Drugs", etc...straight away, the most important piece of info in that page. Or alternatively when adjusting the size of the screen we can have the Target name, a 2 line description, the probes, and then the tabs e.g. ![mockup_target_profile_shorter_description](https://user-images.githubusercontent.com/6472381/45030842-11a41c80-b045-11e8-9f6e-c0b601d23daa.jpg)
1.0
do we need to show long description of genes in the target profile page? - Some genes have rather long descriptions from UniProt e.g. https://www.targetvalidation.org/target/ENSG00000141867 They do take a big chunk of the laptop screen space. Given that we already have a [ show more ] option in there, I wonder if the length can be adjusted perhaps to show two-three lines only? We would then show the sections "Drugs", etc...straight away, the most important piece of info in that page. Or alternatively when adjusting the size of the screen we can have the Target name, a 2 line description, the probes, and then the tabs e.g. ![mockup_target_profile_shorter_description](https://user-images.githubusercontent.com/6472381/45030842-11a41c80-b045-11e8-9f6e-c0b601d23daa.jpg)
priority
do we need to show long description of genes in the target profile page some genes have rather long descriptions from uniprot e g they do take a big chunk of the laptop screen space given that we already have a option in there i wonder if the length can be adjusted perhaps to show two three lines only we would then show the sections drugs etc straight away the most important piece of info in that page or alternatively when adjusting the size of the screen we can have the target name a line description the probes and then the tabs e g
1
75,378
3,461,912,667
IssuesEvent
2015-12-20 14:02:05
sandrotosi/gctest3
https://api.github.com/repos/sandrotosi/gctest3
opened
fdupes: option to replace duplicates with hard links
bug imported Priority-Medium
_From @sandrotosi on December 20, 2015 13:56_ _From [matrixhasu](https://code.google.com/u/matrixhasu/) on October 08, 2009 22:13:05_ Debian bug `#284274` - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=284274 From: Rupert Levene \<rlevene@uwaterloo.ca> It would be nice to have the option of telling fdupes to replace duplicate files with hard links. This would be a more symmetric behaviour than using symlinks. \----- From: Javier Fernández-Sanguino Peña \<jfs@computer.org> Attached is a patch to the program sources (through the use of a dpatch patch in the Debian package) that adds a new -L / --linkhard option to fdupes. This option will replace all duplicate files with hardlinks which is useful in order to reduce space. It has been tested only slightly, but the code looks (to me) about right. **Attachment:** [284274_fdupes_hardlink_repace.diff](http://code.google.com/p/fdupes/issues/detail?id=8) _Original issue: http://code.google.com/p/fdupes/issues/detail?id=8_ _Copied from original issue: sandrotosi/gctest2#5_
1.0
fdupes: option to replace duplicates with hard links - _From @sandrotosi on December 20, 2015 13:56_ _From [matrixhasu](https://code.google.com/u/matrixhasu/) on October 08, 2009 22:13:05_ Debian bug `#284274` - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=284274 From: Rupert Levene \<rlevene@uwaterloo.ca> It would be nice to have the option of telling fdupes to replace duplicate files with hard links. This would be a more symmetric behaviour than using symlinks. \----- From: Javier Fernández-Sanguino Peña \<jfs@computer.org> Attached is a patch to the program sources (through the use of a dpatch patch in the Debian package) that adds a new -L / --linkhard option to fdupes. This option will replace all duplicate files with hardlinks which is useful in order to reduce space. It has been tested only slightly, but the code looks (to me) about right. **Attachment:** [284274_fdupes_hardlink_repace.diff](http://code.google.com/p/fdupes/issues/detail?id=8) _Original issue: http://code.google.com/p/fdupes/issues/detail?id=8_ _Copied from original issue: sandrotosi/gctest2#5_
priority
fdupes option to replace duplicates with hard links from sandrotosi on december from on october debian bug from rupert levene it would be nice to have the option of telling fdupes to replace duplicate files with hard links this would be a more symmetric behaviour than using symlinks from javier fernández sanguino peña attached is a patch to the program sources through the use of a dpatch patch in the debian package that adds a new l linkhard option to fdupes this option will replace all duplicate files with hardlinks which is useful in order to reduce space it has been tested only slightly but the code looks to me about right attachment original issue copied from original issue sandrotosi
1
363,373
10,741,078,503
IssuesEvent
2019-10-29 19:29:01
eriq-augustine/test-issue-copy
https://api.github.com/repos/eriq-augustine/test-issue-copy
opened
[CLOSED] Rework Functional Predicates
Components - Database Difficulty - Medium Priority - High Type - Refactor
<a href="https://github.com/eriq-augustine"><img src="https://avatars0.githubusercontent.com/u/337857?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [eriq-augustine](https://github.com/eriq-augustine)** _Sunday Jan 07, 2018 at 19:44 GMT_ _Originally opened as https://github.com/eriq-augustine/psl/issues/139_ ---- I think we can simplify how functional predicates are currently used. Right now, they are added to the database and at the end of Formula2SQL.getQuery(), all the functional atoms are visited. However, instead of that I think we can just invoke functional atoms only when we are instantiating ground rules. And during query construction, we can treat functional atoms the same as we do negated atoms in the CNF. This way, we do not depend on the database backend for implementing external functions and we don't have to pay for that extra wrapping overhead. Also, we may be able to simplify UniqueIDs a bit (specifically DeferredFunctionalUniqueID).
1.0
[CLOSED] Rework Functional Predicates - <a href="https://github.com/eriq-augustine"><img src="https://avatars0.githubusercontent.com/u/337857?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [eriq-augustine](https://github.com/eriq-augustine)** _Sunday Jan 07, 2018 at 19:44 GMT_ _Originally opened as https://github.com/eriq-augustine/psl/issues/139_ ---- I think we can simplify how functional predicates are currently used. Right now, they are added to the database and at the end of Formula2SQL.getQuery(), all the functional atoms are visited. However, instead of that I think we can just invoke functional atoms only when we are instantiating ground rules. And during query construction, we can treat functional atoms the same as we do negated atoms in the CNF. This way, we do not depend on the database backend for implementing external functions and we don't have to pay for that extra wrapping overhead. Also, we may be able to simplify UniqueIDs a bit (specifically DeferredFunctionalUniqueID).
priority
rework functional predicates issue by sunday jan at gmt originally opened as i think we can simplify how functional predicates are currently used right now they are added to the database and at the end of getquery all the functional atoms are visited however instead of that i think we can just invoke functional atoms only when we are instantiating ground rules and during query construction we can treat functional atoms the same as we do negated atoms in the cnf this way we do not depend on the database backend for implementing external functions and we don t have to pay for that extra wrapping overhead also we may be able to simplify uniqueids a bit specifically deferredfunctionaluniqueid
1
120,201
4,786,746,324
IssuesEvent
2016-10-29 16:13:10
CS2103AUG2016-T14-C2/main
https://api.github.com/repos/CS2103AUG2016-T14-C2/main
closed
SUT needs to use locales for dates.
priority.medium type.bug
add bad start-end pair s/31-12-2015 e/30-12-2015 works locally, fails on travis. Issue with locale.
1.0
SUT needs to use locales for dates. - add bad start-end pair s/31-12-2015 e/30-12-2015 works locally, fails on travis. Issue with locale.
priority
sut needs to use locales for dates add bad start end pair s e works locally fails on travis issue with locale
1
91,851
3,863,516,219
IssuesEvent
2016-04-08 09:45:32
iamxavier/elmah
https://api.github.com/repos/iamxavier/elmah
closed
Use XML Data Type instead of NTEXT on SQL Server
auto-migrated Component-Persistence Priority-Medium Type-Enhancement
``` Use the XML data type instead of NTEXT with SQL Server. The XML data type allows usage of XQuery to query the XML itself. This can typically be used to extract columns of data from XML nodes for filtering, reporting, etc, and has the potential to be used in computed columns as well. See the XQuery language reference for more information. http://msdn.microsoft.com/en-us/library/ms189075.aspx ``` Original issue reported on code.google.com by `msumer...@gmail.com` on 6 Jan 2012 at 4:07
1.0
Use XML Data Type instead of NTEXT on SQL Server - ``` Use the XML data type instead of NTEXT with SQL Server. The XML data type allows usage of XQuery to query the XML itself. This can typically be used to extract columns of data from XML nodes for filtering, reporting, etc, and has the potential to be used in computed columns as well. See the XQuery language reference for more information. http://msdn.microsoft.com/en-us/library/ms189075.aspx ``` Original issue reported on code.google.com by `msumer...@gmail.com` on 6 Jan 2012 at 4:07
priority
use xml data type instead of ntext on sql server use the xml data type instead of ntext with sql server the xml data type allows usage of xquery to query the xml itself this can typically be used to extract columns of data from xml nodes for filtering reporting etc and has the potential to be used in computed columns as well see the xquery language reference for more information original issue reported on code google com by msumer gmail com on jan at
1
542,770
15,866,351,178
IssuesEvent
2021-04-08 15:39:28
dojo/widgets
https://api.github.com/repos/dojo/widgets
closed
An incorrect value can be set on the select
bug medium priority small
**Bug** <!-- delete as appropriate --> If a value is passed to the select that is not valid in the dataset then it should not set the select value.
1.0
An incorrect value can be set on the select - **Bug** <!-- delete as appropriate --> If a value is passed to the select that is not valid in the dataset then it should not set the select value.
priority
an incorrect value can be set on the select bug if a value is passed to the select that is not valid in the dataset then it should not set the select value
1
291,230
8,921,966,982
IssuesEvent
2019-01-21 11:34:41
geosolutions-it/tdipisa
https://api.github.com/repos/geosolutions-it/tdipisa
closed
COMUNE FIRENZE: Some wrong coverages in new data_dir
Priority: Medium bug investigation ready
Ciao, penso di avere capito dove sta il problema dello sfondo del comune di firenze che è particolarmente lento in questo periodo. Ho visto che il datastore pesca dalla cartella: /opt/data/GWC_DATA/GEOSERVER_DATA_DIR_GN1/coverages/sfondo_colori_DBT_2011 quindi a partire dalla nuova cartella GWC_DATA. Però nella cartella 'sfondo_colori_DBT_2011' non è stato copiato il contenuto della cartella originaria valida, prima dell'aggiornamento di geoserver con migrazione a gwc integrata, che è questa: /opt/data/GS_DATA_DIR_28/coverages/sfondo_colori_DBT_2011 Questa cartella contiene geotiff con piramidi correttamente configurate ed infatti ricordo che il servizio mesi fa era veloce, quando misi le piramidi e rifeci i servizi ex novo. La cartella copiata nella configurazione attuale contiene dei jpeg della prima versione del servizio fatta in precedenza. Penso ci sia stato un disguido nei backup delle cartelle nel passaggio tra le due versioni di geoserver. Ricapitolando, il contenuto di /opt/data/GWC_DATA/GEOSERVER_DATA_DIR_GN1/coverages/sfondo_colori_DBT_2011 deve essere quello di /opt/data/GS_DATA_DIR_28/coverages/sfondo_colori_DBT_2011 per avere raster con piramidi e velocizzare il servizio. Saluti Bianca Maria
1.0
COMUNE FIRENZE: Some wrong coverages in new data_dir - Ciao, penso di avere capito dove sta il problema dello sfondo del comune di firenze che è particolarmente lento in questo periodo. Ho visto che il datastore pesca dalla cartella: /opt/data/GWC_DATA/GEOSERVER_DATA_DIR_GN1/coverages/sfondo_colori_DBT_2011 quindi a partire dalla nuova cartella GWC_DATA. Però nella cartella 'sfondo_colori_DBT_2011' non è stato copiato il contenuto della cartella originaria valida, prima dell'aggiornamento di geoserver con migrazione a gwc integrata, che è questa: /opt/data/GS_DATA_DIR_28/coverages/sfondo_colori_DBT_2011 Questa cartella contiene geotiff con piramidi correttamente configurate ed infatti ricordo che il servizio mesi fa era veloce, quando misi le piramidi e rifeci i servizi ex novo. La cartella copiata nella configurazione attuale contiene dei jpeg della prima versione del servizio fatta in precedenza. Penso ci sia stato un disguido nei backup delle cartelle nel passaggio tra le due versioni di geoserver. Ricapitolando, il contenuto di /opt/data/GWC_DATA/GEOSERVER_DATA_DIR_GN1/coverages/sfondo_colori_DBT_2011 deve essere quello di /opt/data/GS_DATA_DIR_28/coverages/sfondo_colori_DBT_2011 per avere raster con piramidi e velocizzare il servizio. Saluti Bianca Maria
priority
comune firenze some wrong coverages in new data dir ciao penso di avere capito dove sta il problema dello sfondo del comune di firenze che è particolarmente lento in questo periodo ho visto che il datastore pesca dalla cartella opt data gwc data geoserver data dir coverages sfondo colori dbt quindi a partire dalla nuova cartella gwc data però nella cartella sfondo colori dbt non è stato copiato il contenuto della cartella originaria valida prima dell aggiornamento di geoserver con migrazione a gwc integrata che è questa opt data gs data dir coverages sfondo colori dbt questa cartella contiene geotiff con piramidi correttamente configurate ed infatti ricordo che il servizio mesi fa era veloce quando misi le piramidi e rifeci i servizi ex novo la cartella copiata nella configurazione attuale contiene dei jpeg della prima versione del servizio fatta in precedenza penso ci sia stato un disguido nei backup delle cartelle nel passaggio tra le due versioni di geoserver ricapitolando il contenuto di opt data gwc data geoserver data dir coverages sfondo colori dbt deve essere quello di opt data gs data dir coverages sfondo colori dbt per avere raster con piramidi e velocizzare il servizio saluti bianca maria
1
222,224
7,430,741,461
IssuesEvent
2018-03-25 06:24:40
portworx/torpedo
https://api.github.com/repos/portworx/torpedo
closed
Add scheduler support for upgrade of application
enhancement priority/medium
Scheduler driver should have an interface that upgrades the application. In the k8s implementation, - Handle OnDelete and RollingUpgrades (OnDelete will require explicit delete of pods) - Simulate a spec update by changing env variables.
1.0
Add scheduler support for upgrade of application - Scheduler driver should have an interface that upgrades the application. In the k8s implementation, - Handle OnDelete and RollingUpgrades (OnDelete will require explicit delete of pods) - Simulate a spec update by changing env variables.
priority
add scheduler support for upgrade of application scheduler driver should have an interface that upgrades the application in the implementation handle ondelete and rollingupgrades ondelete will require explicit delete of pods simulate a spec update by changing env variables
1
432,607
12,495,688,618
IssuesEvent
2020-06-01 13:37:55
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
opened
Members Profile Types slugs
feature: enhancement priority: medium
**Is your feature request related to a problem? Please describe.** The Profile type URLs are currently a set of GET parameters - ?post_type=bp-member-type&p=35 **Describe the solution you'd like** I think a slug would be welcome either as root-level slug, or under the users directory "/members/" "/users/", whatever is configured. e.g. /users/teachers, /users/students ... **Describe alternatives you've considered** SEO tools can probably do the trick, but this is good contender for a built-in platform feature, IMO. **Support ticket links** Haven't bothered support with it. Thanks for looking into it.
1.0
Members Profile Types slugs - **Is your feature request related to a problem? Please describe.** The Profile type URLs are currently a set of GET parameters - ?post_type=bp-member-type&p=35 **Describe the solution you'd like** I think a slug would be welcome either as root-level slug, or under the users directory "/members/" "/users/", whatever is configured. e.g. /users/teachers, /users/students ... **Describe alternatives you've considered** SEO tools can probably do the trick, but this is good contender for a built-in platform feature, IMO. **Support ticket links** Haven't bothered support with it. Thanks for looking into it.
priority
members profile types slugs is your feature request related to a problem please describe the profile type urls are currently a set of get parameters post type bp member type p describe the solution you d like i think a slug would be welcome either as root level slug or under the users directory members users whatever is configured e g users teachers users students describe alternatives you ve considered seo tools can probably do the trick but this is good contender for a built in platform feature imo support ticket links haven t bothered support with it thanks for looking into it
1
286,281
8,786,024,919
IssuesEvent
2018-12-20 14:41:16
commerceblock/mainstay-mvc
https://api.github.com/repos/commerceblock/mainstay-mvc
closed
API - add controller logic for search bar
Difficulty : Medium Priority: Medium :exclamation: Status: Proposal :bulb: Type: Enhancement
search bar rename "Search for client position, attestations or commitments" url `/search?query=` Cases: - query is client_position Return summary for client (commitments, proofs,...) - query is commitment Return MerkleCommitment, MerkleProof i.e. client merkle_root commitment proof - query is attestation txid Return Attestation, AttestationInfo (similar to Home page for latest)
1.0
API - add controller logic for search bar - search bar rename "Search for client position, attestations or commitments" url `/search?query=` Cases: - query is client_position Return summary for client (commitments, proofs,...) - query is commitment Return MerkleCommitment, MerkleProof i.e. client merkle_root commitment proof - query is attestation txid Return Attestation, AttestationInfo (similar to Home page for latest)
priority
api add controller logic for search bar search bar rename search for client position attestations or commitments url search query cases query is client position return summary for client commitments proofs query is commitment return merklecommitment merkleproof i e client merkle root commitment proof query is attestation txid return attestation attestationinfo similar to home page for latest
1
3,302
2,537,644,597
IssuesEvent
2015-01-26 21:59:43
less/less.js
https://api.github.com/repos/less/less.js
closed
lessc won't overwrite read-only files
Bug Has Pull Request Medium Priority
Lessc won't overwrite read-only files however when a file is readonly and can't be overwritten, Lessc won't report that back to the user. Therefore, the command appears to succeed. I'm using lessc 2.1.2 (sorry, I can't test this on other version right now) The command I'm issuing is `lessc my_less_file.less ../my_output.css` I'm on Windows 7. Node version v.0.10.26
1.0
lessc won't overwrite read-only files - Lessc won't overwrite read-only files however when a file is readonly and can't be overwritten, Lessc won't report that back to the user. Therefore, the command appears to succeed. I'm using lessc 2.1.2 (sorry, I can't test this on other version right now) The command I'm issuing is `lessc my_less_file.less ../my_output.css` I'm on Windows 7. Node version v.0.10.26
priority
lessc won t overwrite read only files lessc won t overwrite read only files however when a file is readonly and can t be overwritten lessc won t report that back to the user therefore the command appears to succeed i m using lessc sorry i can t test this on other version right now the command i m issuing is lessc my less file less my output css i m on windows node version v
1
372,876
11,029,758,586
IssuesEvent
2019-12-06 14:31:03
chronoDave/Doombox
https://api.github.com/repos/chronoDave/Doombox
closed
Module vs component
medium priority optimization
Several components / modules are open for discussion: - Modal (component) => module - Settings (module) => module, but different structure
1.0
Module vs component - Several components / modules are open for discussion: - Modal (component) => module - Settings (module) => module, but different structure
priority
module vs component several components modules are open for discussion modal component module settings module module but different structure
1
128,193
5,050,607,549
IssuesEvent
2016-12-20 19:16:44
fgpv-vpgf/fgpv-vpgf
https://api.github.com/repos/fgpv-vpgf/fgpv-vpgf
closed
Image Export - Map + Custom Title + Legend
addition: feature Epic priority: medium
As a user, I want to be able to export the map image so that I can share it in a report or with colleagues. I should be able to specify a title or have a legend present to better describe the map. - [x] User should be able to export the map image - [x] user can specify a custom title - [x] user can specify to include a legend - [x] map image displays map scale - [x] Option to export map is present in the left menu - [x] Configuration file allows for functionality to be disabled, defines the Esri Print Service to use for creating the output
1.0
Image Export - Map + Custom Title + Legend - As a user, I want to be able to export the map image so that I can share it in a report or with colleagues. I should be able to specify a title or have a legend present to better describe the map. - [x] User should be able to export the map image - [x] user can specify a custom title - [x] user can specify to include a legend - [x] map image displays map scale - [x] Option to export map is present in the left menu - [x] Configuration file allows for functionality to be disabled, defines the Esri Print Service to use for creating the output
priority
image export map custom title legend as a user i want to be able to export the map image so that i can share it in a report or with colleagues i should be able to specify a title or have a legend present to better describe the map user should be able to export the map image user can specify a custom title user can specify to include a legend map image displays map scale option to export map is present in the left menu configuration file allows for functionality to be disabled defines the esri print service to use for creating the output
1
531,502
15,499,458,367
IssuesEvent
2021-03-11 07:59:22
r-lib/styler
https://api.github.com/repos/r-lib/styler
closed
Roxygen code example is always moved to next line when on same line with tag
Complexity: Medium Priority: Medium Status: WIP Type: Bug
``` r styler::style_text(c( "#' Example", "#' ", "#' @examples 1", "NULL" )) #> #' Example #> #' #> #' @examples #> #' 1 #> NULL ``` <sup>Created on 2021-03-10 by the [reprex package](https://reprex.tidyverse.org) (v1.0.0)</sup> Fixing this is a pre-condition for #742. This was on purpose ignored so far to reduce complexity.
1.0
Roxygen code example is always moved to next line when on same line with tag - ``` r styler::style_text(c( "#' Example", "#' ", "#' @examples 1", "NULL" )) #> #' Example #> #' #> #' @examples #> #' 1 #> NULL ``` <sup>Created on 2021-03-10 by the [reprex package](https://reprex.tidyverse.org) (v1.0.0)</sup> Fixing this is a pre-condition for #742. This was on purpose ignored so far to reduce complexity.
priority
roxygen code example is always moved to next line when on same line with tag r styler style text c example examples null example examples null created on by the fixing this is a pre condition for this was on purpose ignored so far to reduce complexity
1
41,917
2,869,088,321
IssuesEvent
2015-06-05 23:14:20
dart-lang/polymer-dart
https://api.github.com/repos/dart-lang/polymer-dart
closed
Error when calling new_entry on an empty pubspec
bug duplicate Priority-Medium
<a href="https://github.com/sigmundch"><img src="https://avatars.githubusercontent.com/u/2049220?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [sigmundch](https://github.com/sigmundch)** _Originally opened as dart-lang/sdk#20627_ ---- Example: &nbsp;&nbsp;&nbsp;&nbsp;name: my_package &nbsp;&nbsp;&nbsp;&nbsp;dependencies: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;polymer: &quot;&gt;=0.12.1 &lt; 0.13.0&quot; Calling: pub run polymer:new_entry web/index2.html Gives me this error: Exception: The null object does not have a method 'map'. NoSuchMethodError: method not found: 'map' Receiver: null Arguments: [Closure: (dynamic) =&gt; dynamic] #­0 Object.noSuchMethod (dart:core-patch/object_patch.dart:45) #­1 \_createBoilerPlate (http://localhost:33628/new_entry.dart:139:40) #­2 main (http://localhost:33628/new_entry.dart:37:27) #­3 \_startIsolate.isolateStartHandler (dart:isolate-patch/isolate_patch.dart:212) #­4 \_RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:122
1.0
Error when calling new_entry on an empty pubspec - <a href="https://github.com/sigmundch"><img src="https://avatars.githubusercontent.com/u/2049220?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [sigmundch](https://github.com/sigmundch)** _Originally opened as dart-lang/sdk#20627_ ---- Example: &nbsp;&nbsp;&nbsp;&nbsp;name: my_package &nbsp;&nbsp;&nbsp;&nbsp;dependencies: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;polymer: &quot;&gt;=0.12.1 &lt; 0.13.0&quot; Calling: pub run polymer:new_entry web/index2.html Gives me this error: Exception: The null object does not have a method 'map'. NoSuchMethodError: method not found: 'map' Receiver: null Arguments: [Closure: (dynamic) =&gt; dynamic] #­0 Object.noSuchMethod (dart:core-patch/object_patch.dart:45) #­1 \_createBoilerPlate (http://localhost:33628/new_entry.dart:139:40) #­2 main (http://localhost:33628/new_entry.dart:37:27) #­3 \_startIsolate.isolateStartHandler (dart:isolate-patch/isolate_patch.dart:212) #­4 \_RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:122
priority
error when calling new entry on an empty pubspec issue by originally opened as dart lang sdk example nbsp nbsp nbsp nbsp name my package nbsp nbsp nbsp nbsp dependencies nbsp nbsp nbsp nbsp nbsp nbsp polymer quot gt lt quot calling pub run polymer new entry web html gives me this error exception the null object does not have a method map nosuchmethoderror method not found map receiver null arguments ­ object nosuchmethod dart core patch object patch dart ­ createboilerplate ­ main ­ startisolate isolatestarthandler dart isolate patch isolate patch dart ­ rawreceiveportimpl handlemessage dart isolate patch isolate patch dart
1
419,428
12,223,520,570
IssuesEvent
2020-05-02 17:59:06
HabitRPG/habitica
https://api.github.com/repos/HabitRPG/habitica
closed
create user.secret.text field for staff/moderator use - server/API changes only
priority: medium section: API status: issue: in progress
_I've marked this as suggestion-discussion for the staff to comment on the section in bold (and on the rest of it if they wish)._ This change is purely for server-side code (the API and user model). No website/vue changes are needed at this stage. We need a new text field in the user document that staff and moderators can use to record private information about a player (e.g., the fact that a child has been given parental permission to use Habitica). The field must be invisible to all users who are not staff or mods. The work required for this issue is: 1. adjust the user model to add the field 2. adjust the API's [getHero](https://github.com/HabitRPG/habitica/blob/57a9fb524132ac2f6479d4e11dd05578c1422a03/website/server/controllers/api-v3/hall.js#L151) route so that the new field is returned with the other user data 3. adjust the API's [updateHero](https://github.com/HabitRPG/habitica/blob/57a9fb524132ac2f6479d4e11dd05578c1422a03/website/server/controllers/api-v3/hall.js#L205) route so that the new field can be modified 4. adjust any other API routes as needed so that the new field cannot be seen or edited by users who aren't staff or mods 5. add tests for the new behaviour For points 2 and 3: - It's possible that that behaviour might already happen by default so test it before adding any code. - Those routes are already locked down to allow only staff and mods to use them (`ensureAdmin` in [this code](https://github.com/HabitRPG/habitica/blob/57a9fb524132ac2f6479d4e11dd05578c1422a03/website/server/controllers/api-v3/hall.js#L169)), so no extra code is needed for that. For point 4, you might be able to achieve that by adjusting something in one place in the code base, rather than editing every single route. I am being vague here because I haven't looked into it but post to this issue if you can't find a way to do point 4 relatively easily. It's also possible that the desired behaviour will happen by default since the `secret` object is new. I suggest writing the tests first because they should make it clear where new code is needed for points 2, 3, and 4. The new field will be added to the user model, which you can see here: https://github.com/HabitRPG/habitica/blob/develop/website/server/models/user/schema.js **I propose adding the new field as shown below, at the top level of the user document:** ``` secret: { text: String, }, ``` **I.e., the new field would be `user.secret.text`. This keeps it out of any other objects that are visible to the players, and allows us to expand it later with other data if needed. However Habitica's staff need to approve this before implementation.** Characteristics for the field: - [x] name is `secret.text` as shown above - [x] type is String - [x] there should be a comment in schema.js above the top-level `secret` field saying something like "visible to only staff and moderators" - [x] the data stored in `secret.text` must be visible to only staff and moderators, not to the user themself, or to any other users - [ ] the data can be added, edited, deleted by only staff and mods, not by the user themself, or by any other users - [x] you can identify staff and mods by the `contributor.admin` field - any user that has `true` in that field is a staff/mod and must be allowed to see and edit the `secret` field - [x] a player who is a staff/mod **can** see and edit their own field - i.e., you don't need to write any code to prevent staff/mods from using the field in their own user document Tests needed: - Viewing the data: - [x] any user with `contributor.admin` set to true can see the field when using the [/api/v3/hall/heroes/:heroId GET route](https://habitica.com/apidoc/#api-Hall-GetHero) - [x] a non-admin user cannot see the field for another user's account when using [/api/v3/members/:memberId](https://habitica.com/apidoc/#api-Member-GetMember) - [x] a non-admin user cannot see the field for their own account when using [/api/v3/members/:memberId](https://habitica.com/apidoc/#api-Member-GetMember) - [x] a non-admin user cannot see the field for their own account when using the [/api/v3/user GET route](https://habitica.com/apidoc/#api-User-UserGet) - [x] a non-admin user cannot see the field for their own account when using [/api/v3/user/anonymized](https://habitica.com/apidoc/#api-User-UserGetAnonymized) - Updating the data: - [ ] any user with `contributor.admin` set to true can add/change text in the field when using the [/api/v3/hall/heroes/:heroId PUT route](https://habitica.com/apidoc/#api-Hall-UpdateHero) - [ ] a non-admin user cannot add/change text to the field for their own account when using the [/api/v3/user PUT route](https://habitica.com/apidoc/#api-User-UserUpdate) - Possibly other tests depending on implementation. Don't rely on me having thought of everything that needs testing. :) NB: as mentioned above, no website/vue changes are needed for this issue - i.e., you don't have to create any user interface (UI) elements for displaying or changing the field. They can be added later. Currently the admin interface that staff and mods use to display and edit users is being redeveloped so there's no point adding the new field to the existing UI.
1.0
create user.secret.text field for staff/moderator use - server/API changes only - _I've marked this as suggestion-discussion for the staff to comment on the section in bold (and on the rest of it if they wish)._ This change is purely for server-side code (the API and user model). No website/vue changes are needed at this stage. We need a new text field in the user document that staff and moderators can use to record private information about a player (e.g., the fact that a child has been given parental permission to use Habitica). The field must be invisible to all users who are not staff or mods. The work required for this issue is: 1. adjust the user model to add the field 2. adjust the API's [getHero](https://github.com/HabitRPG/habitica/blob/57a9fb524132ac2f6479d4e11dd05578c1422a03/website/server/controllers/api-v3/hall.js#L151) route so that the new field is returned with the other user data 3. adjust the API's [updateHero](https://github.com/HabitRPG/habitica/blob/57a9fb524132ac2f6479d4e11dd05578c1422a03/website/server/controllers/api-v3/hall.js#L205) route so that the new field can be modified 4. adjust any other API routes as needed so that the new field cannot be seen or edited by users who aren't staff or mods 5. add tests for the new behaviour For points 2 and 3: - It's possible that that behaviour might already happen by default so test it before adding any code. - Those routes are already locked down to allow only staff and mods to use them (`ensureAdmin` in [this code](https://github.com/HabitRPG/habitica/blob/57a9fb524132ac2f6479d4e11dd05578c1422a03/website/server/controllers/api-v3/hall.js#L169)), so no extra code is needed for that. For point 4, you might be able to achieve that by adjusting something in one place in the code base, rather than editing every single route. I am being vague here because I haven't looked into it but post to this issue if you can't find a way to do point 4 relatively easily. It's also possible that the desired behaviour will happen by default since the `secret` object is new. I suggest writing the tests first because they should make it clear where new code is needed for points 2, 3, and 4. The new field will be added to the user model, which you can see here: https://github.com/HabitRPG/habitica/blob/develop/website/server/models/user/schema.js **I propose adding the new field as shown below, at the top level of the user document:** ``` secret: { text: String, }, ``` **I.e., the new field would be `user.secret.text`. This keeps it out of any other objects that are visible to the players, and allows us to expand it later with other data if needed. However Habitica's staff need to approve this before implementation.** Characteristics for the field: - [x] name is `secret.text` as shown above - [x] type is String - [x] there should be a comment in schema.js above the top-level `secret` field saying something like "visible to only staff and moderators" - [x] the data stored in `secret.text` must be visible to only staff and moderators, not to the user themself, or to any other users - [ ] the data can be added, edited, deleted by only staff and mods, not by the user themself, or by any other users - [x] you can identify staff and mods by the `contributor.admin` field - any user that has `true` in that field is a staff/mod and must be allowed to see and edit the `secret` field - [x] a player who is a staff/mod **can** see and edit their own field - i.e., you don't need to write any code to prevent staff/mods from using the field in their own user document Tests needed: - Viewing the data: - [x] any user with `contributor.admin` set to true can see the field when using the [/api/v3/hall/heroes/:heroId GET route](https://habitica.com/apidoc/#api-Hall-GetHero) - [x] a non-admin user cannot see the field for another user's account when using [/api/v3/members/:memberId](https://habitica.com/apidoc/#api-Member-GetMember) - [x] a non-admin user cannot see the field for their own account when using [/api/v3/members/:memberId](https://habitica.com/apidoc/#api-Member-GetMember) - [x] a non-admin user cannot see the field for their own account when using the [/api/v3/user GET route](https://habitica.com/apidoc/#api-User-UserGet) - [x] a non-admin user cannot see the field for their own account when using [/api/v3/user/anonymized](https://habitica.com/apidoc/#api-User-UserGetAnonymized) - Updating the data: - [ ] any user with `contributor.admin` set to true can add/change text in the field when using the [/api/v3/hall/heroes/:heroId PUT route](https://habitica.com/apidoc/#api-Hall-UpdateHero) - [ ] a non-admin user cannot add/change text to the field for their own account when using the [/api/v3/user PUT route](https://habitica.com/apidoc/#api-User-UserUpdate) - Possibly other tests depending on implementation. Don't rely on me having thought of everything that needs testing. :) NB: as mentioned above, no website/vue changes are needed for this issue - i.e., you don't have to create any user interface (UI) elements for displaying or changing the field. They can be added later. Currently the admin interface that staff and mods use to display and edit users is being redeveloped so there's no point adding the new field to the existing UI.
priority
create user secret text field for staff moderator use server api changes only i ve marked this as suggestion discussion for the staff to comment on the section in bold and on the rest of it if they wish this change is purely for server side code the api and user model no website vue changes are needed at this stage we need a new text field in the user document that staff and moderators can use to record private information about a player e g the fact that a child has been given parental permission to use habitica the field must be invisible to all users who are not staff or mods the work required for this issue is adjust the user model to add the field adjust the api s route so that the new field is returned with the other user data adjust the api s route so that the new field can be modified adjust any other api routes as needed so that the new field cannot be seen or edited by users who aren t staff or mods add tests for the new behaviour for points and it s possible that that behaviour might already happen by default so test it before adding any code those routes are already locked down to allow only staff and mods to use them ensureadmin in so no extra code is needed for that for point you might be able to achieve that by adjusting something in one place in the code base rather than editing every single route i am being vague here because i haven t looked into it but post to this issue if you can t find a way to do point relatively easily it s also possible that the desired behaviour will happen by default since the secret object is new i suggest writing the tests first because they should make it clear where new code is needed for points and the new field will be added to the user model which you can see here i propose adding the new field as shown below at the top level of the user document secret text string i e the new field would be user secret text this keeps it out of any other objects that are visible to the players and allows us to expand it later with other data if needed however habitica s staff need to approve this before implementation characteristics for the field name is secret text as shown above type is string there should be a comment in schema js above the top level secret field saying something like visible to only staff and moderators the data stored in secret text must be visible to only staff and moderators not to the user themself or to any other users the data can be added edited deleted by only staff and mods not by the user themself or by any other users you can identify staff and mods by the contributor admin field any user that has true in that field is a staff mod and must be allowed to see and edit the secret field a player who is a staff mod can see and edit their own field i e you don t need to write any code to prevent staff mods from using the field in their own user document tests needed viewing the data any user with contributor admin set to true can see the field when using the a non admin user cannot see the field for another user s account when using a non admin user cannot see the field for their own account when using a non admin user cannot see the field for their own account when using the a non admin user cannot see the field for their own account when using updating the data any user with contributor admin set to true can add change text in the field when using the a non admin user cannot add change text to the field for their own account when using the possibly other tests depending on implementation don t rely on me having thought of everything that needs testing nb as mentioned above no website vue changes are needed for this issue i e you don t have to create any user interface ui elements for displaying or changing the field they can be added later currently the admin interface that staff and mods use to display and edit users is being redeveloped so there s no point adding the new field to the existing ui
1
58,315
3,088,731,253
IssuesEvent
2015-08-25 18:00:00
dirkwhoffmann/virtualc64
https://api.github.com/repos/dirkwhoffmann/virtualc64
closed
Format disk does not work
bug Priority-Medium
Idea: VC1541 ROM uses a timer to write 0xFF sync bytes. Check, how many sync bytes are written. The number might be wrong because byteCounter is a constant and should vary with the track number.
1.0
Format disk does not work - Idea: VC1541 ROM uses a timer to write 0xFF sync bytes. Check, how many sync bytes are written. The number might be wrong because byteCounter is a constant and should vary with the track number.
priority
format disk does not work idea rom uses a timer to write sync bytes check how many sync bytes are written the number might be wrong because bytecounter is a constant and should vary with the track number
1
249,024
7,948,707,369
IssuesEvent
2018-07-11 09:00:59
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
Steam Thinks Eco is still running even after game is closed
Medium Priority Steam Report
after i close the game by closing it through the quit game button or by force closing it outside the game steam always thinks its running still i have checked task manager the game isnt running anymore yet steam still thinks it is the only temporary fix i have found is to reset steam and then it says its closed
1.0
Steam Thinks Eco is still running even after game is closed - after i close the game by closing it through the quit game button or by force closing it outside the game steam always thinks its running still i have checked task manager the game isnt running anymore yet steam still thinks it is the only temporary fix i have found is to reset steam and then it says its closed
priority
steam thinks eco is still running even after game is closed after i close the game by closing it through the quit game button or by force closing it outside the game steam always thinks its running still i have checked task manager the game isnt running anymore yet steam still thinks it is the only temporary fix i have found is to reset steam and then it says its closed
1
203,358
7,060,260,707
IssuesEvent
2018-01-05 07:46:58
eblondel/tuna-viewer
https://api.github.com/repos/eblondel/tuna-viewer
closed
Dynamic map styling - enable classification types
new feature priority:medium
* class intervals types: ckmeans, equal intervals, quantiles * grid styles only for the timebeing * number of classes fixed to 5 * one fixed color palette (red)
1.0
Dynamic map styling - enable classification types - * class intervals types: ckmeans, equal intervals, quantiles * grid styles only for the timebeing * number of classes fixed to 5 * one fixed color palette (red)
priority
dynamic map styling enable classification types class intervals types ckmeans equal intervals quantiles grid styles only for the timebeing number of classes fixed to one fixed color palette red
1
759,342
26,589,983,690
IssuesEvent
2023-01-23 07:38:48
9382/python-wikibot
https://api.github.com/repos/9382/python-wikibot
opened
Fix the internal template handler's key/value changing
enhancement Priority: Medium
Messy from a code standpoint and has some minor issues (like how changing non-key'd parameters is just not an option)
1.0
Fix the internal template handler's key/value changing - Messy from a code standpoint and has some minor issues (like how changing non-key'd parameters is just not an option)
priority
fix the internal template handler s key value changing messy from a code standpoint and has some minor issues like how changing non key d parameters is just not an option
1
253,425
8,056,080,666
IssuesEvent
2018-08-02 11:28:48
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
opened
Get X86 boards compliant with default configuration guidelines
area: Boards area: X86 enhancement good first issue priority: medium
Created from #7151, dedicated to X86 boards Following introduction of "default board configuration guidelines" (#6858), one part of the work is to move boards already ported to zephyr to conform with guidelines available here: http://docs.zephyrproject.org/porting/board_porting.html#default-board-configuration https://github.com/zephyrproject-rtos/zephyr/tree/master/boards/arm/nucleo_f429zi could be used as reference for this update.
1.0
Get X86 boards compliant with default configuration guidelines - Created from #7151, dedicated to X86 boards Following introduction of "default board configuration guidelines" (#6858), one part of the work is to move boards already ported to zephyr to conform with guidelines available here: http://docs.zephyrproject.org/porting/board_porting.html#default-board-configuration https://github.com/zephyrproject-rtos/zephyr/tree/master/boards/arm/nucleo_f429zi could be used as reference for this update.
priority
get boards compliant with default configuration guidelines created from dedicated to boards following introduction of default board configuration guidelines one part of the work is to move boards already ported to zephyr to conform with guidelines available here could be used as reference for this update
1
796,870
28,129,714,050
IssuesEvent
2023-03-31 21:17:58
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[YSQL] Add a gflag to disable exporting SPLIT AT clause in ysql_dump
kind/enhancement area/ysql priority/medium
Jira Link: [DB-5439](https://yugabyte.atlassian.net/browse/DB-5439) ### Description A gflag to disable exporting SPLIT AT clause in ysql_dump is needed as a workaroud in case there is any issue. [DB-5439]: https://yugabyte.atlassian.net/browse/DB-5439?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1.0
[YSQL] Add a gflag to disable exporting SPLIT AT clause in ysql_dump - Jira Link: [DB-5439](https://yugabyte.atlassian.net/browse/DB-5439) ### Description A gflag to disable exporting SPLIT AT clause in ysql_dump is needed as a workaroud in case there is any issue. [DB-5439]: https://yugabyte.atlassian.net/browse/DB-5439?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
priority
add a gflag to disable exporting split at clause in ysql dump jira link description a gflag to disable exporting split at clause in ysql dump is needed as a workaroud in case there is any issue
1
502,810
14,567,249,591
IssuesEvent
2020-12-17 10:00:12
ckeditor/ckeditor4-benderjs-runner
https://api.github.com/repos/ckeditor/ckeditor4-benderjs-runner
opened
Allow controlling CI test runs with commit messages
priority:medium
Travis (or rather GitHub itself :thinking:) supports `[skip ci]` flag which skips CI runs when added to specific commit for this commit. We could have something similar (for commit title/message) which allows: * Skipping all tests, e.g. `[tests:skip]` * Running full test run e.g. `[tests:all]` * Running specific tests, e.g. `[tests:testsPath]` (`[tests:is:unit,path:/tests/plugins/image2]`) This can help us run more/less tests if we see there is some mismatch in tests diff thing (see #1). Or do a full run if we see that changes introduced are really broad. Related to #1.
1.0
Allow controlling CI test runs with commit messages - Travis (or rather GitHub itself :thinking:) supports `[skip ci]` flag which skips CI runs when added to specific commit for this commit. We could have something similar (for commit title/message) which allows: * Skipping all tests, e.g. `[tests:skip]` * Running full test run e.g. `[tests:all]` * Running specific tests, e.g. `[tests:testsPath]` (`[tests:is:unit,path:/tests/plugins/image2]`) This can help us run more/less tests if we see there is some mismatch in tests diff thing (see #1). Or do a full run if we see that changes introduced are really broad. Related to #1.
priority
allow controlling ci test runs with commit messages travis or rather github itself thinking supports flag which skips ci runs when added to specific commit for this commit we could have something similar for commit title message which allows skipping all tests e g running full test run e g running specific tests e g this can help us run more less tests if we see there is some mismatch in tests diff thing see or do a full run if we see that changes introduced are really broad related to
1
57,022
3,081,231,138
IssuesEvent
2015-08-22 14:18:45
bitfighter/bitfighter
https://api.github.com/repos/bitfighter/bitfighter
closed
Editor - save on exit with no filename
019 bug imported Priority-Medium
_From [watusim...@bitfighter.org](https://code.google.com/u/105427273526970468779/) on October 19, 2013 18:09:49_ enter editor change the level hit F3 and erase the filename back in the editor, hit ctrl-s to save error message is shown, as it should be but quit, and you are asked to save, and it saves... somewhere Resolve by when name is made to be empty, replace with default name of "Unnamed_Level"; this will let us just avoid the situation altogether _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=253_
1.0
Editor - save on exit with no filename - _From [watusim...@bitfighter.org](https://code.google.com/u/105427273526970468779/) on October 19, 2013 18:09:49_ enter editor change the level hit F3 and erase the filename back in the editor, hit ctrl-s to save error message is shown, as it should be but quit, and you are asked to save, and it saves... somewhere Resolve by when name is made to be empty, replace with default name of "Unnamed_Level"; this will let us just avoid the situation altogether _Original issue: http://code.google.com/p/bitfighter/issues/detail?id=253_
priority
editor save on exit with no filename from on october enter editor change the level hit and erase the filename back in the editor hit ctrl s to save error message is shown as it should be but quit and you are asked to save and it saves somewhere resolve by when name is made to be empty replace with default name of unnamed level this will let us just avoid the situation altogether original issue
1