Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 855 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 13 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 240k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
608,555 | 18,842,161,676 | IssuesEvent | 2021-11-11 10:50:31 | crypto-com/chain-desktop-wallet | https://api.github.com/repos/crypto-com/chain-desktop-wallet | opened | Problem: Potential incorrect delegation info after staking operations | bug high priority | ## Problem
The community team has passed over a weird issue - The user has made a few undelegations and they look successful in the explorer. But nothing changed on his desktop wallet UI. Click the refresh button but the problem remains for the user. Community team reported similar issues in previous version before.
Address: `cro1c3p2v2r9lnsnh0z06dac5peq4rczy3jjj5x6fn`
Screenshots after undelegation:



| 1.0 | Problem: Potential incorrect delegation info after staking operations - ## Problem
The community team has passed over a weird issue - The user has made a few undelegations and they look successful in the explorer. But nothing changed on his desktop wallet UI. Click the refresh button but the problem remains for the user. Community team reported similar issues in previous version before.
Address: `cro1c3p2v2r9lnsnh0z06dac5peq4rczy3jjj5x6fn`
Screenshots after undelegation:



| priority | problem potential incorrect delegation info after staking operations problem the community team has passed over a weird issue the user has made a few undelegations and they look successful in the explorer but nothing changed on his desktop wallet ui click the refresh button but the problem remains for the user community team reported similar issues in previous version before address screenshots after undelegation | 1 |
34,016 | 2,774,396,124 | IssuesEvent | 2015-05-04 08:31:56 | punongbayan-araullo/tickets | https://api.github.com/repos/punongbayan-araullo/tickets | opened | Display items in the Problem Type dropdown list in alphabetical order | priority - high status - accepted system - projects type - enhancement | Display items in the Problem Type dropdown list in alphabetical order | 1.0 | Display items in the Problem Type dropdown list in alphabetical order - Display items in the Problem Type dropdown list in alphabetical order | priority | display items in the problem type dropdown list in alphabetical order display items in the problem type dropdown list in alphabetical order | 1 |
497,122 | 14,362,249,323 | IssuesEvent | 2020-11-30 19:31:28 | svthalia/ThaliApp | https://api.github.com/repos/svthalia/ThaliApp | closed | App crash on receiving notification | bug priority: high | ### Describe the bug
App crash on receiving notification
### How to reproduce
1. Open app
2. Receive notification
3. Profit
### Expected behaviour
Not crash but show notification
| 1.0 | App crash on receiving notification - ### Describe the bug
App crash on receiving notification
### How to reproduce
1. Open app
2. Receive notification
3. Profit
### Expected behaviour
Not crash but show notification
| priority | app crash on receiving notification describe the bug app crash on receiving notification how to reproduce open app receive notification profit expected behaviour not crash but show notification | 1 |
786,518 | 27,657,753,125 | IssuesEvent | 2023-03-12 06:19:36 | Satellite-im/Uplink | https://api.github.com/repos/Satellite-im/Uplink | closed | Notifications - Notification sound not coming in | Notifications High Priority | **Issue:** If the User has only 1 friend added, and they are exploring through the app (not in that active chat) they won't get any sound when they receive new messages, like the app thinks the user is still in that active chat, even though they are in Settings/Files/etc. If the User is focused outside of the app Notification sound works fine
**OS:**
-Windows
-Mac
**STR:**
1, Add one friend on Uplink
2. Start a chat with them
3. Now leave the chat, but have the other user continue to message you
**Screen recording:**
https://user-images.githubusercontent.com/93608357/219460259-a04ffe4e-efef-4a18-97a8-506e6736a506.mov
| 1.0 | Notifications - Notification sound not coming in - **Issue:** If the User has only 1 friend added, and they are exploring through the app (not in that active chat) they won't get any sound when they receive new messages, like the app thinks the user is still in that active chat, even though they are in Settings/Files/etc. If the User is focused outside of the app Notification sound works fine
**OS:**
-Windows
-Mac
**STR:**
1, Add one friend on Uplink
2. Start a chat with them
3. Now leave the chat, but have the other user continue to message you
**Screen recording:**
https://user-images.githubusercontent.com/93608357/219460259-a04ffe4e-efef-4a18-97a8-506e6736a506.mov
| priority | notifications notification sound not coming in issue if the user has only friend added and they are exploring through the app not in that active chat they won t get any sound when they receive new messages like the app thinks the user is still in that active chat even though they are in settings files etc if the user is focused outside of the app notification sound works fine os windows mac str add one friend on uplink start a chat with them now leave the chat but have the other user continue to message you screen recording | 1 |
50,331 | 3,006,326,491 | IssuesEvent | 2015-07-27 09:40:38 | Itseez/opencv | https://api.github.com/repos/Itseez/opencv | opened | libv4l capturing backend spams stderr with "HIGHGUI ERROR: V4L2:..." | affected: 2.4 auto-transferred bug category: highgui-camera priority: normal | Transferred from http://code.opencv.org/issues/3004
```
|| Hans Meine on 2013-05-03 09:00
|| Priority: Normal
|| Affected: branch 'master' (2.4.9)
|| Category: highgui-camera
|| Tracker: Bug
|| Difficulty: None
|| PR:
|| Platform: None / None
```
libv4l capturing backend spams stderr with "HIGHGUI ERROR: V4L2:..."
-----------
```
I have tried querying various properties from the capturing backend, but the libv4l backend defeats this by writing errors to stderr every time I try to access unsupported properties.
AFAICS, unsupported properties should be ignored (that is, setProperty returns false, but unfortunately, getProperty cannot do so ATM). If I want to write a backend-independent client software, it is undesirable to get lots of errors on specific backends, no?
Even better would be to have a way to query (un)supported properties, e.g. by passing an optional bool* to getProperty, and let it write a success flag to that pointer if it is non-NULL.
Finally, I wonder whether these "ERROR"s fprintf's should have been CV_WARN()s like e.g. in cap_gstreamer.cpp.
```
History
-------
##### Hans Meine on 2013-05-03 09:02
```
BTW, I forgot to mention that issue #1984 seems to be slightly related, but I think it is more about a specific instance of this problem.
```
##### Anna Kogan on 2013-05-07 08:01
```
Hello Hans,
Thank you for reporting the issue. If you can solve the issue on your side, a "pull request":http://www.code.opencv.org/projects/opencv/wiki/How_to_contribute in our GitHub repo would be highly appreciated!
- Assignee changed from Vadim Pisarevsky to Hans Meine
```
##### Hans Meine on 2013-05-07 09:28
```
Hi Anna, does your comment imply that my thoughts are acknowledged? I don't want to spend time on this if you don't agree.
```
##### Anna Kogan on 2013-05-07 09:30
```
- Assignee changed from Hans Meine to Vadim Pisarevsky
``` | 1.0 | libv4l capturing backend spams stderr with "HIGHGUI ERROR: V4L2:..." - Transferred from http://code.opencv.org/issues/3004
```
|| Hans Meine on 2013-05-03 09:00
|| Priority: Normal
|| Affected: branch 'master' (2.4.9)
|| Category: highgui-camera
|| Tracker: Bug
|| Difficulty: None
|| PR:
|| Platform: None / None
```
libv4l capturing backend spams stderr with "HIGHGUI ERROR: V4L2:..."
-----------
```
I have tried querying various properties from the capturing backend, but the libv4l backend defeats this by writing errors to stderr every time I try to access unsupported properties.
AFAICS, unsupported properties should be ignored (that is, setProperty returns false, but unfortunately, getProperty cannot do so ATM). If I want to write a backend-independent client software, it is undesirable to get lots of errors on specific backends, no?
Even better would be to have a way to query (un)supported properties, e.g. by passing an optional bool* to getProperty, and let it write a success flag to that pointer if it is non-NULL.
Finally, I wonder whether these "ERROR"s fprintf's should have been CV_WARN()s like e.g. in cap_gstreamer.cpp.
```
History
-------
##### Hans Meine on 2013-05-03 09:02
```
BTW, I forgot to mention that issue #1984 seems to be slightly related, but I think it is more about a specific instance of this problem.
```
##### Anna Kogan on 2013-05-07 08:01
```
Hello Hans,
Thank you for reporting the issue. If you can solve the issue on your side, a "pull request":http://www.code.opencv.org/projects/opencv/wiki/How_to_contribute in our GitHub repo would be highly appreciated!
- Assignee changed from Vadim Pisarevsky to Hans Meine
```
##### Hans Meine on 2013-05-07 09:28
```
Hi Anna, does your comment imply that my thoughts are acknowledged? I don't want to spend time on this if you don't agree.
```
##### Anna Kogan on 2013-05-07 09:30
```
- Assignee changed from Hans Meine to Vadim Pisarevsky
``` | priority | capturing backend spams stderr with highgui error transferred from hans meine on priority normal affected branch master category highgui camera tracker bug difficulty none pr platform none none capturing backend spams stderr with highgui error i have tried querying various properties from the capturing backend but the backend defeats this by writing errors to stderr every time i try to access unsupported properties afaics unsupported properties should be ignored that is setproperty returns false but unfortunately getproperty cannot do so atm if i want to write a backend independent client software it is undesirable to get lots of errors on specific backends no even better would be to have a way to query un supported properties e g by passing an optional bool to getproperty and let it write a success flag to that pointer if it is non null finally i wonder whether these error s fprintf s should have been cv warn s like e g in cap gstreamer cpp history hans meine on btw i forgot to mention that issue seems to be slightly related but i think it is more about a specific instance of this problem anna kogan on hello hans thank you for reporting the issue if you can solve the issue on your side a pull request in our github repo would be highly appreciated assignee changed from vadim pisarevsky to hans meine hans meine on hi anna does your comment imply that my thoughts are acknowledged i don t want to spend time on this if you don t agree anna kogan on assignee changed from hans meine to vadim pisarevsky | 1 |
715,369 | 24,596,827,663 | IssuesEvent | 2022-10-14 09:02:10 | application-research/estuary | https://api.github.com/repos/application-research/estuary | closed | Currently Estuary release is issuing deals that are too small | Bug Priority: high | **Describe the bug**
Estuary started sending much smaller deals, compared to 1 month ago — 66.6 MiB, sometimes less than 1 MiB, etc. 66 MiB is wasteful, given that these deals are included in 128 MiB pieces (pretty much 2x overhead). Likely a missed regression in the recent release.
**To Reproduce**
Steps to reproduce the behavior:
1. Upload 100-200MiB of data
2. Wait to be picked up by deals
| 1.0 | Currently Estuary release is issuing deals that are too small - **Describe the bug**
Estuary started sending much smaller deals, compared to 1 month ago — 66.6 MiB, sometimes less than 1 MiB, etc. 66 MiB is wasteful, given that these deals are included in 128 MiB pieces (pretty much 2x overhead). Likely a missed regression in the recent release.
**To Reproduce**
Steps to reproduce the behavior:
1. Upload 100-200MiB of data
2. Wait to be picked up by deals
| priority | currently estuary release is issuing deals that are too small describe the bug estuary started sending much smaller deals compared to month ago — mib sometimes less than mib etc mib is wasteful given that these deals are included in mib pieces pretty much overhead likely a missed regression in the recent release to reproduce steps to reproduce the behavior upload of data wait to be picked up by deals | 1 |
720,194 | 24,782,905,747 | IssuesEvent | 2022-10-24 07:22:18 | Google-Developer-Student-Club-CCOEW/AI-ML | https://api.github.com/repos/Google-Developer-Student-Club-CCOEW/AI-ML | closed | Add Performance Metrics | good first issue hacktoberfest high-priority | Write code to analysis the detection results.
Following metrics need to be programmed:
* Accuracy Score
* Confusion Matrix
* Precision
* Recall
* F1 Score
You may add more metrics as you wish in addition to those mentioned above.
**_Dataset is inside AI-ML/data directory.
Project code is inside AI-ML/code directory.
Add your code inside ''Model Accuracy Checking" section_** | 1.0 | Add Performance Metrics - Write code to analysis the detection results.
Following metrics need to be programmed:
* Accuracy Score
* Confusion Matrix
* Precision
* Recall
* F1 Score
You may add more metrics as you wish in addition to those mentioned above.
**_Dataset is inside AI-ML/data directory.
Project code is inside AI-ML/code directory.
Add your code inside ''Model Accuracy Checking" section_** | priority | add performance metrics write code to analysis the detection results following metrics need to be programmed accuracy score confusion matrix precision recall score you may add more metrics as you wish in addition to those mentioned above dataset is inside ai ml data directory project code is inside ai ml code directory add your code inside model accuracy checking section | 1 |
575,467 | 17,031,809,735 | IssuesEvent | 2021-07-04 18:19:03 | BlueBubblesApp/BlueBubbles-Android-App | https://api.github.com/repos/BlueBubblesApp/BlueBubbles-Android-App | closed | [Flutter 2 Migration] No notifications when fully closed | Bug Difficulty: Hard priority: high | Reproduce:
1. Close the app fully from the app switcher
2. Get a text/notification
3. You will notice there is no notification
4. Open the app
5. You will notice the app crashes immediately
6. Reopen the app and it works fine | 1.0 | [Flutter 2 Migration] No notifications when fully closed - Reproduce:
1. Close the app fully from the app switcher
2. Get a text/notification
3. You will notice there is no notification
4. Open the app
5. You will notice the app crashes immediately
6. Reopen the app and it works fine | priority | no notifications when fully closed reproduce close the app fully from the app switcher get a text notification you will notice there is no notification open the app you will notice the app crashes immediately reopen the app and it works fine | 1 |
283,519 | 8,719,750,749 | IssuesEvent | 2018-12-08 03:59:14 | aowen87/BAR | https://api.github.com/repos/aowen87/BAR | closed | Movie encoding with ffmpeg on cab.llnl.gov not working | asc bug crash likelihood medium priority reviewed severity high wrong results | Rhee Moono reported that movie encoding on cab.llnl.gov was not working for him. I tried it out and it didn't work for me either. Here are the error messages from ffmpeg.
cab688{brugger}44: ffmpeg f image2 i mpeg_link%04d.jpeg mbd rd flags
mv4aic trellis 1 flags qprd bf 2 cmp 2 g 25 pass 1 y b 100000000
movie.mpg
ffmpeg version 0.10.6 Copyright (c) 2000-2012 the FFmpeg developers
built on Dec 11 2012 23:58:43 with gcc 4.4.6 20110731 (Red Hat 4.4.6-3)
configuration: prefix=/usr bindir=/usr/bin datadir=/usr/share/ffmpeg
incdir=/usr/include/ffmpeg libdir=/usr/lib64 mandir=/usr/share/man
arch=x86_64 extracflags='O2 g pipe Wall Wp,-D_FORTIFY_SOURCE=2
fexceptions fstackprotector param=sspbuffersize=4 m64 -mtune=generic'
enablebzlib disablecrystalhd enablegnutls enablelibass
enablelibcdio enablelibcelt enablelibdc1394 disableindev=jack
enablelibfreetype enablelibgsm enablelibmp3lame enableopenal
enablelibopenjpeg enablelibpulse enable-librtmp
enablelibschroedinger enablelibspeex enable-libtheora
enablelibvorbis enablelibv4l2 enablelibx264 enablelibxvid
enablex11grab enableavfilter enablepostproc enablepthreads
disablestatic enableshared enablegpl disabledebug
disablestripping shlibdir=/usr/lib64 enableruntime-cpudetect
libavutil 51. 35.100 / 51. 35.100
libavcodec 53. 61.100 / 53. 61.100
libavformat 53. 32.100 / 53. 32.100
libavdevice 53. 4.100 / 53. 4.100
libavfilter 2. 61.100 / 2. 61.100
libswscale 2. 1.100 / 2. 1.100
libswresample 0. 6.100 / 0. 6.100
libpostproc 52. 0.100 / 52. 0.100
[image2 @ 0x626fc0] max_analyze_duration 5000000 reached at 5000000
Input #0, image2, from 'mpeg_link%04d.jpeg':
Duration: 00:00:08.52, start: 0.000000, bitrate: N/A
Stream #0:0: Video: mjpeg, yuvj420p, 608x480 [SAR 1:1 DAR 19:15], 25 fps,
25 tbr, 25 tbn, 25 tbc
Please use b:a or b:v, -b is ambiguous
Incompatible pixel format 'yuvj420p' for codec 'mpeg1video', auto-selecting
format 'yuv420p'
[buffer @ 0x63a020] w:608 h:480 pixfmt:yuvj420p tb:1/1000000 sar:1/1
sws_param:
[buffersink @ 0x639ba0] autoinserting filter 'autoinserted scale 0' between
the filter 'src' and the filter 'out'
[scale @ 0x6364c0] w:608 h:480 fmt:yuvj420p -> w:608 h:480 fmt:yuv420p
flags:0x4
[NULL ` 0x635060] [Eval ` 0x7fffffffb6b0] Undefined constant or missing '(' in
'aicqprd'
[NULL @ 0x635060] Unable to parse option value "aicqprd"
[NULL @ 0x635060] Error setting option flags to value mv4aicqprd.
Output #0, mpeg, to 'movie.mpg':
Stream #0:0: Video: none (hq), yuv420p, 608x480 [SAR 1:1 DAR 19:15],
q=2-31, pass 1, 200 kb/s, 90k tbn, 25 tbc
Stream mapping:
Stream #0:0 > #0:0 (mjpeg > mpeg1video)
Error while opening encoder for output stream #0:0 - maybe incorrect
parameters such as bit_rate, rate, width or height
-----------------------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: 1505
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: Urgent
Subject: Movie encoding with ffmpeg on cab.llnl.gov not working
Assigned to: Eric Brugger
Category:
Target version: 2.6.3
Author: Eric Brugger
Start: 06/19/2013
Due date:
% Done: 100
Estimated time: 4.0
Created: 06/19/2013 11:15 am
Updated: 06/19/2013 01:59 pm
Likelihood: 3 - Occasional
Severity: 4 - Crash / Wrong Results
Found in version: 2.6.2
Impact:
Expected Use:
OS: Linux
Support Group: DOE/ASC
Description:
Rhee Moono reported that movie encoding on cab.llnl.gov was not working for him. I tried it out and it didn't work for me either. Here are the error messages from ffmpeg.
cab688{brugger}44: ffmpeg -f image2 -i mpeg_link%04d.jpeg -mbd rd -flags
+mv4+aic -trellis 1 -flags qprd -bf 2 -cmp 2 -g 25 -pass 1 -y -b 100000000
movie.mpg
ffmpeg version 0.10.6 Copyright (c) 2000-2012 the FFmpeg developers
built on Dec 11 2012 23:58:43 with gcc 4.4.6 20110731 (Red Hat 4.4.6-3)
configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg
--incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man
--arch=x86_64 --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2
-fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'
--enable-bzlib --disable-crystalhd --enable-gnutls --enable-libass
--enable-libcdio --enable-libcelt --enable-libdc1394 --disable-indev=jack
--enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-openal
--enable-libopenjpeg --enable-libpulse --enable-librtmp
--enable-libschroedinger --enable-libspeex --enable-libtheora
--enable-libvorbis --enable-libv4l2 --enable-libx264 --enable-libxvid
--enable-x11grab --enable-avfilter --enable-postproc --enable-pthreads
--disable-static --enable-shared --enable-gpl --disable-debug
--disable-stripping --shlibdir=/usr/lib64 --enable-runtime-cpudetect
libavutil 51. 35.100 / 51. 35.100
libavcodec 53. 61.100 / 53. 61.100
libavformat 53. 32.100 / 53. 32.100
libavdevice 53. 4.100 / 53. 4.100
libavfilter 2. 61.100 / 2. 61.100
libswscale 2. 1.100 / 2. 1.100
libswresample 0. 6.100 / 0. 6.100
libpostproc 52. 0.100 / 52. 0.100
[image2 @ 0x626fc0] max_analyze_duration 5000000 reached at 5000000
Input #0, image2, from 'mpeg_link%04d.jpeg':
Duration: 00:00:08.52, start: 0.000000, bitrate: N/A
Stream #0:0: Video: mjpeg, yuvj420p, 608x480 [SAR 1:1 DAR 19:15], 25 fps,
25 tbr, 25 tbn, 25 tbc
Please use -b:a or -b:v, -b is ambiguous
Incompatible pixel format 'yuvj420p' for codec 'mpeg1video', auto-selecting
format 'yuv420p'
[buffer @ 0x63a020] w:608 h:480 pixfmt:yuvj420p tb:1/1000000 sar:1/1
sws_param:
[buffersink @ 0x639ba0] auto-inserting filter 'auto-inserted scale 0' between
the filter 'src' and the filter 'out'
[scale @ 0x6364c0] w:608 h:480 fmt:yuvj420p -> w:608 h:480 fmt:yuv420p
flags:0x4
[NULL @ 0x635060] [Eval @ 0x7fffffffb6b0] Undefined constant or missing '(' in
'aicqprd'
[NULL @ 0x635060] Unable to parse option value "aicqprd"
[NULL @ 0x635060] Error setting option flags to value +mv4+aicqprd.
Output #0, mpeg, to 'movie.mpg':
Stream #0:0: Video: none (hq), yuv420p, 608x480 [SAR 1:1 DAR 19:15],
q=2-31, pass 1, 200 kb/s, 90k tbn, 25 tbc
Stream mapping:
Stream #0:0 -> #0:0 (mjpeg -> mpeg1video)
Error while opening encoder for output stream #0:0 - maybe incorrect
parameters such as bit_rate, rate, width or height
Comments:
It looks like LC has updated ffmpeg and the flags passed to ffmpeg no longer work. I will have to figure out what they are.
I committed revisions 21189 and 21192 to the 2.6 RC and trunk with thefollowing change:1) I modified movie encoding using ffmpeg to update the flags that get passed to ffmpeg so it would work with the newer version of ffmpeg. This consited of changing "-mbd rd -flags +mv4+aic" to "-mbd 2" and changing "-b" to "-b:v". The fix was only put on the RC since the movie scripts on the trunk now use visit_utils for movie encoding. This resolves #1505.M bin/makemovie.py (RC only)M resources/help/en_US/relnotes2.6.3.html
| 1.0 | Movie encoding with ffmpeg on cab.llnl.gov not working - Rhee Moono reported that movie encoding on cab.llnl.gov was not working for him. I tried it out and it didn't work for me either. Here are the error messages from ffmpeg.
cab688{brugger}44: ffmpeg f image2 i mpeg_link%04d.jpeg mbd rd flags
mv4aic trellis 1 flags qprd bf 2 cmp 2 g 25 pass 1 y b 100000000
movie.mpg
ffmpeg version 0.10.6 Copyright (c) 2000-2012 the FFmpeg developers
built on Dec 11 2012 23:58:43 with gcc 4.4.6 20110731 (Red Hat 4.4.6-3)
configuration: prefix=/usr bindir=/usr/bin datadir=/usr/share/ffmpeg
incdir=/usr/include/ffmpeg libdir=/usr/lib64 mandir=/usr/share/man
arch=x86_64 extracflags='O2 g pipe Wall Wp,-D_FORTIFY_SOURCE=2
fexceptions fstackprotector param=sspbuffersize=4 m64 -mtune=generic'
enablebzlib disablecrystalhd enablegnutls enablelibass
enablelibcdio enablelibcelt enablelibdc1394 disableindev=jack
enablelibfreetype enablelibgsm enablelibmp3lame enableopenal
enablelibopenjpeg enablelibpulse enable-librtmp
enablelibschroedinger enablelibspeex enable-libtheora
enablelibvorbis enablelibv4l2 enablelibx264 enablelibxvid
enablex11grab enableavfilter enablepostproc enablepthreads
disablestatic enableshared enablegpl disabledebug
disablestripping shlibdir=/usr/lib64 enableruntime-cpudetect
libavutil 51. 35.100 / 51. 35.100
libavcodec 53. 61.100 / 53. 61.100
libavformat 53. 32.100 / 53. 32.100
libavdevice 53. 4.100 / 53. 4.100
libavfilter 2. 61.100 / 2. 61.100
libswscale 2. 1.100 / 2. 1.100
libswresample 0. 6.100 / 0. 6.100
libpostproc 52. 0.100 / 52. 0.100
[image2 @ 0x626fc0] max_analyze_duration 5000000 reached at 5000000
Input #0, image2, from 'mpeg_link%04d.jpeg':
Duration: 00:00:08.52, start: 0.000000, bitrate: N/A
Stream #0:0: Video: mjpeg, yuvj420p, 608x480 [SAR 1:1 DAR 19:15], 25 fps,
25 tbr, 25 tbn, 25 tbc
Please use b:a or b:v, -b is ambiguous
Incompatible pixel format 'yuvj420p' for codec 'mpeg1video', auto-selecting
format 'yuv420p'
[buffer @ 0x63a020] w:608 h:480 pixfmt:yuvj420p tb:1/1000000 sar:1/1
sws_param:
[buffersink @ 0x639ba0] autoinserting filter 'autoinserted scale 0' between
the filter 'src' and the filter 'out'
[scale @ 0x6364c0] w:608 h:480 fmt:yuvj420p -> w:608 h:480 fmt:yuv420p
flags:0x4
[NULL ` 0x635060] [Eval ` 0x7fffffffb6b0] Undefined constant or missing '(' in
'aicqprd'
[NULL @ 0x635060] Unable to parse option value "aicqprd"
[NULL @ 0x635060] Error setting option flags to value mv4aicqprd.
Output #0, mpeg, to 'movie.mpg':
Stream #0:0: Video: none (hq), yuv420p, 608x480 [SAR 1:1 DAR 19:15],
q=2-31, pass 1, 200 kb/s, 90k tbn, 25 tbc
Stream mapping:
Stream #0:0 > #0:0 (mjpeg > mpeg1video)
Error while opening encoder for output stream #0:0 - maybe incorrect
parameters such as bit_rate, rate, width or height
-----------------------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: 1505
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: Urgent
Subject: Movie encoding with ffmpeg on cab.llnl.gov not working
Assigned to: Eric Brugger
Category:
Target version: 2.6.3
Author: Eric Brugger
Start: 06/19/2013
Due date:
% Done: 100
Estimated time: 4.0
Created: 06/19/2013 11:15 am
Updated: 06/19/2013 01:59 pm
Likelihood: 3 - Occasional
Severity: 4 - Crash / Wrong Results
Found in version: 2.6.2
Impact:
Expected Use:
OS: Linux
Support Group: DOE/ASC
Description:
Rhee Moono reported that movie encoding on cab.llnl.gov was not working for him. I tried it out and it didn't work for me either. Here are the error messages from ffmpeg.
cab688{brugger}44: ffmpeg -f image2 -i mpeg_link%04d.jpeg -mbd rd -flags
+mv4+aic -trellis 1 -flags qprd -bf 2 -cmp 2 -g 25 -pass 1 -y -b 100000000
movie.mpg
ffmpeg version 0.10.6 Copyright (c) 2000-2012 the FFmpeg developers
built on Dec 11 2012 23:58:43 with gcc 4.4.6 20110731 (Red Hat 4.4.6-3)
configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg
--incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man
--arch=x86_64 --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2
-fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'
--enable-bzlib --disable-crystalhd --enable-gnutls --enable-libass
--enable-libcdio --enable-libcelt --enable-libdc1394 --disable-indev=jack
--enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-openal
--enable-libopenjpeg --enable-libpulse --enable-librtmp
--enable-libschroedinger --enable-libspeex --enable-libtheora
--enable-libvorbis --enable-libv4l2 --enable-libx264 --enable-libxvid
--enable-x11grab --enable-avfilter --enable-postproc --enable-pthreads
--disable-static --enable-shared --enable-gpl --disable-debug
--disable-stripping --shlibdir=/usr/lib64 --enable-runtime-cpudetect
libavutil 51. 35.100 / 51. 35.100
libavcodec 53. 61.100 / 53. 61.100
libavformat 53. 32.100 / 53. 32.100
libavdevice 53. 4.100 / 53. 4.100
libavfilter 2. 61.100 / 2. 61.100
libswscale 2. 1.100 / 2. 1.100
libswresample 0. 6.100 / 0. 6.100
libpostproc 52. 0.100 / 52. 0.100
[image2 @ 0x626fc0] max_analyze_duration 5000000 reached at 5000000
Input #0, image2, from 'mpeg_link%04d.jpeg':
Duration: 00:00:08.52, start: 0.000000, bitrate: N/A
Stream #0:0: Video: mjpeg, yuvj420p, 608x480 [SAR 1:1 DAR 19:15], 25 fps,
25 tbr, 25 tbn, 25 tbc
Please use -b:a or -b:v, -b is ambiguous
Incompatible pixel format 'yuvj420p' for codec 'mpeg1video', auto-selecting
format 'yuv420p'
[buffer @ 0x63a020] w:608 h:480 pixfmt:yuvj420p tb:1/1000000 sar:1/1
sws_param:
[buffersink @ 0x639ba0] auto-inserting filter 'auto-inserted scale 0' between
the filter 'src' and the filter 'out'
[scale @ 0x6364c0] w:608 h:480 fmt:yuvj420p -> w:608 h:480 fmt:yuv420p
flags:0x4
[NULL @ 0x635060] [Eval @ 0x7fffffffb6b0] Undefined constant or missing '(' in
'aicqprd'
[NULL @ 0x635060] Unable to parse option value "aicqprd"
[NULL @ 0x635060] Error setting option flags to value +mv4+aicqprd.
Output #0, mpeg, to 'movie.mpg':
Stream #0:0: Video: none (hq), yuv420p, 608x480 [SAR 1:1 DAR 19:15],
q=2-31, pass 1, 200 kb/s, 90k tbn, 25 tbc
Stream mapping:
Stream #0:0 -> #0:0 (mjpeg -> mpeg1video)
Error while opening encoder for output stream #0:0 - maybe incorrect
parameters such as bit_rate, rate, width or height
Comments:
It looks like LC has updated ffmpeg and the flags passed to ffmpeg no longer work. I will have to figure out what they are.
I committed revisions 21189 and 21192 to the 2.6 RC and trunk with thefollowing change:1) I modified movie encoding using ffmpeg to update the flags that get passed to ffmpeg so it would work with the newer version of ffmpeg. This consited of changing "-mbd rd -flags +mv4+aic" to "-mbd 2" and changing "-b" to "-b:v". The fix was only put on the RC since the movie scripts on the trunk now use visit_utils for movie encoding. This resolves #1505.M bin/makemovie.py (RC only)M resources/help/en_US/relnotes2.6.3.html
| priority | movie encoding with ffmpeg on cab llnl gov not working rhee moono reported that movie encoding on cab llnl gov was not working for him i tried it out and it didn t work for me either here are the error messages from ffmpeg brugger ffmpeg f i mpeg link jpeg mbd rd flags trellis flags qprd bf cmp g pass y b movie mpg ffmpeg version copyright c the ffmpeg developers built on dec with gcc red hat configuration prefix usr bindir usr bin datadir usr share ffmpeg incdir usr include ffmpeg libdir usr mandir usr share man arch extracflags g pipe wall wp d fortify source fexceptions fstackprotector param sspbuffersize mtune generic enablebzlib disablecrystalhd enablegnutls enablelibass enablelibcdio enablelibcelt disableindev jack enablelibfreetype enablelibgsm enableopenal enablelibopenjpeg enablelibpulse enable librtmp enablelibschroedinger enablelibspeex enable libtheora enablelibvorbis enablelibxvid enableavfilter enablepostproc enablepthreads disablestatic enableshared enablegpl disabledebug disablestripping shlibdir usr enableruntime cpudetect libavutil libavcodec libavformat libavdevice libavfilter libswscale libswresample libpostproc max analyze duration reached at input from mpeg link jpeg duration start bitrate n a stream video mjpeg fps tbr tbn tbc please use b a or b v b is ambiguous incompatible pixel format for codec auto selecting format w h pixfmt tb sar sws param autoinserting filter autoinserted scale between the filter src and the filter out w h fmt w h fmt flags undefined constant or missing in aicqprd unable to parse option value aicqprd error setting option flags to value output mpeg to movie mpg stream video none hq q pass kb s tbn tbc stream mapping stream mjpeg error while opening encoder for output stream maybe incorrect parameters such as bit rate rate width or height redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status resolved project visit tracker bug priority urgent subject movie encoding with ffmpeg on cab llnl gov not working assigned to eric brugger category target version author eric brugger start due date done estimated time created am updated pm likelihood occasional severity crash wrong results found in version impact expected use os linux support group doe asc description rhee moono reported that movie encoding on cab llnl gov was not working for him i tried it out and it didn t work for me either here are the error messages from ffmpeg brugger ffmpeg f i mpeg link jpeg mbd rd flags aic trellis flags qprd bf cmp g pass y b movie mpg ffmpeg version copyright c the ffmpeg developers built on dec with gcc red hat configuration prefix usr bindir usr bin datadir usr share ffmpeg incdir usr include ffmpeg libdir usr mandir usr share man arch extra cflags g pipe wall wp d fortify source fexceptions fstack protector param ssp buffer size mtune generic enable bzlib disable crystalhd enable gnutls enable libass enable libcdio enable libcelt enable disable indev jack enable libfreetype enable libgsm enable enable openal enable libopenjpeg enable libpulse enable librtmp enable libschroedinger enable libspeex enable libtheora enable libvorbis enable enable enable libxvid enable enable avfilter enable postproc enable pthreads disable static enable shared enable gpl disable debug disable stripping shlibdir usr enable runtime cpudetect libavutil libavcodec libavformat libavdevice libavfilter libswscale libswresample libpostproc max analyze duration reached at input from mpeg link jpeg duration start bitrate n a stream video mjpeg fps tbr tbn tbc please use b a or b v b is ambiguous incompatible pixel format for codec auto selecting format w h pixfmt tb sar sws param auto inserting filter auto inserted scale between the filter src and the filter out w h fmt w h fmt flags undefined constant or missing in aicqprd unable to parse option value aicqprd error setting option flags to value aicqprd output mpeg to movie mpg stream video none hq q pass kb s tbn tbc stream mapping stream mjpeg error while opening encoder for output stream maybe incorrect parameters such as bit rate rate width or height comments it looks like lc has updated ffmpeg and the flags passed to ffmpeg no longer work i will have to figure out what they are i committed revisions and to the rc and trunk with thefollowing change i modified movie encoding using ffmpeg to update the flags that get passed to ffmpeg so it would work with the newer version of ffmpeg this consited of changing mbd rd flags aic to mbd and changing b to b v the fix was only put on the rc since the movie scripts on the trunk now use visit utils for movie encoding this resolves m bin makemovie py rc only m resources help en us html | 1 |
127,557 | 5,032,376,323 | IssuesEvent | 2016-12-16 11:00:11 | kulish-alina/HR_Project | https://api.github.com/repos/kulish-alina/HR_Project | opened | Vacancy dates validation bug | bug frontend high priority | Validation rules:
end date >= start date
deadline >= start date.
Another rules for start, end and deadline dates for vacancies doesn't exist.
We have next trouble when user sets deadline date less then end date - error about start date should be less than date date. It is wrong message (start date is less end date yet). And it works normal when deadline date less then end date.

