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
364,033
10,758,016,525
IssuesEvent
2019-10-31 14:18:24
apifytech/apify-js
https://api.github.com/repos/apifytech/apify-js
closed
Async SIGINT event listener not allowed to finish when using PuppeteerCrawler
bug medium priority
Hi, so I recently encountered the following weird behaviour when using `PuppeteerCrawler` and I was wondering if I'm simply overlooking something here or whether you can do something about this: When using `PuppeteerCrawler` and binding to `SIGTERM` or `SIGINT` and the like, the event listener will not be allowed to finish execution when it's an async function. When using `CheerioCrawler` however, it will be allowed to finish execution. Here is some minimal code to reproduce: ```js const Apify = require('apify'); const cleanup = async () => { Apify.utils.log.info('Received kill. Cleaning up.'); await Apify.utils.sleep(3000); Apify.utils.log.info('Slept long enough, now exiting...'); process.exit(0); }; process.on('SIGINT', cleanup); Apify.main(async () => { const requestQueue = await Apify.openRequestQueue(); await requestQueue.addRequest({ url: 'https://news.ycombinator.com/' }); const crawler = new Apify.PuppeteerCrawler({ requestQueue, maxRequestsPerCrawl: 10, launchPuppeteerOptions: { headless: true }, // PuppeteerCrawler handler handlePageFunction: async ({ request, page }) => { console.log(`Processing ${request.url}...`); await Apify.utils.enqueueLinks({ page, requestQueue, selector: '.morelink' }); }, // CheerioCrawler handler // handlePageFunction: async ({ request, $ }) => { // console.log(`Processing ${request.url}...`); // await Apify.utils.enqueueLinks({ // $, // baseUrl: 'https://news.ycombinator.com', // requestQueue, // selector: '.morelink' // }); // } }); await crawler.run(); console.log('Crawler finished.'); }); ``` If you execute that code and send a `SIGNINT` with CTRL + C for example, only the first log line will be printed out. If you modify the script to use `CheerioCrawler` and then interrupt the script again with CTRL + C the first as well as the second log will be printed out. Any ideas? Thanks, Chris
1.0
Async SIGINT event listener not allowed to finish when using PuppeteerCrawler - Hi, so I recently encountered the following weird behaviour when using `PuppeteerCrawler` and I was wondering if I'm simply overlooking something here or whether you can do something about this: When using `PuppeteerCrawler` and binding to `SIGTERM` or `SIGINT` and the like, the event listener will not be allowed to finish execution when it's an async function. When using `CheerioCrawler` however, it will be allowed to finish execution. Here is some minimal code to reproduce: ```js const Apify = require('apify'); const cleanup = async () => { Apify.utils.log.info('Received kill. Cleaning up.'); await Apify.utils.sleep(3000); Apify.utils.log.info('Slept long enough, now exiting...'); process.exit(0); }; process.on('SIGINT', cleanup); Apify.main(async () => { const requestQueue = await Apify.openRequestQueue(); await requestQueue.addRequest({ url: 'https://news.ycombinator.com/' }); const crawler = new Apify.PuppeteerCrawler({ requestQueue, maxRequestsPerCrawl: 10, launchPuppeteerOptions: { headless: true }, // PuppeteerCrawler handler handlePageFunction: async ({ request, page }) => { console.log(`Processing ${request.url}...`); await Apify.utils.enqueueLinks({ page, requestQueue, selector: '.morelink' }); }, // CheerioCrawler handler // handlePageFunction: async ({ request, $ }) => { // console.log(`Processing ${request.url}...`); // await Apify.utils.enqueueLinks({ // $, // baseUrl: 'https://news.ycombinator.com', // requestQueue, // selector: '.morelink' // }); // } }); await crawler.run(); console.log('Crawler finished.'); }); ``` If you execute that code and send a `SIGNINT` with CTRL + C for example, only the first log line will be printed out. If you modify the script to use `CheerioCrawler` and then interrupt the script again with CTRL + C the first as well as the second log will be printed out. Any ideas? Thanks, Chris
priority
async sigint event listener not allowed to finish when using puppeteercrawler hi so i recently encountered the following weird behaviour when using puppeteercrawler and i was wondering if i m simply overlooking something here or whether you can do something about this when using puppeteercrawler and binding to sigterm or sigint and the like the event listener will not be allowed to finish execution when it s an async function when using cheeriocrawler however it will be allowed to finish execution here is some minimal code to reproduce js const apify require apify const cleanup async apify utils log info received kill cleaning up await apify utils sleep apify utils log info slept long enough now exiting process exit process on sigint cleanup apify main async const requestqueue await apify openrequestqueue await requestqueue addrequest url const crawler new apify puppeteercrawler requestqueue maxrequestspercrawl launchpuppeteeroptions headless true puppeteercrawler handler handlepagefunction async request page console log processing request url await apify utils enqueuelinks page requestqueue selector morelink cheeriocrawler handler handlepagefunction async request console log processing request url await apify utils enqueuelinks baseurl requestqueue selector morelink await crawler run console log crawler finished if you execute that code and send a signint with ctrl c for example only the first log line will be printed out if you modify the script to use cheeriocrawler and then interrupt the script again with ctrl c the first as well as the second log will be printed out any ideas thanks chris
1
537,587
15,731,499,601
IssuesEvent
2021-03-29 17:08:56
codidact/qpixel
https://api.github.com/repos/codidact/qpixel
opened
Add preference for showing the "imported" icon with tags so we can stop showing it to anonymous visitors
area: ruby complexity: unassessed priority: medium type: change request
On question lists including user profiles, questions that were imported from SE show an SE icon. This was done at the request of users to make reviewing them easier. However, having too many of these showing on the front page (or in search results) is kind of a bad look for people we're hoping to attract. This request is to add a user preference named "Show label for imports" (or something to that effect). We would show these icons only to users with "yes". Logged-out visitors, by definition, have no available user preferences, so for them it will be "no" and they won't see the icon. I would prefer if the default were "no" for new users, but some existing users will be unhappy if we take it away. If that means we need to make the default "yes" then we can do that, but would it be possible to make the default "no" but do a one-time bulk set to "yes" as part of the rollout? Or maybe we should just set it to no and announce it widely so people can put it back if they want it? The code for the icon doesn't distinguish by community (I asked), so this would need to be a network preference, not a per-community one.
1.0
Add preference for showing the "imported" icon with tags so we can stop showing it to anonymous visitors - On question lists including user profiles, questions that were imported from SE show an SE icon. This was done at the request of users to make reviewing them easier. However, having too many of these showing on the front page (or in search results) is kind of a bad look for people we're hoping to attract. This request is to add a user preference named "Show label for imports" (or something to that effect). We would show these icons only to users with "yes". Logged-out visitors, by definition, have no available user preferences, so for them it will be "no" and they won't see the icon. I would prefer if the default were "no" for new users, but some existing users will be unhappy if we take it away. If that means we need to make the default "yes" then we can do that, but would it be possible to make the default "no" but do a one-time bulk set to "yes" as part of the rollout? Or maybe we should just set it to no and announce it widely so people can put it back if they want it? The code for the icon doesn't distinguish by community (I asked), so this would need to be a network preference, not a per-community one.
priority
add preference for showing the imported icon with tags so we can stop showing it to anonymous visitors on question lists including user profiles questions that were imported from se show an se icon this was done at the request of users to make reviewing them easier however having too many of these showing on the front page or in search results is kind of a bad look for people we re hoping to attract this request is to add a user preference named show label for imports or something to that effect we would show these icons only to users with yes logged out visitors by definition have no available user preferences so for them it will be no and they won t see the icon i would prefer if the default were no for new users but some existing users will be unhappy if we take it away if that means we need to make the default yes then we can do that but would it be possible to make the default no but do a one time bulk set to yes as part of the rollout or maybe we should just set it to no and announce it widely so people can put it back if they want it the code for the icon doesn t distinguish by community i asked so this would need to be a network preference not a per community one
1
537,596
15,731,563,938
IssuesEvent
2021-03-29 17:13:46
AY2021S2-CS2103T-W15-3/tp
https://api.github.com/repos/AY2021S2-CS2103T-W15-3/tp
closed
As a restaurant owner I want to search for ingredients
priority.Medium type.Story
... so that I can see their availability.
1.0
As a restaurant owner I want to search for ingredients - ... so that I can see their availability.
priority
as a restaurant owner i want to search for ingredients so that i can see their availability
1
129,938
5,106,912,131
IssuesEvent
2017-01-05 13:16:45
DigitalCampus/django-oppia
https://api.github.com/repos/DigitalCampus/django-oppia
closed
Model for tracking course 'completedness'
enhancement medium priority time: 8 hours
So it's all cached and so will be much quicker to generate the course progress
1.0
Model for tracking course 'completedness' - So it's all cached and so will be much quicker to generate the course progress
priority
model for tracking course completedness so it s all cached and so will be much quicker to generate the course progress
1
74,535
3,441,276,352
IssuesEvent
2015-12-14 17:47:52
ngageoint/hootenanny-ui
https://api.github.com/repos/ngageoint/hootenanny-ui
closed
Cannot delete closed folder
Priority: Medium Status: Accepted/Closed Type: Bug
Following error when trying to delete closed folder: "12/10/2015, 5:30:56 PM: Unable to delete dataset BY. TypeError: Cannot read property 'parentNode' of null"
1.0
Cannot delete closed folder - Following error when trying to delete closed folder: "12/10/2015, 5:30:56 PM: Unable to delete dataset BY. TypeError: Cannot read property 'parentNode' of null"
priority
cannot delete closed folder following error when trying to delete closed folder pm unable to delete dataset by typeerror cannot read property parentnode of null
1
291,592
8,940,636,315
IssuesEvent
2019-01-24 00:33:28
bdecon/econ_data
https://api.github.com/repos/bdecon/econ_data
closed
bd CPS: new variables: unique household and person ID
enhancement new variable priority: medium
To match the revised 2000-based weights (#82) with the bd CPS, I'll need to include the unqiue person and household ids (QSTNUM and OCCURNUM) in the bd CPS. These are only unique within a given month and are the only ID variables in the 2000-2002 data containing the revised weights.
1.0
bd CPS: new variables: unique household and person ID - To match the revised 2000-based weights (#82) with the bd CPS, I'll need to include the unqiue person and household ids (QSTNUM and OCCURNUM) in the bd CPS. These are only unique within a given month and are the only ID variables in the 2000-2002 data containing the revised weights.
priority
bd cps new variables unique household and person id to match the revised based weights with the bd cps i ll need to include the unqiue person and household ids qstnum and occurnum in the bd cps these are only unique within a given month and are the only id variables in the data containing the revised weights
1
77,829
3,507,282,763
IssuesEvent
2016-01-08 12:22:58
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
[Bug] map (BB #811)
migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** zgn **Original Date:** 16.02.2015 21:52:18 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** invalid **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/811 <hr> ![WoWScrnShot_021715_004829.jpg](https://bitbucket.org/repo/kMeMB/images/2155834988-WoWScrnShot_021715_004829.jpg)![WoWScrnShot_021715_004712.jpg](https://bitbucket.org/repo/kMeMB/images/568036514-WoWScrnShot_021715_004712.jpg)
1.0
[Bug] map (BB #811) - This issue was migrated from bitbucket. **Original Reporter:** zgn **Original Date:** 16.02.2015 21:52:18 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** invalid **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/811 <hr> ![WoWScrnShot_021715_004829.jpg](https://bitbucket.org/repo/kMeMB/images/2155834988-WoWScrnShot_021715_004829.jpg)![WoWScrnShot_021715_004712.jpg](https://bitbucket.org/repo/kMeMB/images/568036514-WoWScrnShot_021715_004712.jpg)
priority
map bb this issue was migrated from bitbucket original reporter zgn original date gmt original priority major original type bug original state invalid direct link
1
694,822
23,831,618,549
IssuesEvent
2022-09-05 21:55:21
ncssar/radiolog
https://api.github.com/repos/ncssar/radiolog
closed
subjectLocatedDialog exception: radioLocField has no attribute 'toPlainText'
bug Priority:Medium
This code was originally copied from subjectLocatedDialog where radioLogField is a QTextEdit which has a method .toPlainText(). But in this dialog, it's a QLineEdit which has no such method. Change to use .text() instead of .toPlainText().
1.0
subjectLocatedDialog exception: radioLocField has no attribute 'toPlainText' - This code was originally copied from subjectLocatedDialog where radioLogField is a QTextEdit which has a method .toPlainText(). But in this dialog, it's a QLineEdit which has no such method. Change to use .text() instead of .toPlainText().
priority
subjectlocateddialog exception radiolocfield has no attribute toplaintext this code was originally copied from subjectlocateddialog where radiologfield is a qtextedit which has a method toplaintext but in this dialog it s a qlineedit which has no such method change to use text instead of toplaintext
1
387,961
11,472,704,750
IssuesEvent
2020-02-09 18:50:14
cuappdev/pollo-ios
https://api.github.com/repos/cuappdev/pollo-ios
closed
Add notifications for session connect/disconnect
Priority: Medium Status: In Progress Type: Feature
User should be alerted when the socket connects/disconnects during a poll session Note: in progress on branch ![image](https://user-images.githubusercontent.com/34046832/73403539-a1430e80-42bd-11ea-8190-6772e1be8047.png)
1.0
Add notifications for session connect/disconnect - User should be alerted when the socket connects/disconnects during a poll session Note: in progress on branch ![image](https://user-images.githubusercontent.com/34046832/73403539-a1430e80-42bd-11ea-8190-6772e1be8047.png)
priority
add notifications for session connect disconnect user should be alerted when the socket connects disconnects during a poll session note in progress on branch
1
332,201
10,089,486,824
IssuesEvent
2019-07-26 09:03:01
AbsaOSS/enceladus
https://api.github.com/repos/AbsaOSS/enceladus
closed
Passing data through standardization and conformance twice creates only on run
Conformance Standardization bug priority: medium
## Describe the bug If I pass data through standardization and conformance twice it currently appends the new run to the old one thanks to the `uniqueId` in the _INFO file. This then makes data in the Run view quite hard to read and understand ## To Reproduce 1. Run standardization and conformance two times. ## Expected behaviour I would expect to for it to have its own run entry.
1.0
Passing data through standardization and conformance twice creates only on run - ## Describe the bug If I pass data through standardization and conformance twice it currently appends the new run to the old one thanks to the `uniqueId` in the _INFO file. This then makes data in the Run view quite hard to read and understand ## To Reproduce 1. Run standardization and conformance two times. ## Expected behaviour I would expect to for it to have its own run entry.
priority
passing data through standardization and conformance twice creates only on run describe the bug if i pass data through standardization and conformance twice it currently appends the new run to the old one thanks to the uniqueid in the info file this then makes data in the run view quite hard to read and understand to reproduce run standardization and conformance two times expected behaviour i would expect to for it to have its own run entry
1
227,796
7,542,857,576
IssuesEvent
2018-04-17 14:06:55
RoboJackets/robocup-software
https://api.github.com/repos/RoboJackets/robocup-software
closed
Improve OurRobot.hasBall()
area / soccer exp / expert (3) priority / medium status / developing type / enhancement
Right now it just returns true if the ball sensor sees the ball. It'd be nice to have another method that tracks the last time the ball was sensed, so noisiness in the ball sensor value doesn't throw us off. The Aim behavior currently does this, but it'd be nice to have something more global.
1.0
Improve OurRobot.hasBall() - Right now it just returns true if the ball sensor sees the ball. It'd be nice to have another method that tracks the last time the ball was sensed, so noisiness in the ball sensor value doesn't throw us off. The Aim behavior currently does this, but it'd be nice to have something more global.
priority
improve ourrobot hasball right now it just returns true if the ball sensor sees the ball it d be nice to have another method that tracks the last time the ball was sensed so noisiness in the ball sensor value doesn t throw us off the aim behavior currently does this but it d be nice to have something more global
1
727,133
25,024,222,965
IssuesEvent
2022-11-04 05:51:26
Automattic/woocommerce-subscriptions-core
https://api.github.com/repos/Automattic/woocommerce-subscriptions-core
closed
Refactoring the `wcs_copy_order_meta` function to work with HPOS
type: task priority: critical size: medium compatibility: custom order tables
Project thread: pdjTHR-Xp-p2 Broken flows: - WCPay cannot process subscription renewals --- ## Description <!-- A clear and concise description of what the new feature or improvement is. Include images or screenshots to clarify the context. What are you trying to do – what's the wider flow? --> With Custom Order Tables being worked on by the WC Core team ([public announcement](https://developer.woocommerce.com/2022/01/17/the-plan-for-the-woocommerce-custom-order-table/)), we need to begin to think about updating the Subscriptions Core library to remove any code that making direct DB queries to the posts and post meta tables. In this issue, we're looking into refactoring the `wcs_copy_order_meta()` which makes a `$wpdb->prepare` call and allows stores to filter the meta query. ## Proposed changes - [ ] Move the current meta query code and meta query filter ([this code](https://github.com/Automattic/woocommerce-subscriptions-core/blob/2a0654bf0385cc3e5b097943aea5589e843b05d0/includes/wcs-order-functions.php#L159-L197)) into a new function e.g. `wcs_get_copy_data_meta_query()` (this function should probably go in `wcs-compatibility-functions.php`) - [ ] Surround the new `wcs_get_copy_data_meta_query()` function and `$meta = $wpdb->get_results( $meta_query, 'ARRAY_A' );` line with a `if ( has_filter( 'wcs_' . $type . '_meta_query' ) )` and deprecate the filter inside this condition before calling the new compatibility function - [ ] Inside the else statement, get all the $order meta using `$order->get_meta_data()` instead of the meta_query approach, then format this array and remove any default meta we don't want (i.e. [this list](https://github.com/Automattic/woocommerce-subscriptions-core/blob/2a0654bf0385cc3e5b097943aea5589e843b05d0/includes/wcs-order-functions.php#L165-L187)) - [ ] Keep the `wcs_' . $type . '_meta` filter to allow thirdparty/custom code to add or remove meta keys/values that are being copied from and to the objects. Here's a quick gist I put together to showcase the proposed approach: https://gist.github.com/mattallan/f68cda00e34873e6dfd162b861ec378b ## Product impact <!-- What product(s) is this feature intended for? --> - Does this feature affect WooCommerce Subscriptions? yes - Does this feature affect WooCommerce Payments? yes ## Dev notes <!-- If applicable, additional technical or implementation details that will help when developing this feature or improvement. --> With this approach, stores will continue using the deprecated filter and old meta_query on the post table to copy order metadata, however, I don't see any way around this.
1.0
Refactoring the `wcs_copy_order_meta` function to work with HPOS - Project thread: pdjTHR-Xp-p2 Broken flows: - WCPay cannot process subscription renewals --- ## Description <!-- A clear and concise description of what the new feature or improvement is. Include images or screenshots to clarify the context. What are you trying to do – what's the wider flow? --> With Custom Order Tables being worked on by the WC Core team ([public announcement](https://developer.woocommerce.com/2022/01/17/the-plan-for-the-woocommerce-custom-order-table/)), we need to begin to think about updating the Subscriptions Core library to remove any code that making direct DB queries to the posts and post meta tables. In this issue, we're looking into refactoring the `wcs_copy_order_meta()` which makes a `$wpdb->prepare` call and allows stores to filter the meta query. ## Proposed changes - [ ] Move the current meta query code and meta query filter ([this code](https://github.com/Automattic/woocommerce-subscriptions-core/blob/2a0654bf0385cc3e5b097943aea5589e843b05d0/includes/wcs-order-functions.php#L159-L197)) into a new function e.g. `wcs_get_copy_data_meta_query()` (this function should probably go in `wcs-compatibility-functions.php`) - [ ] Surround the new `wcs_get_copy_data_meta_query()` function and `$meta = $wpdb->get_results( $meta_query, 'ARRAY_A' );` line with a `if ( has_filter( 'wcs_' . $type . '_meta_query' ) )` and deprecate the filter inside this condition before calling the new compatibility function - [ ] Inside the else statement, get all the $order meta using `$order->get_meta_data()` instead of the meta_query approach, then format this array and remove any default meta we don't want (i.e. [this list](https://github.com/Automattic/woocommerce-subscriptions-core/blob/2a0654bf0385cc3e5b097943aea5589e843b05d0/includes/wcs-order-functions.php#L165-L187)) - [ ] Keep the `wcs_' . $type . '_meta` filter to allow thirdparty/custom code to add or remove meta keys/values that are being copied from and to the objects. Here's a quick gist I put together to showcase the proposed approach: https://gist.github.com/mattallan/f68cda00e34873e6dfd162b861ec378b ## Product impact <!-- What product(s) is this feature intended for? --> - Does this feature affect WooCommerce Subscriptions? yes - Does this feature affect WooCommerce Payments? yes ## Dev notes <!-- If applicable, additional technical or implementation details that will help when developing this feature or improvement. --> With this approach, stores will continue using the deprecated filter and old meta_query on the post table to copy order metadata, however, I don't see any way around this.
priority
refactoring the wcs copy order meta function to work with hpos project thread pdjthr xp broken flows wcpay cannot process subscription renewals description a clear and concise description of what the new feature or improvement is include images or screenshots to clarify the context what are you trying to do – what s the wider flow with custom order tables being worked on by the wc core team we need to begin to think about updating the subscriptions core library to remove any code that making direct db queries to the posts and post meta tables in this issue we re looking into refactoring the wcs copy order meta which makes a wpdb prepare call and allows stores to filter the meta query proposed changes move the current meta query code and meta query filter into a new function e g wcs get copy data meta query this function should probably go in wcs compatibility functions php surround the new wcs get copy data meta query function and meta wpdb get results meta query array a line with a if has filter wcs type meta query and deprecate the filter inside this condition before calling the new compatibility function inside the else statement get all the order meta using order get meta data instead of the meta query approach then format this array and remove any default meta we don t want i e keep the wcs type meta filter to allow thirdparty custom code to add or remove meta keys values that are being copied from and to the objects here s a quick gist i put together to showcase the proposed approach product impact does this feature affect woocommerce subscriptions yes does this feature affect woocommerce payments yes dev notes with this approach stores will continue using the deprecated filter and old meta query on the post table to copy order metadata however i don t see any way around this
1
367,052
10,833,489,963
IssuesEvent
2019-11-11 13:03:27
AY1920S1-CS2103T-T11-3/main
https://api.github.com/repos/AY1920S1-CS2103T-T11-3/main
closed
Disable event commands in stats window
priority.Medium
kindly add the following line to for EVERY command u wish to disable in stats tab if (MainWindow.isStatsTab()) { throw new CommandException(Messages.MESSAGE_WRONG_TAB); }
1.0
Disable event commands in stats window - kindly add the following line to for EVERY command u wish to disable in stats tab if (MainWindow.isStatsTab()) { throw new CommandException(Messages.MESSAGE_WRONG_TAB); }
priority
disable event commands in stats window kindly add the following line to for every command u wish to disable in stats tab if mainwindow isstatstab throw new commandexception messages message wrong tab
1
38,844
2,850,497,046
IssuesEvent
2015-05-31 16:39:29
damonkohler/sl4a
https://api.github.com/repos/damonkohler/sl4a
opened
WebView resource paths should be relative to script's location, not SL4A's
auto-migrated Priority-Medium Type-Enhancement
_From @GoogleCodeExporter on May 31, 2015 11:31_ ``` When displaying a WebView, relative paths don't work as you'd expect if the script is in a subdirectory. e.g.: 1. Create a folder in SL4A named test. 2. In that folder, place two files index.html and main.js. 3. In index.html, insert the line: <script src="main.js"></script>. (You might need head and body too?) 4. In main.is, write: alert("hello") 5. Open index.html. No alert is displayed. 6. Change the include line in index.html to: <script src="test/main.js"></script> 7. Open index.html again; the alert now appears. This means that relative paths are based at /mnt/sdcard/sl4a/scripts, rather than /mnt/sdcard/sl4a/scripts/test. This seems odd to me - a script's working directory should be the one containing it, so that it can access its resources without having to know about the directory structure above it. Otherwise the name of the folder has to be hardcoded into every resource path, which means it can't be moved, renamed, or copied as a base for another script without a lot of search-and-replace. ``` Original issue reported on code.google.com by `hyperhac...@gmail.com` on 14 Jul 2012 at 8:20 _Copied from original issue: damonkohler/android-scripting#644_
1.0
WebView resource paths should be relative to script's location, not SL4A's - _From @GoogleCodeExporter on May 31, 2015 11:31_ ``` When displaying a WebView, relative paths don't work as you'd expect if the script is in a subdirectory. e.g.: 1. Create a folder in SL4A named test. 2. In that folder, place two files index.html and main.js. 3. In index.html, insert the line: <script src="main.js"></script>. (You might need head and body too?) 4. In main.is, write: alert("hello") 5. Open index.html. No alert is displayed. 6. Change the include line in index.html to: <script src="test/main.js"></script> 7. Open index.html again; the alert now appears. This means that relative paths are based at /mnt/sdcard/sl4a/scripts, rather than /mnt/sdcard/sl4a/scripts/test. This seems odd to me - a script's working directory should be the one containing it, so that it can access its resources without having to know about the directory structure above it. Otherwise the name of the folder has to be hardcoded into every resource path, which means it can't be moved, renamed, or copied as a base for another script without a lot of search-and-replace. ``` Original issue reported on code.google.com by `hyperhac...@gmail.com` on 14 Jul 2012 at 8:20 _Copied from original issue: damonkohler/android-scripting#644_
priority
webview resource paths should be relative to script s location not s from googlecodeexporter on may when displaying a webview relative paths don t work as you d expect if the script is in a subdirectory e g create a folder in named test in that folder place two files index html and main js in index html insert the line you might need head and body too in main is write alert hello open index html no alert is displayed change the include line in index html to script src test main js open index html again the alert now appears this means that relative paths are based at mnt sdcard scripts rather than mnt sdcard scripts test this seems odd to me a script s working directory should be the one containing it so that it can access its resources without having to know about the directory structure above it otherwise the name of the folder has to be hardcoded into every resource path which means it can t be moved renamed or copied as a base for another script without a lot of search and replace original issue reported on code google com by hyperhac gmail com on jul at copied from original issue damonkohler android scripting
1
724,890
24,944,317,296
IssuesEvent
2022-10-31 21:59:38
bounswe/bounswe2022group7
https://api.github.com/repos/bounswe/bounswe2022group7
closed
Implement the Art Item page with endpoint integrations
Status: Pending Review Priority: Medium Difficulty: Hard Type: Implementation Target: Mobile
As discussed in the [Mobile Team Meeting 3](https://github.com/bounswe/bounswe2022group7/wiki/MOBILE-Meeting-Notes-%233), I was assigned to prepare the Art Item page and complete the integration of those with the relevant endpoints. * Since our documentation is not ready yet, the Back-end Team has created a Wiki page containing the endpoints that are ready to be integrated. See: [Endpoint Table for Backend Requests](https://github.com/bounswe/bounswe2022group7/wiki/Endpoints). * Some sub-tasks of this issue are as follows: - [x] Branch out from the `develop` branch - [ ] ~Connect the route from the homepage to the relevant Art Item pages~ - [x] Design the Art Item page UI - [x] #339 (responsible person: @atillaturkmen) - [x] Create a pull request to merge the new branch `dev/android/art-item-page` into `develop` **Deadline: 29/10/2022, 23:59** **Reviewer: @musasimsekdotdll**
1.0
Implement the Art Item page with endpoint integrations - As discussed in the [Mobile Team Meeting 3](https://github.com/bounswe/bounswe2022group7/wiki/MOBILE-Meeting-Notes-%233), I was assigned to prepare the Art Item page and complete the integration of those with the relevant endpoints. * Since our documentation is not ready yet, the Back-end Team has created a Wiki page containing the endpoints that are ready to be integrated. See: [Endpoint Table for Backend Requests](https://github.com/bounswe/bounswe2022group7/wiki/Endpoints). * Some sub-tasks of this issue are as follows: - [x] Branch out from the `develop` branch - [ ] ~Connect the route from the homepage to the relevant Art Item pages~ - [x] Design the Art Item page UI - [x] #339 (responsible person: @atillaturkmen) - [x] Create a pull request to merge the new branch `dev/android/art-item-page` into `develop` **Deadline: 29/10/2022, 23:59** **Reviewer: @musasimsekdotdll**
priority
implement the art item page with endpoint integrations as discussed in the i was assigned to prepare the art item page and complete the integration of those with the relevant endpoints since our documentation is not ready yet the back end team has created a wiki page containing the endpoints that are ready to be integrated see some sub tasks of this issue are as follows branch out from the develop branch connect the route from the homepage to the relevant art item pages design the art item page ui responsible person atillaturkmen create a pull request to merge the new branch dev android art item page into develop deadline reviewer musasimsekdotdll
1
541,215
15,823,384,986
IssuesEvent
2021-04-06 00:36:19
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
New Research Paper Icon Variations Per Tier
Category: Art Priority: Medium Squad: Saguaro
From Dis#4336 on Discord, Dis is a red green colour blind player "the colors of research papers are hard for me to see as colorblind. I can hardly tell difference between Advanced and Modern."
1.0
New Research Paper Icon Variations Per Tier - From Dis#4336 on Discord, Dis is a red green colour blind player "the colors of research papers are hard for me to see as colorblind. I can hardly tell difference between Advanced and Modern."
priority
new research paper icon variations per tier from dis on discord dis is a red green colour blind player the colors of research papers are hard for me to see as colorblind i can hardly tell difference between advanced and modern
1
240,427
7,801,615,192
IssuesEvent
2018-06-09 23:51:31
jahirfiquitiva/Blueprint
https://api.github.com/repos/jahirfiquitiva/Blueprint
closed
about the requests
Priority: Medium Status: Completed Type: Maintenance
This is from Blueprint version 1.2.2 -when we get requests from people the package id from the email are cut meaning that missing half or more from id code line.but the code id from xml files from the zip are ok.only on the email are not entire.
1.0
about the requests - This is from Blueprint version 1.2.2 -when we get requests from people the package id from the email are cut meaning that missing half or more from id code line.but the code id from xml files from the zip are ok.only on the email are not entire.
priority
about the requests this is from blueprint version when we get requests from people the package id from the email are cut meaning that missing half or more from id code line but the code id from xml files from the zip are ok only on the email are not entire
1
60,990
3,136,409,602
IssuesEvent
2015-09-10 19:45:08
projectcalico/calico-kubernetes
https://api.github.com/repos/projectcalico/calico-kubernetes
closed
Plugin logs should include process ID
priority/medium
The Kubelet might call multiple instances of the plugin at the same time. All logs are written to the same file, which makes correlating logs to plugin instances confusing. The logs should at least have the process ID so we can follow a single instance of the plugin.
1.0
Plugin logs should include process ID - The Kubelet might call multiple instances of the plugin at the same time. All logs are written to the same file, which makes correlating logs to plugin instances confusing. The logs should at least have the process ID so we can follow a single instance of the plugin.
priority
plugin logs should include process id the kubelet might call multiple instances of the plugin at the same time all logs are written to the same file which makes correlating logs to plugin instances confusing the logs should at least have the process id so we can follow a single instance of the plugin
1
301,506
9,221,079,070
IssuesEvent
2019-03-11 19:03:11
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
If the skill window reaches the right edge, tooltips overlap the professions
Fixed Medium Priority
![image](https://user-images.githubusercontent.com/3536496/52961674-80fa9800-3369-11e9-81e7-22e664a53a9f.png) It should appear within the skills window in that case.
1.0
If the skill window reaches the right edge, tooltips overlap the professions - ![image](https://user-images.githubusercontent.com/3536496/52961674-80fa9800-3369-11e9-81e7-22e664a53a9f.png) It should appear within the skills window in that case.
priority
if the skill window reaches the right edge tooltips overlap the professions it should appear within the skills window in that case
1
68,903
3,293,671,793
IssuesEvent
2015-10-30 20:06:41
TIBCOSoftware/genxdm
https://api.github.com/repos/TIBCOSoftware/genxdm
closed
AbstractNamespaceFixupFilter.inScope method should stop looking after matching prefix, even if namespace does not match
bug Component-Bridges Priority-Medium
For this xml... <ns:a xmlns:ns="foo"> <ns:b xmlns:ns="bar"> <ns:c xmlns:ns="foo"> some text </ns:c> </ns:b> <ns:a> When reconciling the namespaces for element c, the call to inScope will return true for the "ns" to "foo" namespace mapping.
1.0
AbstractNamespaceFixupFilter.inScope method should stop looking after matching prefix, even if namespace does not match - For this xml... <ns:a xmlns:ns="foo"> <ns:b xmlns:ns="bar"> <ns:c xmlns:ns="foo"> some text </ns:c> </ns:b> <ns:a> When reconciling the namespaces for element c, the call to inScope will return true for the "ns" to "foo" namespace mapping.
priority
abstractnamespacefixupfilter inscope method should stop looking after matching prefix even if namespace does not match for this xml some text when reconciling the namespaces for element c the call to inscope will return true for the ns to foo namespace mapping
1
97,811
4,006,808,756
IssuesEvent
2016-05-12 15:59:49
BugBusterSWE/documentation
https://api.github.com/repos/BugBusterSWE/documentation
closed
Aggiungere norme sulle decisioni prese in riunione
Manager priority:medium
*Documento in cui si trova il problema*: Activity #399 Norme di Progetto *Descrizione del problema*: Inserire le decisioni prese durante la riunione nelle norme, ricordandosi di rendere esplicito il collegamento al verbale con il comando definito da @polpetta. Link task: [https://bugbusters.teamwork.com/tasks/6649431](https://bugbusters.teamwork.com/tasks/6649431)
1.0
Aggiungere norme sulle decisioni prese in riunione - *Documento in cui si trova il problema*: Activity #399 Norme di Progetto *Descrizione del problema*: Inserire le decisioni prese durante la riunione nelle norme, ricordandosi di rendere esplicito il collegamento al verbale con il comando definito da @polpetta. Link task: [https://bugbusters.teamwork.com/tasks/6649431](https://bugbusters.teamwork.com/tasks/6649431)
priority
aggiungere norme sulle decisioni prese in riunione documento in cui si trova il problema activity norme di progetto descrizione del problema inserire le decisioni prese durante la riunione nelle norme ricordandosi di rendere esplicito il collegamento al verbale con il comando definito da polpetta link task
1
724,827
24,942,906,114
IssuesEvent
2022-10-31 20:35:09
bounswe/bounswe2022group7
https://api.github.com/repos/bounswe/bounswe2022group7
closed
Add tests for the Event Page
Status: Pending Review Priority: High Difficulty: Medium Type: Implementation Target: Mobile
To finalize the implementation of the Event Page, I should add tests. - [x] Add unit tests - [x] Add widget tests for the UI For unit tests, I can test the `string_helpers.dart` file. For widget tests, I will test the user interface of the Event Page. **Reviewer: @atillaturkmen** **Deadline: 31/10/2022, 23:00**
1.0
Add tests for the Event Page - To finalize the implementation of the Event Page, I should add tests. - [x] Add unit tests - [x] Add widget tests for the UI For unit tests, I can test the `string_helpers.dart` file. For widget tests, I will test the user interface of the Event Page. **Reviewer: @atillaturkmen** **Deadline: 31/10/2022, 23:00**
priority
add tests for the event page to finalize the implementation of the event page i should add tests add unit tests add widget tests for the ui for unit tests i can test the string helpers dart file for widget tests i will test the user interface of the event page reviewer atillaturkmen deadline
1
391,651
11,576,648,397
IssuesEvent
2020-02-21 12:26:30
luna/enso
https://api.github.com/repos/luna/enso
opened
Implement `openFile`
Category: Tooling Change: Non-Breaking Difficulty: Core Contributor Priority: Medium Type: Enhancement
### Summary For text files that are able to be edited collaboratively it's very important that the language server knows which of the files are open by which clients. The `text/openFile` message is what informs the LS about this. ### Value Knowing which files are open is incredibly important for the purposes of both updating clients on changes and knowing when to read files from disk or from an in-memory representation. This message ensures that the language server can retain a coherent picture of the project. ### Specification - [ ] Implement the `text/openFile` message as specified in the [design document](https://github.com/luna/enso/blob/master/doc/design/engine/engine-services.md). - [ ] This should track which files are open on a per-client basis, and keep them loaded into in-memory buffers. - [ ] Specify any errors in the design document. ### Acceptance Criteria & Test Cases - The above specification has been implemented. - The features have been rigorously tested.
1.0
Implement `openFile` - ### Summary For text files that are able to be edited collaboratively it's very important that the language server knows which of the files are open by which clients. The `text/openFile` message is what informs the LS about this. ### Value Knowing which files are open is incredibly important for the purposes of both updating clients on changes and knowing when to read files from disk or from an in-memory representation. This message ensures that the language server can retain a coherent picture of the project. ### Specification - [ ] Implement the `text/openFile` message as specified in the [design document](https://github.com/luna/enso/blob/master/doc/design/engine/engine-services.md). - [ ] This should track which files are open on a per-client basis, and keep them loaded into in-memory buffers. - [ ] Specify any errors in the design document. ### Acceptance Criteria & Test Cases - The above specification has been implemented. - The features have been rigorously tested.
priority
implement openfile summary for text files that are able to be edited collaboratively it s very important that the language server knows which of the files are open by which clients the text openfile message is what informs the ls about this value knowing which files are open is incredibly important for the purposes of both updating clients on changes and knowing when to read files from disk or from an in memory representation this message ensures that the language server can retain a coherent picture of the project specification implement the text openfile message as specified in the this should track which files are open on a per client basis and keep them loaded into in memory buffers specify any errors in the design document acceptance criteria test cases the above specification has been implemented the features have been rigorously tested
1
363,279
10,740,729,275
IssuesEvent
2019-10-29 18:46:07
kiwicom/schemathesis
https://api.github.com/repos/kiwicom/schemathesis
opened
Parameters with `in=formData` are not handled in `Case.call`
Priority: Medium Type: Bug
We need to make an appropriate call with a `multipart/form-data` or `application/x-www-form-urlencoded` content type
1.0
Parameters with `in=formData` are not handled in `Case.call` - We need to make an appropriate call with a `multipart/form-data` or `application/x-www-form-urlencoded` content type
priority
parameters with in formdata are not handled in case call we need to make an appropriate call with a multipart form data or application x www form urlencoded content type
1
599,237
18,268,349,898
IssuesEvent
2021-10-04 11:07:36
moducate/heimdall
https://api.github.com/repos/moducate/heimdall
opened
Dockerfile and Docker Compose Example
Priority: Medium Status: Available Type: Enhancement good first issue Hacktoberfest
Docker will be the preferred method for deploying Heimdall so we need to develop a Dockerfile and probably an exemplar Docker Compose configuration that includes a PostgreSQL instance (with migration handling).
1.0
Dockerfile and Docker Compose Example - Docker will be the preferred method for deploying Heimdall so we need to develop a Dockerfile and probably an exemplar Docker Compose configuration that includes a PostgreSQL instance (with migration handling).
priority
dockerfile and docker compose example docker will be the preferred method for deploying heimdall so we need to develop a dockerfile and probably an exemplar docker compose configuration that includes a postgresql instance with migration handling
1
186,229
6,734,509,532
IssuesEvent
2017-10-18 18:18:07
ubc/compair
https://api.github.com/repos/ubc/compair
closed
Remove course duplication from modal
developer suggestion enhancement medium priority
Can non-LTI course duplication be a regular screen instead of a modal? This would be more consistent with other workflows.
1.0
Remove course duplication from modal - Can non-LTI course duplication be a regular screen instead of a modal? This would be more consistent with other workflows.
priority
remove course duplication from modal can non lti course duplication be a regular screen instead of a modal this would be more consistent with other workflows
1
336,492
10,192,318,277
IssuesEvent
2019-08-12 10:46:48
DistrictDataLabs/yellowbrick
https://api.github.com/repos/DistrictDataLabs/yellowbrick
closed
Windows Image Similarity Tests
level: expert os: windows priority: medium
A good suggestion came out from @jkeung at pycon2018, we should investigate creating separate baseline images for windows machines. Recommend that we had a check in the base.py for if the machine is windows and then direct the test to checkout the windows folder in baseline images or otherwise, significantly increase the tolerance for them.
1.0
Windows Image Similarity Tests - A good suggestion came out from @jkeung at pycon2018, we should investigate creating separate baseline images for windows machines. Recommend that we had a check in the base.py for if the machine is windows and then direct the test to checkout the windows folder in baseline images or otherwise, significantly increase the tolerance for them.
priority
windows image similarity tests a good suggestion came out from jkeung at we should investigate creating separate baseline images for windows machines recommend that we had a check in the base py for if the machine is windows and then direct the test to checkout the windows folder in baseline images or otherwise significantly increase the tolerance for them
1
308,065
9,429,769,859
IssuesEvent
2019-04-12 07:14:04
dmwm/WMCore
https://api.github.com/repos/dmwm/WMCore
closed
Clean after SiteDB to CRIC migration
Enhancement Medium Priority
Right now it uses an environment variable to check whether it has to query SiteDB or CRIC, see #8682 Remove those checks once we have completely migrated to CRIC
1.0
Clean after SiteDB to CRIC migration - Right now it uses an environment variable to check whether it has to query SiteDB or CRIC, see #8682 Remove those checks once we have completely migrated to CRIC
priority
clean after sitedb to cric migration right now it uses an environment variable to check whether it has to query sitedb or cric see remove those checks once we have completely migrated to cric
1
29,250
2,714,206,062
IssuesEvent
2015-04-10 00:42:52
hamiltont/clasp
https://api.github.com/repos/hamiltont/clasp
opened
Failed AVD creation causes crash
bug Medium priority
_From @hamiltont on September 11, 2014 17:13_ EmulatorBuilder doesn't check if the AVD was actually created before trying to start it _Copied from original issue: hamiltont/attack#49_
1.0
Failed AVD creation causes crash - _From @hamiltont on September 11, 2014 17:13_ EmulatorBuilder doesn't check if the AVD was actually created before trying to start it _Copied from original issue: hamiltont/attack#49_
priority
failed avd creation causes crash from hamiltont on september emulatorbuilder doesn t check if the avd was actually created before trying to start it copied from original issue hamiltont attack
1
104,553
4,213,541,816
IssuesEvent
2016-06-29 19:25:36
sandialabs/slycat
https://api.github.com/repos/sandialabs/slycat
opened
Point selection through clicking fails in upper left of points (Firefox and Chrome on Windows 7)
bug CCA Model Medium Priority PS Model
Although this is present in both CCA and PS models, it is easier to see in the CCA model since it isn't trying to retrieve an image at the same time. Clicking in the upper left corner of the point doesn't select it, while clicking in the lower right corner is just fine. Perhaps using the arrow point as the reference is deceptive, but the target area within the point is skewed to the bottom right (not by a lot, but enough that sometimes it doesn't select when you expect it to).
1.0
Point selection through clicking fails in upper left of points (Firefox and Chrome on Windows 7) - Although this is present in both CCA and PS models, it is easier to see in the CCA model since it isn't trying to retrieve an image at the same time. Clicking in the upper left corner of the point doesn't select it, while clicking in the lower right corner is just fine. Perhaps using the arrow point as the reference is deceptive, but the target area within the point is skewed to the bottom right (not by a lot, but enough that sometimes it doesn't select when you expect it to).
priority
point selection through clicking fails in upper left of points firefox and chrome on windows although this is present in both cca and ps models it is easier to see in the cca model since it isn t trying to retrieve an image at the same time clicking in the upper left corner of the point doesn t select it while clicking in the lower right corner is just fine perhaps using the arrow point as the reference is deceptive but the target area within the point is skewed to the bottom right not by a lot but enough that sometimes it doesn t select when you expect it to
1
446,088
12,839,293,815
IssuesEvent
2020-07-07 19:03:19
ansible/awx
https://api.github.com/repos/ansible/awx
closed
Custom credential types with boolean fields cannot be created or edited using the AWX console
component:ui priority:medium state:in_progress type:bug
##### ISSUE TYPE - Bug Report ##### SUMMARY I am creating custom credential types (and custom credentials) using the Ansible awx.awx collection's `awx.awx.tower_credential_type` and `awx.awx.tower_credential` modules. I can create credentials using the `tower-cli` but not using the AWX console. You cannot edit existing or create new custom credentials in the console because the **SAVE** button is never enabled. When I click the checkbox for the boolean field that's presented for a boolean property the text **Please enter a value** is printed. Custom credential types that do not contain booleans can be edited and created. ##### ENVIRONMENT * AWX version: 11.2.0 * AWX install method: kubernetes * Ansible version: 2.9.7 * Operating System: kubernetes * Web Browser: Safari or Chrome ##### STEPS TO REPRODUCE Create a custom credential type (using the Ansible `awx.awx.tower_credential` module). Here's a snippet from my playbook that creates my own `kubernetes` type. The field that causes the problem is `verify_ssl`: - ``` - name: Add kubernetes credential type awx.awx.tower_credential_type: name: kubernetes description: Credentials for a Kubernetes/OpenShift cluster kind: cloud inputs: fields: - id: name type: string label: A symbolic name for the cluster - id: host type: string label: API host - id: api_key type: string label: API Key (Token) secret: true - id: verify_ssl type: boolean label: Verify SSL required: - name - host - api_key - verify_ssl injectors: env: K8S_AUTH_NAME: "{{ '{{' }} name {{ '}}' }}" K8S_AUTH_HOST: "{{ '{{' }} host {{ '}}' }}" K8S_AUTH_API_KEY: "{{ '{{' }} api_key {{ '}}' }}" K8S_AUTH_VERIFY_SSL: "{{ '{{' }} verify_ssl {{ '}}' }}" ``` You can create credentials of this type using the `awx.awx.tower_credential` module. Here's a snippet that successfully creates instances of the credential that can be used in templates: - ``` - name: Add kubernetes credential awx.awx.tower_credential: name: "{{ item.name }}" credential_type: kubernetes description: "{{ item.description|default('', true) }}" organization: "{{ tower.organisation }}" inputs: name: "{{ item.name }}" host: "{{ item.host }}" api_key: "{{ item.api_key }}" verify_ssl: "{{ item.verify_ssl|bool }}" ``` ...but you will find that you cannot edit existing ones or create new ones using the AWX console. ##### EXPECTED RESULTS I expect to be able to edit and create custom credentials that contain booleans using the AWX console. ##### ACTUAL RESULTS The **SAVE** button is never enabled for custom credentials that contain booleans - so they cannot be created or existing ones changed. ##### ADDITIONAL INFORMATION n/a
1.0
Custom credential types with boolean fields cannot be created or edited using the AWX console - ##### ISSUE TYPE - Bug Report ##### SUMMARY I am creating custom credential types (and custom credentials) using the Ansible awx.awx collection's `awx.awx.tower_credential_type` and `awx.awx.tower_credential` modules. I can create credentials using the `tower-cli` but not using the AWX console. You cannot edit existing or create new custom credentials in the console because the **SAVE** button is never enabled. When I click the checkbox for the boolean field that's presented for a boolean property the text **Please enter a value** is printed. Custom credential types that do not contain booleans can be edited and created. ##### ENVIRONMENT * AWX version: 11.2.0 * AWX install method: kubernetes * Ansible version: 2.9.7 * Operating System: kubernetes * Web Browser: Safari or Chrome ##### STEPS TO REPRODUCE Create a custom credential type (using the Ansible `awx.awx.tower_credential` module). Here's a snippet from my playbook that creates my own `kubernetes` type. The field that causes the problem is `verify_ssl`: - ``` - name: Add kubernetes credential type awx.awx.tower_credential_type: name: kubernetes description: Credentials for a Kubernetes/OpenShift cluster kind: cloud inputs: fields: - id: name type: string label: A symbolic name for the cluster - id: host type: string label: API host - id: api_key type: string label: API Key (Token) secret: true - id: verify_ssl type: boolean label: Verify SSL required: - name - host - api_key - verify_ssl injectors: env: K8S_AUTH_NAME: "{{ '{{' }} name {{ '}}' }}" K8S_AUTH_HOST: "{{ '{{' }} host {{ '}}' }}" K8S_AUTH_API_KEY: "{{ '{{' }} api_key {{ '}}' }}" K8S_AUTH_VERIFY_SSL: "{{ '{{' }} verify_ssl {{ '}}' }}" ``` You can create credentials of this type using the `awx.awx.tower_credential` module. Here's a snippet that successfully creates instances of the credential that can be used in templates: - ``` - name: Add kubernetes credential awx.awx.tower_credential: name: "{{ item.name }}" credential_type: kubernetes description: "{{ item.description|default('', true) }}" organization: "{{ tower.organisation }}" inputs: name: "{{ item.name }}" host: "{{ item.host }}" api_key: "{{ item.api_key }}" verify_ssl: "{{ item.verify_ssl|bool }}" ``` ...but you will find that you cannot edit existing ones or create new ones using the AWX console. ##### EXPECTED RESULTS I expect to be able to edit and create custom credentials that contain booleans using the AWX console. ##### ACTUAL RESULTS The **SAVE** button is never enabled for custom credentials that contain booleans - so they cannot be created or existing ones changed. ##### ADDITIONAL INFORMATION n/a
priority
custom credential types with boolean fields cannot be created or edited using the awx console issue type bug report summary i am creating custom credential types and custom credentials using the ansible awx awx collection s awx awx tower credential type and awx awx tower credential modules i can create credentials using the tower cli but not using the awx console you cannot edit existing or create new custom credentials in the console because the save button is never enabled when i click the checkbox for the boolean field that s presented for a boolean property the text please enter a value is printed custom credential types that do not contain booleans can be edited and created environment awx version awx install method kubernetes ansible version operating system kubernetes web browser safari or chrome steps to reproduce create a custom credential type using the ansible awx awx tower credential module here s a snippet from my playbook that creates my own kubernetes type the field that causes the problem is verify ssl name add kubernetes credential type awx awx tower credential type name kubernetes description credentials for a kubernetes openshift cluster kind cloud inputs fields id name type string label a symbolic name for the cluster id host type string label api host id api key type string label api key token secret true id verify ssl type boolean label verify ssl required name host api key verify ssl injectors env auth name name auth host host auth api key api key auth verify ssl verify ssl you can create credentials of this type using the awx awx tower credential module here s a snippet that successfully creates instances of the credential that can be used in templates name add kubernetes credential awx awx tower credential name item name credential type kubernetes description item description default true organization tower organisation inputs name item name host item host api key item api key verify ssl item verify ssl bool but you will find that you cannot edit existing ones or create new ones using the awx console expected results i expect to be able to edit and create custom credentials that contain booleans using the awx console actual results the save button is never enabled for custom credentials that contain booleans so they cannot be created or existing ones changed additional information n a
1
365,437
10,781,331,605
IssuesEvent
2019-11-04 14:43:33
gammapy/gammapy
https://api.github.com/repos/gammapy/gammapy
opened
Gammapy validation: joint Crab analysis
effort-medium package-intermediate priority-high
As part of the Gammapy validation effort while preparing v1.0, we should try to reproduce the joint likelihood spectral analysis for the Crab nebula that we did with Gammapy v0.9 a wile ago. This is a good use case for the high-level joint dataset and fitting API we are currently developing in Gammapy (see e.g. #2505), and to test parameter error and 2D error contour computations. This would also be a good check for the safe energy mask handling and energy dispersion apply for 1D spectral analysis, topics that were checked in detail when doing the joint Crab analysis. A task description and references are here: - https://github.com/gammapy/gammapy-benchmarks - https://github.com/gammapy/gammapy-benchmarks/blob/master/validation https://github.com/open-gamma-ray-astro/joint-crab This is on a best-effort basis, the starting point should be to try to load the reduced OGIP data and reproduce the joint log parabola fit. Then one could continue and either reproduce the analysis including the modified likelihood that includes systematics (see if that is possible or even easy with the current dataset API), and / or look at the parameter errors and correlations in detail. For this, you don't have to be a Gammapy expert, what's required is some Python & Gammapy & gamma-ray experience, and a few days of free time in Nov 2019. We're looking for help! If you're interested in this task, please leave a comment here, or contact me on Slack. cc @cosimoNigro @kbruegge @Bultako @TarekHC @QRemy
1.0
Gammapy validation: joint Crab analysis - As part of the Gammapy validation effort while preparing v1.0, we should try to reproduce the joint likelihood spectral analysis for the Crab nebula that we did with Gammapy v0.9 a wile ago. This is a good use case for the high-level joint dataset and fitting API we are currently developing in Gammapy (see e.g. #2505), and to test parameter error and 2D error contour computations. This would also be a good check for the safe energy mask handling and energy dispersion apply for 1D spectral analysis, topics that were checked in detail when doing the joint Crab analysis. A task description and references are here: - https://github.com/gammapy/gammapy-benchmarks - https://github.com/gammapy/gammapy-benchmarks/blob/master/validation https://github.com/open-gamma-ray-astro/joint-crab This is on a best-effort basis, the starting point should be to try to load the reduced OGIP data and reproduce the joint log parabola fit. Then one could continue and either reproduce the analysis including the modified likelihood that includes systematics (see if that is possible or even easy with the current dataset API), and / or look at the parameter errors and correlations in detail. For this, you don't have to be a Gammapy expert, what's required is some Python & Gammapy & gamma-ray experience, and a few days of free time in Nov 2019. We're looking for help! If you're interested in this task, please leave a comment here, or contact me on Slack. cc @cosimoNigro @kbruegge @Bultako @TarekHC @QRemy
priority
gammapy validation joint crab analysis as part of the gammapy validation effort while preparing we should try to reproduce the joint likelihood spectral analysis for the crab nebula that we did with gammapy a wile ago this is a good use case for the high level joint dataset and fitting api we are currently developing in gammapy see e g and to test parameter error and error contour computations this would also be a good check for the safe energy mask handling and energy dispersion apply for spectral analysis topics that were checked in detail when doing the joint crab analysis a task description and references are here this is on a best effort basis the starting point should be to try to load the reduced ogip data and reproduce the joint log parabola fit then one could continue and either reproduce the analysis including the modified likelihood that includes systematics see if that is possible or even easy with the current dataset api and or look at the parameter errors and correlations in detail for this you don t have to be a gammapy expert what s required is some python gammapy gamma ray experience and a few days of free time in nov we re looking for help if you re interested in this task please leave a comment here or contact me on slack cc cosimonigro kbruegge bultako tarekhc qremy
1
648,170
21,177,651,169
IssuesEvent
2022-04-08 02:58:14
AY2122S2-CS2103T-T09-1/tp
https://api.github.com/repos/AY2122S2-CS2103T-T09-1/tp
closed
[PE-D] The constraints for task description are inaccurate
priority.Medium
The constraints for task descriptions are that it should not be blank or start with white spaces, and the length should be less than 256 characters: However, I cannot create descriptions with foreign language characters, as in the example below: ![image.png](https://raw.githubusercontent.com/muraddurrani/ped/main/files/415283b0-805e-4e25-a684-bcb6195f1f37.png) <!--session: 1648793138290-d700c7f7-16ca-428b-98c1-c9fb72381124--> <!--Version: Web v3.4.2--> ------------- Labels: `severity.Low` `type.FunctionalityBug` original: muraddurrani/ped#2
1.0
[PE-D] The constraints for task description are inaccurate - The constraints for task descriptions are that it should not be blank or start with white spaces, and the length should be less than 256 characters: However, I cannot create descriptions with foreign language characters, as in the example below: ![image.png](https://raw.githubusercontent.com/muraddurrani/ped/main/files/415283b0-805e-4e25-a684-bcb6195f1f37.png) <!--session: 1648793138290-d700c7f7-16ca-428b-98c1-c9fb72381124--> <!--Version: Web v3.4.2--> ------------- Labels: `severity.Low` `type.FunctionalityBug` original: muraddurrani/ped#2
priority
the constraints for task description are inaccurate the constraints for task descriptions are that it should not be blank or start with white spaces and the length should be less than characters however i cannot create descriptions with foreign language characters as in the example below labels severity low type functionalitybug original muraddurrani ped
1
468,105
13,461,658,268
IssuesEvent
2020-09-09 15:04:33
hubmapconsortium/ccf-ui
https://api.github.com/repos/hubmapconsortium/ccf-ui
closed
As a researcher I need to, when in the GitHub version of the app, see a logo so that I know that the app is part of HuBMAP
Priority: Medium High SP:1 user-story
Ensure the researcher knows they are in a HuBMAP app by: * Placing a persistant HuBMAP logo in the top left of the Logo Bar in the UI that has strong contrast with the background * The native tooltip that appears on hover should show the title text: HuBMAP (Human Body Molecular Atlas Project) * Linking the logo to the default, aside panels open and torso active with organs overlaid, view * Showing the logo is clickable by having the logo have an animated change to blue on hover with a pointer that is a finger to indicate a link * Providing a click action that refreshes the app, returning it to the state when the user started their session Original ID: 1
1.0
As a researcher I need to, when in the GitHub version of the app, see a logo so that I know that the app is part of HuBMAP - Ensure the researcher knows they are in a HuBMAP app by: * Placing a persistant HuBMAP logo in the top left of the Logo Bar in the UI that has strong contrast with the background * The native tooltip that appears on hover should show the title text: HuBMAP (Human Body Molecular Atlas Project) * Linking the logo to the default, aside panels open and torso active with organs overlaid, view * Showing the logo is clickable by having the logo have an animated change to blue on hover with a pointer that is a finger to indicate a link * Providing a click action that refreshes the app, returning it to the state when the user started their session Original ID: 1
priority
as a researcher i need to when in the github version of the app see a logo so that i know that the app is part of hubmap ensure the researcher knows they are in a hubmap app by placing a persistant hubmap logo in the top left of the logo bar in the ui that has strong contrast with the background the native tooltip that appears on hover should show the title text hubmap human body molecular atlas project linking the logo to the default aside panels open and torso active with organs overlaid view showing the logo is clickable by having the logo have an animated change to blue on hover with a pointer that is a finger to indicate a link providing a click action that refreshes the app returning it to the state when the user started their session original id
1
550,129
16,105,557,430
IssuesEvent
2021-04-27 14:33:59
svthalia/concrexit
https://api.github.com/repos/svthalia/concrexit
closed
Changing registration start after event publishing is always blocked
bug priority: medium
### Describe the bug When trying to change the registration start date after publishing the event it will never be possible to change it anymore even though registration _has not_ started yet. ### How to reproduce Steps to reproduce the behaviour: 1. Create an event with registrations in the _future_ 2. Publish the event 3. Try to change the registration start date 4. See error that says the registration date cannot be changed because registration has already opened ### Expected behaviour It should actually matter what the date is and if the registration is open for this error to appear. ### Screenshots <img width="612" alt="Screenshot 2021-04-02 at 21 17 26" src="https://user-images.githubusercontent.com/1799914/113446776-dafb3200-93f8-11eb-85c4-a4eca78b29bb.png"> ### Additional context Add any other context about the problem here.
1.0
Changing registration start after event publishing is always blocked - ### Describe the bug When trying to change the registration start date after publishing the event it will never be possible to change it anymore even though registration _has not_ started yet. ### How to reproduce Steps to reproduce the behaviour: 1. Create an event with registrations in the _future_ 2. Publish the event 3. Try to change the registration start date 4. See error that says the registration date cannot be changed because registration has already opened ### Expected behaviour It should actually matter what the date is and if the registration is open for this error to appear. ### Screenshots <img width="612" alt="Screenshot 2021-04-02 at 21 17 26" src="https://user-images.githubusercontent.com/1799914/113446776-dafb3200-93f8-11eb-85c4-a4eca78b29bb.png"> ### Additional context Add any other context about the problem here.
priority
changing registration start after event publishing is always blocked describe the bug when trying to change the registration start date after publishing the event it will never be possible to change it anymore even though registration has not started yet how to reproduce steps to reproduce the behaviour create an event with registrations in the future publish the event try to change the registration start date see error that says the registration date cannot be changed because registration has already opened expected behaviour it should actually matter what the date is and if the registration is open for this error to appear screenshots img width alt screenshot at src additional context add any other context about the problem here
1
22,863
2,651,005,182
IssuesEvent
2015-03-16 07:49:19
ilgrosso/oldSyncopeIdM
https://api.github.com/repos/ilgrosso/oldSyncopeIdM
closed
DuplicateUniqueValue Error on Unique Derived Attribute
1 star bug imported invalid Priority-Medium
_From [denis.si...@gmail.com](https://code.google.com/u/105548482992247672762/) on December 23, 2011 17:17:45_ What steps will reproduce the problem? 1. Define a Required, Unique Derived Attribute (Long) 2. Create one user with a value in the field 3. Create a second user with different value in the same field What is the expected output? What do you see instead? - Second user created. Instead an Exception thrown. What version of the product are you using? On what operating system? - Product rev: trunk (1348) - Operative System: x86_64 x86_64 GNU/Linux, - JVM: Java HotSpot(TM) 64-Bit Server VM (build 21.0-b17, mixed mode) - Apache Tomcat 7.0.22 Please provide any additional information below. Stacktrace: 17:14:49.128 ERROR org.syncope.core.rest.controller.AbstractController - Exception thrown by REST methods org.springframework.dao.DataIntegrityViolationException: Could not execute JDBC batch update; SQL [insert into UAttrUniqueValue (booleanValue, dateValue, doubleValue, longValue, stringValue, attribute_id, schema_name, id) values (?, ?, ?, ?, ?, ?, ?, ?)]; constraint [IDM.SYS_C009167]; nested exception is org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update at org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:637) ~[spring-orm-3.0.6.RELEASE.jar:3.0.6.RELEASE] at org.springframework.orm.jpa.vendor.HibernateJpaDialect.translateExceptionIfPossible(HibernateJpaDialect.java:102) _Original issue: http://code.google.com/p/syncope/issues/detail?id=262_
1.0
DuplicateUniqueValue Error on Unique Derived Attribute - _From [denis.si...@gmail.com](https://code.google.com/u/105548482992247672762/) on December 23, 2011 17:17:45_ What steps will reproduce the problem? 1. Define a Required, Unique Derived Attribute (Long) 2. Create one user with a value in the field 3. Create a second user with different value in the same field What is the expected output? What do you see instead? - Second user created. Instead an Exception thrown. What version of the product are you using? On what operating system? - Product rev: trunk (1348) - Operative System: x86_64 x86_64 GNU/Linux, - JVM: Java HotSpot(TM) 64-Bit Server VM (build 21.0-b17, mixed mode) - Apache Tomcat 7.0.22 Please provide any additional information below. Stacktrace: 17:14:49.128 ERROR org.syncope.core.rest.controller.AbstractController - Exception thrown by REST methods org.springframework.dao.DataIntegrityViolationException: Could not execute JDBC batch update; SQL [insert into UAttrUniqueValue (booleanValue, dateValue, doubleValue, longValue, stringValue, attribute_id, schema_name, id) values (?, ?, ?, ?, ?, ?, ?, ?)]; constraint [IDM.SYS_C009167]; nested exception is org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update at org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:637) ~[spring-orm-3.0.6.RELEASE.jar:3.0.6.RELEASE] at org.springframework.orm.jpa.vendor.HibernateJpaDialect.translateExceptionIfPossible(HibernateJpaDialect.java:102) _Original issue: http://code.google.com/p/syncope/issues/detail?id=262_
priority
duplicateuniquevalue error on unique derived attribute from on december what steps will reproduce the problem define a required unique derived attribute long create one user with a value in the field create a second user with different value in the same field what is the expected output what do you see instead second user created instead an exception thrown what version of the product are you using on what operating system product rev trunk operative system gnu linux jvm java hotspot tm bit server vm build mixed mode apache tomcat please provide any additional information below stacktrace error org syncope core rest controller abstractcontroller exception thrown by rest methods org springframework dao dataintegrityviolationexception could not execute jdbc batch update sql constraint nested exception is org hibernate exception constraintviolationexception could not execute jdbc batch update at org springframework orm sessionfactoryutils converthibernateaccessexception sessionfactoryutils java at org springframework orm jpa vendor hibernatejpadialect translateexceptionifpossible hibernatejpadialect java original issue
1
80,792
3,574,511,751
IssuesEvent
2016-01-27 12:11:44
olpeh/wht
https://api.github.com/repos/olpeh/wht
closed
Stop timer from outside of application
Feature request medium-priority
I would like to automate it as much as possible. It's already pretty easy to start the timer (via situations, start timer with start of app, start app when connected to office wireless), but it would be helpful to also be able to automate the stop of the timer, eg when leaving the wireless. Situations is able to run a command when something happens, but that would require being able to stop a timer via a command.
1.0
Stop timer from outside of application - I would like to automate it as much as possible. It's already pretty easy to start the timer (via situations, start timer with start of app, start app when connected to office wireless), but it would be helpful to also be able to automate the stop of the timer, eg when leaving the wireless. Situations is able to run a command when something happens, but that would require being able to stop a timer via a command.
priority
stop timer from outside of application i would like to automate it as much as possible it s already pretty easy to start the timer via situations start timer with start of app start app when connected to office wireless but it would be helpful to also be able to automate the stop of the timer eg when leaving the wireless situations is able to run a command when something happens but that would require being able to stop a timer via a command
1
628,833
20,015,358,558
IssuesEvent
2022-02-01 11:28:22
inblockio/aqua-verifier-webextension
https://api.github.com/repos/inblockio/aqua-verifier-webextension
opened
In other languages then English Special pages lead to the VerifyPage extension to be N/A instead of expected NR
bug medium priority
![image](https://user-images.githubusercontent.com/45313235/151960533-0b95a4c8-bafa-41ca-8df3-2c3b6b320849.png)
1.0
In other languages then English Special pages lead to the VerifyPage extension to be N/A instead of expected NR - ![image](https://user-images.githubusercontent.com/45313235/151960533-0b95a4c8-bafa-41ca-8df3-2c3b6b320849.png)
priority
in other languages then english special pages lead to the verifypage extension to be n a instead of expected nr
1
611,625
18,959,736,148
IssuesEvent
2021-11-19 02:10:11
zhaoy17/did-server
https://api.github.com/repos/zhaoy17/did-server
closed
First draft of ValidationService implementation
enhancement estimate: 5 priority: medium
Validation Service class should * be able to validate against a document against a schema and return helpful error message if criteria is not met * if possible add support for custom data types consider using https://github.com/ajv-validator/ajv to help with the validation logic
1.0
First draft of ValidationService implementation - Validation Service class should * be able to validate against a document against a schema and return helpful error message if criteria is not met * if possible add support for custom data types consider using https://github.com/ajv-validator/ajv to help with the validation logic
priority
first draft of validationservice implementation validation service class should be able to validate against a document against a schema and return helpful error message if criteria is not met if possible add support for custom data types consider using to help with the validation logic
1
119,602
4,772,905,275
IssuesEvent
2016-10-26 22:17:23
octobercms/october
https://api.github.com/repos/octobercms/october
closed
theme.yaml stops working with a large content
Priority: Medium Status: Review Needed Type: Unconfirmed Bug
##### Expected behavior Adding content to the repeater field ##### Actual behavior it does not ##### Reproduce steps theme.yaml contains repeater field, when a lot of content - new is not added, there is no error ##### October build latest ##### Russian: спасибо за все что вы делаете, OctoberCMS это лучшее что я видел в мире PHP и я желаю вам скорейшего процветания. При использовании в продакшене всплыла досадность что если добавить поля в theme.yaml и наполнять их контентом то при большом количестве этого контента он просто не добавляется, т.е. при нажатии на "добавить" спиннер крутится и больше ничего не происходит. Эта проблема наблюдается на разных проектах. Если у вас есть идеи, пожалуйста, подскажите что сделать чтобы исправить эту проблему.
1.0
theme.yaml stops working with a large content - ##### Expected behavior Adding content to the repeater field ##### Actual behavior it does not ##### Reproduce steps theme.yaml contains repeater field, when a lot of content - new is not added, there is no error ##### October build latest ##### Russian: спасибо за все что вы делаете, OctoberCMS это лучшее что я видел в мире PHP и я желаю вам скорейшего процветания. При использовании в продакшене всплыла досадность что если добавить поля в theme.yaml и наполнять их контентом то при большом количестве этого контента он просто не добавляется, т.е. при нажатии на "добавить" спиннер крутится и больше ничего не происходит. Эта проблема наблюдается на разных проектах. Если у вас есть идеи, пожалуйста, подскажите что сделать чтобы исправить эту проблему.
priority
theme yaml stops working with a large content expected behavior adding content to the repeater field actual behavior it does not reproduce steps theme yaml contains repeater field when a lot of content new is not added there is no error october build latest russian спасибо за все что вы делаете octobercms это лучшее что я видел в мире php и я желаю вам скорейшего процветания при использовании в продакшене всплыла досадность что если добавить поля в theme yaml и наполнять их контентом то при большом количестве этого контента он просто не добавляется т е при нажатии на добавить спиннер крутится и больше ничего не происходит эта проблема наблюдается на разных проектах если у вас есть идеи пожалуйста подскажите что сделать чтобы исправить эту проблему
1
65,532
3,231,827,182
IssuesEvent
2015-10-13 01:03:13
behavior3/behavior3editor
https://api.github.com/repos/behavior3/behavior3editor
opened
Undo/Redo is having problems with properties
bug medium priority
Steps to reproduce: 1. Select a node. 2. Edit its title. 3. Select another node. 4. Click at the title field. 5. Press `ctrl+z`. The same happens with other fields, but the title is more critical.
1.0
Undo/Redo is having problems with properties - Steps to reproduce: 1. Select a node. 2. Edit its title. 3. Select another node. 4. Click at the title field. 5. Press `ctrl+z`. The same happens with other fields, but the title is more critical.
priority
undo redo is having problems with properties steps to reproduce select a node edit its title select another node click at the title field press ctrl z the same happens with other fields but the title is more critical
1
368,827
10,885,110,369
IssuesEvent
2019-11-18 09:44:57
Day34/day34-boilerplate-nodejs
https://api.github.com/repos/Day34/day34-boilerplate-nodejs
opened
자동 배포 설정 추가
Priority: Medium Status: To Do Type: Feature/Function
# 추가/개선 필요 요소 자동 배포를 위한 설정을 추가 # 추가/개선 필요 이유 자동 배포를 위해 # 상세 요구 사항 #4 에서 생성한 파일에 CD 설정을 추가한다. - ECS Fargate에 배포하는 설정 - ECS EC2에 배포하는 설정 # 스크린샷 없음
1.0
자동 배포 설정 추가 - # 추가/개선 필요 요소 자동 배포를 위한 설정을 추가 # 추가/개선 필요 이유 자동 배포를 위해 # 상세 요구 사항 #4 에서 생성한 파일에 CD 설정을 추가한다. - ECS Fargate에 배포하는 설정 - ECS EC2에 배포하는 설정 # 스크린샷 없음
priority
자동 배포 설정 추가 추가 개선 필요 요소 자동 배포를 위한 설정을 추가 추가 개선 필요 이유 자동 배포를 위해 상세 요구 사항 에서 생성한 파일에 cd 설정을 추가한다 ecs fargate에 배포하는 설정 ecs 배포하는 설정 스크린샷 없음
1
617,716
19,403,135,991
IssuesEvent
2021-12-19 14:46:52
NottCurious/TMIndiaBot
https://api.github.com/repos/NottCurious/TMIndiaBot
closed
Make a website for the command list
enhancement priority: medium
Make a website for the command list using github pages maybe?
1.0
Make a website for the command list - Make a website for the command list using github pages maybe?
priority
make a website for the command list make a website for the command list using github pages maybe
1
187,767
6,760,996,413
IssuesEvent
2017-10-24 22:58:26
AZMAG/map-Employment
https://api.github.com/repos/AZMAG/map-Employment
closed
Grid Row Hover doesn't work
bug Priority: Medium
When hovering on a row in the emp list, fdi emp list or data query list, it should highlight the associated point on the map. This isn't working. Reported by Peter.
1.0
Grid Row Hover doesn't work - When hovering on a row in the emp list, fdi emp list or data query list, it should highlight the associated point on the map. This isn't working. Reported by Peter.
priority
grid row hover doesn t work when hovering on a row in the emp list fdi emp list or data query list it should highlight the associated point on the map this isn t working reported by peter
1
789,840
27,807,580,891
IssuesEvent
2023-03-17 21:42:37
calcom/cal.com
https://api.github.com/repos/calcom/cal.com
closed
[CAL-1279] Availability Timezone Not Auto Updating
✅ good first issue Medium priority 1 points
When a user updates the timezone within an availability, it doesn't automatically display on the main availability page. You need to refresh the page for the changes to show. Created via Threads. See full discussion: [https://threads.com/messages/3ac5f762-2e64-4651-afa9-375ad13192ae?messageID=d6811ff2-73e9-4a81-a118-01a2d7f10b64](https://threads.com/messages/3ac5f762-2e64-4651-afa9-375ad13192ae?messageID=d6811ff2-73e9-4a81-a118-01a2d7f10b64) <sub>From [SyncLinear.com](https://synclinear.com) | [CAL-1279](https://linear.app/calcom/issue/CAL-1279/availability-timezone-not-auto-updating)</sub>
1.0
[CAL-1279] Availability Timezone Not Auto Updating - When a user updates the timezone within an availability, it doesn't automatically display on the main availability page. You need to refresh the page for the changes to show. Created via Threads. See full discussion: [https://threads.com/messages/3ac5f762-2e64-4651-afa9-375ad13192ae?messageID=d6811ff2-73e9-4a81-a118-01a2d7f10b64](https://threads.com/messages/3ac5f762-2e64-4651-afa9-375ad13192ae?messageID=d6811ff2-73e9-4a81-a118-01a2d7f10b64) <sub>From [SyncLinear.com](https://synclinear.com) | [CAL-1279](https://linear.app/calcom/issue/CAL-1279/availability-timezone-not-auto-updating)</sub>
priority
availability timezone not auto updating when a user updates the timezone within an availability it doesn t automatically display on the main availability page you need to refresh the page for the changes to show created via threads see full discussion from
1
249,166
7,953,941,777
IssuesEvent
2018-07-12 04:57:06
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
User's laptop did not choose correct GPU
Medium Priority
Not sure how to make nvidia get Eco to make the right choice but we should look into it.
1.0
User's laptop did not choose correct GPU - Not sure how to make nvidia get Eco to make the right choice but we should look into it.
priority
user s laptop did not choose correct gpu not sure how to make nvidia get eco to make the right choice but we should look into it
1
475,458
13,710,618,332
IssuesEvent
2020-10-02 01:40:25
ansible/awx
https://api.github.com/repos/ansible/awx
closed
wait option on tower_project does not work if project already exists
component:awx_collection priority:medium state:needs_devel type:enhancement
##### ISSUE TYPE - Bug Report ##### SUMMARY When running the `tower_project` module in the awx_collection, if the project already exists then having the `wait` option set to true (or simply not set as this is default) will not cause a project update (and also will not wait for the project to have updated, or show anything to say it has not updated) ##### ENVIRONMENT * AWX version: 11.1.0 and awx_collection version 11.1.0 * AWX install method: N/A * Ansible version: 2.9.6 * Operating System: RHEL 8 * Web Browser: Google Chrome ##### STEPS TO REPRODUCE 1. Have the project `test` already existing and updated on AWX 1. Add a new playbook `playbooks/new_play.yml` 1. Run the tower_project module ```yaml awx.awx.tower_project: name: test organization: Default scm_url: "{{ scm_url }}" scm_type: git scm_update_cache_timeout: 60 scm_credential: "{{ scm_credential }}" scm_branch: master state: present wait: true ``` 1. Attempt to add a new job template of playbook `playbooks/new_play.yml` we cannot. ##### EXPECTED RESULTS The playbook can be added and run as the project has been updated ##### ACTUAL RESULTS See that the project has not been updated as when trying to add a new job template of playbook `playbooks/new_play.yml` we cannot. This is because a project update has not been initiated. ##### ADDITIONAL INFORMATION The wait functionality works when the project does not exist yet in AWX.
1.0
wait option on tower_project does not work if project already exists - ##### ISSUE TYPE - Bug Report ##### SUMMARY When running the `tower_project` module in the awx_collection, if the project already exists then having the `wait` option set to true (or simply not set as this is default) will not cause a project update (and also will not wait for the project to have updated, or show anything to say it has not updated) ##### ENVIRONMENT * AWX version: 11.1.0 and awx_collection version 11.1.0 * AWX install method: N/A * Ansible version: 2.9.6 * Operating System: RHEL 8 * Web Browser: Google Chrome ##### STEPS TO REPRODUCE 1. Have the project `test` already existing and updated on AWX 1. Add a new playbook `playbooks/new_play.yml` 1. Run the tower_project module ```yaml awx.awx.tower_project: name: test organization: Default scm_url: "{{ scm_url }}" scm_type: git scm_update_cache_timeout: 60 scm_credential: "{{ scm_credential }}" scm_branch: master state: present wait: true ``` 1. Attempt to add a new job template of playbook `playbooks/new_play.yml` we cannot. ##### EXPECTED RESULTS The playbook can be added and run as the project has been updated ##### ACTUAL RESULTS See that the project has not been updated as when trying to add a new job template of playbook `playbooks/new_play.yml` we cannot. This is because a project update has not been initiated. ##### ADDITIONAL INFORMATION The wait functionality works when the project does not exist yet in AWX.
priority
wait option on tower project does not work if project already exists issue type bug report summary when running the tower project module in the awx collection if the project already exists then having the wait option set to true or simply not set as this is default will not cause a project update and also will not wait for the project to have updated or show anything to say it has not updated environment awx version and awx collection version awx install method n a ansible version operating system rhel web browser google chrome steps to reproduce have the project test already existing and updated on awx add a new playbook playbooks new play yml run the tower project module yaml awx awx tower project name test organization default scm url scm url scm type git scm update cache timeout scm credential scm credential scm branch master state present wait true attempt to add a new job template of playbook playbooks new play yml we cannot expected results the playbook can be added and run as the project has been updated actual results see that the project has not been updated as when trying to add a new job template of playbook playbooks new play yml we cannot this is because a project update has not been initiated additional information the wait functionality works when the project does not exist yet in awx
1
560,792
16,604,245,481
IssuesEvent
2021-06-02 00:36:00
rstudio/gt
https://api.github.com/repos/rstudio/gt
closed
Problem with R 4.1.0
Difficulty: [2] Intermediate Effort: [2] Medium Priority: ♨︎ Critical Type: ☹︎ Bug
Dear all, not sure if this is a gt bug or something different. I have updated to R 4.1.0 and gt version 0.3. The following very simple code works ```{r} library(gt) gt(exibble, rowname_col = "row", groupname_col = "group") ``` As expected. However if I try to run this in rmarkdown ``` --- output: pdf_document: default html_document: default --- ``` ```{r} library(gt) gt(exibble, rowname_col = "row", groupname_col = "group") ``` it generates an error if knitted to pdf; if knitted to html it works. Funny enough the following code ``` --- output: pdf_document: default html_document: default --- ``` ```{r} library(gt) gt(exibble, rowname_col = "row") ``` can be knitted (both to pdf and html). Any ideas? Regards
1.0
Problem with R 4.1.0 - Dear all, not sure if this is a gt bug or something different. I have updated to R 4.1.0 and gt version 0.3. The following very simple code works ```{r} library(gt) gt(exibble, rowname_col = "row", groupname_col = "group") ``` As expected. However if I try to run this in rmarkdown ``` --- output: pdf_document: default html_document: default --- ``` ```{r} library(gt) gt(exibble, rowname_col = "row", groupname_col = "group") ``` it generates an error if knitted to pdf; if knitted to html it works. Funny enough the following code ``` --- output: pdf_document: default html_document: default --- ``` ```{r} library(gt) gt(exibble, rowname_col = "row") ``` can be knitted (both to pdf and html). Any ideas? Regards
priority
problem with r dear all not sure if this is a gt bug or something different i have updated to r and gt version the following very simple code works r library gt gt exibble rowname col row groupname col group as expected however if i try to run this in rmarkdown output pdf document default html document default r library gt gt exibble rowname col row groupname col group it generates an error if knitted to pdf if knitted to html it works funny enough the following code output pdf document default html document default r library gt gt exibble rowname col row can be knitted both to pdf and html any ideas regards
1
67,696
3,277,383,336
IssuesEvent
2015-10-27 00:13:25
hlsyounes/ymer
https://api.github.com/repos/hlsyounes/ymer
closed
Distributed sampling doesn't work right for weighted sampling or nested probabilistic properties
auto-migrated bug Priority-Medium Usability
``` Two issues: 1) The sample weight isn't sent from client to server. 2) The nested error isn't sent from server to client. ``` Original issue reported on code.google.com by `hlsyou...@gmail.com` on 14 Mar 2015 at 10:36
1.0
Distributed sampling doesn't work right for weighted sampling or nested probabilistic properties - ``` Two issues: 1) The sample weight isn't sent from client to server. 2) The nested error isn't sent from server to client. ``` Original issue reported on code.google.com by `hlsyou...@gmail.com` on 14 Mar 2015 at 10:36
priority
distributed sampling doesn t work right for weighted sampling or nested probabilistic properties two issues the sample weight isn t sent from client to server the nested error isn t sent from server to client original issue reported on code google com by hlsyou gmail com on mar at
1
690,389
23,656,993,064
IssuesEvent
2022-08-26 12:14:49
tgpholly/Binato
https://api.github.com/repos/tgpholly/Binato
closed
Create match and round tables for multiplayer
enhancement effort: medium priority: medium
Multiplayer needs to be tracked so previous games, what maps were played, player scores, etc can be retrieved and shown on a round by round basis. This would also make it so that file being used for match ids can be nuked.
1.0
Create match and round tables for multiplayer - Multiplayer needs to be tracked so previous games, what maps were played, player scores, etc can be retrieved and shown on a round by round basis. This would also make it so that file being used for match ids can be nuked.
priority
create match and round tables for multiplayer multiplayer needs to be tracked so previous games what maps were played player scores etc can be retrieved and shown on a round by round basis this would also make it so that file being used for match ids can be nuked
1
428,797
12,417,037,768
IssuesEvent
2020-05-22 19:36:12
momentum-mod/game
https://api.github.com/repos/momentum-mod/game
closed
Color picker for paintgun not proportional
Priority: Medium Size: Small Type: Bug
Side note: I originally reported this in the discord months ago but I realized I never put it here, if it's already fixed in the dev build feel free to close. **Describe the bug** The color picker for the paint gun has its buttons and inputs cut off/weird appearance. I believe it was mentioned that this is caused by the panel itself not be proportional with resolution. The rest is kinda self-explanatory. **Screenshots** at 1920x1080 ![20200504004237_1](https://user-images.githubusercontent.com/20176719/80939051-e5ecb300-8da0-11ea-8d92-4d51a7d1d3ed.jpg) **Desktop (please complete the following information):** - OS: Windows
1.0
Color picker for paintgun not proportional - Side note: I originally reported this in the discord months ago but I realized I never put it here, if it's already fixed in the dev build feel free to close. **Describe the bug** The color picker for the paint gun has its buttons and inputs cut off/weird appearance. I believe it was mentioned that this is caused by the panel itself not be proportional with resolution. The rest is kinda self-explanatory. **Screenshots** at 1920x1080 ![20200504004237_1](https://user-images.githubusercontent.com/20176719/80939051-e5ecb300-8da0-11ea-8d92-4d51a7d1d3ed.jpg) **Desktop (please complete the following information):** - OS: Windows
priority
color picker for paintgun not proportional side note i originally reported this in the discord months ago but i realized i never put it here if it s already fixed in the dev build feel free to close describe the bug the color picker for the paint gun has its buttons and inputs cut off weird appearance i believe it was mentioned that this is caused by the panel itself not be proportional with resolution the rest is kinda self explanatory screenshots at desktop please complete the following information os windows
1
681,815
23,324,002,714
IssuesEvent
2022-08-08 19:13:13
MaxNeedsSnacks/Interactio
https://api.github.com/repos/MaxNeedsSnacks/Interactio
closed
chore: Event System Cleanup
priority: medium api enhancement
After checking out @murapix's event system a bit more in-depth, I definitely think it's a great start, but ît may still need some refining before the initial release. Some things that immediately came to mind were: - I feel like RecipeTickEvent and RecipeEvent could likely be merged into one interface - Recipe events and predicates should have an optional additional check to find out whether they can be applied to a given recipe or not, rather than that validation happening inside the events. By default this should just be always true, but this could perhaps be used during recipe parsing to inform the user of invalid actions (like using `damage_anvil` on a fluid transform recipe) - I'm thinking maybe we should at some point forego the hardcoded values for event types and events and instead look at a more dynamic system like an interface `EventType` rather than an enum -- the long and short of it is I just kind of dislike these four maps here because they're a bit inexpressive (maybe this can just be a registry since these should only be loaded at startup?): https://github.com/MaxNeedsSnacks/Interactio/blob/1cde45467d050c09d53e62cd0c69d2d0bd0b0d44/src/main/java/ky/someone/mods/interactio/recipe/Events.java#L57-L60 - I think I want to introduce parameters for tick events that determine when and how such an event should be fired. `every` for instance would say that an event should fire every `n` ticks, while `chance` determines the chance of an event firing on each attempt None of these are 100% set in stone but these were just things that came to mind after checking out the refactor a bit more thoroughly. Overall, I feel like this can be quite a robust and futureproof system and make adding more features for packmakers down the line easier for us.
1.0
chore: Event System Cleanup - After checking out @murapix's event system a bit more in-depth, I definitely think it's a great start, but ît may still need some refining before the initial release. Some things that immediately came to mind were: - I feel like RecipeTickEvent and RecipeEvent could likely be merged into one interface - Recipe events and predicates should have an optional additional check to find out whether they can be applied to a given recipe or not, rather than that validation happening inside the events. By default this should just be always true, but this could perhaps be used during recipe parsing to inform the user of invalid actions (like using `damage_anvil` on a fluid transform recipe) - I'm thinking maybe we should at some point forego the hardcoded values for event types and events and instead look at a more dynamic system like an interface `EventType` rather than an enum -- the long and short of it is I just kind of dislike these four maps here because they're a bit inexpressive (maybe this can just be a registry since these should only be loaded at startup?): https://github.com/MaxNeedsSnacks/Interactio/blob/1cde45467d050c09d53e62cd0c69d2d0bd0b0d44/src/main/java/ky/someone/mods/interactio/recipe/Events.java#L57-L60 - I think I want to introduce parameters for tick events that determine when and how such an event should be fired. `every` for instance would say that an event should fire every `n` ticks, while `chance` determines the chance of an event firing on each attempt None of these are 100% set in stone but these were just things that came to mind after checking out the refactor a bit more thoroughly. Overall, I feel like this can be quite a robust and futureproof system and make adding more features for packmakers down the line easier for us.
priority
chore event system cleanup after checking out murapix s event system a bit more in depth i definitely think it s a great start but ît may still need some refining before the initial release some things that immediately came to mind were i feel like recipetickevent and recipeevent could likely be merged into one interface recipe events and predicates should have an optional additional check to find out whether they can be applied to a given recipe or not rather than that validation happening inside the events by default this should just be always true but this could perhaps be used during recipe parsing to inform the user of invalid actions like using damage anvil on a fluid transform recipe i m thinking maybe we should at some point forego the hardcoded values for event types and events and instead look at a more dynamic system like an interface eventtype rather than an enum the long and short of it is i just kind of dislike these four maps here because they re a bit inexpressive maybe this can just be a registry since these should only be loaded at startup i think i want to introduce parameters for tick events that determine when and how such an event should be fired every for instance would say that an event should fire every n ticks while chance determines the chance of an event firing on each attempt none of these are set in stone but these were just things that came to mind after checking out the refactor a bit more thoroughly overall i feel like this can be quite a robust and futureproof system and make adding more features for packmakers down the line easier for us
1
367,759
10,861,527,606
IssuesEvent
2019-11-14 11:16:37
MarcTowler/ItsLit-RPG-Tracker
https://api.github.com/repos/MarcTowler/ItsLit-RPG-Tracker
closed
Introduce shops to purchase items
GAPI Medium Priority enhancement
Need to have a couple of shops setup, or even just the one initially. Responds to a command like `!shop buy` which will cause the "shopkeep" to DM the user a list of items for sale that they can use (level and class restriction) with a price... User replies with the item name and quantity, money is deducted and item is given to the user and the shop's quantity of the item is reduced. - [x] Build shop table (items, quantity, price) - [x] Build !shop buy command to pull the list of available items and check user's on hand cash
1.0
Introduce shops to purchase items - Need to have a couple of shops setup, or even just the one initially. Responds to a command like `!shop buy` which will cause the "shopkeep" to DM the user a list of items for sale that they can use (level and class restriction) with a price... User replies with the item name and quantity, money is deducted and item is given to the user and the shop's quantity of the item is reduced. - [x] Build shop table (items, quantity, price) - [x] Build !shop buy command to pull the list of available items and check user's on hand cash
priority
introduce shops to purchase items need to have a couple of shops setup or even just the one initially responds to a command like shop buy which will cause the shopkeep to dm the user a list of items for sale that they can use level and class restriction with a price user replies with the item name and quantity money is deducted and item is given to the user and the shop s quantity of the item is reduced build shop table items quantity price build shop buy command to pull the list of available items and check user s on hand cash
1
614,540
19,185,065,920
IssuesEvent
2021-12-05 03:14:49
bluelotus03/Hackcoming-Game-2021
https://api.github.com/repos/bluelotus03/Hackcoming-Game-2021
closed
Background Image
bug medium-priority
- [ ] The background image is loading 3 blocks down from the top of the screen. - [ ] Keeping background more steady (cam movement erratic)
1.0
Background Image - - [ ] The background image is loading 3 blocks down from the top of the screen. - [ ] Keeping background more steady (cam movement erratic)
priority
background image the background image is loading blocks down from the top of the screen keeping background more steady cam movement erratic
1
315,567
9,629,026,463
IssuesEvent
2019-05-15 08:41:03
geoserver/geofence
https://api.github.com/repos/geoserver/geofence
closed
Add pagination support to LDAP DAOs
Priority: Medium enhancement
Currently not supported, it can only work with 25 items. We should also increase the default max items download from LDAP (currently 50).
1.0
Add pagination support to LDAP DAOs - Currently not supported, it can only work with 25 items. We should also increase the default max items download from LDAP (currently 50).
priority
add pagination support to ldap daos currently not supported it can only work with items we should also increase the default max items download from ldap currently
1
635,229
20,382,352,069
IssuesEvent
2022-02-22 00:20:41
RobertCraigie/prisma-client-py
https://api.github.com/repos/RobertCraigie/prisma-client-py
opened
Consider renaming root `OR` query to `ANY`
kind/improvement topic: client level/intermediate priority/medium
## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> The root `OR` part of a query can be confusing: https://news.ycombinator.com/item?id=30416531#30422118 ## Suggested solution <!-- A clear and concise description of what you want to happen. --> Replace the `OR` field with an `ANY` field, for example: ```py posts = await client.post.find_many( where={ 'OR': [ {'title': {'contains': 'prisma'}}, {'content': {'contains': 'prisma'}}, ] } ) ``` Becomes: ```py posts = await client.post.find_many( where={ 'ANY': [ {'title': {'contains': 'prisma'}}, {'content': {'contains': 'prisma'}}, ] } ) ``` If we decide to go with this (or similar), the `OR` field should be deprecated first and then removed in a later release.
1.0
Consider renaming root `OR` query to `ANY` - ## Problem <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> The root `OR` part of a query can be confusing: https://news.ycombinator.com/item?id=30416531#30422118 ## Suggested solution <!-- A clear and concise description of what you want to happen. --> Replace the `OR` field with an `ANY` field, for example: ```py posts = await client.post.find_many( where={ 'OR': [ {'title': {'contains': 'prisma'}}, {'content': {'contains': 'prisma'}}, ] } ) ``` Becomes: ```py posts = await client.post.find_many( where={ 'ANY': [ {'title': {'contains': 'prisma'}}, {'content': {'contains': 'prisma'}}, ] } ) ``` If we decide to go with this (or similar), the `OR` field should be deprecated first and then removed in a later release.
priority
consider renaming root or query to any problem the root or part of a query can be confusing suggested solution replace the or field with an any field for example py posts await client post find many where or title contains prisma content contains prisma becomes py posts await client post find many where any title contains prisma content contains prisma if we decide to go with this or similar the or field should be deprecated first and then removed in a later release
1
195,145
6,904,605,456
IssuesEvent
2017-11-27 00:45:22
eriq-augustine/psl
https://api.github.com/repos/eriq-augustine/psl
closed
Investigation: Grounding Speed for Arithmetic "=" vs "<="
Components - Grounding Difficulty - Medium Priority - Low Type - Investigation
In arithmetic rules, the equality operator is implemented by putting in two ground rules, "<=" and ">=". Nikhil has seen that using the equality operator increased the grounding time by far less than twice. I believe he had about 9 million groundings (doubled to 18) and the run time only increased by something like 15%. This would be great if there was no issue, but seems a little suspicious.
1.0
Investigation: Grounding Speed for Arithmetic "=" vs "<=" - In arithmetic rules, the equality operator is implemented by putting in two ground rules, "<=" and ">=". Nikhil has seen that using the equality operator increased the grounding time by far less than twice. I believe he had about 9 million groundings (doubled to 18) and the run time only increased by something like 15%. This would be great if there was no issue, but seems a little suspicious.
priority
investigation grounding speed for arithmetic vs nikhil has seen that using the equality operator increased the grounding time by far less than twice i believe he had about million groundings doubled to and the run time only increased by something like this would be great if there was no issue but seems a little suspicious
1
700,101
24,046,075,639
IssuesEvent
2022-09-16 08:27:26
vmware/singleton
https://api.github.com/repos/vmware/singleton
closed
[BUG] [Ruby Client] File read does not support thread concurrency
kind/bug priority/medium area/ruby-client
**Describe the bug** File read for source bundle is currently inside a synchronized block. This means only one thread can access it at a time, affecting performance. **To Reproduce** Steps to reproduce the behavior: 1. Use the ruby client lib in a sample app. 2. Launch multiple(e.g. 1,000) threads that will load a source bundle at the same time. Use a bundle that has a large data set to observe performance. 3. Notice that the threads wait for their turn and so affecting performance. 4. Do the same for any offline bundle and see the same performance hit. **Expected behavior** Multiple threads should be able to read the source bundle at the same time.
1.0
[BUG] [Ruby Client] File read does not support thread concurrency - **Describe the bug** File read for source bundle is currently inside a synchronized block. This means only one thread can access it at a time, affecting performance. **To Reproduce** Steps to reproduce the behavior: 1. Use the ruby client lib in a sample app. 2. Launch multiple(e.g. 1,000) threads that will load a source bundle at the same time. Use a bundle that has a large data set to observe performance. 3. Notice that the threads wait for their turn and so affecting performance. 4. Do the same for any offline bundle and see the same performance hit. **Expected behavior** Multiple threads should be able to read the source bundle at the same time.
priority
file read does not support thread concurrency describe the bug file read for source bundle is currently inside a synchronized block this means only one thread can access it at a time affecting performance to reproduce steps to reproduce the behavior use the ruby client lib in a sample app launch multiple e g threads that will load a source bundle at the same time use a bundle that has a large data set to observe performance notice that the threads wait for their turn and so affecting performance do the same for any offline bundle and see the same performance hit expected behavior multiple threads should be able to read the source bundle at the same time
1
292,110
8,953,283,230
IssuesEvent
2019-01-25 18:59:30
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
"Reset Defaults" in graphics settings not reset sliders
Fixed Medium Priority
reset works only with check boxes, not sliders. Same on release and master versions. ![default](https://user-images.githubusercontent.com/4980243/50733463-df472f00-119e-11e9-87eb-357a04bc56b2.png)
1.0
"Reset Defaults" in graphics settings not reset sliders - reset works only with check boxes, not sliders. Same on release and master versions. ![default](https://user-images.githubusercontent.com/4980243/50733463-df472f00-119e-11e9-87eb-357a04bc56b2.png)
priority
reset defaults in graphics settings not reset sliders reset works only with check boxes not sliders same on release and master versions
1
381,822
11,288,679,068
IssuesEvent
2020-01-16 08:29:51
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
USER ISSUE: Stuck in a pipe
Priority: Medium
**Version:** 0.7.3.3 beta **Steps to Reproduce:** 1. go underwater 2. place a pipe in front and behind of you 3. go with your head to the height of the pipes 4. place a pipe in the place, where the 2 pipes would connect to each other (the block, where your head is) 5. your stuck **Expected behavior:** It should have glitched me out or would prevent me from placing the pipe in some way **Actual behavior:** Instead it let me place the pipe inside of my head
1.0
USER ISSUE: Stuck in a pipe - **Version:** 0.7.3.3 beta **Steps to Reproduce:** 1. go underwater 2. place a pipe in front and behind of you 3. go with your head to the height of the pipes 4. place a pipe in the place, where the 2 pipes would connect to each other (the block, where your head is) 5. your stuck **Expected behavior:** It should have glitched me out or would prevent me from placing the pipe in some way **Actual behavior:** Instead it let me place the pipe inside of my head
priority
user issue stuck in a pipe version beta steps to reproduce go underwater place a pipe in front and behind of you go with your head to the height of the pipes place a pipe in the place where the pipes would connect to each other the block where your head is your stuck expected behavior it should have glitched me out or would prevent me from placing the pipe in some way actual behavior instead it let me place the pipe inside of my head
1
74,136
3,431,833,151
IssuesEvent
2015-12-11 00:24:39
washingtontrails/vms
https://api.github.com/repos/washingtontrails/vms
opened
VMS: Work Party Type Capacity fields - leaving them back has what impact?
Medium Priority Question Salesforce VMS BUDGET
In a VMS Work Party Type if we leave the Default Capacity and Default Volunteer Capacity fields blank what happens? Use case: Training Work party where we hope to get as many CL and ACL's as possible to sign up and there is no reason to limit the number of signups (facility is out doors with lots of space). Can we just leave these fields blank or do we need to set some arbitrarily large value?
1.0
VMS: Work Party Type Capacity fields - leaving them back has what impact? - In a VMS Work Party Type if we leave the Default Capacity and Default Volunteer Capacity fields blank what happens? Use case: Training Work party where we hope to get as many CL and ACL's as possible to sign up and there is no reason to limit the number of signups (facility is out doors with lots of space). Can we just leave these fields blank or do we need to set some arbitrarily large value?
priority
vms work party type capacity fields leaving them back has what impact in a vms work party type if we leave the default capacity and default volunteer capacity fields blank what happens use case training work party where we hope to get as many cl and acl s as possible to sign up and there is no reason to limit the number of signups facility is out doors with lots of space can we just leave these fields blank or do we need to set some arbitrarily large value
1
554,472
16,421,260,084
IssuesEvent
2021-05-19 12:49:56
joseywoermann/navnlos
https://api.github.com/repos/joseywoermann/navnlos
closed
Filter does not work properly
Priority: Medium to high bug
If for example "test" is not allowed, the bot also deletes messages containing the word "testing", because "test" is a part of "**test**ing". Possible solution: Put the banned words into a JSON file and read the words into a list.
1.0
Filter does not work properly - If for example "test" is not allowed, the bot also deletes messages containing the word "testing", because "test" is a part of "**test**ing". Possible solution: Put the banned words into a JSON file and read the words into a list.
priority
filter does not work properly if for example test is not allowed the bot also deletes messages containing the word testing because test is a part of test ing possible solution put the banned words into a json file and read the words into a list
1
538,275
15,765,676,695
IssuesEvent
2021-03-31 14:22:06
snowplow/snowplow-javascript-tracker
https://api.github.com/repos/snowplow/snowplow-javascript-tracker
closed
Add linting
category:setup priority:medium status:in_progress type:internal
I think this would help a bit, maybe a combination of these in a pre-commit hook: - https://github.com/prettier/prettier - https://eslint.org/
1.0
Add linting - I think this would help a bit, maybe a combination of these in a pre-commit hook: - https://github.com/prettier/prettier - https://eslint.org/
priority
add linting i think this would help a bit maybe a combination of these in a pre commit hook
1
359,688
10,679,603,214
IssuesEvent
2019-10-21 19:37:11
CESARBR/knot-fog-connector-fiware
https://api.github.com/repos/CESARBR/knot-fog-connector-fiware
opened
Update addDevice method to return the device credentials
enhancement priority: medium
The `addDevice` method now needs to return the device credentials in order to the connector send them to underlying services. See [documentation](https://github.com/CESARBR/knot-fog-connector#adddevicedevice-promisevoid).
1.0
Update addDevice method to return the device credentials - The `addDevice` method now needs to return the device credentials in order to the connector send them to underlying services. See [documentation](https://github.com/CESARBR/knot-fog-connector#adddevicedevice-promisevoid).
priority
update adddevice method to return the device credentials the adddevice method now needs to return the device credentials in order to the connector send them to underlying services see
1
823,409
31,019,150,877
IssuesEvent
2023-08-10 02:48:52
markgravity/golang-ic
https://api.github.com/repos/markgravity/golang-ic
closed
[UI] As a user, I can upload a keyword file.
type: feature priority: medium
## Acceptance Criteria - Add a File Input - Add a Upload Button ## Design ![CleanShot 2023-08-07 at 15 26 34](https://github.com/markgravity/golang-ic/assets/17875522/7b76b89b-4482-4a71-be3c-82deef00be59)
1.0
[UI] As a user, I can upload a keyword file. - ## Acceptance Criteria - Add a File Input - Add a Upload Button ## Design ![CleanShot 2023-08-07 at 15 26 34](https://github.com/markgravity/golang-ic/assets/17875522/7b76b89b-4482-4a71-be3c-82deef00be59)
priority
as a user i can upload a keyword file acceptance criteria add a file input add a upload button design
1
361,203
10,705,641,721
IssuesEvent
2019-10-24 14:03:59
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
closed
New Unified API needs an auditlog
API Priority: Medium Type: Feature / Enhancement
The new Unified API needs to have an audit log since the new admin will consume it so if we want to keep the feature of the admin audit log, the Unified API needs to be adjusted. We'll have to discuss on whether this should be on the API frontend layer and be pretty generic or should be in the backends themselves (Perl only for now since it does most if not all the admin tasks) with a format that resembles more what we currently have.
1.0
New Unified API needs an auditlog - The new Unified API needs to have an audit log since the new admin will consume it so if we want to keep the feature of the admin audit log, the Unified API needs to be adjusted. We'll have to discuss on whether this should be on the API frontend layer and be pretty generic or should be in the backends themselves (Perl only for now since it does most if not all the admin tasks) with a format that resembles more what we currently have.
priority
new unified api needs an auditlog the new unified api needs to have an audit log since the new admin will consume it so if we want to keep the feature of the admin audit log the unified api needs to be adjusted we ll have to discuss on whether this should be on the api frontend layer and be pretty generic or should be in the backends themselves perl only for now since it does most if not all the admin tasks with a format that resembles more what we currently have
1
466,133
13,397,419,703
IssuesEvent
2020-09-03 11:34:10
jimbertools/timby
https://api.github.com/repos/jimbertools/timby
closed
Session close message and actual session closing is out of sync.
bug priority_medium
Sometimes when people are on spotty connections, they have issues with timby saying your session is closed, but then they still send a request and update their session before it closes. These need to be in sync so the "your session is closed" message is only sent when it's actually closed. ![image](https://user-images.githubusercontent.com/59569757/89525381-6084fe80-d7e6-11ea-8272-719cd5f8ca71.png)
1.0
Session close message and actual session closing is out of sync. - Sometimes when people are on spotty connections, they have issues with timby saying your session is closed, but then they still send a request and update their session before it closes. These need to be in sync so the "your session is closed" message is only sent when it's actually closed. ![image](https://user-images.githubusercontent.com/59569757/89525381-6084fe80-d7e6-11ea-8272-719cd5f8ca71.png)
priority
session close message and actual session closing is out of sync sometimes when people are on spotty connections they have issues with timby saying your session is closed but then they still send a request and update their session before it closes these need to be in sync so the your session is closed message is only sent when it s actually closed
1
483,594
13,926,650,080
IssuesEvent
2020-10-21 18:36:27
Infobserve/Infobserve
https://api.github.com/repos/Infobserve/Infobserve
closed
Add `db_queue_size` option to the configuration file
component/cli priority/medium
This should then be passed into the constructor of the `ProcessingQueue` that's used between the Yara processor and the DB loader
1.0
Add `db_queue_size` option to the configuration file - This should then be passed into the constructor of the `ProcessingQueue` that's used between the Yara processor and the DB loader
priority
add db queue size option to the configuration file this should then be passed into the constructor of the processingqueue that s used between the yara processor and the db loader
1
448,698
12,955,720,306
IssuesEvent
2020-07-20 06:55:51
kubesphere/kubesphere
https://api.github.com/repos/kubesphere/kubesphere
closed
Duplicate audit logs
area/monitoring kind/bug priority/medium
**Describe the Bug** Test to create a stateful service with workloaded created. Check the audit logs and found duplicate logs <img width="1210" alt="Screen Shot 2020-07-14 at 6 43 13 PM" src="https://user-images.githubusercontent.com/28859385/87416962-0d15fb00-c602-11ea-9514-5306c483efdc.png"> **Versions Used** KubeSphere: 3.0.0-dev **Environment** allinone, logging and audit enabled **Expected behavior** The audit logs are not duplicated.
1.0
Duplicate audit logs - **Describe the Bug** Test to create a stateful service with workloaded created. Check the audit logs and found duplicate logs <img width="1210" alt="Screen Shot 2020-07-14 at 6 43 13 PM" src="https://user-images.githubusercontent.com/28859385/87416962-0d15fb00-c602-11ea-9514-5306c483efdc.png"> **Versions Used** KubeSphere: 3.0.0-dev **Environment** allinone, logging and audit enabled **Expected behavior** The audit logs are not duplicated.
priority
duplicate audit logs describe the bug test to create a stateful service with workloaded created check the audit logs and found duplicate logs img width alt screen shot at pm src versions used kubesphere dev environment allinone logging and audit enabled expected behavior the audit logs are not duplicated
1
819,350
30,730,166,049
IssuesEvent
2023-07-28 00:20:11
pybamm-team/PyBaMM
https://api.github.com/repos/pybamm-team/PyBaMM
closed
Make `jax`, `jaxlib`, and `scikits.odes` "extra requires" in `setup.py`
difficulty: easy priority:medium
It feels like `pybamm_install_jax` is redundant now. We can create a new `[jax]` group in `setup.py` with `jax` and `jaxlib` as the dependencies. Further, the documented `--force` flag in `pybamm_install_odes` does nothing at the moment, making the command act identical to `pip install pybamm[jax]`. This would also requires updating the docs, and maybe deprecating `install_jax` at first with a note saying something like - "`pybamm_install_jax` is deprecated, instead install pybamm with `jax` extras using pip install pybamm[jax]" Similarly, we can add an `[odes]` group for `scikits.odes` and document it. cc: @arjxn-py
1.0
Make `jax`, `jaxlib`, and `scikits.odes` "extra requires" in `setup.py` - It feels like `pybamm_install_jax` is redundant now. We can create a new `[jax]` group in `setup.py` with `jax` and `jaxlib` as the dependencies. Further, the documented `--force` flag in `pybamm_install_odes` does nothing at the moment, making the command act identical to `pip install pybamm[jax]`. This would also requires updating the docs, and maybe deprecating `install_jax` at first with a note saying something like - "`pybamm_install_jax` is deprecated, instead install pybamm with `jax` extras using pip install pybamm[jax]" Similarly, we can add an `[odes]` group for `scikits.odes` and document it. cc: @arjxn-py
priority
make jax jaxlib and scikits odes extra requires in setup py it feels like pybamm install jax is redundant now we can create a new group in setup py with jax and jaxlib as the dependencies further the documented force flag in pybamm install odes does nothing at the moment making the command act identical to pip install pybamm this would also requires updating the docs and maybe deprecating install jax at first with a note saying something like pybamm install jax is deprecated instead install pybamm with jax extras using pip install pybamm similarly we can add an group for scikits odes and document it cc arjxn py
1
692,266
23,728,152,388
IssuesEvent
2022-08-30 21:50:56
aave/interface
https://api.github.com/repos/aave/interface
closed
Showing incorrect colors in liquidation risk parameters modal
bug priority:medium
When a user's LTV is approaching the LiquidationThreshold the risk parameters modal should show this warning in red, not green: ![liquidationParametersModal](https://user-images.githubusercontent.com/26660211/175664867-fc284e81-d443-4456-b10e-de6b4a6ede3c.PNG)
1.0
Showing incorrect colors in liquidation risk parameters modal - When a user's LTV is approaching the LiquidationThreshold the risk parameters modal should show this warning in red, not green: ![liquidationParametersModal](https://user-images.githubusercontent.com/26660211/175664867-fc284e81-d443-4456-b10e-de6b4a6ede3c.PNG)
priority
showing incorrect colors in liquidation risk parameters modal when a user s ltv is approaching the liquidationthreshold the risk parameters modal should show this warning in red not green
1
508,984
14,710,136,179
IssuesEvent
2021-01-05 04:19:26
sct/overseerr
https://api.github.com/repos/sct/overseerr
closed
Add Pushover as a notification agent
enhancement priority:medium
Right now email notifications are sent to all admins via their Plex email. I'd like to send them instead to my [Pushover](https://pushover.net/) email agent so they get turned into push notifications for my devices. There is no way to currently do this unless I make a Plex account with an email address that points to my Pushover server.
1.0
Add Pushover as a notification agent - Right now email notifications are sent to all admins via their Plex email. I'd like to send them instead to my [Pushover](https://pushover.net/) email agent so they get turned into push notifications for my devices. There is no way to currently do this unless I make a Plex account with an email address that points to my Pushover server.
priority
add pushover as a notification agent right now email notifications are sent to all admins via their plex email i d like to send them instead to my email agent so they get turned into push notifications for my devices there is no way to currently do this unless i make a plex account with an email address that points to my pushover server
1
790,629
27,830,868,411
IssuesEvent
2023-03-20 04:41:35
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[YSQL] Add PG backend memory usage values to pg_stat_activity view
kind/enhancement area/ysql priority/medium
Jira Link: [DB-4301](https://yugabyte.atlassian.net/browse/DB-4301) ### Description #14066 introduced two new functions yb_pg_stat_get_backend_allocated_mem_bytes(beid) and yb_pg_stat_get_backend_rss_mem_bytes(beid) that return backend allocated memory and rss memory usage accordingly. We need to create a new view yb_pg_stat_activity which includes pg_stat_activity columns and 2 new columns yb_allocated_mem_bytes and yb_rss_mem_bytes whose values are retrieved from the 2 functions mentioned above. We can do this after #12307 is resolved. [DB-4301]: https://yugabyte.atlassian.net/browse/DB-4301?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1.0
[YSQL] Add PG backend memory usage values to pg_stat_activity view - Jira Link: [DB-4301](https://yugabyte.atlassian.net/browse/DB-4301) ### Description #14066 introduced two new functions yb_pg_stat_get_backend_allocated_mem_bytes(beid) and yb_pg_stat_get_backend_rss_mem_bytes(beid) that return backend allocated memory and rss memory usage accordingly. We need to create a new view yb_pg_stat_activity which includes pg_stat_activity columns and 2 new columns yb_allocated_mem_bytes and yb_rss_mem_bytes whose values are retrieved from the 2 functions mentioned above. We can do this after #12307 is resolved. [DB-4301]: https://yugabyte.atlassian.net/browse/DB-4301?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
priority
add pg backend memory usage values to pg stat activity view jira link description introduced two new functions yb pg stat get backend allocated mem bytes beid and yb pg stat get backend rss mem bytes beid that return backend allocated memory and rss memory usage accordingly we need to create a new view yb pg stat activity which includes pg stat activity columns and new columns yb allocated mem bytes and yb rss mem bytes whose values are retrieved from the functions mentioned above we can do this after is resolved
1
145,136
5,559,321,671
IssuesEvent
2017-03-24 16:40:32
PowerlineApp/powerline-mobile
https://api.github.com/repos/PowerlineApp/powerline-mobile
opened
Posts by Friends
enhancement P2 - Medium Priority
Add a filter to the main newsfeed that allows the user to see only posts by followed users, only posts by non-followed users, or all users. This filter will apply in conjunction with the All/Group filters in the Group selector
1.0
Posts by Friends - Add a filter to the main newsfeed that allows the user to see only posts by followed users, only posts by non-followed users, or all users. This filter will apply in conjunction with the All/Group filters in the Group selector
priority
posts by friends add a filter to the main newsfeed that allows the user to see only posts by followed users only posts by non followed users or all users this filter will apply in conjunction with the all group filters in the group selector
1
254,574
8,075,338,794
IssuesEvent
2018-08-07 05:04:34
SETI/pds-opus
https://api.github.com/repos/SETI/pds-opus
opened
Clean up choose columns
A-Enhancement B-OPUS Django B-OPUS JS Effort 2 Medium Priority TBD
1) Right now when you are choosing columns, every time you add or remove a column it immediately fetches new metadata and updates the mini-detail window, if any. This is highly inefficient. Instead it would be nice to have "OK" and "CANCEL" buttons that allow you to commit or ignore all the changes you've made, and then update the metadata if you changed anything. It would also be less confusing to the user. (From Mitch) 2) There is no way to reset to "Default Columns". 3) Surface geometry is really weird in choose columns - if there is no surface geometry target chosen, you still get the "choose a target" menu but you can't actually choose anything. And if you have a target chosen, you shouldn't see the "choose a target" anyway.
1.0
Clean up choose columns - 1) Right now when you are choosing columns, every time you add or remove a column it immediately fetches new metadata and updates the mini-detail window, if any. This is highly inefficient. Instead it would be nice to have "OK" and "CANCEL" buttons that allow you to commit or ignore all the changes you've made, and then update the metadata if you changed anything. It would also be less confusing to the user. (From Mitch) 2) There is no way to reset to "Default Columns". 3) Surface geometry is really weird in choose columns - if there is no surface geometry target chosen, you still get the "choose a target" menu but you can't actually choose anything. And if you have a target chosen, you shouldn't see the "choose a target" anyway.
priority
clean up choose columns right now when you are choosing columns every time you add or remove a column it immediately fetches new metadata and updates the mini detail window if any this is highly inefficient instead it would be nice to have ok and cancel buttons that allow you to commit or ignore all the changes you ve made and then update the metadata if you changed anything it would also be less confusing to the user from mitch there is no way to reset to default columns surface geometry is really weird in choose columns if there is no surface geometry target chosen you still get the choose a target menu but you can t actually choose anything and if you have a target chosen you shouldn t see the choose a target anyway
1
593,988
18,021,614,406
IssuesEvent
2021-09-16 20:13:45
inverse-inc/packetfence
https://api.github.com/repos/inverse-inc/packetfence
closed
export: fingerbank.conf is missing in archive
Type: Bug Priority: Medium
**Describe the bug** If you run export mechanism, `fingerbank.conf` is not extract from current installation. **To Reproduce** Steps to reproduce the behavior: 1. Follow export instructions in documentation 2. Open archive generated => `fingerbank.conf` is missing **Expected behavior** `fingerbank.conf` included. **Additional context** `fingerbank.conf` is not part of backups and is not listed in `stored_config_files` which explain why it's not included.
1.0
export: fingerbank.conf is missing in archive - **Describe the bug** If you run export mechanism, `fingerbank.conf` is not extract from current installation. **To Reproduce** Steps to reproduce the behavior: 1. Follow export instructions in documentation 2. Open archive generated => `fingerbank.conf` is missing **Expected behavior** `fingerbank.conf` included. **Additional context** `fingerbank.conf` is not part of backups and is not listed in `stored_config_files` which explain why it's not included.
priority
export fingerbank conf is missing in archive describe the bug if you run export mechanism fingerbank conf is not extract from current installation to reproduce steps to reproduce the behavior follow export instructions in documentation open archive generated fingerbank conf is missing expected behavior fingerbank conf included additional context fingerbank conf is not part of backups and is not listed in stored config files which explain why it s not included
1
459,859
13,200,244,427
IssuesEvent
2020-08-14 07:50:49
seccomp/libseccomp
https://api.github.com/repos/seccomp/libseccomp
closed
BUG: pseudo-syscalls not working correctly on x32
bug pending/info priority/medium
Commit 9b129c41ac1f43d373742697aa2faf6040b9dfab introduces the concept of "syscall munging" to subtract some base number from syscall numbers to make it easier to use them as an offset into a table. Despite messages in this commit specifically addressing negative pseudo syscall numbers, this does not actually handle negative pseudo syscall numbers properly, which shows up as a test failure in 29-sim-pseudo_syscall for at least x32 and probably all architectures that use munging. 29-sim-pseudo_syscall does `rc = seccomp_rule_add(ctx, SCMP_ACT_KILL, SCMP_SYS(sysmips), 0);`, which passes `__PNR_sysmips` as `syscall`. This syscall remains unmodified until `_db_col_rule_add` calls `arch_filter_rule_add`, which calls `arch_syscall_translate`, which calls `arch_syscall_resolve_num`. For x32, this resolves to a call to `x32_syscall_resolve_num_munge`, which unconditionally subtracts `X32_SYSCALL_BIT` and then calls `x32_syscall_resolve_num`. However, `x32_syscall_resolve_num` is only set up to handle `__PNR_sysmips`, not `__PNR_sysmips - X32_SYSCALL_BIT`! In order to get this test to pass after this commit, it would somehow need to know that it needs to add `X32_SYSCALL_BIT` to the syscall number, but that it unreasonable, the whole point of these pseudo-syscalls is to be able to write the same code across all architectures regardless of which syscalls are actually supported. If syscall numbers can never be negative for any architecture, it is possible to fix this problem by changing all the munging/unmunging routines to leave negative numbers alone: they must be pseudo syscall numbers. This works for x32, but I do not have enough information to say whether this is safe for all architectures. (Edit: it would also require some special handling to prevent an invalid syscall number from becoming a valid pseudo-syscall number by the subtraction of `X32_SYSCALL_BIT`. Additionally, after 9b129c41ac1f43d373742697aa2faf6040b9dfab, but before v2.5.0, the subtraction has been changed to a bitwise operation which has the same problem: that too can inadvertently treat invalid syscall numbers as valid ones. That should have been kept doing addition and subtraction.)
1.0
BUG: pseudo-syscalls not working correctly on x32 - Commit 9b129c41ac1f43d373742697aa2faf6040b9dfab introduces the concept of "syscall munging" to subtract some base number from syscall numbers to make it easier to use them as an offset into a table. Despite messages in this commit specifically addressing negative pseudo syscall numbers, this does not actually handle negative pseudo syscall numbers properly, which shows up as a test failure in 29-sim-pseudo_syscall for at least x32 and probably all architectures that use munging. 29-sim-pseudo_syscall does `rc = seccomp_rule_add(ctx, SCMP_ACT_KILL, SCMP_SYS(sysmips), 0);`, which passes `__PNR_sysmips` as `syscall`. This syscall remains unmodified until `_db_col_rule_add` calls `arch_filter_rule_add`, which calls `arch_syscall_translate`, which calls `arch_syscall_resolve_num`. For x32, this resolves to a call to `x32_syscall_resolve_num_munge`, which unconditionally subtracts `X32_SYSCALL_BIT` and then calls `x32_syscall_resolve_num`. However, `x32_syscall_resolve_num` is only set up to handle `__PNR_sysmips`, not `__PNR_sysmips - X32_SYSCALL_BIT`! In order to get this test to pass after this commit, it would somehow need to know that it needs to add `X32_SYSCALL_BIT` to the syscall number, but that it unreasonable, the whole point of these pseudo-syscalls is to be able to write the same code across all architectures regardless of which syscalls are actually supported. If syscall numbers can never be negative for any architecture, it is possible to fix this problem by changing all the munging/unmunging routines to leave negative numbers alone: they must be pseudo syscall numbers. This works for x32, but I do not have enough information to say whether this is safe for all architectures. (Edit: it would also require some special handling to prevent an invalid syscall number from becoming a valid pseudo-syscall number by the subtraction of `X32_SYSCALL_BIT`. Additionally, after 9b129c41ac1f43d373742697aa2faf6040b9dfab, but before v2.5.0, the subtraction has been changed to a bitwise operation which has the same problem: that too can inadvertently treat invalid syscall numbers as valid ones. That should have been kept doing addition and subtraction.)
priority
bug pseudo syscalls not working correctly on commit introduces the concept of syscall munging to subtract some base number from syscall numbers to make it easier to use them as an offset into a table despite messages in this commit specifically addressing negative pseudo syscall numbers this does not actually handle negative pseudo syscall numbers properly which shows up as a test failure in sim pseudo syscall for at least and probably all architectures that use munging sim pseudo syscall does rc seccomp rule add ctx scmp act kill scmp sys sysmips which passes pnr sysmips as syscall this syscall remains unmodified until db col rule add calls arch filter rule add which calls arch syscall translate which calls arch syscall resolve num for this resolves to a call to syscall resolve num munge which unconditionally subtracts syscall bit and then calls syscall resolve num however syscall resolve num is only set up to handle pnr sysmips not pnr sysmips syscall bit in order to get this test to pass after this commit it would somehow need to know that it needs to add syscall bit to the syscall number but that it unreasonable the whole point of these pseudo syscalls is to be able to write the same code across all architectures regardless of which syscalls are actually supported if syscall numbers can never be negative for any architecture it is possible to fix this problem by changing all the munging unmunging routines to leave negative numbers alone they must be pseudo syscall numbers this works for but i do not have enough information to say whether this is safe for all architectures edit it would also require some special handling to prevent an invalid syscall number from becoming a valid pseudo syscall number by the subtraction of syscall bit additionally after but before the subtraction has been changed to a bitwise operation which has the same problem that too can inadvertently treat invalid syscall numbers as valid ones that should have been kept doing addition and subtraction
1
92,888
3,874,899,979
IssuesEvent
2016-04-11 22:11:13
LizardNet/LizardIRC-Beancounter
https://api.github.com/repos/LizardNet/LizardIRC-Beancounter
opened
Implement WoT URL checking
feacher request lizardbot Priority-Medium reimplementation
Implement ability to check URLs against [Web of Trust (WoT)](https://www.mywot.com/). Reimplementation of feature from LizardBot; should have a command to trigger the check, maybe optionally also show information automatically whenever a URL is sent to the channel? See also #3.
1.0
Implement WoT URL checking - Implement ability to check URLs against [Web of Trust (WoT)](https://www.mywot.com/). Reimplementation of feature from LizardBot; should have a command to trigger the check, maybe optionally also show information automatically whenever a URL is sent to the channel? See also #3.
priority
implement wot url checking implement ability to check urls against reimplementation of feature from lizardbot should have a command to trigger the check maybe optionally also show information automatically whenever a url is sent to the channel see also
1
94,724
3,931,434,562
IssuesEvent
2016-04-25 12:29:39
EnvironmentAgency/pafs-user
https://api.github.com/repos/EnvironmentAgency/pafs-user
closed
CR:: User Requirements::Funding Sources:: Not obvious that it is possible to enter many contributors in the text boxes
Change Priority - 3 Medium Sprint 3
**Issue:** Participants were unaware that they are able to enter many contributors in the text boxes. In some instances they may require to enter many contributors. ![funding source](https://cloud.githubusercontent.com/assets/17175769/14743116/da7f440c-0897-11e6-8ce0-fbb32b783388.PNG) In some circumstances there may be 100's of private contributors. **Recommendation** Consider putting contributor(s) instead of contributor
1.0
CR:: User Requirements::Funding Sources:: Not obvious that it is possible to enter many contributors in the text boxes - **Issue:** Participants were unaware that they are able to enter many contributors in the text boxes. In some instances they may require to enter many contributors. ![funding source](https://cloud.githubusercontent.com/assets/17175769/14743116/da7f440c-0897-11e6-8ce0-fbb32b783388.PNG) In some circumstances there may be 100's of private contributors. **Recommendation** Consider putting contributor(s) instead of contributor
priority
cr user requirements funding sources not obvious that it is possible to enter many contributors in the text boxes issue participants were unaware that they are able to enter many contributors in the text boxes in some instances they may require to enter many contributors in some circumstances there may be s of private contributors recommendation consider putting contributor s instead of contributor
1
100,780
4,103,407,410
IssuesEvent
2016-06-04 17:13:24
Dolibarr/dolibarr
https://api.github.com/repos/Dolibarr/dolibarr
closed
Category module menu entries in Thirdparty are overlapped in Amarok theme
Bug Priority Medium version 3.7.1
VersIon: 3.7.1 ![captura de pantalla 2015-06-18 a las 13 31 21](https://cloud.githubusercontent.com/assets/168744/8230236/b17ba0fe-15be-11e5-9ec7-496dd557cba4.png)
1.0
Category module menu entries in Thirdparty are overlapped in Amarok theme - VersIon: 3.7.1 ![captura de pantalla 2015-06-18 a las 13 31 21](https://cloud.githubusercontent.com/assets/168744/8230236/b17ba0fe-15be-11e5-9ec7-496dd557cba4.png)
priority
category module menu entries in thirdparty are overlapped in amarok theme version
1
5,984
2,581,566,437
IssuesEvent
2015-02-14 05:34:13
Nsomnia/ColdWarSubSim
https://api.github.com/repos/Nsomnia/ColdWarSubSim
opened
Sail Compartment Missing
3D Modelling Related Medium Priority
I havn't had the time to measure out the sail compartment and its associate ladders, trunks, landings and such. The info I have is very sketchy so it might have to be "imaginatively created". I'd like a basic model completed for alpha 0.01 release so that you can go up the ladder to the bridge and see the ocean from a 1st person view, and it shouldnt be too hard once the measurments are down. Might be easier when I make the external model.
1.0
Sail Compartment Missing - I havn't had the time to measure out the sail compartment and its associate ladders, trunks, landings and such. The info I have is very sketchy so it might have to be "imaginatively created". I'd like a basic model completed for alpha 0.01 release so that you can go up the ladder to the bridge and see the ocean from a 1st person view, and it shouldnt be too hard once the measurments are down. Might be easier when I make the external model.
priority
sail compartment missing i havn t had the time to measure out the sail compartment and its associate ladders trunks landings and such the info i have is very sketchy so it might have to be imaginatively created i d like a basic model completed for alpha release so that you can go up the ladder to the bridge and see the ocean from a person view and it shouldnt be too hard once the measurments are down might be easier when i make the external model
1
563,589
16,701,363,469
IssuesEvent
2021-06-09 03:12:54
ckiplab/ckip-transformers
https://api.github.com/repos/ckiplab/ckip-transformers
closed
Import nlp tools package error
Priority: Medium Status: 1-Assigned Type: Bug
Hello, When I use: from ckip_transformers.nlp import CkipWordSegmenter, CkipPosTagger, CkipNerChunker It reports ValueError: source code string cannot contain null bytes <img width="362" alt="捕获" src="https://user-images.githubusercontent.com/36162926/121148611-83ec6000-c874-11eb-9380-33440f176dd8.PNG"> How to fix it? Thanks a lot!
1.0
Import nlp tools package error - Hello, When I use: from ckip_transformers.nlp import CkipWordSegmenter, CkipPosTagger, CkipNerChunker It reports ValueError: source code string cannot contain null bytes <img width="362" alt="捕获" src="https://user-images.githubusercontent.com/36162926/121148611-83ec6000-c874-11eb-9380-33440f176dd8.PNG"> How to fix it? Thanks a lot!
priority
import nlp tools package error hello when i use: from ckip transformers nlp import ckipwordsegmenter ckippostagger ckipnerchunker it reports valueerror source code string cannot contain null bytes img width alt 捕获 src how to fix it? thanks a lot!
1
642,608
20,908,351,046
IssuesEvent
2022-03-24 06:23:53
AY2122S2-CS2103T-T12-4/tp
https://api.github.com/repos/AY2122S2-CS2103T-T12-4/tp
closed
Allow user to add tasks which are recurring
priority.Medium
As a user, I can create recurring tasks so that I can easily create such tasks without needing to repetitively create the same task.
1.0
Allow user to add tasks which are recurring - As a user, I can create recurring tasks so that I can easily create such tasks without needing to repetitively create the same task.
priority
allow user to add tasks which are recurring as a user i can create recurring tasks so that i can easily create such tasks without needing to repetitively create the same task
1
255,875
8,126,565,704
IssuesEvent
2018-08-17 03:03:09
aowen87/BAR
https://api.github.com/repos/aowen87/BAR
closed
Port and install VisIt on Glory and Redsky at Sandia.
Expected Use: 3 - Occasional Feature Impact: 3 - Medium Priority: Normal
Port and install VisIt on Glory and Redsky at Sandia. -----------------------REDMINE MIGRATION----------------------- This ticket was migrated from Redmine. As such, not all information was able to be captured in the transition. Below is a complete record of the original redmine ticket. Ticket number: 706 Status: Resolved Project: VisIt Tracker: Feature Priority: Normal Subject: Port and install VisIt on Glory and Redsky at Sandia. Assigned to: Eric Brugger Category: Target version: 2.3 Author: Eric Brugger Start: 05/13/2011 Due date: % Done: 100 Estimated time: 32.0 Created: 05/13/2011 11:44 am Updated: 05/20/2011 01:02 pm Likelihood: Severity: Found in version: Impact: 3 - Medium Expected Use: 3 - Occasional OS: All Support Group: Any Description: Port and install VisIt on Glory and Redsky at Sandia. Comments: I committed revision 14798 to the trunk with the following changes:1) I added config site files for glory and redsky at Sandia.A config-site/glory120.cmakeA config-site/glory144.cmakeA config-site/redsky-login1.cmakeA config-site/redsky-login2.cmakeA config-site/redsky-login3.cmakeA config-site/redsky-login4.cmake2) I added host profiles for glory and redsky at Sandia.A svn_bin/host_sandia_glory.xmlA svn_bin/host_sandia_redsky.xml3) I modified the internallauncher script to support the sbatch/mpiexec launch method. I also added a hack for glory, since the executables were built with a non default gcc.M bin/internallauncher4) I added support for sbatch/mpiexec to the host profiles window.M gui/QvisHostProfileWindow.C-------------------------- NEW CHECKIN MESSAGE ----------------------I committed revision 14800 to the trunk with the following changes:1) I updated the glory config site file for 2.3.0.A config-site/glory120.cmake-------------------------- NEW CHECKIN MESSAGE ----------------------I committed revision 14819 to the trunk with the following changes:1) I updated the redsky config site file for 2.3.0.M config-site/redsky-login1.cmake2) I removed the bank specification from the glory and redsky host profiles.M svn_bin/host_sandia_glory.xmlM svn_bin/host_sandia_redsky.xml-------------------------- NEW CHECKIN MESSAGE ----------------------I committed revision 14872 to the trunk with the following changes:1) I modified the visit-install script to add the glory and redsky host profiles.M svn_bin/visit-install2) I added glory and redsky to the visit open build and install scripts.M svn_bin/visit-build-openM svn_bin/visit-install-open
1.0
Port and install VisIt on Glory and Redsky at Sandia. - Port and install VisIt on Glory and Redsky at Sandia. -----------------------REDMINE MIGRATION----------------------- This ticket was migrated from Redmine. As such, not all information was able to be captured in the transition. Below is a complete record of the original redmine ticket. Ticket number: 706 Status: Resolved Project: VisIt Tracker: Feature Priority: Normal Subject: Port and install VisIt on Glory and Redsky at Sandia. Assigned to: Eric Brugger Category: Target version: 2.3 Author: Eric Brugger Start: 05/13/2011 Due date: % Done: 100 Estimated time: 32.0 Created: 05/13/2011 11:44 am Updated: 05/20/2011 01:02 pm Likelihood: Severity: Found in version: Impact: 3 - Medium Expected Use: 3 - Occasional OS: All Support Group: Any Description: Port and install VisIt on Glory and Redsky at Sandia. Comments: I committed revision 14798 to the trunk with the following changes:1) I added config site files for glory and redsky at Sandia.A config-site/glory120.cmakeA config-site/glory144.cmakeA config-site/redsky-login1.cmakeA config-site/redsky-login2.cmakeA config-site/redsky-login3.cmakeA config-site/redsky-login4.cmake2) I added host profiles for glory and redsky at Sandia.A svn_bin/host_sandia_glory.xmlA svn_bin/host_sandia_redsky.xml3) I modified the internallauncher script to support the sbatch/mpiexec launch method. I also added a hack for glory, since the executables were built with a non default gcc.M bin/internallauncher4) I added support for sbatch/mpiexec to the host profiles window.M gui/QvisHostProfileWindow.C-------------------------- NEW CHECKIN MESSAGE ----------------------I committed revision 14800 to the trunk with the following changes:1) I updated the glory config site file for 2.3.0.A config-site/glory120.cmake-------------------------- NEW CHECKIN MESSAGE ----------------------I committed revision 14819 to the trunk with the following changes:1) I updated the redsky config site file for 2.3.0.M config-site/redsky-login1.cmake2) I removed the bank specification from the glory and redsky host profiles.M svn_bin/host_sandia_glory.xmlM svn_bin/host_sandia_redsky.xml-------------------------- NEW CHECKIN MESSAGE ----------------------I committed revision 14872 to the trunk with the following changes:1) I modified the visit-install script to add the glory and redsky host profiles.M svn_bin/visit-install2) I added glory and redsky to the visit open build and install scripts.M svn_bin/visit-build-openM svn_bin/visit-install-open
priority
port and install visit on glory and redsky at sandia port and install visit on glory and redsky at sandia redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status resolved project visit tracker feature priority normal subject port and install visit on glory and redsky at sandia assigned to eric brugger category target version author eric brugger start due date done estimated time created am updated pm likelihood severity found in version impact medium expected use occasional os all support group any description port and install visit on glory and redsky at sandia comments i committed revision to the trunk with the following changes i added config site files for glory and redsky at sandia a config site cmakea config site cmakea config site redsky cmakea config site redsky cmakea config site redsky cmakea config site redsky i added host profiles for glory and redsky at sandia a svn bin host sandia glory xmla svn bin host sandia redsky i modified the internallauncher script to support the sbatch mpiexec launch method i also added a hack for glory since the executables were built with a non default gcc m bin i added support for sbatch mpiexec to the host profiles window m gui qvishostprofilewindow c new checkin message i committed revision to the trunk with the following changes i updated the glory config site file for a config site cmake new checkin message i committed revision to the trunk with the following changes i updated the redsky config site file for m config site redsky i removed the bank specification from the glory and redsky host profiles m svn bin host sandia glory xmlm svn bin host sandia redsky xml new checkin message i committed revision to the trunk with the following changes i modified the visit install script to add the glory and redsky host profiles m svn bin visit i added glory and redsky to the visit open build and install scripts m svn bin visit build openm svn bin visit install open
1
452,770
13,059,153,222
IssuesEvent
2020-07-30 10:10:01
projectdissolve/dissolve
https://api.github.com/repos/projectdissolve/dissolve
opened
Epic / 0.7 / Data Management
Priority: Medium
### Focus Improved handling / management of generated data from within the GUI ### Workload - [ ] #149 - [ ] #113
1.0
Epic / 0.7 / Data Management - ### Focus Improved handling / management of generated data from within the GUI ### Workload - [ ] #149 - [ ] #113
priority
epic data management focus improved handling management of generated data from within the gui workload
1
80,781
3,574,383,989
IssuesEvent
2016-01-27 11:33:20
jlowe64/moodle-logstore_xapi
https://api.github.com/repos/jlowe64/moodle-logstore_xapi
closed
AttemptCompleted score additions break tests
priority:medium status:confirmed type:bug
@garemoko your additions to the AttemptCompleted class breaks compatibility with AttemptAbandoned and AttemptReviewed. They can't seem to find the new index's that you've added, possibly because the test's haven't been updated to reflect this. This is the output from the unit test: ``` There was 1 error: 1) Tests\AttemptAbandonedTest::testCreateEvent Undefined index: attempt_score_raw /var/www/sandbox/moodle/admin/tool/log/store/xapi/vendor/learninglocker/xapi-recipe-emitter/src/Events/AttemptCompleted.php:23 /var/www/sandbox/moodle/admin/tool/log/store/xapi/vendor/learninglocker/xapi-recipe-emitter/src/Controller.php:40 /var/www/sandbox/moodle/admin/tool/log/store/xapi/tests/TestCase.php:40 /usr/share/php/PHPUnit/TextUI/Command.php:147 /usr/share/php/PHPUnit/TextUI/Command.php:99 FAILURES! Tests: 16, Assertions: 53, Errors: 1. ``` The event from the translator to the emitter looks like this: ``` Array ( [user_id] => 1 [user_url] => http://www.example.com [user_name] => test_username [context_lang] => en [context_platform] => Moodle [context_ext] => Array ( [userid] => 1 [relateduserid] => 1 [courseid] => 1 [timecreated] => 1433946701 [eventname] => \mod_quiz\event\attempt_abandoned [objecttable] => quiz_attempts [objectid] => 1 ) [context_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_logstore_standard_log [context_info] => stdClass Object ( [https://moodle.org/] => 1.0.0 [https://github.com/LearningLocker/Moodle-Log-Expander] => 0.5.0 [https://github.com/LearningLocker/Moodle-xAPI-Translator] => 0.5.0 ) [time] => 2015-06-10T14:31:41+00:00 [app_url] => http://www.example.com [app_name] => test_fullname [app_description] => test_summary [app_type] => http://id.tincanapi.com/activitytype/site [app_ext] => stdClass Object ( [id] => 1 [username] => test_username [lang] => en [fullname] => test_fullname [summary] => test_summary [name] => test_name [intro] => test_intro [timestart] => 1433946701 [timefinish] => 1433946702 [state] => finished [course] => 1 [sumgrades] => 1 [grade] => 2 [quiz] => 1 [assignment] => 1 [userid] => 1 [forum] => 1 [type] => site [scorm] => 1 [grademax] => 5.00000 [grademin] => 0.00000 [gradepass] => 5.00000 [commenttext] => <p>test comment</p> [url] => http://www.example.com ) [app_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_course [source_url] => http://moodle.org [source_name] => Moodle [source_description] => Moodle is a open source learning platform designed to provide educators, administrators and learners with a single robust, secure and integrated system to create personalised learning environments. [source_type] => http://id.tincanapi.com/activitytype/source [recipe] => attempt_completed [course_url] => http://www.example.com/course/view.php?id=1 [course_name] => test_fullname [course_description] => test_summary [course_type] => http://lrs.learninglocker.net/define/type/moodle/object [course_ext] => stdClass Object ( [id] => 1 [username] => test_username [lang] => en [fullname] => test_fullname [summary] => test_summary [name] => test_name [intro] => test_intro [timestart] => 1433946701 [timefinish] => 1433946702 [state] => finished [course] => 1 [sumgrades] => 1 [grade] => 2 [quiz] => 1 [assignment] => 1 [userid] => 1 [forum] => 1 [type] => object [scorm] => 1 [grademax] => 5.00000 [grademin] => 0.00000 [gradepass] => 5.00000 [commenttext] => <p>test comment</p> [url] => http://www.example.com/course/view.php?id=1 ) [course_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_course [module_url] => http://www.example.com/mod/quiz/view.php?id=1 [module_name] => test_name [module_description] => test_intro [module_type] => http://lrs.learninglocker.net/define/type/moodle/object [module_ext] => stdClass Object ( [id] => 1 [username] => test_username [lang] => en [fullname] => test_fullname [summary] => test_summary [name] => test_name [intro] => test_intro [timestart] => 1433946701 [timefinish] => 1433946702 [state] => finished [course] => 1 [sumgrades] => 1 [grade] => 2 [quiz] => 1 [assignment] => 1 [userid] => 1 [forum] => 1 [type] => object [scorm] => 1 [grademax] => 5.00000 [grademin] => 0.00000 [gradepass] => 5.00000 [commenttext] => <p>test comment</p> [url] => http://www.example.com/mod/quiz/view.php?id=1 ) [module_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_module [attempt_url] => http://www.example.com/mod/quiz/attempt.php?attempt=1 [attempt_type] => http://lrs.learninglocker.net/define/type/moodle/object [attempt_ext] => stdClass Object ( [id] => 1 [username] => test_username [lang] => en [fullname] => test_fullname [summary] => test_summary [name] => Attempt 1 [intro] => test_intro [timestart] => 1433946701 [timefinish] => 1433946702 [state] => finished [course] => 1 [sumgrades] => 1 [grade] => 2 [quiz] => 1 [assignment] => 1 [userid] => 1 [forum] => 1 [type] => object [scorm] => 1 [grademax] => 5.00000 [grademin] => 0.00000 [gradepass] => 5.00000 [commenttext] => <p>test comment</p> [url] => http://www.example.com/mod/quiz/attempt.php?attempt=1 ) [attempt_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_attempt [attempt_name] => Attempt 1 [attempt_result] => 1 [attempt_completed] => 1 [attempt_duration] => P00Y00M00DT00H00M01S ) ``` Could you look into this please? I think it may just be tests.
1.0
AttemptCompleted score additions break tests - @garemoko your additions to the AttemptCompleted class breaks compatibility with AttemptAbandoned and AttemptReviewed. They can't seem to find the new index's that you've added, possibly because the test's haven't been updated to reflect this. This is the output from the unit test: ``` There was 1 error: 1) Tests\AttemptAbandonedTest::testCreateEvent Undefined index: attempt_score_raw /var/www/sandbox/moodle/admin/tool/log/store/xapi/vendor/learninglocker/xapi-recipe-emitter/src/Events/AttemptCompleted.php:23 /var/www/sandbox/moodle/admin/tool/log/store/xapi/vendor/learninglocker/xapi-recipe-emitter/src/Controller.php:40 /var/www/sandbox/moodle/admin/tool/log/store/xapi/tests/TestCase.php:40 /usr/share/php/PHPUnit/TextUI/Command.php:147 /usr/share/php/PHPUnit/TextUI/Command.php:99 FAILURES! Tests: 16, Assertions: 53, Errors: 1. ``` The event from the translator to the emitter looks like this: ``` Array ( [user_id] => 1 [user_url] => http://www.example.com [user_name] => test_username [context_lang] => en [context_platform] => Moodle [context_ext] => Array ( [userid] => 1 [relateduserid] => 1 [courseid] => 1 [timecreated] => 1433946701 [eventname] => \mod_quiz\event\attempt_abandoned [objecttable] => quiz_attempts [objectid] => 1 ) [context_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_logstore_standard_log [context_info] => stdClass Object ( [https://moodle.org/] => 1.0.0 [https://github.com/LearningLocker/Moodle-Log-Expander] => 0.5.0 [https://github.com/LearningLocker/Moodle-xAPI-Translator] => 0.5.0 ) [time] => 2015-06-10T14:31:41+00:00 [app_url] => http://www.example.com [app_name] => test_fullname [app_description] => test_summary [app_type] => http://id.tincanapi.com/activitytype/site [app_ext] => stdClass Object ( [id] => 1 [username] => test_username [lang] => en [fullname] => test_fullname [summary] => test_summary [name] => test_name [intro] => test_intro [timestart] => 1433946701 [timefinish] => 1433946702 [state] => finished [course] => 1 [sumgrades] => 1 [grade] => 2 [quiz] => 1 [assignment] => 1 [userid] => 1 [forum] => 1 [type] => site [scorm] => 1 [grademax] => 5.00000 [grademin] => 0.00000 [gradepass] => 5.00000 [commenttext] => <p>test comment</p> [url] => http://www.example.com ) [app_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_course [source_url] => http://moodle.org [source_name] => Moodle [source_description] => Moodle is a open source learning platform designed to provide educators, administrators and learners with a single robust, secure and integrated system to create personalised learning environments. [source_type] => http://id.tincanapi.com/activitytype/source [recipe] => attempt_completed [course_url] => http://www.example.com/course/view.php?id=1 [course_name] => test_fullname [course_description] => test_summary [course_type] => http://lrs.learninglocker.net/define/type/moodle/object [course_ext] => stdClass Object ( [id] => 1 [username] => test_username [lang] => en [fullname] => test_fullname [summary] => test_summary [name] => test_name [intro] => test_intro [timestart] => 1433946701 [timefinish] => 1433946702 [state] => finished [course] => 1 [sumgrades] => 1 [grade] => 2 [quiz] => 1 [assignment] => 1 [userid] => 1 [forum] => 1 [type] => object [scorm] => 1 [grademax] => 5.00000 [grademin] => 0.00000 [gradepass] => 5.00000 [commenttext] => <p>test comment</p> [url] => http://www.example.com/course/view.php?id=1 ) [course_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_course [module_url] => http://www.example.com/mod/quiz/view.php?id=1 [module_name] => test_name [module_description] => test_intro [module_type] => http://lrs.learninglocker.net/define/type/moodle/object [module_ext] => stdClass Object ( [id] => 1 [username] => test_username [lang] => en [fullname] => test_fullname [summary] => test_summary [name] => test_name [intro] => test_intro [timestart] => 1433946701 [timefinish] => 1433946702 [state] => finished [course] => 1 [sumgrades] => 1 [grade] => 2 [quiz] => 1 [assignment] => 1 [userid] => 1 [forum] => 1 [type] => object [scorm] => 1 [grademax] => 5.00000 [grademin] => 0.00000 [gradepass] => 5.00000 [commenttext] => <p>test comment</p> [url] => http://www.example.com/mod/quiz/view.php?id=1 ) [module_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_module [attempt_url] => http://www.example.com/mod/quiz/attempt.php?attempt=1 [attempt_type] => http://lrs.learninglocker.net/define/type/moodle/object [attempt_ext] => stdClass Object ( [id] => 1 [username] => test_username [lang] => en [fullname] => test_fullname [summary] => test_summary [name] => Attempt 1 [intro] => test_intro [timestart] => 1433946701 [timefinish] => 1433946702 [state] => finished [course] => 1 [sumgrades] => 1 [grade] => 2 [quiz] => 1 [assignment] => 1 [userid] => 1 [forum] => 1 [type] => object [scorm] => 1 [grademax] => 5.00000 [grademin] => 0.00000 [gradepass] => 5.00000 [commenttext] => <p>test comment</p> [url] => http://www.example.com/mod/quiz/attempt.php?attempt=1 ) [attempt_ext_key] => http://lrs.learninglocker.net/define/extensions/moodle_attempt [attempt_name] => Attempt 1 [attempt_result] => 1 [attempt_completed] => 1 [attempt_duration] => P00Y00M00DT00H00M01S ) ``` Could you look into this please? I think it may just be tests.
priority
attemptcompleted score additions break tests garemoko your additions to the attemptcompleted class breaks compatibility with attemptabandoned and attemptreviewed they can t seem to find the new index s that you ve added possibly because the test s haven t been updated to reflect this this is the output from the unit test there was error tests attemptabandonedtest testcreateevent undefined index attempt score raw var www sandbox moodle admin tool log store xapi vendor learninglocker xapi recipe emitter src events attemptcompleted php var www sandbox moodle admin tool log store xapi vendor learninglocker xapi recipe emitter src controller php var www sandbox moodle admin tool log store xapi tests testcase php usr share php phpunit textui command php usr share php phpunit textui command php failures tests assertions errors the event from the translator to the emitter looks like this array test username en moodle array mod quiz event attempt abandoned quiz attempts stdclass object test fullname test summary stdclass object test username en test fullname test summary test name test intro finished site test comment moodle moodle is a open source learning platform designed to provide educators administrators and learners with a single robust secure and integrated system to create personalised learning environments attempt completed test fullname test summary stdclass object test username en test fullname test summary test name test intro finished object test comment test name test intro stdclass object test username en test fullname test summary test name test intro finished object test comment stdclass object test username en test fullname test summary attempt test intro finished object test comment attempt could you look into this please i think it may just be tests
1
58,004
3,086,964,536
IssuesEvent
2015-08-25 08:29:37
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
opened
[Рефакторинг] Identity и DECL_STRING_INFO_DIC
bug imported Priority-Medium
_From [Pavel.Pimenov@gmail.com](https://code.google.com/u/Pavel.Pimenov@gmail.com/) on September 23, 2013 12:01:09_ Зачем через макрос создается несколько статических массивов? я ведь изначально проброс данных через справочник делал не так. Код в Identity читается очень тяжело :( - вечером выкинуть лишний мусор _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1310_
1.0
[Рефакторинг] Identity и DECL_STRING_INFO_DIC - _From [Pavel.Pimenov@gmail.com](https://code.google.com/u/Pavel.Pimenov@gmail.com/) on September 23, 2013 12:01:09_ Зачем через макрос создается несколько статических массивов? я ведь изначально проброс данных через справочник делал не так. Код в Identity читается очень тяжело :( - вечером выкинуть лишний мусор _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1310_
priority
identity и decl string info dic from on september зачем через макрос создается несколько статических массивов я ведь изначально проброс данных через справочник делал не так код в identity читается очень тяжело вечером выкинуть лишний мусор original issue
1
451,122
13,025,008,840
IssuesEvent
2020-07-27 12:52:43
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
opened
[0.9.0 staging-1686] Filer: shows only discovered by you
Priority: Medium
1. Server has brick discovered 2. You don't see brick in the item filter (without show discovered check box.) Seems like it will show a brick only if you discovered it locally. ![bandicam 2020-07-27 16-53-31-804](https://user-images.githubusercontent.com/27898520/88543756-dee8e000-d031-11ea-8828-25457d0ca064.jpg) ![bandicam 2020-07-27 16-52-42-145](https://user-images.githubusercontent.com/27898520/88543762-e01a0d00-d031-11ea-89d7-73929f703e96.jpg) Item filter always should show everything discovered on the server.
1.0
[0.9.0 staging-1686] Filer: shows only discovered by you - 1. Server has brick discovered 2. You don't see brick in the item filter (without show discovered check box.) Seems like it will show a brick only if you discovered it locally. ![bandicam 2020-07-27 16-53-31-804](https://user-images.githubusercontent.com/27898520/88543756-dee8e000-d031-11ea-8828-25457d0ca064.jpg) ![bandicam 2020-07-27 16-52-42-145](https://user-images.githubusercontent.com/27898520/88543762-e01a0d00-d031-11ea-89d7-73929f703e96.jpg) Item filter always should show everything discovered on the server.
priority
filer shows only discovered by you server has brick discovered you don t see brick in the item filter without show discovered check box seems like it will show a brick only if you discovered it locally item filter always should show everything discovered on the server
1
84,189
3,655,022,241
IssuesEvent
2016-02-17 14:57:50
CloudOpting/cloudopting-manager
https://api.github.com/repos/CloudOpting/cloudopting-manager
opened
Cannot see button on detail
medium priority ui
When you select a service in the catalogue the application redirects you to see the detail, and after reading all the information a button is shown. **The button is missing behind the footer.**
1.0
Cannot see button on detail - When you select a service in the catalogue the application redirects you to see the detail, and after reading all the information a button is shown. **The button is missing behind the footer.**
priority
cannot see button on detail when you select a service in the catalogue the application redirects you to see the detail and after reading all the information a button is shown the button is missing behind the footer
1
592,191
17,872,135,120
IssuesEvent
2021-09-06 17:23:45
SHUReeducation/autoAPI
https://api.github.com/repos/SHUReeducation/autoAPI
reopened
Parse table info from ddl
feature request medium priority hard
**Describe the solution you'd like** 从sql语句中直接parse出表结构 parser参考 https://docs.rs/sqlparser/0.10.0/sqlparser/
1.0
Parse table info from ddl - **Describe the solution you'd like** 从sql语句中直接parse出表结构 parser参考 https://docs.rs/sqlparser/0.10.0/sqlparser/
priority
parse table info from ddl describe the solution you d like 从sql语句中直接parse出表结构 parser参考
1
387,853
11,470,923,933
IssuesEvent
2020-02-09 07:26:32
IlchCMS/Ilch-2.0
https://api.github.com/repos/IlchCMS/Ilch-2.0
opened
Update-Funktion: "Rollback"-Funktion
Priority: Medium Type: Enhancement
Prüfen mit welchen Aufwand eine "Rollback"-Funktion implementiert werden kann und diese ggf. umsetzen. - Backup der Dateien erstellen, die überschrieben werden würden - Liste neuer Dateien/Ordner führen - Datenbank-Updates erst am Ende ausführen (https://github.com/IlchCMS/Ilch-2.0/issues/434) - Im Fehlerfall alte Dateien wiederherstellen und eventuell erstellte neue Dateien/Ordner wieder löschen
1.0
Update-Funktion: "Rollback"-Funktion - Prüfen mit welchen Aufwand eine "Rollback"-Funktion implementiert werden kann und diese ggf. umsetzen. - Backup der Dateien erstellen, die überschrieben werden würden - Liste neuer Dateien/Ordner führen - Datenbank-Updates erst am Ende ausführen (https://github.com/IlchCMS/Ilch-2.0/issues/434) - Im Fehlerfall alte Dateien wiederherstellen und eventuell erstellte neue Dateien/Ordner wieder löschen
priority
update funktion rollback funktion prüfen mit welchen aufwand eine rollback funktion implementiert werden kann und diese ggf umsetzen backup der dateien erstellen die überschrieben werden würden liste neuer dateien ordner führen datenbank updates erst am ende ausführen im fehlerfall alte dateien wiederherstellen und eventuell erstellte neue dateien ordner wieder löschen
1
548,616
16,067,715,376
IssuesEvent
2021-04-23 22:24:23
glizzan/concord
https://api.github.com/repos/glizzan/concord
closed
Create proposal state for Action
enhancement needs thought priority: medium type: core
Currently an action can be in private draft mode or actively sent, but there's no way for an action to be "proposed". It's important to have this to create space for people to discuss it. For actions which automatically pass, for instance most actions by governors, and any action with an unconditioned permission, there's no space for discussion until after. (If there's a condition, discussion can happen before and after the condition is satisfied.) The easy version of this is creating the "proposal" state, and giving the user the option to "propose" the action rather than taking it. This lets us filter actions by actions in the proposed state, view them, and comment on them. We might eventually want to allow something more elaborate, like applying conditions to moving the action from "proposal" to "sent" -- almost a reversal of the previous process. By this, I mean people (governors? owners? the person who created the action, voluntarily?) could take an action that would otherwise pass and specifically create a condition for it to move on. But that's pretty outside the current design, and probably should be split off into a separate issue to consider. **Putting this on pause due to:** this is a slightly larger change than I'd hoped. Right now we're having 'proposed' passed in as an attribute on the client call, which is clunky for regular calls (would be nice to not have to edit every single client call to accept a 'proposed=False' param and then pass it to create_and_take_action --- maybe make it a mode like mock?) but it also make the compound actions like "update_configuration" hard too. One option is to refactor the permission state changes before tackling this, but we might still want compound actions in the future. To Do: - [x] add "proposal" state as status option & update taking action so it treats proposal like draft - [ ] if in proposal state, prominently say so in UX, and give the actor and only the actor the option to move from proposal state to "taken" state (sent?) - [ ] add "propose" as option in buttons (either as separate button, or dropdown option) - [ ] add test - [ ] make new issue for the UX enhancements below)
1.0
Create proposal state for Action - Currently an action can be in private draft mode or actively sent, but there's no way for an action to be "proposed". It's important to have this to create space for people to discuss it. For actions which automatically pass, for instance most actions by governors, and any action with an unconditioned permission, there's no space for discussion until after. (If there's a condition, discussion can happen before and after the condition is satisfied.) The easy version of this is creating the "proposal" state, and giving the user the option to "propose" the action rather than taking it. This lets us filter actions by actions in the proposed state, view them, and comment on them. We might eventually want to allow something more elaborate, like applying conditions to moving the action from "proposal" to "sent" -- almost a reversal of the previous process. By this, I mean people (governors? owners? the person who created the action, voluntarily?) could take an action that would otherwise pass and specifically create a condition for it to move on. But that's pretty outside the current design, and probably should be split off into a separate issue to consider. **Putting this on pause due to:** this is a slightly larger change than I'd hoped. Right now we're having 'proposed' passed in as an attribute on the client call, which is clunky for regular calls (would be nice to not have to edit every single client call to accept a 'proposed=False' param and then pass it to create_and_take_action --- maybe make it a mode like mock?) but it also make the compound actions like "update_configuration" hard too. One option is to refactor the permission state changes before tackling this, but we might still want compound actions in the future. To Do: - [x] add "proposal" state as status option & update taking action so it treats proposal like draft - [ ] if in proposal state, prominently say so in UX, and give the actor and only the actor the option to move from proposal state to "taken" state (sent?) - [ ] add "propose" as option in buttons (either as separate button, or dropdown option) - [ ] add test - [ ] make new issue for the UX enhancements below)
priority
create proposal state for action currently an action can be in private draft mode or actively sent but there s no way for an action to be proposed it s important to have this to create space for people to discuss it for actions which automatically pass for instance most actions by governors and any action with an unconditioned permission there s no space for discussion until after if there s a condition discussion can happen before and after the condition is satisfied the easy version of this is creating the proposal state and giving the user the option to propose the action rather than taking it this lets us filter actions by actions in the proposed state view them and comment on them we might eventually want to allow something more elaborate like applying conditions to moving the action from proposal to sent almost a reversal of the previous process by this i mean people governors owners the person who created the action voluntarily could take an action that would otherwise pass and specifically create a condition for it to move on but that s pretty outside the current design and probably should be split off into a separate issue to consider putting this on pause due to this is a slightly larger change than i d hoped right now we re having proposed passed in as an attribute on the client call which is clunky for regular calls would be nice to not have to edit every single client call to accept a proposed false param and then pass it to create and take action maybe make it a mode like mock but it also make the compound actions like update configuration hard too one option is to refactor the permission state changes before tackling this but we might still want compound actions in the future to do add proposal state as status option update taking action so it treats proposal like draft if in proposal state prominently say so in ux and give the actor and only the actor the option to move from proposal state to taken state sent add propose as option in buttons either as separate button or dropdown option add test make new issue for the ux enhancements below
1
405,819
11,883,015,175
IssuesEvent
2020-03-27 15:17:27
ooni/probe
https://api.github.com/repos/ooni/probe
closed
Add OONI logo in measurement pages of OONI Probe desktop app
effort/XS enhancement ooni/probe-desktop priority/medium
The measurement pages in the OONI Probe mobile app include the OONI logo. ![Screenshot_2020-03-13-15-23-42-682](https://user-images.githubusercontent.com/8290574/76629756-194c5780-653f-11ea-9424-eb8e97c891d0.jpeg) It would be great if the OONI logo was also added in the same way in the measurement pages of the OONI Probe desktop app, so that when people share screenshots of measurement pages, it's more clear that they include OONI data.
1.0
Add OONI logo in measurement pages of OONI Probe desktop app - The measurement pages in the OONI Probe mobile app include the OONI logo. ![Screenshot_2020-03-13-15-23-42-682](https://user-images.githubusercontent.com/8290574/76629756-194c5780-653f-11ea-9424-eb8e97c891d0.jpeg) It would be great if the OONI logo was also added in the same way in the measurement pages of the OONI Probe desktop app, so that when people share screenshots of measurement pages, it's more clear that they include OONI data.
priority
add ooni logo in measurement pages of ooni probe desktop app the measurement pages in the ooni probe mobile app include the ooni logo it would be great if the ooni logo was also added in the same way in the measurement pages of the ooni probe desktop app so that when people share screenshots of measurement pages it s more clear that they include ooni data
1
127,363
5,029,101,305
IssuesEvent
2016-12-15 20:09:56
duckduckgo/zeroclickinfo-goodies
https://api.github.com/repos/duckduckgo/zeroclickinfo-goodies
closed
Create CSS Animations Goodie
Mission: Programming Priority: Medium Skill: CSS Skill: JavaScript Status: PR Received Suggestion Topic: CSS
### Background CSS Animations are very popular and we can very easily display a tile view of CSS Animation demos, that show what the effect of the animation is. Ideally we can link to a live demo of the CSS where the user can copy and modify the CSS we've demonstrated. For example, CSS-Tricks has a great post with embedded samples: https://css-tricks.com/css-animation-tricks/ ### Objective Build a Goodie that displays a tile view where each tile demonstrates a different CSS animation technique. Each tile should be a link to a CodePen where the user can see and play with the code. #### Example Queries - "css animations" - "css animations demos" - "css animations examples" #### Example Animation Demos - https://robots.thoughtbot.com/css-animation-for-beginners - http://www.webdesignerdepot.com/2014/05/8-simple-css3-transitions-that-will-wow-your-users/ - http://www.the-art-of-web.com/css/css-animation/ Reply ### What to do: 1. Comment here if you'd like to handle this task. 2. Review any Related Discussions, Issues, and Pull Requests (below). 3. [Setup your Dev Environment](http://docs.duckduckhack.com/welcome/setup-dev-environment.html) (first-timers only) 4. Refer to the [Fathead documentation](http://docs.duckduckhack.com/resources/fathead-overview.html) and [other Fatheads](https://duck.co/ia?repo=fathead) as examples 5. [Submit a Pull Request](http://docs.duckduckhack.com/submitting/pull-request.html) with your completed changes ### Who to contact for help: Please contact @moollaza or see [other contact info](http://docs.duckduckhack.com/resources/get-in-touch.html). --- **Related Discussions, Issues, and Pull Requests:** Forum Topic: https://forum.duckduckhack.com/t/create-ia-css-animations-goodie/262/2
1.0
Create CSS Animations Goodie - ### Background CSS Animations are very popular and we can very easily display a tile view of CSS Animation demos, that show what the effect of the animation is. Ideally we can link to a live demo of the CSS where the user can copy and modify the CSS we've demonstrated. For example, CSS-Tricks has a great post with embedded samples: https://css-tricks.com/css-animation-tricks/ ### Objective Build a Goodie that displays a tile view where each tile demonstrates a different CSS animation technique. Each tile should be a link to a CodePen where the user can see and play with the code. #### Example Queries - "css animations" - "css animations demos" - "css animations examples" #### Example Animation Demos - https://robots.thoughtbot.com/css-animation-for-beginners - http://www.webdesignerdepot.com/2014/05/8-simple-css3-transitions-that-will-wow-your-users/ - http://www.the-art-of-web.com/css/css-animation/ Reply ### What to do: 1. Comment here if you'd like to handle this task. 2. Review any Related Discussions, Issues, and Pull Requests (below). 3. [Setup your Dev Environment](http://docs.duckduckhack.com/welcome/setup-dev-environment.html) (first-timers only) 4. Refer to the [Fathead documentation](http://docs.duckduckhack.com/resources/fathead-overview.html) and [other Fatheads](https://duck.co/ia?repo=fathead) as examples 5. [Submit a Pull Request](http://docs.duckduckhack.com/submitting/pull-request.html) with your completed changes ### Who to contact for help: Please contact @moollaza or see [other contact info](http://docs.duckduckhack.com/resources/get-in-touch.html). --- **Related Discussions, Issues, and Pull Requests:** Forum Topic: https://forum.duckduckhack.com/t/create-ia-css-animations-goodie/262/2
priority
create css animations goodie background css animations are very popular and we can very easily display a tile view of css animation demos that show what the effect of the animation is ideally we can link to a live demo of the css where the user can copy and modify the css we ve demonstrated for example css tricks has a great post with embedded samples objective build a goodie that displays a tile view where each tile demonstrates a different css animation technique each tile should be a link to a codepen where the user can see and play with the code example queries css animations css animations demos css animations examples example animation demos reply what to do comment here if you d like to handle this task review any related discussions issues and pull requests below first timers only refer to the and as examples with your completed changes who to contact for help please contact moollaza or see related discussions issues and pull requests forum topic
1
361,857
10,720,713,010
IssuesEvent
2019-10-26 19:42:01
facebookresearch/nevergrad
https://api.github.com/repos/facebookresearch/nevergrad
closed
Update optimizers with variants to use families/factories
Difficulty: Low Priority: Medium Status: Help wanted Status: In Progess Type: Enhancement
All variations of optimizers are different classes, even for subtle changes (eg.: `CMA`). This process is not scalable and we should create some `Optimizer` factories. It's not clear to me yet what the naming should be nor their API, or how it can interface with benchmarking which assumes all optimizers are different classes.
1.0
Update optimizers with variants to use families/factories - All variations of optimizers are different classes, even for subtle changes (eg.: `CMA`). This process is not scalable and we should create some `Optimizer` factories. It's not clear to me yet what the naming should be nor their API, or how it can interface with benchmarking which assumes all optimizers are different classes.
priority
update optimizers with variants to use families factories all variations of optimizers are different classes even for subtle changes eg cma this process is not scalable and we should create some optimizer  factories it s not clear to me yet what the naming should be nor their api or how it can interface with benchmarking which assumes all optimizers are different classes
1
403,272
11,838,391,865
IssuesEvent
2020-03-23 15:35:18
HabitRPG/habitica
https://api.github.com/repos/HabitRPG/habitica
closed
Pressing enter to confirm character choice in IME creates new checklist line
priority: medium section: other status: issue: in progress type: medium level coding
_edit by Alys 2020-01-14:_ For the current status of this issue, see this comment below: https://github.com/HabitRPG/habitica/issues/8326#issuecomment-574092129 The fix for this issue was made on the old website so it might have stopped working when the new website was created. _end of edit_ --- ### Description [//]: # (Describe bug in detail here. Include pictures if helpful.) I was asked to create a new issue here after a discussion in the Report a Bug guild about this; I think the most succinct way I can describe it is a modified version of the long post I created in the guild explaining the issue after I tested what I thought user chan_gami was talking about: (I'll use Microsoft's IME as it works on Windows 7 as an example, since it's what I have at my disposal that I know how to use, but most IMEs work in similar ways. The images below have tooltips further explaining them when they are hovered over.) When you use an [IME](https://en.wikipedia.org/wiki/Input_method) (a typing method that allows you to use one input format (i.e. a latin keyboard) to type in a different one (i.e. a syllabic/logographic language)) to enter Japanese, you type in kana (hiragana, usually) and it shows up underlined. ![えいが with a black squiggly line under it](https://cloud.githubusercontent.com/assets/14182450/21515339/cb213c4e-cc9c-11e6-89c2-95cb3d9c7dd8.png "えいが is typed using 'eiga' on the keyboard") Then you hit space to use the IME's dictionary to select what kanji you want based on the hiragana/words you typed in. ![映画 with a dropdown under it displaying various kanji choices; the displayed term, 映画, is highlighted as the selection](https://cloud.githubusercontent.com/assets/14182450/21515374/0bcaeed4-cc9d-11e6-8bc2-342924174b2a.png "pressing space once on Microsoft's IME auto-selects what it thinks is the most likely option, but pressing it again displays a full dropdown with multiple choices, shown here with 映画 selected as the intended input for えいが") Enter confirms your choice and sort of "locks in" that character sequence, I guess (you're not editing the kana in a way that you can select kanji for it anymore and the line under the characters disappears, allowing you to start the process over again if you're not finished). ![を has a squiggly line under it but 映画 is no longer underlined](https://cloud.githubusercontent.com/assets/14182450/21515423/8c408bfa-cc9d-11e6-8bac-eafe8683e362.png "映画 is no longer underlined, as enter has been pressed to 'lock in' the choice, を was typed after this and is underlined because enter hasn't been pressed again yet") **In checklist editing (but not elsewhere that I can find), hitting enter to confirm the IME choice is also being interpreted as the "enter" that creates a new checklist line**, which isn't ideal if you were just partway through the message since you have to return to the previous line to write more. Here's an example if you're only writing part of a line at a time (I'll go word by word in the examples below (though an IME can technically handle multiple words at a time) to show how it should look vs. how it'd be interpreted for checklists if you didn't return to the original checklist item.) Here is the sentence in full, along with a table splitting it into chunks based on how I typed it for use in this example: Full sentence: メアリーさん、映画を見に行きましょう。 Romaji (from QWERTY typing)|meari-san,|eiga|wo|mi|ni|ikimashou. ----|----|----|----|----|----|---- Kana (pre-space-press) |めありーさん、|えいが|を|み|に|いきましょう。 Final characters chosen |メアリーさん、|映画|を|見|に|行きましょう。 Below is how the sentence would look if the enter to confirm the character choices (separated like above) also created a new line: メアリーさん、 映画 を 見 に 行きましょう。 That is to say, if you didn't return to the first checklist item, a new one would be created for each thing you typed and pressed enter to confirm. I'm not sure I've seen that as a usual behavior in most places I've used an IME (granted, most places I've used an IME are language-learning sites). The usual behavior I've seen is that the enter for the IME character choice is ignored (somehow) and only non-IME-choice-confirming enter presses result in the action pressing enter is supposed to achieve. So the behavior one might expect to see in terms of how IME choice usually functions is that the IME kana-to-kanji-conversion enter press would do nothing and only a typical enter press (i.e. outside of the IME/with intent to create a new line, the way it works in English) would create a new checklist item. But instead, with checklist items on Habitica, currently IME-confirm presses and "normal" presses do it. I think this probably happens across various systems and browsers (and IMEs if they function similarly, even if they're non-Microsoft or non-Japanese, i.e. a Google Chinese/pinyin IME), even though I've only tested on Windows 7 with Microsoft IME in Firefox. (For instance, chan_gami reported it on Mac OS Sierra with Chrome, Firefox, *and* Safari via Google's Japanese IME.) ...It was very confusing to write this (or, well, to modify it to post here), so if something needs to be clarified, please let me know.
1.0
Pressing enter to confirm character choice in IME creates new checklist line - _edit by Alys 2020-01-14:_ For the current status of this issue, see this comment below: https://github.com/HabitRPG/habitica/issues/8326#issuecomment-574092129 The fix for this issue was made on the old website so it might have stopped working when the new website was created. _end of edit_ --- ### Description [//]: # (Describe bug in detail here. Include pictures if helpful.) I was asked to create a new issue here after a discussion in the Report a Bug guild about this; I think the most succinct way I can describe it is a modified version of the long post I created in the guild explaining the issue after I tested what I thought user chan_gami was talking about: (I'll use Microsoft's IME as it works on Windows 7 as an example, since it's what I have at my disposal that I know how to use, but most IMEs work in similar ways. The images below have tooltips further explaining them when they are hovered over.) When you use an [IME](https://en.wikipedia.org/wiki/Input_method) (a typing method that allows you to use one input format (i.e. a latin keyboard) to type in a different one (i.e. a syllabic/logographic language)) to enter Japanese, you type in kana (hiragana, usually) and it shows up underlined. ![えいが with a black squiggly line under it](https://cloud.githubusercontent.com/assets/14182450/21515339/cb213c4e-cc9c-11e6-89c2-95cb3d9c7dd8.png "えいが is typed using 'eiga' on the keyboard") Then you hit space to use the IME's dictionary to select what kanji you want based on the hiragana/words you typed in. ![映画 with a dropdown under it displaying various kanji choices; the displayed term, 映画, is highlighted as the selection](https://cloud.githubusercontent.com/assets/14182450/21515374/0bcaeed4-cc9d-11e6-8bc2-342924174b2a.png "pressing space once on Microsoft's IME auto-selects what it thinks is the most likely option, but pressing it again displays a full dropdown with multiple choices, shown here with 映画 selected as the intended input for えいが") Enter confirms your choice and sort of "locks in" that character sequence, I guess (you're not editing the kana in a way that you can select kanji for it anymore and the line under the characters disappears, allowing you to start the process over again if you're not finished). ![を has a squiggly line under it but 映画 is no longer underlined](https://cloud.githubusercontent.com/assets/14182450/21515423/8c408bfa-cc9d-11e6-8bac-eafe8683e362.png "映画 is no longer underlined, as enter has been pressed to 'lock in' the choice, を was typed after this and is underlined because enter hasn't been pressed again yet") **In checklist editing (but not elsewhere that I can find), hitting enter to confirm the IME choice is also being interpreted as the "enter" that creates a new checklist line**, which isn't ideal if you were just partway through the message since you have to return to the previous line to write more. Here's an example if you're only writing part of a line at a time (I'll go word by word in the examples below (though an IME can technically handle multiple words at a time) to show how it should look vs. how it'd be interpreted for checklists if you didn't return to the original checklist item.) Here is the sentence in full, along with a table splitting it into chunks based on how I typed it for use in this example: Full sentence: メアリーさん、映画を見に行きましょう。 Romaji (from QWERTY typing)|meari-san,|eiga|wo|mi|ni|ikimashou. ----|----|----|----|----|----|---- Kana (pre-space-press) |めありーさん、|えいが|を|み|に|いきましょう。 Final characters chosen |メアリーさん、|映画|を|見|に|行きましょう。 Below is how the sentence would look if the enter to confirm the character choices (separated like above) also created a new line: メアリーさん、 映画 を 見 に 行きましょう。 That is to say, if you didn't return to the first checklist item, a new one would be created for each thing you typed and pressed enter to confirm. I'm not sure I've seen that as a usual behavior in most places I've used an IME (granted, most places I've used an IME are language-learning sites). The usual behavior I've seen is that the enter for the IME character choice is ignored (somehow) and only non-IME-choice-confirming enter presses result in the action pressing enter is supposed to achieve. So the behavior one might expect to see in terms of how IME choice usually functions is that the IME kana-to-kanji-conversion enter press would do nothing and only a typical enter press (i.e. outside of the IME/with intent to create a new line, the way it works in English) would create a new checklist item. But instead, with checklist items on Habitica, currently IME-confirm presses and "normal" presses do it. I think this probably happens across various systems and browsers (and IMEs if they function similarly, even if they're non-Microsoft or non-Japanese, i.e. a Google Chinese/pinyin IME), even though I've only tested on Windows 7 with Microsoft IME in Firefox. (For instance, chan_gami reported it on Mac OS Sierra with Chrome, Firefox, *and* Safari via Google's Japanese IME.) ...It was very confusing to write this (or, well, to modify it to post here), so if something needs to be clarified, please let me know.
priority
pressing enter to confirm character choice in ime creates new checklist line edit by alys for the current status of this issue see this comment below the fix for this issue was made on the old website so it might have stopped working when the new website was created end of edit description describe bug in detail here include pictures if helpful i was asked to create a new issue here after a discussion in the report a bug guild about this i think the most succinct way i can describe it is a modified version of the long post i created in the guild explaining the issue after i tested what i thought user chan gami was talking about i ll use microsoft s ime as it works on windows as an example since it s what i have at my disposal that i know how to use but most imes work in similar ways the images below have tooltips further explaining them when they are hovered over when you use an a typing method that allows you to use one input format i e a latin keyboard to type in a different one i e a syllabic logographic language to enter japanese you type in kana hiragana usually and it shows up underlined えいが is typed using eiga on the keyboard then you hit space to use the ime s dictionary to select what kanji you want based on the hiragana words you typed in pressing space once on microsoft s ime auto selects what it thinks is the most likely option but pressing it again displays a full dropdown with multiple choices shown here with 映画 selected as the intended input for えいが enter confirms your choice and sort of locks in that character sequence i guess you re not editing the kana in a way that you can select kanji for it anymore and the line under the characters disappears allowing you to start the process over again if you re not finished 映画 is no longer underlined as enter has been pressed to lock in the choice を was typed after this and is underlined because enter hasn t been pressed again yet in checklist editing but not elsewhere that i can find hitting enter to confirm the ime choice is also being interpreted as the enter that creates a new checklist line which isn t ideal if you were just partway through the message since you have to return to the previous line to write more here s an example if you re only writing part of a line at a time i ll go word by word in the examples below though an ime can technically handle multiple words at a time to show how it should look vs how it d be interpreted for checklists if you didn t return to the original checklist item here is the sentence in full along with a table splitting it into chunks based on how i typed it for use in this example full sentence メアリーさん、映画を見に行きましょう。 romaji from qwerty typing meari san eiga wo mi ni ikimashou kana pre space press めありーさん、 えいが を み に いきましょう。 final characters chosen メアリーさん、 映画 を 見 に 行きましょう。 below is how the sentence would look if the enter to confirm the character choices separated like above also created a new line メアリーさん、 映画 を 見 に 行きましょう。 that is to say if you didn t return to the first checklist item a new one would be created for each thing you typed and pressed enter to confirm i m not sure i ve seen that as a usual behavior in most places i ve used an ime granted most places i ve used an ime are language learning sites the usual behavior i ve seen is that the enter for the ime character choice is ignored somehow and only non ime choice confirming enter presses result in the action pressing enter is supposed to achieve so the behavior one might expect to see in terms of how ime choice usually functions is that the ime kana to kanji conversion enter press would do nothing and only a typical enter press i e outside of the ime with intent to create a new line the way it works in english would create a new checklist item but instead with checklist items on habitica currently ime confirm presses and normal presses do it i think this probably happens across various systems and browsers and imes if they function similarly even if they re non microsoft or non japanese i e a google chinese pinyin ime even though i ve only tested on windows with microsoft ime in firefox for instance chan gami reported it on mac os sierra with chrome firefox and safari via google s japanese ime it was very confusing to write this or well to modify it to post here so if something needs to be clarified please let me know
1
107,462
4,309,055,239
IssuesEvent
2016-07-21 14:54:41
dmusican/Elegit
https://api.github.com/repos/dmusican/Elegit
closed
Remove duplication in branch label resetting
priority medium refactoring
Reset branch heads and set branch head both set the branch head labels
1.0
Remove duplication in branch label resetting - Reset branch heads and set branch head both set the branch head labels
priority
remove duplication in branch label resetting reset branch heads and set branch head both set the branch head labels
1
213,640
7,255,233,548
IssuesEvent
2018-02-16 14:13:31
psouza4/mediacentermaster
https://api.github.com/repos/psouza4/mediacentermaster
opened
The "Download missing theatrical trailers" feature breaks with lots of downloads
!! Pending-New-Release !! Component-Functionality Feature-Trailers Fixed / Resolved Priority-Medium Type-Bug
Since YouTube only gives access to stream a video from a request for a limited time, downloading many trailers in bulk breaks as the list goes further on. Thus, trailer downloads are throttled to a maximum of 5 concurrent files (the process to download more will pause to catch up and then proceed when the download queue is under 5 concurrent files again).
1.0
The "Download missing theatrical trailers" feature breaks with lots of downloads - Since YouTube only gives access to stream a video from a request for a limited time, downloading many trailers in bulk breaks as the list goes further on. Thus, trailer downloads are throttled to a maximum of 5 concurrent files (the process to download more will pause to catch up and then proceed when the download queue is under 5 concurrent files again).
priority
the download missing theatrical trailers feature breaks with lots of downloads since youtube only gives access to stream a video from a request for a limited time downloading many trailers in bulk breaks as the list goes further on thus trailer downloads are throttled to a maximum of concurrent files the process to download more will pause to catch up and then proceed when the download queue is under concurrent files again
1
424,566
12,313,114,737
IssuesEvent
2020-05-12 14:52:14
georchestra/mapstore2-georchestra
https://api.github.com/repos/georchestra/mapstore2-georchestra
closed
Configuration Questions
New Priority: Medium User feedback
there are several conflicting/confusing things wrt the config, right now in the war there's two https://github.com/georchestra/mapstore2-georchestra/blob/master/web/src/main/resources/geostore.properties and https://github.com/georchestra/mapstore2-georchestra/blob/master/docker/geostore-datasource-ovr.properties files, some in `mapstore/datadir/mapstore` in the war, some under `mapstore/WEB-INF/classes/` but that doesnt match what's been pulled into the datadir repo (https://github.com/georchestra/datadir/blob/master/mapstore/geostore.properties). And on top of it, they seem to override each other wrt db connection: ``` [13/02 13:07] landry@demo.thruxton:/etc/georchestra $grep -v \# mapstore/geostore.properties |grep -v ^$ pgsqlHost=localhost pgsqlPort=5432 pgsqlDatabase=georchestra pgsqlUser=georchestra pgsqlPassword=georchestra ldapHost=localhost ldapPort=389 ldapScheme=ldap ldapBaseDn=dc=georchestra,dc=org ldapAdminDn=cn=admin,dc=georchestra,dc=org ldapAdminPassword=secret ldapUsersRdn=ou=users ldapRolesRdn=ou=roles ldapOrgsRdn=ou=orgs [13/02 13:07] landry@demo.thruxton:/etc/georchestra $cat mapstore/geostore-datasource-ovr.properties geostoreDataSource.driverClassName=org.postgresql.Driver geostoreDataSource.url=jdbc:postgresql://localhost:5432/georchestra geostoreDataSource.username=georchestra geostoreDataSource.password=georchestra geostoreVendorAdapter.databasePlatform=org.hibernate.dialect.PostgreSQLDialect geostoreEntityManagerFactory.jpaPropertyMap[hibernate.hbm2ddl.auto]=validate geostoreEntityManagerFactory.jpaPropertyMap[hibernate.default_schema]=geostore geostoreVendorAdapter.generateDdl=true geostoreVendorAdapter.showSql=false ``` as for all the ldap bits (and psql bits), they're already defined in georchestra's https://github.com/georchestra/datadir/blob/master/default.properties#L69 so if you want to allow override in `geostore.properties` they have to be commented out by default like its done for example in https://github.com/georchestra/datadir/blob/master/cas/cas.properties#L27 - and the code reading them has to read first what's in `default.properties` and then eventually override the settings with what's found in `geostore.properties`. All that to say that maybe some of the .properties files could be dropped from the war so we only have a single source of truth, and that has to match what's in the georchestra datadir repo (dont hesitate to do PRs there, we'll merge them!)
1.0
Configuration Questions - there are several conflicting/confusing things wrt the config, right now in the war there's two https://github.com/georchestra/mapstore2-georchestra/blob/master/web/src/main/resources/geostore.properties and https://github.com/georchestra/mapstore2-georchestra/blob/master/docker/geostore-datasource-ovr.properties files, some in `mapstore/datadir/mapstore` in the war, some under `mapstore/WEB-INF/classes/` but that doesnt match what's been pulled into the datadir repo (https://github.com/georchestra/datadir/blob/master/mapstore/geostore.properties). And on top of it, they seem to override each other wrt db connection: ``` [13/02 13:07] landry@demo.thruxton:/etc/georchestra $grep -v \# mapstore/geostore.properties |grep -v ^$ pgsqlHost=localhost pgsqlPort=5432 pgsqlDatabase=georchestra pgsqlUser=georchestra pgsqlPassword=georchestra ldapHost=localhost ldapPort=389 ldapScheme=ldap ldapBaseDn=dc=georchestra,dc=org ldapAdminDn=cn=admin,dc=georchestra,dc=org ldapAdminPassword=secret ldapUsersRdn=ou=users ldapRolesRdn=ou=roles ldapOrgsRdn=ou=orgs [13/02 13:07] landry@demo.thruxton:/etc/georchestra $cat mapstore/geostore-datasource-ovr.properties geostoreDataSource.driverClassName=org.postgresql.Driver geostoreDataSource.url=jdbc:postgresql://localhost:5432/georchestra geostoreDataSource.username=georchestra geostoreDataSource.password=georchestra geostoreVendorAdapter.databasePlatform=org.hibernate.dialect.PostgreSQLDialect geostoreEntityManagerFactory.jpaPropertyMap[hibernate.hbm2ddl.auto]=validate geostoreEntityManagerFactory.jpaPropertyMap[hibernate.default_schema]=geostore geostoreVendorAdapter.generateDdl=true geostoreVendorAdapter.showSql=false ``` as for all the ldap bits (and psql bits), they're already defined in georchestra's https://github.com/georchestra/datadir/blob/master/default.properties#L69 so if you want to allow override in `geostore.properties` they have to be commented out by default like its done for example in https://github.com/georchestra/datadir/blob/master/cas/cas.properties#L27 - and the code reading them has to read first what's in `default.properties` and then eventually override the settings with what's found in `geostore.properties`. All that to say that maybe some of the .properties files could be dropped from the war so we only have a single source of truth, and that has to match what's in the georchestra datadir repo (dont hesitate to do PRs there, we'll merge them!)
priority
configuration questions there are several conflicting confusing things wrt the config right now in the war there s two and files some in mapstore datadir mapstore in the war some under mapstore web inf classes but that doesnt match what s been pulled into the datadir repo and on top of it they seem to override each other wrt db connection landry demo thruxton etc georchestra grep v mapstore geostore properties grep v pgsqlhost localhost pgsqlport pgsqldatabase georchestra pgsqluser georchestra pgsqlpassword georchestra ldaphost localhost ldapport ldapscheme ldap ldapbasedn dc georchestra dc org ldapadmindn cn admin dc georchestra dc org ldapadminpassword secret ldapusersrdn ou users ldaprolesrdn ou roles ldaporgsrdn ou orgs landry demo thruxton etc georchestra cat mapstore geostore datasource ovr properties geostoredatasource driverclassname org postgresql driver geostoredatasource url jdbc postgresql localhost georchestra geostoredatasource username georchestra geostoredatasource password georchestra geostorevendoradapter databaseplatform org hibernate dialect postgresqldialect geostoreentitymanagerfactory jpapropertymap validate geostoreentitymanagerfactory jpapropertymap geostore geostorevendoradapter generateddl true geostorevendoradapter showsql false as for all the ldap bits and psql bits they re already defined in georchestra s so if you want to allow override in geostore properties they have to be commented out by default like its done for example in and the code reading them has to read first what s in default properties and then eventually override the settings with what s found in geostore properties all that to say that maybe some of the properties files could be dropped from the war so we only have a single source of truth and that has to match what s in the georchestra datadir repo dont hesitate to do prs there we ll merge them
1
515,202
14,952,324,220
IssuesEvent
2021-01-26 15:24:30
garden-io/garden
https://api.github.com/repos/garden-io/garden
reopened
garden doesn't support directories as a test artifact
bug priority:medium stale
## Bug I wanted to use a folder as an artifact for tests ### Current Behaviour garden.yml extract: ``` artifacts: - source: /tests/cypress/videos/* target: test-results/cypress/videos ``` error: ``` Command "/home/lucas/.garden/tools/kubectl/804c71b3e6ad5976/kubectl --context=garden-develop --namespace=garden-lucas-sonnabend exec -i test-cypress-e2e-6dd25b -c main -- sh -c cd / && touch .DS_Store && tar -c -f - $(ls tests/cypress/videos 2>/dev/null) .DS_Store" failed with code 2: tar: extended: Cannot stat: No such file or directory tar: Exiting with failure status due to previous errors command terminated with exit code 2 Here's the full output: tar: extended: Cannot stat: No such file or directory tar: Exiting with failure status due to previous errors .DS_Store0000644000000000000000000000000013642635722011237 0ustar rootrootcommand terminated with exit code 2 ``` ### Expected behavior Either of two things: support a directory so that it treats all files/subdirecories within that as artifacts OR fail with a much cleaner error message ### Reproducible example See description above ### Workaround using a wildcard works, like `-source: /tests/cypress/videos/*` ### Your environment ``` $ garden version 0.11.11 ``` ``` kubectl version Client Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.0", GitCommit:"70132b0f130acc0bed193d9ba59dd186f0e634cf", GitTreeState:"clean", BuildDate:"2019-12-07T21:20:10Z", GoVersion:"go1.13.4", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"15+", GitVersion:"v1.15.10-eks-bac369", GitCommit:"bac3690554985327ae4d13e42169e8b1c2f37226", GitTreeState:"clean", BuildDate:"2020-02-26T01:12:54Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"} ``` ``` docker version Client: Docker Engine - Community Version: 19.03.6 API version: 1.40 Go version: go1.12.16 Git commit: 369ce74a3c Built: Thu Feb 13 01:27:52 2020 OS/Arch: linux/amd64 Experimental: false Server: Docker Engine - Community Engine: Version: 19.03.6 API version: 1.40 (minimum version 1.12) Go version: go1.12.16 Git commit: 369ce74a3c Built: Thu Feb 13 01:26:25 2020 OS/Arch: linux/amd64 Experimental: false containerd: Version: 1.2.10 GitCommit: b34a5c8af56e510852c35414db4c1f4fa6172339 runc: Version: 1.0.0-rc8+dev GitCommit: 3e425f80a8c931f88e6d94a8c831b9d5aa481657 docker-init: Version: 0.18.0 GitCommit: fec3683 ```
1.0
garden doesn't support directories as a test artifact - ## Bug I wanted to use a folder as an artifact for tests ### Current Behaviour garden.yml extract: ``` artifacts: - source: /tests/cypress/videos/* target: test-results/cypress/videos ``` error: ``` Command "/home/lucas/.garden/tools/kubectl/804c71b3e6ad5976/kubectl --context=garden-develop --namespace=garden-lucas-sonnabend exec -i test-cypress-e2e-6dd25b -c main -- sh -c cd / && touch .DS_Store && tar -c -f - $(ls tests/cypress/videos 2>/dev/null) .DS_Store" failed with code 2: tar: extended: Cannot stat: No such file or directory tar: Exiting with failure status due to previous errors command terminated with exit code 2 Here's the full output: tar: extended: Cannot stat: No such file or directory tar: Exiting with failure status due to previous errors .DS_Store0000644000000000000000000000000013642635722011237 0ustar rootrootcommand terminated with exit code 2 ``` ### Expected behavior Either of two things: support a directory so that it treats all files/subdirecories within that as artifacts OR fail with a much cleaner error message ### Reproducible example See description above ### Workaround using a wildcard works, like `-source: /tests/cypress/videos/*` ### Your environment ``` $ garden version 0.11.11 ``` ``` kubectl version Client Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.0", GitCommit:"70132b0f130acc0bed193d9ba59dd186f0e634cf", GitTreeState:"clean", BuildDate:"2019-12-07T21:20:10Z", GoVersion:"go1.13.4", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"15+", GitVersion:"v1.15.10-eks-bac369", GitCommit:"bac3690554985327ae4d13e42169e8b1c2f37226", GitTreeState:"clean", BuildDate:"2020-02-26T01:12:54Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"} ``` ``` docker version Client: Docker Engine - Community Version: 19.03.6 API version: 1.40 Go version: go1.12.16 Git commit: 369ce74a3c Built: Thu Feb 13 01:27:52 2020 OS/Arch: linux/amd64 Experimental: false Server: Docker Engine - Community Engine: Version: 19.03.6 API version: 1.40 (minimum version 1.12) Go version: go1.12.16 Git commit: 369ce74a3c Built: Thu Feb 13 01:26:25 2020 OS/Arch: linux/amd64 Experimental: false containerd: Version: 1.2.10 GitCommit: b34a5c8af56e510852c35414db4c1f4fa6172339 runc: Version: 1.0.0-rc8+dev GitCommit: 3e425f80a8c931f88e6d94a8c831b9d5aa481657 docker-init: Version: 0.18.0 GitCommit: fec3683 ```
priority
garden doesn t support directories as a test artifact bug i wanted to use a folder as an artifact for tests current behaviour garden yml extract artifacts source tests cypress videos target test results cypress videos error command home lucas garden tools kubectl kubectl context garden develop namespace garden lucas sonnabend exec i test cypress c main sh c cd touch ds store tar c f ls tests cypress videos dev null ds store failed with code tar extended cannot stat no such file or directory tar exiting with failure status due to previous errors command terminated with exit code here s the full output tar extended cannot stat no such file or directory tar exiting with failure status due to previous errors ds rootrootcommand terminated with exit code expected behavior either of two things support a directory so that it treats all files subdirecories within that as artifacts or fail with a much cleaner error message reproducible example see description above workaround using a wildcard works like source tests cypress videos your environment garden version kubectl version client version version info major minor gitversion gitcommit gittreestate clean builddate goversion compiler gc platform linux server version version info major minor gitversion eks gitcommit gittreestate clean builddate goversion compiler gc platform linux docker version client docker engine community version api version go version git commit built thu feb os arch linux experimental false server docker engine community engine version api version minimum version go version git commit built thu feb os arch linux experimental false containerd version gitcommit runc version dev gitcommit docker init version gitcommit
1