| 1.0 | Vacancy dates validation bug - Validation rules:
end date >= start date
deadline >= start date.
Another rules for start, end and deadline dates for vacancies doesn't exist.
We have next trouble when user sets deadline date less then end date - error about start date should be less than date date. It is wrong message (start date is less end date yet). And it works normal when deadline date less then end date.

| priority | vacancy dates validation bug validation rules end date start date deadline start date another rules for start end and deadline dates for vacancies doesn t exist we have next trouble when user sets deadline date less then end date error about start date should be less than date date it is wrong message start date is less end date yet and it works normal when deadline date less then end date | 1 |
520,607 | 15,089,230,518 | IssuesEvent | 2021-02-06 04:30:28 | rich-iannone/pointblank | https://api.github.com/repos/rich-iannone/pointblank | closed | Ensure that agent objects are identical when making a round trip to YAML and back | Difficulty: [3] Advanced Effort: [3] High Priority: [3] High Type: ★ Enhancement | A pointblank agent can be written to YAML (even alongside a pointblank informant) and furthermore an agent can be generated from YAML (the agent-specific portion). What needs to be extensively tested is the fidelity of the agent object when written to YAML and then created again from that YAML. We need to ensure that no information is lost and none gets mutated or inadvertantly added during this round trip. | 1.0 | Ensure that agent objects are identical when making a round trip to YAML and back - A pointblank agent can be written to YAML (even alongside a pointblank informant) and furthermore an agent can be generated from YAML (the agent-specific portion). What needs to be extensively tested is the fidelity of the agent object when written to YAML and then created again from that YAML. We need to ensure that no information is lost and none gets mutated or inadvertantly added during this round trip. | priority | ensure that agent objects are identical when making a round trip to yaml and back a pointblank agent can be written to yaml even alongside a pointblank informant and furthermore an agent can be generated from yaml the agent specific portion what needs to be extensively tested is the fidelity of the agent object when written to yaml and then created again from that yaml we need to ensure that no information is lost and none gets mutated or inadvertantly added during this round trip | 1 |
523,648 | 15,187,068,554 | IssuesEvent | 2021-02-15 13:18:00 | ooni/probe-engine | https://api.github.com/repos/ooni/probe-engine | closed | Manage MaxMindDB license change | bug epic ooni/probe-engine priority/high triage | This is the master issue for managing the MaxMindDB license change. Child issues:
- [x] start looking into the matter #199
- [x] continue discussion https://github.com/ooni/probe-engine/issues/282
- [x] issue converted to epic and now managed as an epic
On creating this issue, I've labeled this as an epic, since it seems very large stuff to me. | 1.0 | Manage MaxMindDB license change - This is the master issue for managing the MaxMindDB license change. Child issues:
- [x] start looking into the matter #199
- [x] continue discussion https://github.com/ooni/probe-engine/issues/282
- [x] issue converted to epic and now managed as an epic
On creating this issue, I've labeled this as an epic, since it seems very large stuff to me. | priority | manage maxminddb license change this is the master issue for managing the maxminddb license change child issues start looking into the matter continue discussion issue converted to epic and now managed as an epic on creating this issue i ve labeled this as an epic since it seems very large stuff to me | 1 |
725,041 | 24,950,015,398 | IssuesEvent | 2022-11-01 06:03:13 | AY2223S1-CS2103T-W08-1/tp | https://api.github.com/repos/AY2223S1-CS2103T-W08-1/tp | closed | [PE-D][Tester A] Date-time field is not validated properly | bug high priority | With the default data, enter the command `aa n/Bernice Yu t/Test d/Dr X s/2022-02-29 12:00`.
**Expected**: Either add an appointment with date 2022-02-29 or say that the date is invalid (2022 is not a leap year).
**Actual**: It adds an appointment with date 2022-02-28 instead!
This is unlikely to be a feature. Also not documented in UG.
<!--session: 1666944088820-c0bdbc48-a203-4a6a-b996-410c9285fb83-->
<!--Version: Web v3.4.4-->
-------------
Labels: `severity.Low` `type.FunctionalityBug`
original: RezwanArefin01/ped#16 | 1.0 | [PE-D][Tester A] Date-time field is not validated properly - With the default data, enter the command `aa n/Bernice Yu t/Test d/Dr X s/2022-02-29 12:00`.
**Expected**: Either add an appointment with date 2022-02-29 or say that the date is invalid (2022 is not a leap year).
**Actual**: It adds an appointment with date 2022-02-28 instead!
This is unlikely to be a feature. Also not documented in UG.
<!--session: 1666944088820-c0bdbc48-a203-4a6a-b996-410c9285fb83-->
<!--Version: Web v3.4.4-->
-------------
Labels: `severity.Low` `type.FunctionalityBug`
original: RezwanArefin01/ped#16 | priority | date time field is not validated properly with the default data enter the command aa n bernice yu t test d dr x s expected either add an appointment with date or say that the date is invalid is not a leap year actual it adds an appointment with date instead this is unlikely to be a feature also not documented in ug labels severity low type functionalitybug original ped | 1 |
9,908 | 2,608,652,400 | IssuesEvent | 2015-02-26 08:53:21 | NebulousLabs/Sia | https://api.github.com/repos/NebulousLabs/Sia | opened | Siad Testing | High Priority | Using only siad, and where it makes sense, using only API calls, you should test the following things:
- [ ] Can you start the miner? Does it mine blocks? Does the wallet balance change as it mines blocks? (with the test constants, the outputs are not given to you for 3 blocks, so mine at least 4 before checking that the balance has increased)
- [ ] Can you send coins to another address? Does the first balance decrease? Upon receiving coins, does the balance increase?
- [ ] Can the host announce itself to the blockchain? When it does, does the hostdb update and add the host to the hostdb?
- [ ] Can the renter upload a file? Once it has uploaded, can it be downloaded? Can you check the status on the download in progress? Does the renter's balance decrease after uploading the file?
- [ ] Does the host report having new contracts after a renter has uploaded a file? Once the file contract ends, does the host's balance increase appropriately?
- [ ] Do unconfirmed transactions appear on everybodies machines? Does the transaction broadcasting work right?
- [ ] Do blocks appear on everybodies machines? Does block broadcasting happen correctly?
- [ ] Does a bootstrapping party catch up immediately? What if there are 2500 800kb blocks to download?
- [ ] Do peers propagate well enough? If someone joins the network, will everyone get the new peer? Will people stop collecting peers before they are broadcasting to an unreasonable number of people?
I think that this will cover everything well enough. But I'm not sure how you're going to manage testing the stuff that happens asynchronously. We might need to do some of these tests outside of go. | 1.0 | Siad Testing - Using only siad, and where it makes sense, using only API calls, you should test the following things:
- [ ] Can you start the miner? Does it mine blocks? Does the wallet balance change as it mines blocks? (with the test constants, the outputs are not given to you for 3 blocks, so mine at least 4 before checking that the balance has increased)
- [ ] Can you send coins to another address? Does the first balance decrease? Upon receiving coins, does the balance increase?
- [ ] Can the host announce itself to the blockchain? When it does, does the hostdb update and add the host to the hostdb?
- [ ] Can the renter upload a file? Once it has uploaded, can it be downloaded? Can you check the status on the download in progress? Does the renter's balance decrease after uploading the file?
- [ ] Does the host report having new contracts after a renter has uploaded a file? Once the file contract ends, does the host's balance increase appropriately?
- [ ] Do unconfirmed transactions appear on everybodies machines? Does the transaction broadcasting work right?
- [ ] Do blocks appear on everybodies machines? Does block broadcasting happen correctly?
- [ ] Does a bootstrapping party catch up immediately? What if there are 2500 800kb blocks to download?
- [ ] Do peers propagate well enough? If someone joins the network, will everyone get the new peer? Will people stop collecting peers before they are broadcasting to an unreasonable number of people?
I think that this will cover everything well enough. But I'm not sure how you're going to manage testing the stuff that happens asynchronously. We might need to do some of these tests outside of go. | priority | siad testing using only siad and where it makes sense using only api calls you should test the following things can you start the miner does it mine blocks does the wallet balance change as it mines blocks with the test constants the outputs are not given to you for blocks so mine at least before checking that the balance has increased can you send coins to another address does the first balance decrease upon receiving coins does the balance increase can the host announce itself to the blockchain when it does does the hostdb update and add the host to the hostdb can the renter upload a file once it has uploaded can it be downloaded can you check the status on the download in progress does the renter s balance decrease after uploading the file does the host report having new contracts after a renter has uploaded a file once the file contract ends does the host s balance increase appropriately do unconfirmed transactions appear on everybodies machines does the transaction broadcasting work right do blocks appear on everybodies machines does block broadcasting happen correctly does a bootstrapping party catch up immediately what if there are blocks to download do peers propagate well enough if someone joins the network will everyone get the new peer will people stop collecting peers before they are broadcasting to an unreasonable number of people i think that this will cover everything well enough but i m not sure how you re going to manage testing the stuff that happens asynchronously we might need to do some of these tests outside of go | 1 |
485,775 | 13,999,108,385 | IssuesEvent | 2020-10-28 10:22:29 | OpenNebula/one | https://api.github.com/repos/OpenNebula/one | closed | Consider for setting Floating IP for single VMs, not only for VRs | Category: Core & System Community Priority: High Sponsored Status: Accepted Type: Backlog | # Enhancement Request
## Description
Should be opportunity for add `ETH0_VROUTER_IP` directly to VMs without creating VRs.
This is most simple solution for have failover IP address.
You don't need to create any new networks or virtual routers, just assign the floating IP directly to VMs
(In addition, it is already supported by [addon-context-linux](https://github.com/OpenNebula/addon-context-linux/blob/master/src/etc/one-context.d/loc-15-keepalived%23%23apk))
## Use case
* You don't need to have back network for use "floating IP" feature
* You don't need to think about nat rules
* Easy manage
* Easy administrate
* It also can be simple integrated into cloud view (for sunstone) | 1.0 | Consider for setting Floating IP for single VMs, not only for VRs - # Enhancement Request
## Description
Should be opportunity for add `ETH0_VROUTER_IP` directly to VMs without creating VRs.
This is most simple solution for have failover IP address.
You don't need to create any new networks or virtual routers, just assign the floating IP directly to VMs
(In addition, it is already supported by [addon-context-linux](https://github.com/OpenNebula/addon-context-linux/blob/master/src/etc/one-context.d/loc-15-keepalived%23%23apk))
## Use case
* You don't need to have back network for use "floating IP" feature
* You don't need to think about nat rules
* Easy manage
* Easy administrate
* It also can be simple integrated into cloud view (for sunstone) | priority | consider for setting floating ip for single vms not only for vrs enhancement request description should be opportunity for add vrouter ip directly to vms without creating vrs this is most simple solution for have failover ip address you don t need to create any new networks or virtual routers just assign the floating ip directly to vms in addition it is already supported by use case you don t need to have back network for use floating ip feature you don t need to think about nat rules easy manage easy administrate it also can be simple integrated into cloud view for sunstone | 1 |
22,061 | 2,644,943,913 | IssuesEvent | 2015-03-12 19:44:07 | icotting/Phocalstream | https://api.github.com/repos/icotting/Phocalstream | opened | Error Viewing Some Sites | bug high priority small | Sometimes an error is thrown when trying to view the camera site dashboard:
`
The error was System.ArgumentOutOfRangeException: Length cannot be less than zero. Parameter name: length at System.String.Substring(Int32 startIndex, Int32 length) at Phocalstream_Web.Controllers.PhotoController.LoadWaterData(Double siteLat, Double siteLong, DateTime date) at Phocalstream_Web.Controllers.PhotoController.SiteDashboard(Int64 siteID) at lambda_method(Closure , ControllerBase , Object[] ) at System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) at System.Web.Mvc.Async.AsyncControllerActionInvoker.<BeginInvokeSynchronousActionMethod>b__39(IAsyncResult asyncResult, ActionInvocation innerInvokeState) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult`2.CallEndDelegate(IAsyncResult asyncResult) at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3d() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass33.<BeginInvokeActionMethodWithFilters>b__32(IAsyncResult asyncResult) at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass21.<>c__DisplayClass2b.<BeginInvokeAction>b__1c() at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass21.<BeginInvokeAction>b__1e(IAsyncResult asyncResult)
` | 1.0 | Error Viewing Some Sites - Sometimes an error is thrown when trying to view the camera site dashboard:
`
The error was System.ArgumentOutOfRangeException: Length cannot be less than zero. Parameter name: length at System.String.Substring(Int32 startIndex, Int32 length) at Phocalstream_Web.Controllers.PhotoController.LoadWaterData(Double siteLat, Double siteLong, DateTime date) at Phocalstream_Web.Controllers.PhotoController.SiteDashboard(Int64 siteID) at lambda_method(Closure , ControllerBase , Object[] ) at System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) at System.Web.Mvc.Async.AsyncControllerActionInvoker.<BeginInvokeSynchronousActionMethod>b__39(IAsyncResult asyncResult, ActionInvocation innerInvokeState) at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult`2.CallEndDelegate(IAsyncResult asyncResult) at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3d() at System.Web.Mvc.Async.AsyncControllerActionInvoker.AsyncInvocationWithFilters.<>c__DisplayClass46.<InvokeActionMethodFilterAsynchronouslyRecursive>b__3f() at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass33.<BeginInvokeActionMethodWithFilters>b__32(IAsyncResult asyncResult) at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass21.<>c__DisplayClass2b.<BeginInvokeAction>b__1c() at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass21.<BeginInvokeAction>b__1e(IAsyncResult asyncResult)
` | priority | error viewing some sites sometimes an error is thrown when trying to view the camera site dashboard the error was system argumentoutofrangeexception length cannot be less than zero parameter name length at system string substring startindex length at phocalstream web controllers photocontroller loadwaterdata double sitelat double sitelong datetime date at phocalstream web controllers photocontroller sitedashboard siteid at lambda method closure controllerbase object at system web mvc reflectedactiondescriptor execute controllercontext controllercontext idictionary parameters at system web mvc controlleractioninvoker invokeactionmethod controllercontext controllercontext actiondescriptor actiondescriptor idictionary parameters at system web mvc async asynccontrolleractioninvoker b iasyncresult asyncresult actioninvocation innerinvokestate at system web mvc async asyncresultwrapper wrappedasyncresult callenddelegate iasyncresult asyncresult at system web mvc async asynccontrolleractioninvoker asyncinvocationwithfilters b at system web mvc async asynccontrolleractioninvoker asyncinvocationwithfilters c b at system web mvc async asynccontrolleractioninvoker c b iasyncresult asyncresult at system web mvc async asynccontrolleractioninvoker c c b at system web mvc async asynccontrolleractioninvoker c b iasyncresult asyncresult | 1 |
520,017 | 15,077,676,403 | IssuesEvent | 2021-02-05 07:25:22 | edgedb/edgedb | https://api.github.com/repos/edgedb/edgedb | closed | Nested insert of single links improperly correlated | bug high priority | #1656 fixed issues with nested inserts when the outer insert had `ON CONFLICT` or was inside a `FOR`, but the fix only works for multi links.
For single links, which don't use a link table and so have a different code path, the nested insert is executed *before* the enclosing insert.
For the `FOR` case, where currently we will do one nested insert when we should do one per FOR iteration, this doesn't pose much of a problem and just needs some programming to be done.
The `ON CONFLICT` case, where currently we will execute the nested insert even if the enclosing one fails on conflict, things are trickier: we need to put something into the link column. @elprans suggests that we randomly generate a uuid for the initial enclosing insert, then UPDATE it once the nested one is done. | 1.0 | Nested insert of single links improperly correlated - #1656 fixed issues with nested inserts when the outer insert had `ON CONFLICT` or was inside a `FOR`, but the fix only works for multi links.
For single links, which don't use a link table and so have a different code path, the nested insert is executed *before* the enclosing insert.
For the `FOR` case, where currently we will do one nested insert when we should do one per FOR iteration, this doesn't pose much of a problem and just needs some programming to be done.
The `ON CONFLICT` case, where currently we will execute the nested insert even if the enclosing one fails on conflict, things are trickier: we need to put something into the link column. @elprans suggests that we randomly generate a uuid for the initial enclosing insert, then UPDATE it once the nested one is done. | priority | nested insert of single links improperly correlated fixed issues with nested inserts when the outer insert had on conflict or was inside a for but the fix only works for multi links for single links which don t use a link table and so have a different code path the nested insert is executed before the enclosing insert for the for case where currently we will do one nested insert when we should do one per for iteration this doesn t pose much of a problem and just needs some programming to be done the on conflict case where currently we will execute the nested insert even if the enclosing one fails on conflict things are trickier we need to put something into the link column elprans suggests that we randomly generate a uuid for the initial enclosing insert then update it once the nested one is done | 1 |
538,222 | 15,765,145,696 | IssuesEvent | 2021-03-31 13:53:30 | geosolutions-it/austrocontrol-C125 | https://api.github.com/repos/geosolutions-it/austrocontrol-C125 | closed | Some issues with coordinate input fields in Measurement and Annotation tools | C125-2020-AUSTROCONTROL-Map2Imp Priority: High bug | Below what reported by @michegg in [this issue](https://github.com/geosolutions-it/austrocontrol-C125/issues/268#issuecomment-781383659).
>@tdipisa @dsuren1 I just did a test on our environment and came across an issue, that is also present in your installation here.
>- There are problems when using the digit "0" in decimal places of a coordinate.
E.g. go to distance measuring tool. Try to measure distance from lat: 47.242902 lon: 10.403016 to lat: 48.222 lon: 14.301 by entering the values manually.
**Mapstore will ignore all entered 0 values for decimal places.**
>- It is possible to enter the "0" when editing the coordinate, but after adding or changing any digit the cursor will always jump to the end of the input field, disabling the possibility to change another digit by using the arrow keys on the keyboard. The user will have to use the mouse to click on a specific position in order to change another digit. After doing so the cursor will again be placed at the end of the input field.
>**Both behaviors are also present for annotation creation, GFI coordinate editor and in the sharing window.** | 1.0 | Some issues with coordinate input fields in Measurement and Annotation tools - Below what reported by @michegg in [this issue](https://github.com/geosolutions-it/austrocontrol-C125/issues/268#issuecomment-781383659).
>@tdipisa @dsuren1 I just did a test on our environment and came across an issue, that is also present in your installation here.
>- There are problems when using the digit "0" in decimal places of a coordinate.
E.g. go to distance measuring tool. Try to measure distance from lat: 47.242902 lon: 10.403016 to lat: 48.222 lon: 14.301 by entering the values manually.
**Mapstore will ignore all entered 0 values for decimal places.**
>- It is possible to enter the "0" when editing the coordinate, but after adding or changing any digit the cursor will always jump to the end of the input field, disabling the possibility to change another digit by using the arrow keys on the keyboard. The user will have to use the mouse to click on a specific position in order to change another digit. After doing so the cursor will again be placed at the end of the input field.
>**Both behaviors are also present for annotation creation, GFI coordinate editor and in the sharing window.** | priority | some issues with coordinate input fields in measurement and annotation tools below what reported by michegg in tdipisa i just did a test on our environment and came across an issue that is also present in your installation here there are problems when using the digit in decimal places of a coordinate e g go to distance measuring tool try to measure distance from lat lon to lat lon by entering the values manually mapstore will ignore all entered values for decimal places it is possible to enter the when editing the coordinate but after adding or changing any digit the cursor will always jump to the end of the input field disabling the possibility to change another digit by using the arrow keys on the keyboard the user will have to use the mouse to click on a specific position in order to change another digit after doing so the cursor will again be placed at the end of the input field both behaviors are also present for annotation creation gfi coordinate editor and in the sharing window | 1 |
831,632 | 32,056,881,285 | IssuesEvent | 2023-09-24 07:20:02 | AY2324S1-CS2103T-T17-4/tp | https://api.github.com/repos/AY2324S1-CS2103T-T17-4/tp | opened | As a forgetful SoC student, I have a one-stop place to view all the courses my friends are taking this semester | type.Story priority.High | I can try to go to class with them together. | 1.0 | As a forgetful SoC student, I have a one-stop place to view all the courses my friends are taking this semester - I can try to go to class with them together. | priority | as a forgetful soc student i have a one stop place to view all the courses my friends are taking this semester i can try to go to class with them together | 1 |
205,091 | 7,093,884,044 | IssuesEvent | 2018-01-12 22:33:42 | seung-lab/chunked-graph | https://api.github.com/repos/seung-lab/chunked-graph | opened | Add downsampled version of `leaves` method. | Priority: High Status: Available Type: Scalability | Related to NG's [Chunk based supervoxel loading](https://github.com/seung-lab/neuroglancer/pull/188).
Neuroglancer now only requests chunks within the current field of view. But if the field of view is huge, i.e. showing a zoomed out dataset, the graph server gets flooded with requests. And worse: The graph server has to load all the respective Lvl1 chunks from disk.
Possible solution: Store "important supervoxels" on each layer of the chunked graph. Important supervoxels could be the ones that are visible for a given LoD of the watershed segmentation ... Even that might be too much once every important supervoxel occupies only 1 screen pixel. | 1.0 | Add downsampled version of `leaves` method. - Related to NG's [Chunk based supervoxel loading](https://github.com/seung-lab/neuroglancer/pull/188).
Neuroglancer now only requests chunks within the current field of view. But if the field of view is huge, i.e. showing a zoomed out dataset, the graph server gets flooded with requests. And worse: The graph server has to load all the respective Lvl1 chunks from disk.
Possible solution: Store "important supervoxels" on each layer of the chunked graph. Important supervoxels could be the ones that are visible for a given LoD of the watershed segmentation ... Even that might be too much once every important supervoxel occupies only 1 screen pixel. | priority | add downsampled version of leaves method related to ng s neuroglancer now only requests chunks within the current field of view but if the field of view is huge i e showing a zoomed out dataset the graph server gets flooded with requests and worse the graph server has to load all the respective chunks from disk possible solution store important supervoxels on each layer of the chunked graph important supervoxels could be the ones that are visible for a given lod of the watershed segmentation even that might be too much once every important supervoxel occupies only screen pixel | 1 |
23,092 | 2,652,605,954 | IssuesEvent | 2015-03-16 18:13:48 | CenterForOpenScience/osf.io | https://api.github.com/repos/CenterForOpenScience/osf.io | closed | [staging & production] Removing self as contributor prompts banner with forbidden link | 5 - Pending Review Bug: Production Priority - High | # Steps
1. Go to a project for which you have authorized an add-on or multiple add-ons.
2. Go to the sharing tab and remove yourself as a contributor.
3. Press save changes then OK.
# Expected
A message pops up saying that you have removed yourself as a contributor and that the add-ons have been deauthorized.
# Actual
Everything above happens (messages about removing self, deauthorizing addons), BUT the message box with the warning about the addons includes a link to the settings component of that project. Since you have just removed yourself as a contributor, pressing the link redirects to a page with a Forbidden message (as it should). The problem here is why the link is there in the first place if it cannot be accessed by the current user.

@brianjgeiger pointed out (and I confirmed) that this is helpful if you remove someone else from the project who has authorized add-ons and now want to reauthorize add-ons in your own name. This just doesn't make sense if you are the person who has authorized the addons and was then removed from the project. | 1.0 | [staging & production] Removing self as contributor prompts banner with forbidden link - # Steps
1. Go to a project for which you have authorized an add-on or multiple add-ons.
2. Go to the sharing tab and remove yourself as a contributor.
3. Press save changes then OK.
# Expected
A message pops up saying that you have removed yourself as a contributor and that the add-ons have been deauthorized.
# Actual
Everything above happens (messages about removing self, deauthorizing addons), BUT the message box with the warning about the addons includes a link to the settings component of that project. Since you have just removed yourself as a contributor, pressing the link redirects to a page with a Forbidden message (as it should). The problem here is why the link is there in the first place if it cannot be accessed by the current user.

@brianjgeiger pointed out (and I confirmed) that this is helpful if you remove someone else from the project who has authorized add-ons and now want to reauthorize add-ons in your own name. This just doesn't make sense if you are the person who has authorized the addons and was then removed from the project. | priority | removing self as contributor prompts banner with forbidden link steps go to a project for which you have authorized an add on or multiple add ons go to the sharing tab and remove yourself as a contributor press save changes then ok expected a message pops up saying that you have removed yourself as a contributor and that the add ons have been deauthorized actual everything above happens messages about removing self deauthorizing addons but the message box with the warning about the addons includes a link to the settings component of that project since you have just removed yourself as a contributor pressing the link redirects to a page with a forbidden message as it should the problem here is why the link is there in the first place if it cannot be accessed by the current user brianjgeiger pointed out and i confirmed that this is helpful if you remove someone else from the project who has authorized add ons and now want to reauthorize add ons in your own name this just doesn t make sense if you are the person who has authorized the addons and was then removed from the project | 1 |
532,482 | 15,557,443,812 | IssuesEvent | 2021-03-16 09:09:12 | space-wizards/space-station-14 | https://api.github.com/repos/space-wizards/space-station-14 | opened | Admin Features issue collection | Difficulty: 3 - Intermediate Priority: 1-high Size: 4 - Large Type: Feature | Opening a collection issue for all features required for proper adminning & putting this on prio 1 since we are growing pop
## Essential
- Show player roles in admin menu (#3494)
Could also maybe do a toggleable admin-overlay that shows player roles above their heads/ maybe some more info?
- Player warp options are broken (#3393)
- Adminlogs (#3178)
- Adminhelps (#1587) (#3230)
should have reply & teleport to
## Non-Essential
- Interaction w/ map, AI-Style (#3230)
- AI tooling (#3205) | 1.0 | Admin Features issue collection - Opening a collection issue for all features required for proper adminning & putting this on prio 1 since we are growing pop
## Essential
- Show player roles in admin menu (#3494)
Could also maybe do a toggleable admin-overlay that shows player roles above their heads/ maybe some more info?
- Player warp options are broken (#3393)
- Adminlogs (#3178)
- Adminhelps (#1587) (#3230)
should have reply & teleport to
## Non-Essential
- Interaction w/ map, AI-Style (#3230)
- AI tooling (#3205) | priority | admin features issue collection opening a collection issue for all features required for proper adminning putting this on prio since we are growing pop essential show player roles in admin menu could also maybe do a toggleable admin overlay that shows player roles above their heads maybe some more info player warp options are broken adminlogs adminhelps should have reply teleport to non essential interaction w map ai style ai tooling | 1 |
101,757 | 4,134,137,894 | IssuesEvent | 2016-06-12 00:10:39 | NetSys/quilt | https://api.github.com/repos/NetSys/quilt | opened | DSL panic with special provider variable name | bug high priority | The following spec causes quilt to panic:
```
(define provider "Amazon")
(machine (provider provider))
```
It's fine if naming the variable "provider" isn't allowed (though why shouldn't it be?) The real issue here is that we're panicing instead of politely returning an error. | 1.0 | DSL panic with special provider variable name - The following spec causes quilt to panic:
```
(define provider "Amazon")
(machine (provider provider))
```
It's fine if naming the variable "provider" isn't allowed (though why shouldn't it be?) The real issue here is that we're panicing instead of politely returning an error. | priority | dsl panic with special provider variable name the following spec causes quilt to panic define provider amazon machine provider provider it s fine if naming the variable provider isn t allowed though why shouldn t it be the real issue here is that we re panicing instead of politely returning an error | 1 |
494,279 | 14,247,775,879 | IssuesEvent | 2020-11-19 11:58:01 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Citizen password ux | Category: Cloud Worlds Category: Web Priority: High Status: Fixed | When world owner creates or edits a citizen password. It displays the password too short of time in notification. Plus if you try to highlight the password text and copy it. The notification is immediately removed from the click.
Set these password notifications to stay on screen until page reload. And not disappear from click.
Or if that's hard, you can setup some other type of notification for passwords. | 1.0 | Citizen password ux - When world owner creates or edits a citizen password. It displays the password too short of time in notification. Plus if you try to highlight the password text and copy it. The notification is immediately removed from the click.
Set these password notifications to stay on screen until page reload. And not disappear from click.
Or if that's hard, you can setup some other type of notification for passwords. | priority | citizen password ux when world owner creates or edits a citizen password it displays the password too short of time in notification plus if you try to highlight the password text and copy it the notification is immediately removed from the click set these password notifications to stay on screen until page reload and not disappear from click or if that s hard you can setup some other type of notification for passwords | 1 |
686,066 | 23,475,619,234 | IssuesEvent | 2022-08-17 05:32:21 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | Deprecate LDAP based multi attribute login | task Priority/Highest docs Severity/Blocker 6.0.0-bug-fixing Affected/5.11.0 Affected-6.0.0 | Deprecate LDAP based multi attribute login in favour of new multi attribute login implementation. | 1.0 | Deprecate LDAP based multi attribute login - Deprecate LDAP based multi attribute login in favour of new multi attribute login implementation. | priority | deprecate ldap based multi attribute login deprecate ldap based multi attribute login in favour of new multi attribute login implementation | 1 |
708,114 | 24,330,779,770 | IssuesEvent | 2022-09-30 19:11:09 | Mbed-TLS/mbedtls | https://api.github.com/repos/Mbed-TLS/mbedtls | closed | TLS 1.3 mbedtls_ssl_get_psk_to_offer leaves data un-initialized | bug size-s priority-high | What I try (and expect to work):
`./ssl_server2 server_port=2799 force_ciphersuite=TLS1-3-AES-128-GCM-SHA256 tls13_kex_modes=psk_ephemeral psk=fcc56e7668194a4775e5b36e2735551a force_version=tls13`
and
`./ssl_client2 server_port=2799 force_ciphersuite=TLS1-3-AES-128-GCM-SHA256 tls13_kex_modes=psk_ephemeral psk=fcc56e7668194a4775e5b36e2735551a force_version=tls13`
however, the client fails -0x7100 which I've pin-pointed to:
```
ssl_tls13_client.c:0492: |2| ECDH curve: x25519
ssl_tls13_client.c:1535: |3| found pre_shared_key extension
ssl_tls13_client.c:1313: |1| mbedtls_ssl_set_hs_psk() returned -28928 (-0x7100)
```
gdb reveals:
```
(gdb) bt
#0 mbedtls_ssl_set_hs_psk (ssl=0x7fffffff81d0, psk=0x555555674033 "", psk_len=140737488323024) at ssl_tls.c:1702
#1 0x00005555555986a9 in ssl_tls13_parse_server_pre_shared_key_ext (ssl=0x7fffffff81d0, buf=0x55555567405b "", end=0x55555567405d "") at ssl_tls13_client.c:1310
#2 0x0000555555598f87 in ssl_tls13_parse_server_hello (ssl=0x7fffffff81d0,
buf=0x555555674001 "\003\003\236\300=Pe\351\253\360\017\250\246\256\343+_\374\234\v\022\334\t4\201\030?\262x\226\365h\346\036", end=0x55555567405d "", is_hrr=0)
at ssl_tls13_client.c:1542
#3 0x0000555555599424 in ssl_tls13_process_server_hello (ssl=0x7fffffff81d0) at ssl_tls13_client.c:1731
#4 0x000055555559b273 in mbedtls_ssl_tls13_handshake_client_step (ssl=0x7fffffff81d0) at ssl_tls13_client.c:2529
#5 0x000055555557f7ba in mbedtls_ssl_handshake_step (ssl=0x7fffffff81d0) at ssl_tls.c:3265
#6 0x000055555557f91a in mbedtls_ssl_handshake (ssl=0x7fffffff81d0) at ssl_tls.c:3334
#7 0x000055555556245c in main (argc=6, argv=0x7fffffffd938) at ssl/ssl_client2.c:2174
```
=> i.e. psk_len is totally off (and psk points to some random location)
The root cause seems to this call to initialize psk and psk_len (in library/ssl_tls13_client.c:1276)
```
if( mbedtls_ssl_get_psk_to_offer( ssl, NULL, &psk, &psk_len,
&psk_identity, &psk_identity_len ) != 0 )
```
in mbedtls_ssl_get_psk_to_offer ptrs_present will be 0 (psk_type passed as NULL pointer by the caller!)
And because ssl->conf->psk != NULL mbedtls_ssl_get_psk_to_offer returns success (0) but did not init the values! | 1.0 | TLS 1.3 mbedtls_ssl_get_psk_to_offer leaves data un-initialized - What I try (and expect to work):
`./ssl_server2 server_port=2799 force_ciphersuite=TLS1-3-AES-128-GCM-SHA256 tls13_kex_modes=psk_ephemeral psk=fcc56e7668194a4775e5b36e2735551a force_version=tls13`
and
`./ssl_client2 server_port=2799 force_ciphersuite=TLS1-3-AES-128-GCM-SHA256 tls13_kex_modes=psk_ephemeral psk=fcc56e7668194a4775e5b36e2735551a force_version=tls13`
however, the client fails -0x7100 which I've pin-pointed to:
```
ssl_tls13_client.c:0492: |2| ECDH curve: x25519
ssl_tls13_client.c:1535: |3| found pre_shared_key extension
ssl_tls13_client.c:1313: |1| mbedtls_ssl_set_hs_psk() returned -28928 (-0x7100)
```
gdb reveals:
```
(gdb) bt
#0 mbedtls_ssl_set_hs_psk (ssl=0x7fffffff81d0, psk=0x555555674033 "", psk_len=140737488323024) at ssl_tls.c:1702
#1 0x00005555555986a9 in ssl_tls13_parse_server_pre_shared_key_ext (ssl=0x7fffffff81d0, buf=0x55555567405b "", end=0x55555567405d "") at ssl_tls13_client.c:1310
#2 0x0000555555598f87 in ssl_tls13_parse_server_hello (ssl=0x7fffffff81d0,
buf=0x555555674001 "\003\003\236\300=Pe\351\253\360\017\250\246\256\343+_\374\234\v\022\334\t4\201\030?\262x\226\365h\346\036", end=0x55555567405d "", is_hrr=0)
at ssl_tls13_client.c:1542
#3 0x0000555555599424 in ssl_tls13_process_server_hello (ssl=0x7fffffff81d0) at ssl_tls13_client.c:1731
#4 0x000055555559b273 in mbedtls_ssl_tls13_handshake_client_step (ssl=0x7fffffff81d0) at ssl_tls13_client.c:2529
#5 0x000055555557f7ba in mbedtls_ssl_handshake_step (ssl=0x7fffffff81d0) at ssl_tls.c:3265
#6 0x000055555557f91a in mbedtls_ssl_handshake (ssl=0x7fffffff81d0) at ssl_tls.c:3334
#7 0x000055555556245c in main (argc=6, argv=0x7fffffffd938) at ssl/ssl_client2.c:2174
```
=> i.e. psk_len is totally off (and psk points to some random location)
The root cause seems to this call to initialize psk and psk_len (in library/ssl_tls13_client.c:1276)
```
if( mbedtls_ssl_get_psk_to_offer( ssl, NULL, &psk, &psk_len,
&psk_identity, &psk_identity_len ) != 0 )
```
in mbedtls_ssl_get_psk_to_offer ptrs_present will be 0 (psk_type passed as NULL pointer by the caller!)
And because ssl->conf->psk != NULL mbedtls_ssl_get_psk_to_offer returns success (0) but did not init the values! | priority | tls mbedtls ssl get psk to offer leaves data un initialized what i try and expect to work ssl server port force ciphersuite aes gcm kex modes psk ephemeral psk force version and ssl server port force ciphersuite aes gcm kex modes psk ephemeral psk force version however the client fails which i ve pin pointed to ssl client c ecdh curve ssl client c found pre shared key extension ssl client c mbedtls ssl set hs psk returned gdb reveals gdb bt mbedtls ssl set hs psk ssl psk psk len at ssl tls c in ssl parse server pre shared key ext ssl buf end at ssl client c in ssl parse server hello ssl buf pe v end is hrr at ssl client c in ssl process server hello ssl at ssl client c in mbedtls ssl handshake client step ssl at ssl client c in mbedtls ssl handshake step ssl at ssl tls c in mbedtls ssl handshake ssl at ssl tls c in main argc argv at ssl ssl c i e psk len is totally off and psk points to some random location the root cause seems to this call to initialize psk and psk len in library ssl client c if mbedtls ssl get psk to offer ssl null psk psk len psk identity psk identity len in mbedtls ssl get psk to offer ptrs present will be psk type passed as null pointer by the caller and because ssl conf psk null mbedtls ssl get psk to offer returns success but did not init the values | 1 |
275,839 | 8,581,280,781 | IssuesEvent | 2018-11-13 14:20:08 | cosmos/voyager | https://api.github.com/repos/cosmos/voyager | opened | Add mocked submit Proposal | governance1 :ballot_box: high priority | Description:
<!-- Steps to reproduce, logs, and screenshots are helpful for us to resolve the bug -->
#1522 is missing the mocked submit proposal function on `lcdClientMock.js` | 1.0 | Add mocked submit Proposal - Description:
<!-- Steps to reproduce, logs, and screenshots are helpful for us to resolve the bug -->
#1522 is missing the mocked submit proposal function on `lcdClientMock.js` | priority | add mocked submit proposal description is missing the mocked submit proposal function on lcdclientmock js | 1 |
629,237 | 20,026,727,229 | IssuesEvent | 2022-02-01 22:15:14 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | reopened | geometry: More SceneGraph introspection - get shapes and poses for geometries | type: feature request priority: high team: dynamics | ## Description
Given a frame id, it would be good to get the geometries (shape and pose) of the geometries affixed to that pose.
@cc @calderpg-tri
| 1.0 | geometry: More SceneGraph introspection - get shapes and poses for geometries - ## Description
Given a frame id, it would be good to get the geometries (shape and pose) of the geometries affixed to that pose.
@cc @calderpg-tri
| priority | geometry more scenegraph introspection get shapes and poses for geometries description given a frame id it would be good to get the geometries shape and pose of the geometries affixed to that pose cc calderpg tri | 1 |
825,176 | 31,276,443,375 | IssuesEvent | 2023-08-22 06:40:51 | GSM-MSG/SMS-FrontEnd | https://api.github.com/repos/GSM-MSG/SMS-FrontEnd | opened | 학생 디테일 페이지 만들기 | 1️⃣ Priority: High ✨ Feature | ### Describe
학생 디테일 모달을 만들었는데
공유를 편하게 하기 위해 url이 변경되게 개발을 했습니다
때문에 공유된 url을 타고올 경우를 위해 학생 디테일 페이지를 만들어야합니다
### Additional
_No response_ | 1.0 | 학생 디테일 페이지 만들기 - ### Describe
학생 디테일 모달을 만들었는데
공유를 편하게 하기 위해 url이 변경되게 개발을 했습니다
때문에 공유된 url을 타고올 경우를 위해 학생 디테일 페이지를 만들어야합니다
### Additional
_No response_ | priority | 학생 디테일 페이지 만들기 describe 학생 디테일 모달을 만들었는데 공유를 편하게 하기 위해 url이 변경되게 개발을 했습니다 때문에 공유된 url을 타고올 경우를 위해 학생 디테일 페이지를 만들어야합니다 additional no response | 1 |
303,737 | 9,310,127,649 | IssuesEvent | 2019-03-25 18:01:10 | forpdi/forpdi | https://api.github.com/repos/forpdi/forpdi | closed | Títulos do documento do Plano estão escritos de forma errada | ForRisco enhancement highpriority | Quando clico para exportar um documento do Plano, os títulos estão escritos de forma incorreta ou em minúsculo. Por exemplo, "descrição" escrito em minúsculo, "politica vinculada" escrito em minúsculo e sem acento. Sugiro revisar o português de todos os documentos que estão sendo exportados, não só o de política. A parte dinâmica não temos como controlar o português, mas a parte estática nós conseguimos.

| 1.0 | Títulos do documento do Plano estão escritos de forma errada - Quando clico para exportar um documento do Plano, os títulos estão escritos de forma incorreta ou em minúsculo. Por exemplo, "descrição" escrito em minúsculo, "politica vinculada" escrito em minúsculo e sem acento. Sugiro revisar o português de todos os documentos que estão sendo exportados, não só o de política. A parte dinâmica não temos como controlar o português, mas a parte estática nós conseguimos.

| priority | títulos do documento do plano estão escritos de forma errada quando clico para exportar um documento do plano os títulos estão escritos de forma incorreta ou em minúsculo por exemplo descrição escrito em minúsculo politica vinculada escrito em minúsculo e sem acento sugiro revisar o português de todos os documentos que estão sendo exportados não só o de política a parte dinâmica não temos como controlar o português mas a parte estática nós conseguimos | 1 |
237,459 | 7,760,609,018 | IssuesEvent | 2018-06-01 06:52:58 | meetalva/alva | https://api.github.com/repos/meetalva/alva | closed | Undo/Redo on Property Changes | priority: high type: bug | Undo and Redo operations currently do not work if I change a property value.
## Current Behaviour
If I change a property value (e.g. Headline Text), blur the input and hit Cmd+Z, it doesn’t revert the property value change. Instead, it reverts the operation before it (and does not touch the value change).
## Expected Behaviour
If I change a property value and hit Cmd+Z/Y, it should revert or repeat the action. | 1.0 | Undo/Redo on Property Changes - Undo and Redo operations currently do not work if I change a property value.
## Current Behaviour
If I change a property value (e.g. Headline Text), blur the input and hit Cmd+Z, it doesn’t revert the property value change. Instead, it reverts the operation before it (and does not touch the value change).
## Expected Behaviour
If I change a property value and hit Cmd+Z/Y, it should revert or repeat the action. | priority | undo redo on property changes undo and redo operations currently do not work if i change a property value current behaviour if i change a property value e g headline text blur the input and hit cmd z it doesn’t revert the property value change instead it reverts the operation before it and does not touch the value change expected behaviour if i change a property value and hit cmd z y it should revert or repeat the action | 1 |
157,379 | 5,999,960,750 | IssuesEvent | 2017-06-05 01:54:12 | AtlasOfLivingAustralia/profile-hub | https://api.github.com/repos/AtlasOfLivingAustralia/profile-hub | closed | Text box and scroll problems when editing in Firefox | bug High-Priority | Steps to recreate"
1. Open ALA test design in Firefox (I am using version 50.1.0)
2. Select a profile to edit (I used "Arabidella Nasturtium")
3. Place cursor in text box
Problem: as soon as you place your cursor in the text box, it resizes off the browser page and you lose your scroll bar.
You need to use tab to move to other text boxes. Saving the page resets the text box sizes, but clicking into one to edit causes the problem again.
| 1.0 | Text box and scroll problems when editing in Firefox - Steps to recreate"
1. Open ALA test design in Firefox (I am using version 50.1.0)
2. Select a profile to edit (I used "Arabidella Nasturtium")
3. Place cursor in text box
Problem: as soon as you place your cursor in the text box, it resizes off the browser page and you lose your scroll bar.
You need to use tab to move to other text boxes. Saving the page resets the text box sizes, but clicking into one to edit causes the problem again.
| priority | text box and scroll problems when editing in firefox steps to recreate open ala test design in firefox i am using version select a profile to edit i used arabidella nasturtium place cursor in text box problem as soon as you place your cursor in the text box it resizes off the browser page and you lose your scroll bar you need to use tab to move to other text boxes saving the page resets the text box sizes but clicking into one to edit causes the problem again | 1 |
528,534 | 15,369,128,533 | IssuesEvent | 2021-03-02 06:52:27 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.3 staging-1928] Property window: transfer and blur issue. | Category: Gameplay Category: UI Priority: High Squad: Wild Turkey | - [x] 1. I don't have blur when open Property window:

- [x] 2. Try to transfer property to another player (press cog). You have blur and notification here:

- select any player. The UI is broken I can't see whom did I choose:

And Seems I have another blur effect, or just some background, because I should click 2 times to select apple.
- [x] 3. I can't transfer Property to another Player. After all manipulations I still the owner. | 1.0 | [0.9.3 staging-1928] Property window: transfer and blur issue. - - [x] 1. I don't have blur when open Property window:

- [x] 2. Try to transfer property to another player (press cog). You have blur and notification here:

- select any player. The UI is broken I can't see whom did I choose:

And Seems I have another blur effect, or just some background, because I should click 2 times to select apple.
- [x] 3. I can't transfer Property to another Player. After all manipulations I still the owner. | priority | property window transfer and blur issue i don t have blur when open property window try to transfer property to another player press cog you have blur and notification here select any player the ui is broken i can t see whom did i choose and seems i have another blur effect or just some background because i should click times to select apple i can t transfer property to another player after all manipulations i still the owner | 1 |
263,649 | 8,299,760,858 | IssuesEvent | 2018-09-21 05:01:56 | TMats/survey | https://api.github.com/repos/TMats/survey | opened | Temporal Difference Variational Auto-Encoder | Generative Model Priority: High RL robotics | https://arxiv.org/abs/1806.03107
-Karol Gregor, Frederic Besse
- Submitted on 8 Jun 2018 (v1), last revised 11 Jun 2018 (this version, v2) | 1.0 | Temporal Difference Variational Auto-Encoder - https://arxiv.org/abs/1806.03107
-Karol Gregor, Frederic Besse
- Submitted on 8 Jun 2018 (v1), last revised 11 Jun 2018 (this version, v2) | priority | temporal difference variational auto encoder karol gregor frederic besse submitted on jun last revised jun this version | 1 |
620,464 | 19,563,022,992 | IssuesEvent | 2022-01-03 19:03:16 | presscustomizr/nimble-builder | https://api.github.com/repos/presscustomizr/nimble-builder | closed | Custom breakpoint : consider adding a way to indicate the current custom breakpoint | enhancement [Priority : high] Triage January 2022 | either the global one or the section one
so user don't get lost when trying to set visibilities and have forgot that they use a custom breakpoint.
https://secure.helpscout.net/conversation/1030401490/219588/
| 1.0 | Custom breakpoint : consider adding a way to indicate the current custom breakpoint - either the global one or the section one
so user don't get lost when trying to set visibilities and have forgot that they use a custom breakpoint.
https://secure.helpscout.net/conversation/1030401490/219588/
| priority | custom breakpoint consider adding a way to indicate the current custom breakpoint either the global one or the section one so user don t get lost when trying to set visibilities and have forgot that they use a custom breakpoint | 1 |
368,869 | 10,885,625,092 | IssuesEvent | 2019-11-18 10:46:13 | wso2/micro-integrator | https://api.github.com/repos/wso2/micro-integrator | closed | System variable not getting update from TOML config file | 1.1.0 Priority/Highest bug | **Description:**
System variable can be given to the micro-integrator through the TOML config file by using following parameter.
```toml
[system.parameter]
'org.wso2.SecureVaultPasswordRegEx' = "^[\\\\S]{5,60}$"
```
This is not working since default.json file replace default value with full parameter object.
**Work arround**
System parameters can be pass to the environment by using `-D` option in server startup. As an example for above case add
`-Dorg.wso2.SecureVaultPasswordRegEx=^[\\S]{5,60}$` option in server startup | 1.0 | System variable not getting update from TOML config file - **Description:**
System variable can be given to the micro-integrator through the TOML config file by using following parameter.
```toml
[system.parameter]
'org.wso2.SecureVaultPasswordRegEx' = "^[\\\\S]{5,60}$"
```
This is not working since default.json file replace default value with full parameter object.
**Work arround**
System parameters can be pass to the environment by using `-D` option in server startup. As an example for above case add
`-Dorg.wso2.SecureVaultPasswordRegEx=^[\\S]{5,60}$` option in server startup | priority | system variable not getting update from toml config file description system variable can be given to the micro integrator through the toml config file by using following parameter toml org securevaultpasswordregex this is not working since default json file replace default value with full parameter object work arround system parameters can be pass to the environment by using d option in server startup as an example for above case add dorg securevaultpasswordregex option in server startup | 1 |
8,812 | 2,605,271,357 | IssuesEvent | 2015-02-25 05:32:53 | calblueprint/PHC | https://api.github.com/repos/calblueprint/PHC | closed | Add scrolling functionality to registration screen so that keyboard doesn't cover last 2 checkboxes | high priority UI/UX | scrollLayout is either nonexistent or not working for some reason | 1.0 | Add scrolling functionality to registration screen so that keyboard doesn't cover last 2 checkboxes - scrollLayout is either nonexistent or not working for some reason | priority | add scrolling functionality to registration screen so that keyboard doesn t cover last checkboxes scrolllayout is either nonexistent or not working for some reason | 1 |
89,019 | 3,788,624,611 | IssuesEvent | 2016-03-21 15:19:20 | neurodata/ndio | https://api.github.com/repos/neurodata/ndio | closed | fix kv pair overflow bug | high priority stopping science this week | Overflow/cache bug persists as documented in the attached. Moving slack discussion file here.
@j6k4m8 - this does indeed stop a lot of the claims with ndio (anything involving kv pairs, but lots of other ones to work on in the meantime. :)

| 1.0 | fix kv pair overflow bug - Overflow/cache bug persists as documented in the attached. Moving slack discussion file here.
@j6k4m8 - this does indeed stop a lot of the claims with ndio (anything involving kv pairs, but lots of other ones to work on in the meantime. :)

| priority | fix kv pair overflow bug overflow cache bug persists as documented in the attached moving slack discussion file here this does indeed stop a lot of the claims with ndio anything involving kv pairs but lots of other ones to work on in the meantime | 1 |
738,147 | 25,547,195,353 | IssuesEvent | 2022-11-29 19:54:43 | rckennedy15/visx-tree-demo | https://api.github.com/repos/rckennedy15/visx-tree-demo | closed | Add branch collapsing functionality | enhancement high priority | Nodes already have an onClick callback, so shouldn't be too hard to just hide them, but will need to add an animation library (probably react-spring or react-move) | 1.0 | Add branch collapsing functionality - Nodes already have an onClick callback, so shouldn't be too hard to just hide them, but will need to add an animation library (probably react-spring or react-move) | priority | add branch collapsing functionality nodes already have an onclick callback so shouldn t be too hard to just hide them but will need to add an animation library probably react spring or react move | 1 |
729,966 | 25,152,984,889 | IssuesEvent | 2022-11-10 11:25:30 | wso2/api-manager | https://api.github.com/repos/wso2/api-manager | opened | Versioning support should be added when importing/exporting operation policies through APICTL | Type/New Feature Priority/High Affected/APIM-4.1.0 | ### Problem
Versioning support needs to implemented for importing/exporting policies in APICTL since versioning is supported in UI.
Ex: It possible to have multiple operation policies with same name with different versions in a particular environment. In such cases APICTL should have the support to import/export policies with different versions.
Current Behaviour - Not possible to import/export different versions of the same policy.
Steps to Reproduce:
./apictl export policy api -n <Common API Policy name> -e <environment>
./apictl import policy api <Common API Policy name> -e <environment> -f <filepath>
### Solution
Implement versioning support for importing/exporting operation policies.
### Affected Component
APICTL
### Version
4.2.0
### Implementation
_No response_
### Related Issues
_No response_
### Suggested Labels
_No response_ | 1.0 | Versioning support should be added when importing/exporting operation policies through APICTL - ### Problem
Versioning support needs to implemented for importing/exporting policies in APICTL since versioning is supported in UI.
Ex: It possible to have multiple operation policies with same name with different versions in a particular environment. In such cases APICTL should have the support to import/export policies with different versions.
Current Behaviour - Not possible to import/export different versions of the same policy.
Steps to Reproduce:
./apictl export policy api -n <Common API Policy name> -e <environment>
./apictl import policy api <Common API Policy name> -e <environment> -f <filepath>
### Solution
Implement versioning support for importing/exporting operation policies.
### Affected Component
APICTL
### Version
4.2.0
### Implementation
_No response_
### Related Issues
_No response_
### Suggested Labels
_No response_ | priority | versioning support should be added when importing exporting operation policies through apictl problem versioning support needs to implemented for importing exporting policies in apictl since versioning is supported in ui ex it possible to have multiple operation policies with same name with different versions in a particular environment in such cases apictl should have the support to import export policies with different versions current behaviour not possible to import export different versions of the same policy steps to reproduce apictl export policy api n e apictl import policy api e f solution implement versioning support for importing exporting operation policies affected component apictl version implementation no response related issues no response suggested labels no response | 1 |
177,589 | 6,585,350,267 | IssuesEvent | 2017-09-13 13:45:12 | fusetools/fuselibs-public | https://api.github.com/repos/fusetools/fuselibs-public | opened | ManualTestPlan navigation has been broken | Priority: High Severity: Bug Severity: Regression | Something in a navigation change must have broken it quite recently (as I tested it after my last major change). | 1.0 | ManualTestPlan navigation has been broken - Something in a navigation change must have broken it quite recently (as I tested it after my last major change). | priority | manualtestplan navigation has been broken something in a navigation change must have broken it quite recently as i tested it after my last major change | 1 |
514,662 | 14,942,255,702 | IssuesEvent | 2021-01-25 21:00:57 | bounswe/bounswe2020group1 | https://api.github.com/repos/bounswe/bounswe2020group1 | closed | Frontend - Vendor logout function in the homepage causes crashes. | frontend priority:high priority:urgent type:implementation | Vendor cannot logout from the homepage. It can logout from other pages. The reason is unkown. | 2.0 | Frontend - Vendor logout function in the homepage causes crashes. - Vendor cannot logout from the homepage. It can logout from other pages. The reason is unkown. | priority | frontend vendor logout function in the homepage causes crashes vendor cannot logout from the homepage it can logout from other pages the reason is unkown | 1 |
285,313 | 8,757,192,163 | IssuesEvent | 2018-12-14 20:20:09 | AugurProject/augur | https://api.github.com/repos/AugurProject/augur | closed | Azure pipelines conditional is not detecting changes in augur-core | Chore Priority: High | See here: [Build 918](https://dev.azure.com/augurproject/augur/_build/results?buildId=918&view=logs)
### Actual:
augur-core cmd skipped
### Expected:
It should have run. | 1.0 | Azure pipelines conditional is not detecting changes in augur-core - See here: [Build 918](https://dev.azure.com/augurproject/augur/_build/results?buildId=918&view=logs)
### Actual:
augur-core cmd skipped
### Expected:
It should have run. | priority | azure pipelines conditional is not detecting changes in augur core see here actual augur core cmd skipped expected it should have run | 1 |
50,904 | 3,007,992,655 | IssuesEvent | 2015-07-27 18:54:12 | DICE-UNC/irods-cloud-browser | https://api.github.com/repos/DICE-UNC/irods-cloud-browser | opened | Add collection AVU support in collection profile page | Highest Priority | AVU support is missing for collection home page | 1.0 | Add collection AVU support in collection profile page - AVU support is missing for collection home page | priority | add collection avu support in collection profile page avu support is missing for collection home page | 1 |
441,263 | 12,710,112,472 | IssuesEvent | 2020-06-23 13:25:39 | canonical-web-and-design/snapcraft.io | https://api.github.com/repos/canonical-web-and-design/snapcraft.io | closed | Can’t easily see contents of snapcraft.yaml for a failed build | Feature 🎁 Priority: High | When a build failed because of a problem with the `snapcraft.yaml`, it would be helpful to see what the file looked like at that stage.
Currently this requires using Git to find the revision of the file that was current when the build was attempted.
If we can remember and display the build log for each build, we should be able to remember and display the `snapcraft.yaml` contents for each build as well.
[Suggested by Heroku’s Jeff Dickey.] | 1.0 | Can’t easily see contents of snapcraft.yaml for a failed build - When a build failed because of a problem with the `snapcraft.yaml`, it would be helpful to see what the file looked like at that stage.
Currently this requires using Git to find the revision of the file that was current when the build was attempted.
If we can remember and display the build log for each build, we should be able to remember and display the `snapcraft.yaml` contents for each build as well.
[Suggested by Heroku’s Jeff Dickey.] | priority | can’t easily see contents of snapcraft yaml for a failed build when a build failed because of a problem with the snapcraft yaml it would be helpful to see what the file looked like at that stage currently this requires using git to find the revision of the file that was current when the build was attempted if we can remember and display the build log for each build we should be able to remember and display the snapcraft yaml contents for each build as well | 1 |
384,039 | 11,382,409,308 | IssuesEvent | 2020-01-29 01:39:49 | smap-consulting/smapserver | https://api.github.com/repos/smap-consulting/smapserver | closed | URGENT - BUG - Tasks are not uploaded in FT under special condition | High Priority Released bug | ### Component fieldTask
### Version: 6.60
### Expected Behaviour: Tasks created with no initial data source form does not share table with target form should work:

### Actual Behaviour
Tasks are created at server but cannot be uploaded in FT. Apparently happens if target form does not contain a question with the same name as source no matter both forms are not related.


### Steps to reproduce the problem
### Organisation: Kontrolid
### Project: TestTasks
### Form Name: TestEasy and TestEasy3
### TaskGroup: Existing Data - Independent Table v2
| 1.0 | URGENT - BUG - Tasks are not uploaded in FT under special condition - ### Component fieldTask
### Version: 6.60
### Expected Behaviour: Tasks created with no initial data source form does not share table with target form should work:

### Actual Behaviour
Tasks are created at server but cannot be uploaded in FT. Apparently happens if target form does not contain a question with the same name as source no matter both forms are not related.


### Steps to reproduce the problem
### Organisation: Kontrolid
### Project: TestTasks
### Form Name: TestEasy and TestEasy3
### TaskGroup: Existing Data - Independent Table v2
| priority | urgent bug tasks are not uploaded in ft under special condition component fieldtask version expected behaviour tasks created with no initial data source form does not share table with target form should work actual behaviour tasks are created at server but cannot be uploaded in ft apparently happens if target form does not contain a question with the same name as source no matter both forms are not related steps to reproduce the problem organisation kontrolid project testtasks form name testeasy and taskgroup existing data independent table | 1 |
824,517 | 31,159,952,485 | IssuesEvent | 2023-08-16 15:20:22 | DroidKaigi/conference-app-2023 | https://api.github.com/repos/DroidKaigi/conference-app-2023 | closed | Display Map, Floor Information, and Page Title on FloorMapScreen | welcome contribute high priority | **Idea Description**
Integrate the temporary map available on [Figma](https://www.figma.com/file/MbElhCEnjqnuodmvwabh9K/DroidKaigi-2023-App-UI) into the FloorMapScreen. The task includes:
- Importing and displaying the map as it is.
- Displaying the information related to the floor.
- Adding the appropriate page title.
Simply replicating the design and displaying these elements is sufficient.
**Reference images and links**

| 1.0 | Display Map, Floor Information, and Page Title on FloorMapScreen - **Idea Description**
Integrate the temporary map available on [Figma](https://www.figma.com/file/MbElhCEnjqnuodmvwabh9K/DroidKaigi-2023-App-UI) into the FloorMapScreen. The task includes:
- Importing and displaying the map as it is.
- Displaying the information related to the floor.
- Adding the appropriate page title.
Simply replicating the design and displaying these elements is sufficient.
**Reference images and links**

| priority | display map floor information and page title on floormapscreen idea description integrate the temporary map available on into the floormapscreen the task includes importing and displaying the map as it is displaying the information related to the floor adding the appropriate page title simply replicating the design and displaying these elements is sufficient reference images and links | 1 |
778,009 | 27,301,214,166 | IssuesEvent | 2023-02-24 02:14:05 | SuddenDevelopment/AniMix | https://api.github.com/repos/SuddenDevelopment/AniMix | closed | StopMotion Key Update When leaving Edit mode | Priority High | key are only committed in edit mode once the playhead has been moved.
if the play doesn't move in edit mode and the user enters object mode the drawings will be lost.
https://user-images.githubusercontent.com/16330340/216883111-a82b2de9-8f31-40d1-b027-33c722d2474d.mp4
| 1.0 | StopMotion Key Update When leaving Edit mode - key are only committed in edit mode once the playhead has been moved.
if the play doesn't move in edit mode and the user enters object mode the drawings will be lost.
https://user-images.githubusercontent.com/16330340/216883111-a82b2de9-8f31-40d1-b027-33c722d2474d.mp4
| priority | stopmotion key update when leaving edit mode key are only committed in edit mode once the playhead has been moved if the play doesn t move in edit mode and the user enters object mode the drawings will be lost | 1 |
538,219 | 15,765,112,775 | IssuesEvent | 2021-03-31 13:51:46 | mskcc/pluto-cwl | https://api.github.com/repos/mskcc/pluto-cwl | closed | add more columns to cBio utils module | high priority | A lot of scripts are breaking because of unknown columns in tables that need cBio headers. Need to add more known headers, such as;
`PIPELINE_NAME`
will list more as I find them | 1.0 | add more columns to cBio utils module - A lot of scripts are breaking because of unknown columns in tables that need cBio headers. Need to add more known headers, such as;
`PIPELINE_NAME`
will list more as I find them | priority | add more columns to cbio utils module a lot of scripts are breaking because of unknown columns in tables that need cbio headers need to add more known headers such as pipeline name will list more as i find them | 1 |
708,383 | 24,340,454,128 | IssuesEvent | 2022-10-01 16:37:06 | arnog/mathlive | https://api.github.com/repos/arnog/mathlive | closed | Matrix editing shortcuts are not working | bug high priority | ## Description
Since **version 0.59.0** Matrix editing shortcuts are not working.
## Steps to Reproduce
1. run `npm start`
2. open [http://localhost:8080/examples/basic/index.esm.html](http://localhost:8080/examples/basic/index.esm.html) page
3. Type `()` and inside parentheses try to enter matrix editing shortcuts
| Shortcut | Command |
|:---|:---|
| **ctrl**/**cmd** + **Return**/**Enter** | `addRowAfter` |
| **ctrl**/**cmd** + **shift** + **Return**/**Enter** | `addRowBefore` |
| **ctrl**/**cmd** + **;** | `addRowAfter` |
| **ctrl**/**cmd** + **shift** + **;** | `addRowBefore` |
| **ctrl**/**cmd** + **,** | `addColumnAfter` |
| **ctrl**/**cmd** + **shift** + **,** | `addColumnBefore` |
### Actual Behavior
Nothing happens, the editor doesn't react to commands.
No error in the console was thrown.
### Expected Behavior
Commands were applied correctly to the matrix (e.g. adding row below on pressing **ctrl**/**cmd** + **Enter** etc. )
[Is this a regression: did it use to work in a previous version?]
Yes, it worked correctly in **version 0.58.0**
### Environment
**Operating System**
[macOS, Windows, iOS. Include the version if possible]
macOS, Windows 10
**Browser** [Safari, Chrome, IE, Firefox, etc...]
Safari, Chrome, Edge | 1.0 | Matrix editing shortcuts are not working - ## Description
Since **version 0.59.0** Matrix editing shortcuts are not working.
## Steps to Reproduce
1. run `npm start`
2. open [http://localhost:8080/examples/basic/index.esm.html](http://localhost:8080/examples/basic/index.esm.html) page
3. Type `()` and inside parentheses try to enter matrix editing shortcuts
| Shortcut | Command |
|:---|:---|
| **ctrl**/**cmd** + **Return**/**Enter** | `addRowAfter` |
| **ctrl**/**cmd** + **shift** + **Return**/**Enter** | `addRowBefore` |
| **ctrl**/**cmd** + **;** | `addRowAfter` |
| **ctrl**/**cmd** + **shift** + **;** | `addRowBefore` |
| **ctrl**/**cmd** + **,** | `addColumnAfter` |
| **ctrl**/**cmd** + **shift** + **,** | `addColumnBefore` |
### Actual Behavior
Nothing happens, the editor doesn't react to commands.
No error in the console was thrown.
### Expected Behavior
Commands were applied correctly to the matrix (e.g. adding row below on pressing **ctrl**/**cmd** + **Enter** etc. )
[Is this a regression: did it use to work in a previous version?]
Yes, it worked correctly in **version 0.58.0**
### Environment
**Operating System**
[macOS, Windows, iOS. Include the version if possible]
macOS, Windows 10
**Browser** [Safari, Chrome, IE, Firefox, etc...]
Safari, Chrome, Edge | priority | matrix editing shortcuts are not working description since version matrix editing shortcuts are not working steps to reproduce run npm start open page type and inside parentheses try to enter matrix editing shortcuts shortcut command ctrl cmd return enter addrowafter ctrl cmd shift return enter addrowbefore ctrl cmd addrowafter ctrl cmd shift addrowbefore ctrl cmd addcolumnafter ctrl cmd shift addcolumnbefore actual behavior nothing happens the editor doesn t react to commands no error in the console was thrown expected behavior commands were applied correctly to the matrix e g adding row below on pressing ctrl cmd enter etc yes it worked correctly in version environment operating system macos windows browser safari chrome edge | 1 |
486,805 | 14,014,885,093 | IssuesEvent | 2020-10-29 12:35:13 | bounswe/bounswe2020group8 | https://api.github.com/repos/bounswe/bounswe2020group8 | closed | Adding Meeting #12 Notes to Github | Priority: High | Notes taken by Öncel during group meeting (28.10.2020) will be added to wiki until 29.10.2020 3 pm. | 1.0 | Adding Meeting #12 Notes to Github - Notes taken by Öncel during group meeting (28.10.2020) will be added to wiki until 29.10.2020 3 pm. | priority | adding meeting notes to github notes taken by öncel during group meeting will be added to wiki until pm | 1 |
278,233 | 8,638,267,689 | IssuesEvent | 2018-11-23 14:12:34 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | Improve Styler | Priority: High enhancement user story | Creating Styles for GeoServer is a challenging task since SLD is quite complex but so it CSS and the other specs.
We would need a simplified, visual styler with an advanced view that people can use to create styles. | 1.0 | Improve Styler - Creating Styles for GeoServer is a challenging task since SLD is quite complex but so it CSS and the other specs.
We would need a simplified, visual styler with an advanced view that people can use to create styles. | priority | improve styler creating styles for geoserver is a challenging task since sld is quite complex but so it css and the other specs we would need a simplified visual styler with an advanced view that people can use to create styles | 1 |
529,792 | 15,395,498,014 | IssuesEvent | 2021-03-03 19:18:40 | stakeordie/scrt-auction | https://api.github.com/repos/stakeordie/scrt-auction | closed | Show price instead of min bid consistently thru the app | high priority | Hiya! we have price when:
- bidding

- creating an auction

For consistency, change min bid should be change min price

Similarly grid and list view should show min price

| 1.0 | Show price instead of min bid consistently thru the app - Hiya! we have price when:
- bidding

- creating an auction

For consistency, change min bid should be change min price

Similarly grid and list view should show min price

| priority | show price instead of min bid consistently thru the app hiya we have price when bidding creating an auction for consistency change min bid should be change min price similarly grid and list view should show min price | 1 |
186,157 | 6,733,905,734 | IssuesEvent | 2017-10-18 16:11:17 | CanonicalLtd/maas-docs | https://api.github.com/repos/CanonicalLtd/maas-docs | closed | iSCSI is being replaced with HTTP for ephemeral images in 2.3.0 | 2.3 high priority | iSCSI/tgt ephemeral image retrieval is being replaced by HTTP in 2.3.0:
https://lists.ubuntu.com/archives/maas-devel/2017-August/002659.html | 1.0 | iSCSI is being replaced with HTTP for ephemeral images in 2.3.0 - iSCSI/tgt ephemeral image retrieval is being replaced by HTTP in 2.3.0:
https://lists.ubuntu.com/archives/maas-devel/2017-August/002659.html | priority | iscsi is being replaced with http for ephemeral images in iscsi tgt ephemeral image retrieval is being replaced by http in | 1 |
413,428 | 12,067,146,544 | IssuesEvent | 2020-04-16 12:57:42 | codacy/codacy-meta | https://api.github.com/repos/codacy/codacy-meta | closed | Avoid to show the custom tools patterns in Codacy's UI | High Priority groomed | We want to filter the view of the patterns in Codacy's website.
Since custom tools are going to be run on customer's CIs we don't have a way to control the list of patterns that are enabled or not therefore we should not show the patterns in our UI.
This filter should be implemented in codacy-website. | 1.0 | Avoid to show the custom tools patterns in Codacy's UI - We want to filter the view of the patterns in Codacy's website.
Since custom tools are going to be run on customer's CIs we don't have a way to control the list of patterns that are enabled or not therefore we should not show the patterns in our UI.
This filter should be implemented in codacy-website. | priority | avoid to show the custom tools patterns in codacy s ui we want to filter the view of the patterns in codacy s website since custom tools are going to be run on customer s cis we don t have a way to control the list of patterns that are enabled or not therefore we should not show the patterns in our ui this filter should be implemented in codacy website | 1 |
508,875 | 14,707,664,491 | IssuesEvent | 2021-01-04 22:01:16 | CDH-Studio/I-Talent | https://api.github.com/repos/CDH-Studio/I-Talent | closed | backend unit tests failing | bug high priority | **Describe the bug**
backend unit tests are now failing on development.
| 1.0 | backend unit tests failing - **Describe the bug**
backend unit tests are now failing on development.
| priority | backend unit tests failing describe the bug backend unit tests are now failing on development | 1 |
464,957 | 13,348,821,536 | IssuesEvent | 2020-08-29 20:39:00 | OpenSRP/opensrp-client-reveal | https://api.github.com/repos/OpenSRP/opensrp-client-reveal | opened | Duplicate Questions on Verification Form | Priority: High Reveal-VL | - [ ] The "Enter Verification Form" has the question on the name of the field officer appearing in duplicate. (See screenshot below)

- [ ] The names of the field officers should also be listed. The client has asked that we use dummy data (use data that was previously used).
- [ ] The question on the TLA completing form appearing in duplicate (see screenshot below)

- [ ] The drop down of the TLA should revert to the name of the logged in user. | 1.0 | Duplicate Questions on Verification Form - - [ ] The "Enter Verification Form" has the question on the name of the field officer appearing in duplicate. (See screenshot below)

- [ ] The names of the field officers should also be listed. The client has asked that we use dummy data (use data that was previously used).
- [ ] The question on the TLA completing form appearing in duplicate (see screenshot below)

- [ ] The drop down of the TLA should revert to the name of the logged in user. | priority | duplicate questions on verification form the enter verification form has the question on the name of the field officer appearing in duplicate see screenshot below the names of the field officers should also be listed the client has asked that we use dummy data use data that was previously used the question on the tla completing form appearing in duplicate see screenshot below the drop down of the tla should revert to the name of the logged in user | 1 |
520,762 | 15,093,354,412 | IssuesEvent | 2021-02-07 00:04:19 | aneuhold/BestCommunityService | https://api.github.com/repos/aneuhold/BestCommunityService | opened | Space Reservation Page | priority: High | A space reservation page with a calendar, and other items formatted roughly like the drawing below:

AC 1: A calendar view with color coding for availability
AC 2: A filter at the top that can be used to filter by event type, event length, and time range (like next 3 months, next year, etc)
AC 3: A data file with information on calendar events that lines up with the library used for the calendar
AC 4: When a day is clicked on, it opens up the available rooms underneath the calendar. They should be collapsible in mobile view, and show up as rows in the desktop view
| 1.0 | Space Reservation Page - A space reservation page with a calendar, and other items formatted roughly like the drawing below:

AC 1: A calendar view with color coding for availability
AC 2: A filter at the top that can be used to filter by event type, event length, and time range (like next 3 months, next year, etc)
AC 3: A data file with information on calendar events that lines up with the library used for the calendar
AC 4: When a day is clicked on, it opens up the available rooms underneath the calendar. They should be collapsible in mobile view, and show up as rows in the desktop view
| priority | space reservation page a space reservation page with a calendar and other items formatted roughly like the drawing below ac a calendar view with color coding for availability ac a filter at the top that can be used to filter by event type event length and time range like next months next year etc ac a data file with information on calendar events that lines up with the library used for the calendar ac when a day is clicked on it opens up the available rooms underneath the calendar they should be collapsible in mobile view and show up as rows in the desktop view | 1 |
352,690 | 10,545,037,109 | IssuesEvent | 2019-10-02 18:15:00 | tsgrp/HPI | https://api.github.com/repos/tsgrp/HPI | closed | Pagination broken in "View All Documents" and Search Results | High Priority issue | Next and Previous buttons aren't working...

| 1.0 | Pagination broken in "View All Documents" and Search Results - Next and Previous buttons aren't working...

| priority | pagination broken in view all documents and search results next and previous buttons aren t working | 1 |
624,937 | 19,713,452,314 | IssuesEvent | 2022-01-13 08:39:28 | horizon-efrei/HorizonWeb | https://api.github.com/repos/horizon-efrei/HorizonWeb | closed | Espace : Docs Sharing | difficulty: complex priority: high status: approved type: feature target: backend target: frontend scope: file-sharing | TODO:
- [ ] Formulaire d'upload
- [ ] Formulaire de requête
- [ ] Querying/listing de documents (#56)
- [ ] Favoris (#54) | 1.0 | Espace : Docs Sharing - TODO:
- [ ] Formulaire d'upload
- [ ] Formulaire de requête
- [ ] Querying/listing de documents (#56)
- [ ] Favoris (#54) | priority | espace docs sharing todo formulaire d upload formulaire de requête querying listing de documents favoris | 1 |
418,593 | 12,200,319,618 | IssuesEvent | 2020-04-30 04:20:34 | traPtitech/traQ_S-UI | https://api.github.com/repos/traPtitech/traQ_S-UI | closed | ログイン後、元のURLに戻るように | priority:HIGH | OAuth認可の前にログイン画面にリダイレクトされた場合や
チャンネルを開くときにリダイレクトされた場合とか
`router/restorePath.ts`みたいなのつくって`sessionStorage`とかに持っておけばよさそう
| 1.0 | ログイン後、元のURLに戻るように - OAuth認可の前にログイン画面にリダイレクトされた場合や
チャンネルを開くときにリダイレクトされた場合とか
`router/restorePath.ts`みたいなのつくって`sessionStorage`とかに持っておけばよさそう
| priority | ログイン後、元のurlに戻るように oauth認可の前にログイン画面にリダイレクトされた場合や チャンネルを開くときにリダイレクトされた場合とか router restorepath ts みたいなのつくって sessionstorage とかに持っておけばよさそう | 1 |
97,499 | 3,994,478,829 | IssuesEvent | 2016-05-10 12:34:27 | oxyplot/oxyplot | https://api.github.com/repos/oxyplot/oxyplot | closed | Zooming LineSeries with Smooth="True" raises exception | confirmed-bug help-wanted high-priority | **Imported from [http://oxyplot.codeplex.com/workitem/10064](http://oxyplot.codeplex.com/workitem/10064)**
**[Strevlik](http://www.codeplex.com/site/users/view/Strevlik)** 2013-07-08 16:25
In C# buid of library, huge zoomimg in at graph with oxy:LineSeries raises System.OutOfMemoryException.
Each change of zoom raises recomputation of whole spline (not just a part). One serie allocated about 200mb of memory for a short time (probably for computation). Few more zooms raise exception.
Part of the stracktrace:
OxyPlot.CanonicalSplineHelper.Segment(IList<code>1 points, ScreenPoint pt0, ScreenPoint pt1, ScreenPoint pt2, ScreenPoint pt3, Double t1, Double t2, Double tolerance)
OxyPlot.CanonicalSplineHelper.CreateSpline(IList</code>1 points, Double tension, IList`1 tensions, Boolean isClosed, Double tolerance) | 1.0 | Zooming LineSeries with Smooth="True" raises exception - **Imported from [http://oxyplot.codeplex.com/workitem/10064](http://oxyplot.codeplex.com/workitem/10064)**
**[Strevlik](http://www.codeplex.com/site/users/view/Strevlik)** 2013-07-08 16:25
In C# buid of library, huge zoomimg in at graph with oxy:LineSeries raises System.OutOfMemoryException.
Each change of zoom raises recomputation of whole spline (not just a part). One serie allocated about 200mb of memory for a short time (probably for computation). Few more zooms raise exception.
Part of the stracktrace:
OxyPlot.CanonicalSplineHelper.Segment(IList<code>1 points, ScreenPoint pt0, ScreenPoint pt1, ScreenPoint pt2, ScreenPoint pt3, Double t1, Double t2, Double tolerance)
OxyPlot.CanonicalSplineHelper.CreateSpline(IList</code>1 points, Double tension, IList`1 tensions, Boolean isClosed, Double tolerance) | priority | zooming lineseries with smooth true raises exception imported from in c buid of library huge zoomimg in at graph with oxy lineseries raises system outofmemoryexception each change of zoom raises recomputation of whole spline not just a part one serie allocated about of memory for a short time probably for computation few more zooms raise exception part of the stracktrace oxyplot canonicalsplinehelper segment ilist points screenpoint screenpoint screenpoint screenpoint double double double tolerance oxyplot canonicalsplinehelper createspline ilist points double tension ilist tensions boolean isclosed double tolerance | 1 |
52,962 | 3,031,932,066 | IssuesEvent | 2015-08-05 03:54:07 | SpongePowered/SpongeCommon | https://api.github.com/repos/SpongePowered/SpongeCommon | closed | Cancelling PlaceBlockEvent/PlaceEvent does not stop activations | bug events high-priority | There is a bug with world snapshots in Forge and Sponge/SpongeVanilla where block physics is allowed to run while block snapshots are being captured.
This allows exploits such as spawning TNT explosions in protected areas (if activated by existing redstone torch) or laying down additional redstone wire connected to powered redstone wire. I've provided a simple mod class:
https://gist.github.com/Zidane/3c4063d7136ba9348704
Simply toggle booleans off/on to see the effect.
| 1.0 | Cancelling PlaceBlockEvent/PlaceEvent does not stop activations - There is a bug with world snapshots in Forge and Sponge/SpongeVanilla where block physics is allowed to run while block snapshots are being captured.
This allows exploits such as spawning TNT explosions in protected areas (if activated by existing redstone torch) or laying down additional redstone wire connected to powered redstone wire. I've provided a simple mod class:
https://gist.github.com/Zidane/3c4063d7136ba9348704
Simply toggle booleans off/on to see the effect.
| priority | cancelling placeblockevent placeevent does not stop activations there is a bug with world snapshots in forge and sponge spongevanilla where block physics is allowed to run while block snapshots are being captured this allows exploits such as spawning tnt explosions in protected areas if activated by existing redstone torch or laying down additional redstone wire connected to powered redstone wire i ve provided a simple mod class simply toggle booleans off on to see the effect | 1 |
201,178 | 7,025,231,119 | IssuesEvent | 2017-12-23 06:56:27 | ballerinalang/language-server | https://api.github.com/repos/ballerinalang/language-server | closed | Packaging Restructure for Launchers | Priority/High Type/Improvement | **Description:**
In the current packaging structure for the launchers, there are complications when accessing the packages such as HTTP, fs, ws. We need to restructure the current launcher packaging to compatible with the aforementioned. | 1.0 | Packaging Restructure for Launchers - **Description:**
In the current packaging structure for the launchers, there are complications when accessing the packages such as HTTP, fs, ws. We need to restructure the current launcher packaging to compatible with the aforementioned. | priority | packaging restructure for launchers description in the current packaging structure for the launchers there are complications when accessing the packages such as http fs ws we need to restructure the current launcher packaging to compatible with the aforementioned | 1 |
504,159 | 14,613,918,843 | IssuesEvent | 2020-12-22 09:04:00 | pmem/libpmemobj-cpp | https://api.github.com/repos/pmem/libpmemobj-cpp | reopened | transaction_0_pmemcheck runs really long on real HW | Priority: 2 high Type: Bug |
# ISSUE: <!-- fill the title of issue -->
transaction_0_pmemcheck runs really long on real HW
## Environment Information
- libpmemobj-cpp version(s): 1.10-rc1 <!-- fill this out -->
- PMDK (libpmemobj) package version(s): 1.8 <!-- fill this out -->
- OS(es) version(s): Fedora 30 <!-- fill this out -->
- kernel version(s): 5.5.16 <!-- fill this out -->
- real HW (not emulated)
## Please provide a reproduction of the bug:
`ctest -R transaction_0_pmemcheck --output-on-failure`
## How often bug is revealed:
always
## Actual behavior:
it timeouts | 1.0 | transaction_0_pmemcheck runs really long on real HW -
# ISSUE: <!-- fill the title of issue -->
transaction_0_pmemcheck runs really long on real HW
## Environment Information
- libpmemobj-cpp version(s): 1.10-rc1 <!-- fill this out -->
- PMDK (libpmemobj) package version(s): 1.8 <!-- fill this out -->
- OS(es) version(s): Fedora 30 <!-- fill this out -->
- kernel version(s): 5.5.16 <!-- fill this out -->
- real HW (not emulated)
## Please provide a reproduction of the bug:
`ctest -R transaction_0_pmemcheck --output-on-failure`
## How often bug is revealed:
always
## Actual behavior:
it timeouts | priority | transaction pmemcheck runs really long on real hw issue transaction pmemcheck runs really long on real hw environment information libpmemobj cpp version s pmdk libpmemobj package version s os es version s fedora kernel version s real hw not emulated please provide a reproduction of the bug ctest r transaction pmemcheck output on failure how often bug is revealed always actual behavior it timeouts | 1 |
683,473 | 23,383,602,393 | IssuesEvent | 2022-08-11 11:53:03 | insightsengineering/tern.mmrm | https://api.github.com/repos/insightsengineering/tern.mmrm | closed | [tern.mmrm] Create forest plot functions for MMRM subgroup analyses | sme SP8 high priority | To do:
- [x] design doc
- [x] Adjustments to `fit_mmrm()` / `get_mmrm_lsmeans()`
- [x] save the `averages_emmeans` list in the object
- [x] add the `weights_emmeans` chosen for LS means in the object
- [x] LS means computations
- [x] go via separate MMRM fits to compute the LS means for the subgroups
- [x] works for factor variables used as such
- [x] works for overlapping combination of factor levels
- [x] works for single visit
- [x] works for average of visits
- [x] Extraction function
- [x] Formatted analysis function
- [x] Table creating function
- [x] create functions
- [ ] add to TLG-C
--
Original feedback:
FSTG01 layout example from GDSR as follow, with the following note of modification
* Please replace the column heading “Subgroup” with “Baseline Risk Factor”, remove the “Category” column and display the Category headings directly underneath the Baseline Risk Factor heading, as in FSTG01. Also, replace the first row heading, “Overall”, with “All Patients”, consistent with FSTG01
* By default present all summary statistics shown in the mockup. Allow the option for presenting p-value for each mean difference to the right of the 95% CI.

Summary table can be obtained from `fit_mmrm`.
Provenance:
```
Creator: anajens
``` | 1.0 | [tern.mmrm] Create forest plot functions for MMRM subgroup analyses - To do:
- [x] design doc
- [x] Adjustments to `fit_mmrm()` / `get_mmrm_lsmeans()`
- [x] save the `averages_emmeans` list in the object
- [x] add the `weights_emmeans` chosen for LS means in the object
- [x] LS means computations
- [x] go via separate MMRM fits to compute the LS means for the subgroups
- [x] works for factor variables used as such
- [x] works for overlapping combination of factor levels
- [x] works for single visit
- [x] works for average of visits
- [x] Extraction function
- [x] Formatted analysis function
- [x] Table creating function
- [x] create functions
- [ ] add to TLG-C
--
Original feedback:
FSTG01 layout example from GDSR as follow, with the following note of modification
* Please replace the column heading “Subgroup” with “Baseline Risk Factor”, remove the “Category” column and display the Category headings directly underneath the Baseline Risk Factor heading, as in FSTG01. Also, replace the first row heading, “Overall”, with “All Patients”, consistent with FSTG01
* By default present all summary statistics shown in the mockup. Allow the option for presenting p-value for each mean difference to the right of the 95% CI.

Summary table can be obtained from `fit_mmrm`.
Provenance:
```
Creator: anajens
``` | priority | create forest plot functions for mmrm subgroup analyses to do design doc adjustments to fit mmrm get mmrm lsmeans save the averages emmeans list in the object add the weights emmeans chosen for ls means in the object ls means computations go via separate mmrm fits to compute the ls means for the subgroups works for factor variables used as such works for overlapping combination of factor levels works for single visit works for average of visits extraction function formatted analysis function table creating function create functions add to tlg c original feedback layout example from gdsr as follow with the following note of modification please replace the column heading “subgroup” with “baseline risk factor” remove the “category” column and display the category headings directly underneath the baseline risk factor heading as in also replace the first row heading “overall” with “all patients” consistent with by default present all summary statistics shown in the mockup allow the option for presenting p value for each mean difference to the right of the ci summary table can be obtained from fit mmrm provenance creator anajens | 1 |
309,282 | 9,466,348,143 | IssuesEvent | 2019-04-18 04:02:22 | wso2/product-is | https://api.github.com/repos/wso2/product-is | closed | Ask password using SCIM doc needs to be updated | Complexity/Low Component/SCIM Priority/Highest Severity/Blocker Type/Docs | For the **askPassword** feature, email is a mandatory attribute. As for the default IS configs the email claim and the relevant scim claim mapping would be as below,
`http://wso2.org/claims/emailaddress -> urn:ietf:params:scim:schemas:core:2.0:User:emails`
Therefore you need to send the email address as below in the user creation request,
`curl -v -k --user admin:admin --data '{"schemas":[],"name":{"familyName":"Smith","givenName":"Paul"},"userName":"Paul","password":"password","emails":[{"primary":true,"value":"dewmi123455@gmail.com"}],"EnterpriseUser":{askPassword:"true"}}' --header "Content-Type:application/json" https://localhost:9443/scim2/Users`
Or else you have to map the `http://wso2.org/claims/emailaddress` claim to relevent scim claim as below,
<img width="1140" alt="Screen Shot 2019-04-05 at 5 36 42 PM" src="https://user-images.githubusercontent.com/13478571/55626544-75ecb180-57c9-11e9-8033-69b740f01882.png">
Then you can use the below request as well,
`curl -v -k --user admin:admin --data '{"schemas":[],"name":{"familyName":"Smith","givenName":"Paul"},"userName":"Paul","password":"password","emails":[{"primary":true,"value":"dewmi123455@gmail.com","type":"home"},{"value":"dewmi123455@gmail.com","type":"work"}],"EnterpriseUser":{askPassword:"true"}}' --header "Content-Type:application/json" https://localhost:9443/scim2/Users`
This need to be clearly communicated in the documentation as the sample request provided in the doc [1] is not working with the default claim configs. So better to change the sample request as suggested above.
[1] https://docs.wso2.com/display/IS580/Creating+Users+using+the+Ask+Password+Option
| 1.0 | Ask password using SCIM doc needs to be updated - For the **askPassword** feature, email is a mandatory attribute. As for the default IS configs the email claim and the relevant scim claim mapping would be as below,
`http://wso2.org/claims/emailaddress -> urn:ietf:params:scim:schemas:core:2.0:User:emails`
Therefore you need to send the email address as below in the user creation request,
`curl -v -k --user admin:admin --data '{"schemas":[],"name":{"familyName":"Smith","givenName":"Paul"},"userName":"Paul","password":"password","emails":[{"primary":true,"value":"dewmi123455@gmail.com"}],"EnterpriseUser":{askPassword:"true"}}' --header "Content-Type:application/json" https://localhost:9443/scim2/Users`
Or else you have to map the `http://wso2.org/claims/emailaddress` claim to relevent scim claim as below,
<img width="1140" alt="Screen Shot 2019-04-05 at 5 36 42 PM" src="https://user-images.githubusercontent.com/13478571/55626544-75ecb180-57c9-11e9-8033-69b740f01882.png">
Then you can use the below request as well,
`curl -v -k --user admin:admin --data '{"schemas":[],"name":{"familyName":"Smith","givenName":"Paul"},"userName":"Paul","password":"password","emails":[{"primary":true,"value":"dewmi123455@gmail.com","type":"home"},{"value":"dewmi123455@gmail.com","type":"work"}],"EnterpriseUser":{askPassword:"true"}}' --header "Content-Type:application/json" https://localhost:9443/scim2/Users`
This need to be clearly communicated in the documentation as the sample request provided in the doc [1] is not working with the default claim configs. So better to change the sample request as suggested above.
[1] https://docs.wso2.com/display/IS580/Creating+Users+using+the+Ask+Password+Option
| priority | ask password using scim doc needs to be updated for the askpassword feature email is a mandatory attribute as for the default is configs the email claim and the relevant scim claim mapping would be as below urn ietf params scim schemas core user emails therefore you need to send the email address as below in the user creation request curl v k user admin admin data schemas name familyname smith givenname paul username paul password password emails enterpriseuser askpassword true header content type application json or else you have to map the claim to relevent scim claim as below img width alt screen shot at pm src then you can use the below request as well curl v k user admin admin data schemas name familyname smith givenname paul username paul password password emails enterpriseuser askpassword true header content type application json this need to be clearly communicated in the documentation as the sample request provided in the doc is not working with the default claim configs so better to change the sample request as suggested above | 1 |
682,957 | 23,364,200,694 | IssuesEvent | 2022-08-10 14:08:54 | NIAEFEUP/tts-revamp-fe | https://api.github.com/repos/NIAEFEUP/tts-revamp-fe | closed | Multiple schedule options (tabs) | medium priority high effort | Students should be able to have multiple schedule options (up to 10, just like sigarra)
### Resources
- https://headlessui.dev/react/tabs
### Tasks
- [ ] Add tabs component
- [ ] Course options array has 10 entries
| 1.0 | Multiple schedule options (tabs) - Students should be able to have multiple schedule options (up to 10, just like sigarra)
### Resources
- https://headlessui.dev/react/tabs
### Tasks
- [ ] Add tabs component
- [ ] Course options array has 10 entries
| priority | multiple schedule options tabs students should be able to have multiple schedule options up to just like sigarra resources tasks add tabs component course options array has entries | 1 |
378,477 | 11,202,978,518 | IssuesEvent | 2020-01-04 16:33:33 | rich-iannone/pointblank | https://api.github.com/repos/rich-iannone/pointblank | closed | Use a ‘secret agent‘ when directly validating a table | Difficulty: ③ Advanced Effort: ③ High Priority: ③ High Type: ★ Enhancement | Behind the scenes, create a secret agent and perform a one-hit interrogation on the target. Put the logic in `secret_ops.R`. | 1.0 | Use a ‘secret agent‘ when directly validating a table - Behind the scenes, create a secret agent and perform a one-hit interrogation on the target. Put the logic in `secret_ops.R`. | priority | use a ‘secret agent‘ when directly validating a table behind the scenes create a secret agent and perform a one hit interrogation on the target put the logic in secret ops r | 1 |
814,247 | 30,496,367,288 | IssuesEvent | 2023-07-18 11:07:14 | ufosc/Club_Website_2 | https://api.github.com/repos/ufosc/Club_Website_2 | closed | V0.2 BETA | help wanted discussion high priority | ## V0.2 Beta Release Issue Tracker
| Issue | Ref | Status | Assignee |
|-------|-----|--------|----------|
| TEST: /api/edit ROUTE | #158 | **HELP WANTED** | Thinura |
| ~TEST: /api/blog route~ | #157 | DONE | @zeim839 |
| ~TEST: /api/image route~ | N/A | DONE | @zeim839 |
Goals: Finish testing before releasing beta to public. | 1.0 | V0.2 BETA - ## V0.2 Beta Release Issue Tracker
| Issue | Ref | Status | Assignee |
|-------|-----|--------|----------|
| TEST: /api/edit ROUTE | #158 | **HELP WANTED** | Thinura |
| ~TEST: /api/blog route~ | #157 | DONE | @zeim839 |
| ~TEST: /api/image route~ | N/A | DONE | @zeim839 |
Goals: Finish testing before releasing beta to public. | priority | beta beta release issue tracker issue ref status assignee test api edit route help wanted thinura test api blog route done test api image route n a done goals finish testing before releasing beta to public | 1 |
564,276 | 16,722,400,373 | IssuesEvent | 2021-06-10 08:54:39 | bounswe/2021SpringGroup2 | https://api.github.com/repos/bounswe/2021SpringGroup2 | closed | Creating API for getting blocked users. | Backend priority: high state: completed | This API should return a list of blocked user IDs by the user having the given user_id.
This should be done by processing a query on the Blocking table in the database.
Since the Blocking table has columns of blockingID and blockedID, the query should be a simple so-called SELECT/FROM/WHERE query that matches each row having the given blockingID. | 1.0 | Creating API for getting blocked users. - This API should return a list of blocked user IDs by the user having the given user_id.
This should be done by processing a query on the Blocking table in the database.
Since the Blocking table has columns of blockingID and blockedID, the query should be a simple so-called SELECT/FROM/WHERE query that matches each row having the given blockingID. | priority | creating api for getting blocked users this api should return a list of blocked user ids by the user having the given user id this should be done by processing a query on the blocking table in the database since the blocking table has columns of blockingid and blockedid the query should be a simple so called select from where query that matches each row having the given blockingid | 1 |
238,969 | 7,785,017,472 | IssuesEvent | 2018-06-06 14:47:15 | fecgov/fec-cms | https://api.github.com/repos/fecgov/fec-cms | reopened | Implement new contact page design | High priority Work: Front-end | **What we're after:** We've reorganized and streamlined our contact page language and design to help users better find the FEC services they are looking for. Our next step is to implement the new design. Great background at: https://github.com/fecgov/fec-cms/issues/1895
**Designs:**

**Completion criteria:**
- [x] Create wagtail template, or discover applicable, mobile-friendly template to function similarly to the hard-coded version (column 1 (left), then column 2(right)) (also talk to Jonella about line spacing)
- [ ] Front-end and content pair to build contact page in Wagtail
- [ ] Disable hard-coded contact page
- [ ] Modify link to contact page to say `www.fec.gov/contact` and remove `-us` | 1.0 | Implement new contact page design - **What we're after:** We've reorganized and streamlined our contact page language and design to help users better find the FEC services they are looking for. Our next step is to implement the new design. Great background at: https://github.com/fecgov/fec-cms/issues/1895
**Designs:**

**Completion criteria:**
- [x] Create wagtail template, or discover applicable, mobile-friendly template to function similarly to the hard-coded version (column 1 (left), then column 2(right)) (also talk to Jonella about line spacing)
- [ ] Front-end and content pair to build contact page in Wagtail
- [ ] Disable hard-coded contact page
- [ ] Modify link to contact page to say `www.fec.gov/contact` and remove `-us` | priority | implement new contact page design what we re after we ve reorganized and streamlined our contact page language and design to help users better find the fec services they are looking for our next step is to implement the new design great background at designs completion criteria create wagtail template or discover applicable mobile friendly template to function similarly to the hard coded version column left then column right also talk to jonella about line spacing front end and content pair to build contact page in wagtail disable hard coded contact page modify link to contact page to say and remove us | 1 |
434,061 | 12,513,468,854 | IssuesEvent | 2020-06-03 02:06:17 | Tyresius92/le-chat | https://api.github.com/repos/Tyresius92/le-chat | closed | [Server] Implement 'createConversation` function | Good First issue Priority: High Status: Ready to Implement Type: Enhancement/Feature | ### Description
Implement a function in a new conversation service that will create a new conversation. You can use the createUser function as a template to see the rough patterns to follow, but note that users_conversations join table will also need to be updated upon conversation creation.
https://github.com/Tyresius92/le-chat/blob/9b10af23b7cdafa05187df9f34fcf792665bc013/server/src/services/user.js#L15
### Acceptance Criteria
A new function that takes in the data for a new conversation (topic and userIds, perhaps?) and then creates a new record in the conversations table, and then one entry per row in users_conversations per user in the conversation. | 1.0 | [Server] Implement 'createConversation` function - ### Description
Implement a function in a new conversation service that will create a new conversation. You can use the createUser function as a template to see the rough patterns to follow, but note that users_conversations join table will also need to be updated upon conversation creation.
https://github.com/Tyresius92/le-chat/blob/9b10af23b7cdafa05187df9f34fcf792665bc013/server/src/services/user.js#L15
### Acceptance Criteria
A new function that takes in the data for a new conversation (topic and userIds, perhaps?) and then creates a new record in the conversations table, and then one entry per row in users_conversations per user in the conversation. | priority | implement createconversation function description implement a function in a new conversation service that will create a new conversation you can use the createuser function as a template to see the rough patterns to follow but note that users conversations join table will also need to be updated upon conversation creation acceptance criteria a new function that takes in the data for a new conversation topic and userids perhaps and then creates a new record in the conversations table and then one entry per row in users conversations per user in the conversation | 1 |
152,716 | 5,867,894,964 | IssuesEvent | 2017-05-14 06:50:03 | urfu-2016/team2 | https://api.github.com/repos/urfu-2016/team2 | closed | Поправить вёрстку списка квестов | enhancement Priority: High Type: Front-end | - [x] Прикрутить загрузку реальных квестов из бд
- [x] Пофиксить Sort By (и да, у нас вроде русский интерфейс)
- [x] Прикрутить поиск | 1.0 | Поправить вёрстку списка квестов - - [x] Прикрутить загрузку реальных квестов из бд
- [x] Пофиксить Sort By (и да, у нас вроде русский интерфейс)
- [x] Прикрутить поиск | priority | поправить вёрстку списка квестов прикрутить загрузку реальных квестов из бд пофиксить sort by и да у нас вроде русский интерфейс прикрутить поиск | 1 |
188,142 | 6,773,240,762 | IssuesEvent | 2017-10-27 04:23:49 | jiwoochun/sailpointwp | https://api.github.com/repos/jiwoochun/sailpointwp | opened | Change all pages to have `default template` | Maintenance Priority: High | It was brought to my attention that some pages were created with different header templates. They should be all changed to `default-temlpate` | 1.0 | Change all pages to have `default template` - It was brought to my attention that some pages were created with different header templates. They should be all changed to `default-temlpate` | priority | change all pages to have default template it was brought to my attention that some pages were created with different header templates they should be all changed to default temlpate | 1 |
577,626 | 17,115,483,148 | IssuesEvent | 2021-07-11 08:56:17 | Systems-Learning-and-Development-Lab/MMM | https://api.github.com/repos/Systems-Learning-and-Development-Lab/MMM | closed | Pencil is stucked after alert | priority-high | After the alert of no properties something does not work properly. Do the following:
1. Add balls without properties
2. Click OK in the alert message
3. The pencil is left inside the window, **it should disappear**

4. Click button "Add balls", the balls are added immediatly without clicking the pencil, see the green balls outside the wall

@Ron-Teller
| 1.0 | Pencil is stucked after alert - After the alert of no properties something does not work properly. Do the following:
1. Add balls without properties
2. Click OK in the alert message
3. The pencil is left inside the window, **it should disappear**

4. Click button "Add balls", the balls are added immediatly without clicking the pencil, see the green balls outside the wall

@Ron-Teller
| priority | pencil is stucked after alert after the alert of no properties something does not work properly do the following add balls without properties click ok in the alert message the pencil is left inside the window it should disappear click button add balls the balls are added immediatly without clicking the pencil see the green balls outside the wall ron teller | 1 |
533,807 | 15,603,072,003 | IssuesEvent | 2021-03-19 01:08:03 | ArctosDB/arctos | https://api.github.com/repos/ArctosDB/arctos | closed | Feature Request - Add "barcode" to bulkload part attribute to make my parts "unique" so I can use this bulkloader | Component Loader Enhancement Priority-High | Issue Documentation is http://handbook.arctosdb.org/how_to/How-to-Use-Issues-in-Arctos.html
**Is your feature request related to a problem? Please describe.**
I need to update part attributes for records that have 30 of the same parts. Therefore, I cannot use the part bulkloader part attributes as is.
**Describe what you're trying to accomplish**
I want to update attributes for a lot of specimen parts at once.
**Describe the solution you'd like**
Add barcode to the bulkloader then my parts are not all the same.
**Describe alternatives you've considered**
Not entering the data.
**Additional context**
Add any other context or screenshots about the feature request here.
<img width="774" alt="Screen Shot 2021-03-05 at 12 53 07 PM" src="https://user-images.githubusercontent.com/16887896/110177891-1f6fbf80-7db2-11eb-9c0b-a0ab0d73f402.png">
**Priority**
Slightly above the black hole of despair.
| 1.0 | Feature Request - Add "barcode" to bulkload part attribute to make my parts "unique" so I can use this bulkloader - Issue Documentation is http://handbook.arctosdb.org/how_to/How-to-Use-Issues-in-Arctos.html
**Is your feature request related to a problem? Please describe.**
I need to update part attributes for records that have 30 of the same parts. Therefore, I cannot use the part bulkloader part attributes as is.
**Describe what you're trying to accomplish**
I want to update attributes for a lot of specimen parts at once.
**Describe the solution you'd like**
Add barcode to the bulkloader then my parts are not all the same.
**Describe alternatives you've considered**
Not entering the data.
**Additional context**
Add any other context or screenshots about the feature request here.
<img width="774" alt="Screen Shot 2021-03-05 at 12 53 07 PM" src="https://user-images.githubusercontent.com/16887896/110177891-1f6fbf80-7db2-11eb-9c0b-a0ab0d73f402.png">
**Priority**
Slightly above the black hole of despair.
| priority | feature request add barcode to bulkload part attribute to make my parts unique so i can use this bulkloader issue documentation is is your feature request related to a problem please describe i need to update part attributes for records that have of the same parts therefore i cannot use the part bulkloader part attributes as is describe what you re trying to accomplish i want to update attributes for a lot of specimen parts at once describe the solution you d like add barcode to the bulkloader then my parts are not all the same describe alternatives you ve considered not entering the data additional context add any other context or screenshots about the feature request here img width alt screen shot at pm src priority slightly above the black hole of despair | 1 |
664,338 | 22,266,349,478 | IssuesEvent | 2022-06-10 07:51:09 | opencrvs/opencrvs-core | https://api.github.com/repos/opencrvs/opencrvs-core | closed | Offline state for performance and teams | 👹Bug Priority: high | ### Description
- adds offline state for Performance and Team
### Acceptance criteria
GIVEN I am on the Performance page
WHEN I am offline
THEN [show the offline line state](https://www.figma.com/file/HplYu3vGJjAz3u1AmNJ50C/OpenCRVS-Design-Specifications?node-id=6040%3A111008)
### Design
### Dev-tasks
- [x] On the performance pages if you are offline, show the No connection text and icon
- [x] On the Team pages we need to disable links if offline, and show a graceful error such as this icon and no connection however you see fit. No need to align to any design
| 1.0 | Offline state for performance and teams - ### Description
- adds offline state for Performance and Team
### Acceptance criteria
GIVEN I am on the Performance page
WHEN I am offline
THEN [show the offline line state](https://www.figma.com/file/HplYu3vGJjAz3u1AmNJ50C/OpenCRVS-Design-Specifications?node-id=6040%3A111008)
### Design
### Dev-tasks
- [x] On the performance pages if you are offline, show the No connection text and icon
- [x] On the Team pages we need to disable links if offline, and show a graceful error such as this icon and no connection however you see fit. No need to align to any design
| priority | offline state for performance and teams description adds offline state for performance and team acceptance criteria given i am on the performance page when i am offline then design dev tasks on the performance pages if you are offline show the no connection text and icon on the team pages we need to disable links if offline and show a graceful error such as this icon and no connection however you see fit no need to align to any design | 1 |
304,297 | 9,330,273,118 | IssuesEvent | 2019-03-28 06:17:23 | openbmc/openbmc-test-automation | https://api.github.com/repos/openbmc/openbmc-test-automation | closed | Redfish: Hostname tests | Priority High | Test and automate
1. hostname verification
2. new hostname configuration on bmc
Code fixed by Dev https://github.com/openbmc/bmcweb/issues/44 | 1.0 | Redfish: Hostname tests - Test and automate
1. hostname verification
2. new hostname configuration on bmc
Code fixed by Dev https://github.com/openbmc/bmcweb/issues/44 | priority | redfish hostname tests test and automate hostname verification new hostname configuration on bmc code fixed by dev | 1 |
342,908 | 10,323,326,749 | IssuesEvent | 2019-08-31 20:21:24 | OpenApoc/OpenApoc | https://api.github.com/repos/OpenApoc/OpenApoc | closed | Use-after-free in Teleport mission causing possible crash | !BUG! HIGH PRIORITY | When starting a teleport mission, it clears all that unit's missions, causing them to be deleted - including the current TeleportMission, so any accesses into that mission become invalid.
Noticed using the debug 'middle click' teleport mode in a skirmish battle, but looks like it affects all TeleportMissions.
Output from Address Sanitizer:
W void OpenApoc::BattleView::orderTeleport(Vec3<int>, bool) Using teleporter cheat! W void OpenApoc::BattleUnitMission::start(OpenApoc::GameState &, OpenApoc::BattleUnit &) Unit BATTLEUNIT_10 mission "Teleport to {37,5
2,1}" starting =================================================================
==37381==ERROR: AddressSanitizer: heap-use-after-free on address 0x61000022ef44 at pc 0x0001031f042e bp 0x7ffeecf59bf0 sp 0x7ffeecf59be
8 READ of size 1 at 0x61000022ef44 thread T0
#0 0x1031f042d in OpenApoc::BattleUnit::addMission(OpenApoc::GameState&, OpenApoc::BattleUnitMission*, bool) battleunit.cpp:5835
#1 0x1031f20f4 in OpenApoc::BattleUnit::setMission(OpenApoc::GameState&, OpenApoc::BattleUnitMission*) battleunit.cpp:5767 #2 0x10416699f in OpenApoc::BattleView::orderTeleport(glm::vec<3, int, (glm::qualifier)0>, bool) battleview.cpp:2708
#3 0x104172256 in OpenApoc::BattleView::handleMouseDown(OpenApoc::Event*) battleview.cpp:3823 #4 0x104168ed4 in OpenApoc::BattleView::eventOccurred(OpenApoc::Event*) battleview.cpp:2887
#5 0x102d80ad3 in OpenApoc::Framework::processEvents() framework.cpp:807 #6 0x102d7e5bf in OpenApoc::Framework::run(std::__1::shared_ptr<OpenApoc::Stage>) framework.cpp:655
#7 0x102ca70e9 in main main.cpp:26 #8 0x7fff6000a3d4 in start (libdyld.dylib:x86_64+0x163d4)
0x61000022ef44 is located 4 bytes inside of 192-byte region [0x61000022ef40,0x61000022f000)
freed by thread T0 here: #0 0x10918f192 in wrap__ZdlPv (libclang_rt.asan_osx_dynamic.dylib:x86_64h+0x69192)
#1 0x104188906 in std::__1::__list_imp<std::__1::unique_ptr<OpenApoc::BattleUnitMission, std::__1::default_delete<OpenApoc::BattleUnitMission> >, std::__1::allocator<std::__1::unique_ptr<OpenApoc::BattleUnitMission, std::__1::default_delete<OpenApoc::BattleUnitMissi
on> > > >::clear() list:756
#2 0x103254d13 in OpenApoc::BattleUnitMission::start(OpenApoc::GameState&, OpenApoc::BattleUnit&) battleunitmission.cpp:1808
#3 0x1031f02e1 in OpenApoc::BattleUnit::addMission(OpenApoc::GameState&, OpenApoc::BattleUnitMission*, bool) battleunit.cpp
#4 0x1031f20f4 in OpenApoc::BattleUnit::setMission(OpenApoc::GameState&, OpenApoc::BattleUnitMission*) battleunit.cpp:5767
#5 0x10416699f in OpenApoc::BattleView::orderTeleport(glm::vec<3, int, (glm::qualifier)0>, bool) battleview.cpp:2708
#6 0x104172256 in OpenApoc::BattleView::handleMouseDown(OpenApoc::Event*) battleview.cpp:3823
#7 0x104168ed4 in OpenApoc::BattleView::eventOccurred(OpenApoc::Event*) battleview.cpp:2887
#8 0x102d80ad3 in OpenApoc::Framework::processEvents() framework.cpp:807
#9 0x102d7e5bf in OpenApoc::Framework::run(std::__1::shared_ptr<OpenApoc::Stage>) framework.cpp:655
#10 0x102ca70e9 in main main.cpp:26
#11 0x7fff6000a3d4 in start (libdyld.dylib:x86_64+0x163d4)
previously allocated by thread T0 here:
#0 0x10918eb92 in wrap__Znwm (libclang_rt.asan_osx_dynamic.dylib:x86_64h+0x68b92)
#1 0x10324bb30 in OpenApoc::BattleUnitMission::teleport(OpenApoc::BattleUnit&, std::__1::shared_ptr<OpenApoc::AEquipment>, glm::vec
<3, int, (glm::qualifier)0>) battleunitmission.cpp:1283
#2 0x10416696a in OpenApoc::BattleView::orderTeleport(glm::vec<3, int, (glm::qualifier)0>, bool) battleview.cpp:2707
#3 0x104172256 in OpenApoc::BattleView::handleMouseDown(OpenApoc::Event*) battleview.cpp:3823
#4 0x104168ed4 in OpenApoc::BattleView::eventOccurred(OpenApoc::Event*) battleview.cpp:2887
#5 0x102d80ad3 in OpenApoc::Framework::processEvents() framework.cpp:807
#6 0x102d7e5bf in OpenApoc::Framework::run(std::__1::shared_ptr<OpenApoc::Stage>) framework.cpp:655
#7 0x102ca70e9 in main main.cpp:26
#8 0x7fff6000a3d4 in start (libdyld.dylib:x86_64+0x163d4)
SUMMARY: AddressSanitizer: heap-use-after-free battleunit.cpp:5835 in OpenApoc::BattleUnit::addMission(OpenApoc::GameState&, OpenApoc::
BattleUnitMission*, bool) | 1.0 | Use-after-free in Teleport mission causing possible crash - When starting a teleport mission, it clears all that unit's missions, causing them to be deleted - including the current TeleportMission, so any accesses into that mission become invalid.
Noticed using the debug 'middle click' teleport mode in a skirmish battle, but looks like it affects all TeleportMissions.
Output from Address Sanitizer:
W void OpenApoc::BattleView::orderTeleport(Vec3<int>, bool) Using teleporter cheat! W void OpenApoc::BattleUnitMission::start(OpenApoc::GameState &, OpenApoc::BattleUnit &) Unit BATTLEUNIT_10 mission "Teleport to {37,5
2,1}" starting =================================================================
==37381==ERROR: AddressSanitizer: heap-use-after-free on address 0x61000022ef44 at pc 0x0001031f042e bp 0x7ffeecf59bf0 sp 0x7ffeecf59be
8 READ of size 1 at 0x61000022ef44 thread T0
#0 0x1031f042d in OpenApoc::BattleUnit::addMission(OpenApoc::GameState&, OpenApoc::BattleUnitMission*, bool) battleunit.cpp:5835
#1 0x1031f20f4 in OpenApoc::BattleUnit::setMission(OpenApoc::GameState&, OpenApoc::BattleUnitMission*) battleunit.cpp:5767 #2 0x10416699f in OpenApoc::BattleView::orderTeleport(glm::vec<3, int, (glm::qualifier)0>, bool) battleview.cpp:2708
#3 0x104172256 in OpenApoc::BattleView::handleMouseDown(OpenApoc::Event*) battleview.cpp:3823 #4 0x104168ed4 in OpenApoc::BattleView::eventOccurred(OpenApoc::Event*) battleview.cpp:2887
#5 0x102d80ad3 in OpenApoc::Framework::processEvents() framework.cpp:807 #6 0x102d7e5bf in OpenApoc::Framework::run(std::__1::shared_ptr<OpenApoc::Stage>) framework.cpp:655
#7 0x102ca70e9 in main main.cpp:26 #8 0x7fff6000a3d4 in start (libdyld.dylib:x86_64+0x163d4)
0x61000022ef44 is located 4 bytes inside of 192-byte region [0x61000022ef40,0x61000022f000)
freed by thread T0 here: #0 0x10918f192 in wrap__ZdlPv (libclang_rt.asan_osx_dynamic.dylib:x86_64h+0x69192)
#1 0x104188906 in std::__1::__list_imp<std::__1::unique_ptr<OpenApoc::BattleUnitMission, std::__1::default_delete<OpenApoc::BattleUnitMission> >, std::__1::allocator<std::__1::unique_ptr<OpenApoc::BattleUnitMission, std::__1::default_delete<OpenApoc::BattleUnitMissi
on> > > >::clear() list:756
#2 0x103254d13 in OpenApoc::BattleUnitMission::start(OpenApoc::GameState&, OpenApoc::BattleUnit&) battleunitmission.cpp:1808
#3 0x1031f02e1 in OpenApoc::BattleUnit::addMission(OpenApoc::GameState&, OpenApoc::BattleUnitMission*, bool) battleunit.cpp
#4 0x1031f20f4 in OpenApoc::BattleUnit::setMission(OpenApoc::GameState&, OpenApoc::BattleUnitMission*) battleunit.cpp:5767
#5 0x10416699f in OpenApoc::BattleView::orderTeleport(glm::vec<3, int, (glm::qualifier)0>, bool) battleview.cpp:2708
#6 0x104172256 in OpenApoc::BattleView::handleMouseDown(OpenApoc::Event*) battleview.cpp:3823
#7 0x104168ed4 in OpenApoc::BattleView::eventOccurred(OpenApoc::Event*) battleview.cpp:2887
#8 0x102d80ad3 in OpenApoc::Framework::processEvents() framework.cpp:807
#9 0x102d7e5bf in OpenApoc::Framework::run(std::__1::shared_ptr<OpenApoc::Stage>) framework.cpp:655
#10 0x102ca70e9 in main main.cpp:26
#11 0x7fff6000a3d4 in start (libdyld.dylib:x86_64+0x163d4)
previously allocated by thread T0 here:
#0 0x10918eb92 in wrap__Znwm (libclang_rt.asan_osx_dynamic.dylib:x86_64h+0x68b92)
#1 0x10324bb30 in OpenApoc::BattleUnitMission::teleport(OpenApoc::BattleUnit&, std::__1::shared_ptr<OpenApoc::AEquipment>, glm::vec
<3, int, (glm::qualifier)0>) battleunitmission.cpp:1283
#2 0x10416696a in OpenApoc::BattleView::orderTeleport(glm::vec<3, int, (glm::qualifier)0>, bool) battleview.cpp:2707
#3 0x104172256 in OpenApoc::BattleView::handleMouseDown(OpenApoc::Event*) battleview.cpp:3823
#4 0x104168ed4 in OpenApoc::BattleView::eventOccurred(OpenApoc::Event*) battleview.cpp:2887
#5 0x102d80ad3 in OpenApoc::Framework::processEvents() framework.cpp:807
#6 0x102d7e5bf in OpenApoc::Framework::run(std::__1::shared_ptr<OpenApoc::Stage>) framework.cpp:655
#7 0x102ca70e9 in main main.cpp:26
#8 0x7fff6000a3d4 in start (libdyld.dylib:x86_64+0x163d4)
SUMMARY: AddressSanitizer: heap-use-after-free battleunit.cpp:5835 in OpenApoc::BattleUnit::addMission(OpenApoc::GameState&, OpenApoc::
BattleUnitMission*, bool) | priority | use after free in teleport mission causing possible crash when starting a teleport mission it clears all that unit s missions causing them to be deleted including the current teleportmission so any accesses into that mission become invalid noticed using the debug middle click teleport mode in a skirmish battle but looks like it affects all teleportmissions output from address sanitizer w void openapoc battleview orderteleport bool using teleporter cheat w void openapoc battleunitmission start openapoc gamestate openapoc battleunit unit battleunit mission teleport to starting error addresssanitizer heap use after free on address at pc bp sp read of size at thread in openapoc battleunit addmission openapoc gamestate openapoc battleunitmission bool battleunit cpp in openapoc battleunit setmission openapoc gamestate openapoc battleunitmission battleunit cpp in openapoc battleview orderteleport glm vec bool battleview cpp in openapoc battleview handlemousedown openapoc event battleview cpp in openapoc battleview eventoccurred openapoc event battleview cpp in openapoc framework processevents framework cpp in openapoc framework run std shared ptr framework cpp in main main cpp in start libdyld dylib is located bytes inside of byte region freed by thread here in wrap zdlpv libclang rt asan osx dynamic dylib in std list imp std allocator std unique ptr openapoc battleunitmission std default delete openapoc battleunitmissi on clear list in openapoc battleunitmission start openapoc gamestate openapoc battleunit battleunitmission cpp in openapoc battleunit addmission openapoc gamestate openapoc battleunitmission bool battleunit cpp in openapoc battleunit setmission openapoc gamestate openapoc battleunitmission battleunit cpp in openapoc battleview orderteleport glm vec bool battleview cpp in openapoc battleview handlemousedown openapoc event battleview cpp in openapoc battleview eventoccurred openapoc event battleview cpp in openapoc framework processevents framework cpp in openapoc framework run std shared ptr framework cpp in main main cpp in start libdyld dylib previously allocated by thread here in wrap znwm libclang rt asan osx dynamic dylib in openapoc battleunitmission teleport openapoc battleunit std shared ptr glm vec battleunitmission cpp in openapoc battleview orderteleport glm vec bool battleview cpp in openapoc battleview handlemousedown openapoc event battleview cpp in openapoc battleview eventoccurred openapoc event battleview cpp in openapoc framework processevents framework cpp in openapoc framework run std shared ptr framework cpp in main main cpp in start libdyld dylib summary addresssanitizer heap use after free battleunit cpp in openapoc battleunit addmission openapoc gamestate openapoc battleunitmission bool | 1 |
112,485 | 4,533,360,535 | IssuesEvent | 2016-09-08 11:17:57 | bedita/bedita | https://api.github.com/repos/bedita/bedita | closed | [CTI] delete fails because of referential integrity | Priority - High Status - PR Topic - Core Type - Bug | Deleting an object fails because `ExtensionOf` association deletes first the ancestor (objects table) that delete all children table by referential integrity. The ORM then tries to delete a row on children that not exists anymore and throws an error.
Example:
```php
$profiles = TableRegistry::get('Profiles');
$profile = $profiles->get(1);
$profiles->delete($profile);
```
we need to implement another strategy. | 1.0 | [CTI] delete fails because of referential integrity - Deleting an object fails because `ExtensionOf` association deletes first the ancestor (objects table) that delete all children table by referential integrity. The ORM then tries to delete a row on children that not exists anymore and throws an error.
Example:
```php
$profiles = TableRegistry::get('Profiles');
$profile = $profiles->get(1);
$profiles->delete($profile);
```
we need to implement another strategy. | priority | delete fails because of referential integrity deleting an object fails because extensionof association deletes first the ancestor objects table that delete all children table by referential integrity the orm then tries to delete a row on children that not exists anymore and throws an error example php profiles tableregistry get profiles profile profiles get profiles delete profile we need to implement another strategy | 1 |
116,329 | 4,700,243,204 | IssuesEvent | 2016-10-12 17:58:47 | F5Networks/f5-openstack-agent | https://api.github.com/repos/F5Networks/f5-openstack-agent | closed | Loadbalancer comes up ACTIVE, OFFLINE after creation | bug Priority Level 2 (High) Severity 2 (High) | * Title:
Loadbalancer comes up OFFLINE after creation, the expected status is ONLINE.
#### OpenStack Release
Liberty
#### Description
I ran into this problem during running Tempest scenario tests. It tries to create a loadbalancer, listener and pool member. It never get passed loadbalancer creation, since it expects ONLINE status for loadbalancer.
#### Agent Version
Liberty head with the disconnected feature present. | 1.0 | Loadbalancer comes up ACTIVE, OFFLINE after creation - * Title:
Loadbalancer comes up OFFLINE after creation, the expected status is ONLINE.
#### OpenStack Release
Liberty
#### Description
I ran into this problem during running Tempest scenario tests. It tries to create a loadbalancer, listener and pool member. It never get passed loadbalancer creation, since it expects ONLINE status for loadbalancer.
#### Agent Version
Liberty head with the disconnected feature present. | priority | loadbalancer comes up active offline after creation title loadbalancer comes up offline after creation the expected status is online openstack release liberty description i ran into this problem during running tempest scenario tests it tries to create a loadbalancer listener and pool member it never get passed loadbalancer creation since it expects online status for loadbalancer agent version liberty head with the disconnected feature present | 1 |
709,762 | 24,390,325,790 | IssuesEvent | 2022-10-04 14:47:08 | owncloud/web | https://api.github.com/repos/owncloud/web | closed | Translation for "copied Quicklink"-notification is not getting applied | Type:Bug Priority:p2-high | Ui is in German, but the notification is english:

String is translated:
 | 1.0 | Translation for "copied Quicklink"-notification is not getting applied - Ui is in German, but the notification is english:

String is translated:
 | priority | translation for copied quicklink notification is not getting applied ui is in german but the notification is english string is translated | 1 |
476,209 | 13,735,357,440 | IssuesEvent | 2020-10-05 10:02:20 | Lgreenbunny/PokerusPacer | https://api.github.com/repos/Lgreenbunny/PokerusPacer | closed | Update css representation | High priority enhancement | Update it for every successful loop of the program for plain massclicks or pokerus clicking | 1.0 | Update css representation - Update it for every successful loop of the program for plain massclicks or pokerus clicking | priority | update css representation update it for every successful loop of the program for plain massclicks or pokerus clicking | 1 |
720,583 | 24,797,761,995 | IssuesEvent | 2022-10-24 18:49:40 | planetary-social/scuttlego | https://api.github.com/repos/planetary-social/scuttlego | closed | Add support for rooms | enhancement priority/high | Rooms need to supported before using scuttlego in Planetary as we just added basic room support to the app.
The scope of the required work needs to be further investigated and documented.
Alias management:
- [x] connect to a room and list aliases using an RPC command
- [x] connect to a room and revoke an alias using an RPC command
- [x] connect to a room and register an alias using an RPC command
- [ ] return a predefined error when an alias is already taken when registering it (requires changes to the RPC layer, related to #62)
- [ ] test commands and queries, confirm how `EndOrErr` is set for async requests
Connection management:
- [ ] accept `tunnel.connect`
- [x] when connecting to the room we must be able to dial people using that room
- [ ] <s>persist information about rooms advertised on feeds</s>
- [ ] stay connected to our own rooms so that people can talk to us?
- [ ] <s>use rooms in connection management (randomly dial known rooms and talk to the online peers should be fine for now)</s> | 1.0 | Add support for rooms - Rooms need to supported before using scuttlego in Planetary as we just added basic room support to the app.
The scope of the required work needs to be further investigated and documented.
Alias management:
- [x] connect to a room and list aliases using an RPC command
- [x] connect to a room and revoke an alias using an RPC command
- [x] connect to a room and register an alias using an RPC command
- [ ] return a predefined error when an alias is already taken when registering it (requires changes to the RPC layer, related to #62)
- [ ] test commands and queries, confirm how `EndOrErr` is set for async requests
Connection management:
- [ ] accept `tunnel.connect`
- [x] when connecting to the room we must be able to dial people using that room
- [ ] <s>persist information about rooms advertised on feeds</s>
- [ ] stay connected to our own rooms so that people can talk to us?
- [ ] <s>use rooms in connection management (randomly dial known rooms and talk to the online peers should be fine for now)</s> | priority | add support for rooms rooms need to supported before using scuttlego in planetary as we just added basic room support to the app the scope of the required work needs to be further investigated and documented alias management connect to a room and list aliases using an rpc command connect to a room and revoke an alias using an rpc command connect to a room and register an alias using an rpc command return a predefined error when an alias is already taken when registering it requires changes to the rpc layer related to test commands and queries confirm how endorerr is set for async requests connection management accept tunnel connect when connecting to the room we must be able to dial people using that room persist information about rooms advertised on feeds stay connected to our own rooms so that people can talk to us use rooms in connection management randomly dial known rooms and talk to the online peers should be fine for now | 1 |
397,858 | 11,734,014,799 | IssuesEvent | 2020-03-11 08:30:55 | ckiplab/ckipnlp | https://api.github.com/repos/ckiplab/ckipnlp | closed | Segmentation fault | Priority: High Status: 1-Assigned Type: Bug | `Segmentation fault (core dumped)` occurs while `CkipParser(do_ws=False)` is called because inputs of parser contain halfwidth symbols ex.-
To Reproduce:
```
import ckipnlp.parser
ps = ckipnlp.parser.CkipParser(do_ws=False)
ps("103-105(Nd)")
```
| 1.0 | Segmentation fault - `Segmentation fault (core dumped)` occurs while `CkipParser(do_ws=False)` is called because inputs of parser contain halfwidth symbols ex.-
To Reproduce:
```
import ckipnlp.parser
ps = ckipnlp.parser.CkipParser(do_ws=False)
ps("103-105(Nd)")
```
| priority | segmentation fault segmentation fault core dumped occurs while ckipparser do ws false is called because inputs of parser contain halfwidth symbols ex to reproduce import ckipnlp parser ps ckipnlp parser ckipparser do ws false ps nd | 1 |
64,625 | 3,213,515,506 | IssuesEvent | 2015-10-06 20:15:08 | NLthijs48/AreaShop | https://api.github.com/repos/NLthijs48/AreaShop | closed | Using landlords in combination with refunds is exploitable | Bug High priority | Currently AreaShop will give back money when unrenting/selling a region, but it does not take this money away from the landlord if there is one. This causes that using these two settings combined will make it easy to exploit.
**Implementation:**
If the landlord has enough money, then simply take it from the landlord and give it back to the player. If the landlord does not have enough money, then say to the player that he will not get refunded the full amount (and maybe even 0), and let the player repeat the command (or sign click) to confirm that he wants to unrent/sell anyway. In that situation AreaShop would take as much as it can from the landlord and deposit it to the player.
Check if allowing negative balances in an economy plugin would let this work correctly (use Vault methods to check whether a player has enough money instead of 'balance > price').
*Found by minoneer* | 1.0 | Using landlords in combination with refunds is exploitable - Currently AreaShop will give back money when unrenting/selling a region, but it does not take this money away from the landlord if there is one. This causes that using these two settings combined will make it easy to exploit.
**Implementation:**
If the landlord has enough money, then simply take it from the landlord and give it back to the player. If the landlord does not have enough money, then say to the player that he will not get refunded the full amount (and maybe even 0), and let the player repeat the command (or sign click) to confirm that he wants to unrent/sell anyway. In that situation AreaShop would take as much as it can from the landlord and deposit it to the player.
Check if allowing negative balances in an economy plugin would let this work correctly (use Vault methods to check whether a player has enough money instead of 'balance > price').
*Found by minoneer* | priority | using landlords in combination with refunds is exploitable currently areashop will give back money when unrenting selling a region but it does not take this money away from the landlord if there is one this causes that using these two settings combined will make it easy to exploit implementation if the landlord has enough money then simply take it from the landlord and give it back to the player if the landlord does not have enough money then say to the player that he will not get refunded the full amount and maybe even and let the player repeat the command or sign click to confirm that he wants to unrent sell anyway in that situation areashop would take as much as it can from the landlord and deposit it to the player check if allowing negative balances in an economy plugin would let this work correctly use vault methods to check whether a player has enough money instead of balance price found by minoneer | 1 |
303,828 | 9,311,048,595 | IssuesEvent | 2019-03-25 20:22:10 | cuappdev/ithaca-transit-backend | https://api.github.com/repos/cuappdev/ithaca-transit-backend | opened | Don't show delayed routes if less than 2 minutes | Priority: High | The live tracking only gets updated every 30 seconds and it's finicky sometimes, and people miss the bus because they expect it to be delayed but it's not. | 1.0 | Don't show delayed routes if less than 2 minutes - The live tracking only gets updated every 30 seconds and it's finicky sometimes, and people miss the bus because they expect it to be delayed but it's not. | priority | don t show delayed routes if less than minutes the live tracking only gets updated every seconds and it s finicky sometimes and people miss the bus because they expect it to be delayed but it s not | 1 |
812,828 | 30,385,506,369 | IssuesEvent | 2023-07-13 00:04:00 | susanssky/careless-whisper | https://api.github.com/repos/susanssky/careless-whisper | closed | [be + fe] Delete Transcription | priority: high | User can delete the transcription and related post by pressing the delete button.
The user then should direct to dashboard after deleting the transaction.
They should be deleted both from database and dashboard.
| 1.0 | [be + fe] Delete Transcription - User can delete the transcription and related post by pressing the delete button.
The user then should direct to dashboard after deleting the transaction.
They should be deleted both from database and dashboard.
| priority | delete transcription user can delete the transcription and related post by pressing the delete button the user then should direct to dashboard after deleting the transaction they should be deleted both from database and dashboard | 1 |
214,276 | 7,268,359,101 | IssuesEvent | 2018-02-20 09:49:57 | wso2/product-is | https://api.github.com/repos/wso2/product-is | opened | Explain why we should do cache configuration when Deploying and configuring JWT client-handler artifacts | Affected/5.5.0-Alpha Priority/High Type/Docs | Explain why we should do cache configuration when Deploying and configuring JWT client-handler artifacts in this doc [1]
[1] https://docs.wso2.com/display/IS550/Private+Key+JWT+Client+Authentication+for+OIDC
In step 5 it says,
Do the cache configuration in <IS_HOME>/repository/conf/identity/identity.xml as shown below: | 1.0 | Explain why we should do cache configuration when Deploying and configuring JWT client-handler artifacts - Explain why we should do cache configuration when Deploying and configuring JWT client-handler artifacts in this doc [1]
[1] https://docs.wso2.com/display/IS550/Private+Key+JWT+Client+Authentication+for+OIDC
In step 5 it says,
Do the cache configuration in <IS_HOME>/repository/conf/identity/identity.xml as shown below: | priority | explain why we should do cache configuration when deploying and configuring jwt client handler artifacts explain why we should do cache configuration when deploying and configuring jwt client handler artifacts in this doc in step it says do the cache configuration in repository conf identity identity xml as shown below | 1 |
342,705 | 10,320,816,829 | IssuesEvent | 2019-08-30 21:53:43 | LibreTexts/metalc | https://api.github.com/repos/LibreTexts/metalc | reopened | Install packages for Lindsay Poirier's course | high priority | See the install.R file here: https://github.com/lindsaypoirier/STS-101
If we can add her packages to the default environment, do that, else create a custom spawner for her course. | 1.0 | Install packages for Lindsay Poirier's course - See the install.R file here: https://github.com/lindsaypoirier/STS-101
If we can add her packages to the default environment, do that, else create a custom spawner for her course. | priority | install packages for lindsay poirier s course see the install r file here if we can add her packages to the default environment do that else create a custom spawner for her course | 1 |
391,115 | 11,569,466,253 | IssuesEvent | 2020-02-20 17:36:17 | ngageoint/hootenanny | https://api.github.com/repos/ngageoint/hootenanny | closed | "multilinestring relation not a route" error during road conflation | Category: Algorithms Priority: High Type: Bug | Have seen in the past and just brought to my attention again. Happens when trying to conflate roads in a relation or `type=route`. What is the actual cause for this error? Look into it.
`Internal Error: When matching sublines expected a multilinestring relation not a route. A non-multilinestring should never be found here. Please report this to https://github.com/ngageoint/hootenanny.`
`hoot conflate --info -C ReferenceConflation.conf -D writer.include.conflate.score.tags=false -D convert.bounding.box=11.249999998,8.58102121412,11.337890623,8.667920511654001 -D bounds.output.file=/home/vagrant/hoot/tmp/bounds.osm /home/vagrant/hoot/tmp/NOME_96b934.osm /home/vagrant/hoot/tmp/OSM_96b934.osm /home/vagrant/hoot/tmp/out.osm --write-bounds` | 1.0 | "multilinestring relation not a route" error during road conflation - Have seen in the past and just brought to my attention again. Happens when trying to conflate roads in a relation or `type=route`. What is the actual cause for this error? Look into it.
`Internal Error: When matching sublines expected a multilinestring relation not a route. A non-multilinestring should never be found here. Please report this to https://github.com/ngageoint/hootenanny.`
`hoot conflate --info -C ReferenceConflation.conf -D writer.include.conflate.score.tags=false -D convert.bounding.box=11.249999998,8.58102121412,11.337890623,8.667920511654001 -D bounds.output.file=/home/vagrant/hoot/tmp/bounds.osm /home/vagrant/hoot/tmp/NOME_96b934.osm /home/vagrant/hoot/tmp/OSM_96b934.osm /home/vagrant/hoot/tmp/out.osm --write-bounds` | priority | multilinestring relation not a route error during road conflation have seen in the past and just brought to my attention again happens when trying to conflate roads in a relation or type route what is the actual cause for this error look into it internal error when matching sublines expected a multilinestring relation not a route a non multilinestring should never be found here please report this to hoot conflate info c referenceconflation conf d writer include conflate score tags false d convert bounding box d bounds output file home vagrant hoot tmp bounds osm home vagrant hoot tmp nome osm home vagrant hoot tmp osm osm home vagrant hoot tmp out osm write bounds | 1 |
532,254 | 15,537,155,478 | IssuesEvent | 2021-03-15 00:24:37 | Couchers-org/couchers | https://api.github.com/repos/Couchers-org/couchers | closed | Fix maps | bug frontend priority: high | MapPage is broken. I think this is a minor styles-related issue.
There is a larger issue with `EditUserLocationMap` - it reloads when typing and flyTo when selection a location doesn't work well. | 1.0 | Fix maps - MapPage is broken. I think this is a minor styles-related issue.
There is a larger issue with `EditUserLocationMap` - it reloads when typing and flyTo when selection a location doesn't work well. | priority | fix maps mappage is broken i think this is a minor styles related issue there is a larger issue with edituserlocationmap it reloads when typing and flyto when selection a location doesn t work well | 1 |
357,512 | 10,607,793,303 | IssuesEvent | 2019-10-11 05:25:12 | AY1920S1-CS2103-T16-3/main | https://api.github.com/repos/AY1920S1-CS2103-T16-3/main | closed | Change name field to file path in Meme | priority.High type.Task | Change the name field to url in Meme object and the logic in other classes accordingly.
- [x] Create ImagePath class
- [x] Build test for path
- [x] Modify Tag class to fit path
- [x] Replace name with path | 1.0 | Change name field to file path in Meme - Change the name field to url in Meme object and the logic in other classes accordingly.
- [x] Create ImagePath class
- [x] Build test for path
- [x] Modify Tag class to fit path
- [x] Replace name with path | priority | change name field to file path in meme change the name field to url in meme object and the logic in other classes accordingly create imagepath class build test for path modify tag class to fit path replace name with path | 1 |
173,009 | 6,518,851,582 | IssuesEvent | 2017-08-28 09:55:54 | Scifabric/pybossa | https://api.github.com/repos/Scifabric/pybossa | closed | Add an option for re-running all webhooks with one click | priority.high | Sometimes the statistics of a project will vary a bit, so you will need to re-run all the webhooks. Having a button that enqueues all of them will be a nice saving solution. | 1.0 | Add an option for re-running all webhooks with one click - Sometimes the statistics of a project will vary a bit, so you will need to re-run all the webhooks. Having a button that enqueues all of them will be a nice saving solution. | priority | add an option for re running all webhooks with one click sometimes the statistics of a project will vary a bit so you will need to re run all the webhooks having a button that enqueues all of them will be a nice saving solution | 1 |
520,238 | 15,082,139,970 | IssuesEvent | 2021-02-05 14:11:22 | OpenSRP/opensrp-client-reveal | https://api.github.com/repos/OpenSRP/opensrp-client-reveal | closed | Test Upgrade Process from 2.4.2 to 2.4.3 | Android Client Priority: High | We need to test the upgrade process from 2.4.2 to 2.4.3 to ensure the app upgrades appropriately without needing to clear the cache. | 1.0 | Test Upgrade Process from 2.4.2 to 2.4.3 - We need to test the upgrade process from 2.4.2 to 2.4.3 to ensure the app upgrades appropriately without needing to clear the cache. | priority | test upgrade process from to we need to test the upgrade process from to to ensure the app upgrades appropriately without needing to clear the cache | 1 |
365,142 | 10,776,109,239 | IssuesEvent | 2019-11-03 18:37:12 | maxwelfcoelho/todo | https://api.github.com/repos/maxwelfcoelho/todo | closed | Feature: save todo items locally | priority: high type: feature request | Today I'm losing my items every time a close my browser. It would be really really great to keep them saved in the browser. It would transform this project from just a silly study project into something usable. | 1.0 | Feature: save todo items locally - Today I'm losing my items every time a close my browser. It would be really really great to keep them saved in the browser. It would transform this project from just a silly study project into something usable. | priority | feature save todo items locally today i m losing my items every time a close my browser it would be really really great to keep them saved in the browser it would transform this project from just a silly study project into something usable | 1 |
315,640 | 9,630,124,862 | IssuesEvent | 2019-05-15 11:16:33 | ubtue/tuefind | https://api.github.com/repos/ubtue/tuefind | opened | Abonnieren-button fehlt in Volltitelanzeige | System: RelBib high priority | 
Bei Aufruf eines Zeitschriftentitels auf ptah fehlt oben der Button "Abonnieren" | 1.0 | Abonnieren-button fehlt in Volltitelanzeige - 
Bei Aufruf eines Zeitschriftentitels auf ptah fehlt oben der Button "Abonnieren" | priority | abonnieren button fehlt in volltitelanzeige bei aufruf eines zeitschriftentitels auf ptah fehlt oben der button abonnieren | 1 |
763,113 | 26,745,744,426 | IssuesEvent | 2023-01-30 15:52:51 | lorenzwalthert/precommit | https://api.github.com/repos/lorenzwalthert/precommit | closed | Can additional dependencies include private github repositories? | Complexity: High Priority: Medium Status: Unassigned Type: Enhancement | Hello developers,
is pre-commit able to fetch private github repos as dependencies?
I am currently trying to setup the precommit config yaml for an R-package that depends on another private github repository R-package, but it seems it cannot find it - my guess is because it is internal and therefore (?) not exposed in the API?
In particular, https://api.github.com/repos/orgname/reponame cannot be retrieved and gives 404.
Are any workarounds possible here? Maybe it is something we can fix in our github settings? or provide tokens or so?
Thanks,
cheers
Daniel
| 1.0 | Can additional dependencies include private github repositories? - Hello developers,
is pre-commit able to fetch private github repos as dependencies?
I am currently trying to setup the precommit config yaml for an R-package that depends on another private github repository R-package, but it seems it cannot find it - my guess is because it is internal and therefore (?) not exposed in the API?
In particular, https://api.github.com/repos/orgname/reponame cannot be retrieved and gives 404.
Are any workarounds possible here? Maybe it is something we can fix in our github settings? or provide tokens or so?
Thanks,
cheers
Daniel
| priority | can additional dependencies include private github repositories hello developers is pre commit able to fetch private github repos as dependencies i am currently trying to setup the precommit config yaml for an r package that depends on another private github repository r package but it seems it cannot find it my guess is because it is internal and therefore not exposed in the api in particular cannot be retrieved and gives are any workarounds possible here maybe it is something we can fix in our github settings or provide tokens or so thanks cheers daniel | 1 |
806,373 | 29,813,667,617 | IssuesEvent | 2023-06-16 17:07:40 | DSpace/DSpace | https://api.github.com/repos/DSpace/DSpace | closed | Request a Copy sends same email regardless of accept or reject (in pre-7.6) | bug high priority help wanted | **Describe the bug**
May have been accidentally caused by #8833
The bug is simple. If you *reject* a request for copy, then the requestee is still sent the acceptance email (with no files attached). There should obviously be two separate email templates
**To Reproduce**
Steps to reproduce the behavior:
1. Use `main` code with #8833 installed & latest main of dspace-angular.
* It's easiest to test if you set `mail.server.disabled=true` in your local.cfg on the backend. This lets you see the full text of the mail in `dspace.log`
2. Submit a request for copy for a restricted item.
3. In the request email, click on the link to respond.
4. Reject the response. Notice that the email sent says "You request for copy....has been approved"
**Expected behavior**
It appears that the code in `RequestItemEmailNotifier` is always using the `request_item.granted` email template... and there's no corresponding `request_item.rejected` email template. This is obviously incorrect.
See code at https://github.com/DSpace/DSpace/blob/main/dspace-api/src/main/java/org/dspace/app/requestitem/RequestItemEmailNotifier.java#L178-L179
Ideally, there should be a check similar to:
```
String emailTemplateName = ri.isAccept_request() ? "request_item.granted" : "request_item.rejected"
```
Then we'd need to create a `request_item.rejected` email template
**Related work**
May have been caused by #8833
| 1.0 | Request a Copy sends same email regardless of accept or reject (in pre-7.6) - **Describe the bug**
May have been accidentally caused by #8833
The bug is simple. If you *reject* a request for copy, then the requestee is still sent the acceptance email (with no files attached). There should obviously be two separate email templates
**To Reproduce**
Steps to reproduce the behavior:
1. Use `main` code with #8833 installed & latest main of dspace-angular.
* It's easiest to test if you set `mail.server.disabled=true` in your local.cfg on the backend. This lets you see the full text of the mail in `dspace.log`
2. Submit a request for copy for a restricted item.
3. In the request email, click on the link to respond.
4. Reject the response. Notice that the email sent says "You request for copy....has been approved"
**Expected behavior**
It appears that the code in `RequestItemEmailNotifier` is always using the `request_item.granted` email template... and there's no corresponding `request_item.rejected` email template. This is obviously incorrect.
See code at https://github.com/DSpace/DSpace/blob/main/dspace-api/src/main/java/org/dspace/app/requestitem/RequestItemEmailNotifier.java#L178-L179
Ideally, there should be a check similar to:
```
String emailTemplateName = ri.isAccept_request() ? "request_item.granted" : "request_item.rejected"
```
Then we'd need to create a `request_item.rejected` email template
**Related work**
May have been caused by #8833
| priority | request a copy sends same email regardless of accept or reject in pre describe the bug may have been accidentally caused by the bug is simple if you reject a request for copy then the requestee is still sent the acceptance email with no files attached there should obviously be two separate email templates to reproduce steps to reproduce the behavior use main code with installed latest main of dspace angular it s easiest to test if you set mail server disabled true in your local cfg on the backend this lets you see the full text of the mail in dspace log submit a request for copy for a restricted item in the request email click on the link to respond reject the response notice that the email sent says you request for copy has been approved expected behavior it appears that the code in requestitememailnotifier is always using the request item granted email template and there s no corresponding request item rejected email template this is obviously incorrect see code at ideally there should be a check similar to string emailtemplatename ri isaccept request request item granted request item rejected then we d need to create a request item rejected email template related work may have been caused by | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.