Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1
value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3
values | title stringlengths 1 957 | labels stringlengths 4 795 | body stringlengths 1 259k | index stringclasses 12
values | text_combine stringlengths 96 259k | label stringclasses 2
values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
605,031 | 18,723,412,558 | IssuesEvent | 2021-11-03 14:08:56 | ChainSafe/chainbridge-ui | https://api.github.com/repos/ChainSafe/chainbridge-ui | closed | Transaction dedicated detailed view for explorer UI | explorer Type: Feature Priority: P2 Medium | Create the transaction detail view page that currently can only be accessible from explorer/list page.
## Implementation details
The proposed routing is `explorer/list/<transaction id>`
| 1.0 | Transaction dedicated detailed view for explorer UI - Create the transaction detail view page that currently can only be accessible from explorer/list page.
## Implementation details
The proposed routing is `explorer/list/<transaction id>`
| priority | transaction dedicated detailed view for explorer ui create the transaction detail view page that currently can only be accessible from explorer list page implementation details the proposed routing is explorer list | 1 |
302,683 | 9,285,355,248 | IssuesEvent | 2019-03-21 06:44:32 | richelbilderbeek/pirouette | https://api.github.com/repos/richelbilderbeek/pirouette | closed | to_twin_filename fails on filenames with two dots | medium priority | BEAST2 uses filenames with two dots in it, e.g. `my.xml.state`. The `xml` indicates the format is XML, the `state` indicates it is a BEAST2 state. Both `xml` and `state` should thus remain the same.
Converting this filename to its twin should thus result in `my_twin.xml.state`.
Instead, this is converted to the incorrect `my.xml_twin.state`.
I've added a test for this:
```r
test_that("use on filesnames with two dots", {
skip("#231)
created <- to_twin_filename("example_3_beast2_output.xml.state")
expected <- "example_3_beast2_output_twin.xml.state"
expect_equal(expected, created)
})
``` | 1.0 | to_twin_filename fails on filenames with two dots - BEAST2 uses filenames with two dots in it, e.g. `my.xml.state`. The `xml` indicates the format is XML, the `state` indicates it is a BEAST2 state. Both `xml` and `state` should thus remain the same.
Converting this filename to its twin should thus result in `my_twin.xml.state`.
Instead, this is converted to the incorrect `my.xml_twin.state`.
I've added a test for this:
```r
test_that("use on filesnames with two dots", {
skip("#231)
created <- to_twin_filename("example_3_beast2_output.xml.state")
expected <- "example_3_beast2_output_twin.xml.state"
expect_equal(expected, created)
})
``` | priority | to twin filename fails on filenames with two dots uses filenames with two dots in it e g my xml state the xml indicates the format is xml the state indicates it is a state both xml and state should thus remain the same converting this filename to its twin should thus result in my twin xml state instead this is converted to the incorrect my xml twin state i ve added a test for this r test that use on filesnames with two dots skip created to twin filename example output xml state expected example output twin xml state expect equal expected created | 1 |
556,775 | 16,490,871,355 | IssuesEvent | 2021-05-25 03:29:53 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | Bluetooth: deadlock when canceling db_hash.work from settings commit handler | area: Bluetooth area: Bluetooth Host bug priority: medium | **Describe the bug**
There is a deadlock when cancelling `db_hash.work`:
```
/* Stop work and generate the hash */
(void)k_work_cancel_delayable_sync(&db_hash.work, &db_hash.sync);
```
from `db_hash_commit`. `db_hash_commit` is called with `settings_lock` mutex held and cancelling `db_hash.work` will never finish, as `settings_save_one("bt/hash", ...)` is waiting on `settings_lock` mutex as well and never continues.
This can be workarounded by adding some arbitrary sleep in application code.
**To Reproduce**
I was not successful with reproducing it with upstream code/sample. I have downstream project, which triggers this case every time, so I can test possible fixes.
**Expected behavior**
Deadlock case prevented.
**Impact**
Annoyance for now, but it could be triggered on real devices in the field and cause deadlock in boot process.
**Logs and console output**
`main` thread backtrace:
```
#0 arch_swap (key=0) at /project/zephyr/arch/arm/core/aarch32/swap.c:53
#1 0x0003fa7c in z_swap_irqlock (key=<optimized out>) at /project/zephyr/kernel/include/kswap.h:173
#2 z_swap (key=..., lock=0x200170f0) at /project/zephyr/kernel/include/kswap.h:173
#3 z_pend_curr (lock=lock@entry=0x200170f0, key=..., wait_q=wait_q@entry=0x20006610 <db_hash+72>, timeout=...)
at /project/zephyr/kernel/sched.c:699
#4 0x0003f4c4 in z_impl_k_sem_take (sem=sem@entry=0x20006610 <db_hash+72>, timeout=...)
at /project/zephyr/kernel/sem.c:159
#5 0x000539be in k_sem_take (timeout=..., sem=0x20006610 <db_hash+72>) at zephyr/include/generated/syscalls/kernel.h:769
#6 k_work_cancel_delayable_sync (dwork=dwork@entry=0x200065d8 <db_hash+16>, sync=sync@entry=0x20006608 <db_hash+64>)
at /project/zephyr/kernel/work.c:1005
#7 0x0001552a in db_hash_commit () at /project/zephyr/subsys/bluetooth/host/gatt.c:5158
#8 0x0000b828 in settings_commit_subtree (subtree=subtree@entry=0x0 <_vector_table>)
at /project/zephyr/subsys/settings/src/settings.c:249
#9 0x0000b5ba in settings_load_subtree (subtree=subtree@entry=0x0 <_vector_table>)
at /project/zephyr/subsys/settings/src/settings_store.c:60
#10 0x000442da in settings_load () at /project/zephyr/subsys/settings/src/settings_store.c:39
#11 0x00002608 in bt_init (dev=<optimized out>) at /project/app/src/bt.c:209
#12 bt_init (dev=<optimized out>) at /project/app/src/bt.c:195
#13 0x0003e97c in z_sys_init_run_level (level=level@entry=3) at /project/zephyr/kernel/device.c:87
#14 0x0003ebe0 in bg_thread_main (unused1=<optimized out>, unused2=<optimized out>, unused3=<optimized out>)
at /project/zephyr/kernel/init.c:161
#15 0x00040c5c in z_thread_entry (entry=0x3ebc9 <bg_thread_main>, p1=<optimized out>, p2=<optimized out>, p3=<optimized out>)
at /project/zephyr/lib/os/thread_entry.c:29
#16 0x0000f004 in arch_switch_to_main_thread (main_thread=<optimized out>,
stack_ptr=0x20021480 <z_idle_stacks> '\252' <repeats 200 times>..., _main=0x3ebc9 <bg_thread_main>)
at /project/zephyr/arch/arm/core/aarch32/thread.c:539
```
`sysworkq` thread backtrace:
```
#0 arch_swap (key=0) at /project/zephyr/arch/arm/core/aarch32/swap.c:53
#1 0x0003fa7c in z_swap_irqlock (key=<optimized out>) at /project/zephyr/kernel/include/kswap.h:173
#2 z_swap (key=..., lock=0x200170f0) at /project/zephyr/kernel/include/kswap.h:173
#3 z_pend_curr (lock=lock@entry=0x200170f0, key=..., key@entry=..., wait_q=wait_q@entry=0x20003300 <settings_lock>, timeout=...)
at /project/zephyr/kernel/sched.c:699
#4 0x0003f2e6 in z_impl_k_mutex_lock (mutex=0x20003300 <settings_lock>, timeout=...)
at /project/zephyr/kernel/mutex.c:164
#5 0x0000b52e in k_mutex_lock (mutex=<optimized out>, timeout=...) at zephyr/include/generated/syscalls/kernel.h:674
#6 settings_save_one (name=name@entry=0x6075a "bt/hash", value=value@entry=0x200065c8 <db_hash>, val_len=val_len@entry=16)
at /project/zephyr/subsys/settings/src/settings_store.c:104
#7 0x00014740 in db_hash_store () at /project/zephyr/subsys/bluetooth/host/gatt.c:678
#8 0x0001544e in db_hash_gen (store=store@entry=true)
at /project/zephyr/subsys/bluetooth/host/gatt.c:717
#9 0x000154c6 in db_hash_process (work=<optimized out>)
at /project/zephyr/subsys/bluetooth/host/gatt.c:727
#10 0x0003f69a in work_queue_main (workq_ptr=0x20007270 <k_sys_work_q>, p2=<optimized out>, p3=<optimized out>)
at /project/zephyr/kernel/work.c:680
#11 0x00040c5c in z_thread_entry (entry=0x3f5a1 <work_queue_main>, p1=<optimized out>, p2=<optimized out>, p3=<optimized out>)
at /project/zephyr/lib/os/thread_entry.c:29
#12 0xaaaaaaaa in ?? ()
```
**Environment (please complete the following information):**
- OS: Linux
- Toolchain Zephyr SDK 0.12.4
- Commit SHA or Version used: 92d80d50b9b33e660a6ab3287d6505c212929557 | 1.0 | Bluetooth: deadlock when canceling db_hash.work from settings commit handler - **Describe the bug**
There is a deadlock when cancelling `db_hash.work`:
```
/* Stop work and generate the hash */
(void)k_work_cancel_delayable_sync(&db_hash.work, &db_hash.sync);
```
from `db_hash_commit`. `db_hash_commit` is called with `settings_lock` mutex held and cancelling `db_hash.work` will never finish, as `settings_save_one("bt/hash", ...)` is waiting on `settings_lock` mutex as well and never continues.
This can be workarounded by adding some arbitrary sleep in application code.
**To Reproduce**
I was not successful with reproducing it with upstream code/sample. I have downstream project, which triggers this case every time, so I can test possible fixes.
**Expected behavior**
Deadlock case prevented.
**Impact**
Annoyance for now, but it could be triggered on real devices in the field and cause deadlock in boot process.
**Logs and console output**
`main` thread backtrace:
```
#0 arch_swap (key=0) at /project/zephyr/arch/arm/core/aarch32/swap.c:53
#1 0x0003fa7c in z_swap_irqlock (key=<optimized out>) at /project/zephyr/kernel/include/kswap.h:173
#2 z_swap (key=..., lock=0x200170f0) at /project/zephyr/kernel/include/kswap.h:173
#3 z_pend_curr (lock=lock@entry=0x200170f0, key=..., wait_q=wait_q@entry=0x20006610 <db_hash+72>, timeout=...)
at /project/zephyr/kernel/sched.c:699
#4 0x0003f4c4 in z_impl_k_sem_take (sem=sem@entry=0x20006610 <db_hash+72>, timeout=...)
at /project/zephyr/kernel/sem.c:159
#5 0x000539be in k_sem_take (timeout=..., sem=0x20006610 <db_hash+72>) at zephyr/include/generated/syscalls/kernel.h:769
#6 k_work_cancel_delayable_sync (dwork=dwork@entry=0x200065d8 <db_hash+16>, sync=sync@entry=0x20006608 <db_hash+64>)
at /project/zephyr/kernel/work.c:1005
#7 0x0001552a in db_hash_commit () at /project/zephyr/subsys/bluetooth/host/gatt.c:5158
#8 0x0000b828 in settings_commit_subtree (subtree=subtree@entry=0x0 <_vector_table>)
at /project/zephyr/subsys/settings/src/settings.c:249
#9 0x0000b5ba in settings_load_subtree (subtree=subtree@entry=0x0 <_vector_table>)
at /project/zephyr/subsys/settings/src/settings_store.c:60
#10 0x000442da in settings_load () at /project/zephyr/subsys/settings/src/settings_store.c:39
#11 0x00002608 in bt_init (dev=<optimized out>) at /project/app/src/bt.c:209
#12 bt_init (dev=<optimized out>) at /project/app/src/bt.c:195
#13 0x0003e97c in z_sys_init_run_level (level=level@entry=3) at /project/zephyr/kernel/device.c:87
#14 0x0003ebe0 in bg_thread_main (unused1=<optimized out>, unused2=<optimized out>, unused3=<optimized out>)
at /project/zephyr/kernel/init.c:161
#15 0x00040c5c in z_thread_entry (entry=0x3ebc9 <bg_thread_main>, p1=<optimized out>, p2=<optimized out>, p3=<optimized out>)
at /project/zephyr/lib/os/thread_entry.c:29
#16 0x0000f004 in arch_switch_to_main_thread (main_thread=<optimized out>,
stack_ptr=0x20021480 <z_idle_stacks> '\252' <repeats 200 times>..., _main=0x3ebc9 <bg_thread_main>)
at /project/zephyr/arch/arm/core/aarch32/thread.c:539
```
`sysworkq` thread backtrace:
```
#0 arch_swap (key=0) at /project/zephyr/arch/arm/core/aarch32/swap.c:53
#1 0x0003fa7c in z_swap_irqlock (key=<optimized out>) at /project/zephyr/kernel/include/kswap.h:173
#2 z_swap (key=..., lock=0x200170f0) at /project/zephyr/kernel/include/kswap.h:173
#3 z_pend_curr (lock=lock@entry=0x200170f0, key=..., key@entry=..., wait_q=wait_q@entry=0x20003300 <settings_lock>, timeout=...)
at /project/zephyr/kernel/sched.c:699
#4 0x0003f2e6 in z_impl_k_mutex_lock (mutex=0x20003300 <settings_lock>, timeout=...)
at /project/zephyr/kernel/mutex.c:164
#5 0x0000b52e in k_mutex_lock (mutex=<optimized out>, timeout=...) at zephyr/include/generated/syscalls/kernel.h:674
#6 settings_save_one (name=name@entry=0x6075a "bt/hash", value=value@entry=0x200065c8 <db_hash>, val_len=val_len@entry=16)
at /project/zephyr/subsys/settings/src/settings_store.c:104
#7 0x00014740 in db_hash_store () at /project/zephyr/subsys/bluetooth/host/gatt.c:678
#8 0x0001544e in db_hash_gen (store=store@entry=true)
at /project/zephyr/subsys/bluetooth/host/gatt.c:717
#9 0x000154c6 in db_hash_process (work=<optimized out>)
at /project/zephyr/subsys/bluetooth/host/gatt.c:727
#10 0x0003f69a in work_queue_main (workq_ptr=0x20007270 <k_sys_work_q>, p2=<optimized out>, p3=<optimized out>)
at /project/zephyr/kernel/work.c:680
#11 0x00040c5c in z_thread_entry (entry=0x3f5a1 <work_queue_main>, p1=<optimized out>, p2=<optimized out>, p3=<optimized out>)
at /project/zephyr/lib/os/thread_entry.c:29
#12 0xaaaaaaaa in ?? ()
```
**Environment (please complete the following information):**
- OS: Linux
- Toolchain Zephyr SDK 0.12.4
- Commit SHA or Version used: 92d80d50b9b33e660a6ab3287d6505c212929557 | priority | bluetooth deadlock when canceling db hash work from settings commit handler describe the bug there is a deadlock when cancelling db hash work stop work and generate the hash void k work cancel delayable sync db hash work db hash sync from db hash commit db hash commit is called with settings lock mutex held and cancelling db hash work will never finish as settings save one bt hash is waiting on settings lock mutex as well and never continues this can be workarounded by adding some arbitrary sleep in application code to reproduce i was not successful with reproducing it with upstream code sample i have downstream project which triggers this case every time so i can test possible fixes expected behavior deadlock case prevented impact annoyance for now but it could be triggered on real devices in the field and cause deadlock in boot process logs and console output main thread backtrace arch swap key at project zephyr arch arm core swap c in z swap irqlock key at project zephyr kernel include kswap h z swap key lock at project zephyr kernel include kswap h z pend curr lock lock entry key wait q wait q entry timeout at project zephyr kernel sched c in z impl k sem take sem sem entry timeout at project zephyr kernel sem c in k sem take timeout sem at zephyr include generated syscalls kernel h k work cancel delayable sync dwork dwork entry sync sync entry at project zephyr kernel work c in db hash commit at project zephyr subsys bluetooth host gatt c in settings commit subtree subtree subtree entry at project zephyr subsys settings src settings c in settings load subtree subtree subtree entry at project zephyr subsys settings src settings store c in settings load at project zephyr subsys settings src settings store c in bt init dev at project app src bt c bt init dev at project app src bt c in z sys init run level level level entry at project zephyr kernel device c in bg thread main at project zephyr kernel init c in z thread entry entry at project zephyr lib os thread entry c in arch switch to main thread main thread stack ptr main at project zephyr arch arm core thread c sysworkq thread backtrace arch swap key at project zephyr arch arm core swap c in z swap irqlock key at project zephyr kernel include kswap h z swap key lock at project zephyr kernel include kswap h z pend curr lock lock entry key key entry wait q wait q entry timeout at project zephyr kernel sched c in z impl k mutex lock mutex timeout at project zephyr kernel mutex c in k mutex lock mutex timeout at zephyr include generated syscalls kernel h settings save one name name entry bt hash value value entry val len val len entry at project zephyr subsys settings src settings store c in db hash store at project zephyr subsys bluetooth host gatt c in db hash gen store store entry true at project zephyr subsys bluetooth host gatt c in db hash process work at project zephyr subsys bluetooth host gatt c in work queue main workq ptr at project zephyr kernel work c in z thread entry entry at project zephyr lib os thread entry c in environment please complete the following information os linux toolchain zephyr sdk commit sha or version used | 1 |
162,669 | 6,157,629,994 | IssuesEvent | 2017-06-28 19:23:17 | USGCRP/gcis | https://api.github.com/repos/USGCRP/gcis | opened | Add publishers to journals | priority medium type content | As we have decided to remove 'publisher' field from journals (#545) , we need to make sure:
- [ ] All journal publishers are available in GCIS as organizations
- [ ] Add new organizations if not available
- [ ] Add contributor relationship
- [ ] QA the contributor relationship
| 1.0 | Add publishers to journals - As we have decided to remove 'publisher' field from journals (#545) , we need to make sure:
- [ ] All journal publishers are available in GCIS as organizations
- [ ] Add new organizations if not available
- [ ] Add contributor relationship
- [ ] QA the contributor relationship
| priority | add publishers to journals as we have decided to remove publisher field from journals we need to make sure all journal publishers are available in gcis as organizations add new organizations if not available add contributor relationship qa the contributor relationship | 1 |
631,939 | 20,165,301,859 | IssuesEvent | 2022-02-10 03:15:14 | ut-issl/c2a-core | https://api.github.com/repos/ut-issl/c2a-core | opened | PacketHandler内部のエラーをどうユーザーランドに伝えるか | enhancement priority::medium | ## 概要
PacketHandler内部のエラーをどうユーザーランドに伝えるか
## 詳細
- https://github.com/ut-issl/c2a-core/pull/242#discussion_r800146503 ででた
- RCTを意図して PH へ渡して `PH_ACK_SUCCESS` が返ってきたとしても,下手したら,BC登録されてるかもしれない.そういった判断をするために,どう内部のエラーや状態をユーザーランドにつたえるかのスキームを考える
## close条件
考え,実装したら
| 1.0 | PacketHandler内部のエラーをどうユーザーランドに伝えるか - ## 概要
PacketHandler内部のエラーをどうユーザーランドに伝えるか
## 詳細
- https://github.com/ut-issl/c2a-core/pull/242#discussion_r800146503 ででた
- RCTを意図して PH へ渡して `PH_ACK_SUCCESS` が返ってきたとしても,下手したら,BC登録されてるかもしれない.そういった判断をするために,どう内部のエラーや状態をユーザーランドにつたえるかのスキームを考える
## close条件
考え,実装したら
| priority | packethandler内部のエラーをどうユーザーランドに伝えるか 概要 packethandler内部のエラーをどうユーザーランドに伝えるか 詳細 ででた rctを意図して ph へ渡して ph ack success が返ってきたとしても,下手したら,bc登録されてるかもしれない.そういった判断をするために,どう内部のエラーや状態をユーザーランドにつたえるかのスキームを考える close条件 考え,実装したら | 1 |
615,502 | 19,256,132,625 | IssuesEvent | 2021-12-09 11:28:50 | svthalia/concrexit | https://api.github.com/repos/svthalia/concrexit | closed | Vacancy detail view in API does not work | priority: medium bug | ### Describe the bug
The API detail view for vacancies seem to be broken.
### How to reproduce
Steps to reproduce the behaviour:
1. Go to `/api/v2/partners/vacancies/1/`
2. Crash!
### Expected behaviour
Should work.
| 1.0 | Vacancy detail view in API does not work - ### Describe the bug
The API detail view for vacancies seem to be broken.
### How to reproduce
Steps to reproduce the behaviour:
1. Go to `/api/v2/partners/vacancies/1/`
2. Crash!
### Expected behaviour
Should work.
| priority | vacancy detail view in api does not work describe the bug the api detail view for vacancies seem to be broken how to reproduce steps to reproduce the behaviour go to api partners vacancies crash expected behaviour should work | 1 |
490,329 | 14,118,349,109 | IssuesEvent | 2020-11-08 13:17:30 | AY2021S1-CS2113-T13-3/tp | https://api.github.com/repos/AY2021S1-CS2113-T13-3/tp | closed | Improve UI for timetable comparison | priority.Medium type.Enhancement | Suggest to prompt current user on who he or she wants to compare against with, by listing all users in the program. This would make the execution more intuitive for user. | 1.0 | Improve UI for timetable comparison - Suggest to prompt current user on who he or she wants to compare against with, by listing all users in the program. This would make the execution more intuitive for user. | priority | improve ui for timetable comparison suggest to prompt current user on who he or she wants to compare against with by listing all users in the program this would make the execution more intuitive for user | 1 |
187,100 | 6,744,868,719 | IssuesEvent | 2017-10-20 17:17:25 | srishanbhattarai/Harbor-CLI | https://api.github.com/repos/srishanbhattarai/Harbor-CLI | opened | An init command | good first issue priority: medium | An `init` or `setup` command to create sample configuration files with sane defaults. As many things will be moved into config soon, this would be a great help. | 1.0 | An init command - An `init` or `setup` command to create sample configuration files with sane defaults. As many things will be moved into config soon, this would be a great help. | priority | an init command an init or setup command to create sample configuration files with sane defaults as many things will be moved into config soon this would be a great help | 1 |
52,239 | 3,022,443,763 | IssuesEvent | 2015-07-31 20:23:29 | information-artifact-ontology/IAO | https://api.github.com/repos/information-artifact-ontology/IAO | closed | definition of software | imported Priority-Medium Type-Term | _From [mcour...@gmail.com](https://code.google.com/u/116795168307825520406/) on November 27, 2008 19:40:07_
Hi,
The term software has been added to IAO (IAO_0000010) but is lacking a
definition.
The latest consensus on the OBI side was:
* Software entity: series of encoded instructions that can be directly
executed by a CPU, or transformed in to a form that can be. For
programming texts that are syntactically correct and which are in a
language that can be executed by an interpreter this would correspond
to the tokenized version of the text stripped of comments.
The original OBI tracker item is available at http://sourceforge.net/tracker/index.php?func=detail&aid=1958818&group_id=177891&atid=886178 Are we happy with this or do we want to revisit?
Thanks,
Melanie
_Original issue: http://code.google.com/p/information-artifact-ontology/issues/detail?id=7_ | 1.0 | definition of software - _From [mcour...@gmail.com](https://code.google.com/u/116795168307825520406/) on November 27, 2008 19:40:07_
Hi,
The term software has been added to IAO (IAO_0000010) but is lacking a
definition.
The latest consensus on the OBI side was:
* Software entity: series of encoded instructions that can be directly
executed by a CPU, or transformed in to a form that can be. For
programming texts that are syntactically correct and which are in a
language that can be executed by an interpreter this would correspond
to the tokenized version of the text stripped of comments.
The original OBI tracker item is available at http://sourceforge.net/tracker/index.php?func=detail&aid=1958818&group_id=177891&atid=886178 Are we happy with this or do we want to revisit?
Thanks,
Melanie
_Original issue: http://code.google.com/p/information-artifact-ontology/issues/detail?id=7_ | priority | definition of software from on november hi the term software has been added to iao iao but is lacking a definition the latest consensus on the obi side was software entity series of encoded instructions that can be directly executed by a cpu or transformed in to a form that can be for programming texts that are syntactically correct and which are in a language that can be executed by an interpreter this would correspond to the tokenized version of the text stripped of comments the original obi tracker item is available at are we happy with this or do we want to revisit thanks melanie original issue | 1 |
422,932 | 12,288,432,748 | IssuesEvent | 2020-05-09 16:42:29 | getting-things-gnome/gtg | https://api.github.com/repos/getting-things-gnome/gtg | opened | Renaming a tag does not reparent the children tags, creates a zombie duplicate | bug priority:medium reproducible-in-git | I'm not sure if this is just a GTG logic bug, or if this is actually a libLarch treeview representation bug, or both, or something else entirely. But let's say you have a tag named "foo" with two children tags named "bar" and "baz":
* Foo
* Bar
* Baz
You right-click on the "Foo" tag in the sidebar, "Edit tag", and rename it (or even just add a single character, let's say it is now "Foo**d**").
Incorrect result:
* Foo
* Bar
* Baz
* Food
Instead it should be:
* Food
* Bar
* Baz
Another thing to note with the "incorrect" result above: if you then manually reparent the children by dragging them to "Food", you realize that "Foo" was effectively (correctly) detagged from the tasks but that it sems like you still need to manually delete "Foo" from the tags sidebar... but when you try to do that, the changes are not visually reflected until you restart the application (at which time the tag is indeed gone from the sidebar).
I was wondering if that might warrant a test case for liblarch's test suite too, but this only affects tags and not (I think?) tasks, so this might just be a GTG-specific UI thing, I'm not sure... maybe @ploum would have a guess as to what could be the "right" place to look at in this case.
Ideally would be nice to fix for the upcoming 0.4 because this kind of behavior is "scary" for users, but if it's somehow not doable easily enough then it could be considered a 0.5 item. | 1.0 | Renaming a tag does not reparent the children tags, creates a zombie duplicate - I'm not sure if this is just a GTG logic bug, or if this is actually a libLarch treeview representation bug, or both, or something else entirely. But let's say you have a tag named "foo" with two children tags named "bar" and "baz":
* Foo
* Bar
* Baz
You right-click on the "Foo" tag in the sidebar, "Edit tag", and rename it (or even just add a single character, let's say it is now "Foo**d**").
Incorrect result:
* Foo
* Bar
* Baz
* Food
Instead it should be:
* Food
* Bar
* Baz
Another thing to note with the "incorrect" result above: if you then manually reparent the children by dragging them to "Food", you realize that "Foo" was effectively (correctly) detagged from the tasks but that it sems like you still need to manually delete "Foo" from the tags sidebar... but when you try to do that, the changes are not visually reflected until you restart the application (at which time the tag is indeed gone from the sidebar).
I was wondering if that might warrant a test case for liblarch's test suite too, but this only affects tags and not (I think?) tasks, so this might just be a GTG-specific UI thing, I'm not sure... maybe @ploum would have a guess as to what could be the "right" place to look at in this case.
Ideally would be nice to fix for the upcoming 0.4 because this kind of behavior is "scary" for users, but if it's somehow not doable easily enough then it could be considered a 0.5 item. | priority | renaming a tag does not reparent the children tags creates a zombie duplicate i m not sure if this is just a gtg logic bug or if this is actually a liblarch treeview representation bug or both or something else entirely but let s say you have a tag named foo with two children tags named bar and baz foo bar baz you right click on the foo tag in the sidebar edit tag and rename it or even just add a single character let s say it is now foo d incorrect result foo bar baz food instead it should be food bar baz another thing to note with the incorrect result above if you then manually reparent the children by dragging them to food you realize that foo was effectively correctly detagged from the tasks but that it sems like you still need to manually delete foo from the tags sidebar but when you try to do that the changes are not visually reflected until you restart the application at which time the tag is indeed gone from the sidebar i was wondering if that might warrant a test case for liblarch s test suite too but this only affects tags and not i think tasks so this might just be a gtg specific ui thing i m not sure maybe ploum would have a guess as to what could be the right place to look at in this case ideally would be nice to fix for the upcoming because this kind of behavior is scary for users but if it s somehow not doable easily enough then it could be considered a item | 1 |
449,560 | 12,970,900,878 | IssuesEvent | 2020-07-21 10:02:43 | elixir-cloud-aai/cwl-WES | https://api.github.com/repos/elixir-cloud-aai/cwl-WES | opened | Implement access management | priority: medium type: auth type: security workload: days | **Is your feature request related to a problem? Please describe.**
Currently, access to cwl-WES is granted to everyone with a valid bearer token, provided that the `authorization_required` option is enabled in the app configuration (`cwl_wes/config/app_config.yaml`). However, resources are only restricted inasmuch that users can only perform `GET` operations on workflow runs they have created themselves via `POST /runs`. To protect cwl-WES resources from unprivileged users, access to both `POST` and `GET` methods on `/runs` and derived endpoints should be granted only if a given user has the necessary permissions.
**Describe the solution you'd like**
Ideally, access management should follow the [GA4GH Passport](https://github.com/ga4gh-duri/ga4gh-duri.github.io/blob/master/researcher_ids/ga4gh_passport_v1.md) specification to ensure that only privileged users can access resources.
Users are granted access to a resource only if their token contains the necessary _visa_.
**Describe alternatives you've considered**
Alternatively, or in addition, an access control management endpoint should be designed that allows devops/system admins to set permissions individually for each user and/or user groups (e.g. ELIXIR AAI groups).
**Additional context**
N/A
| 1.0 | Implement access management - **Is your feature request related to a problem? Please describe.**
Currently, access to cwl-WES is granted to everyone with a valid bearer token, provided that the `authorization_required` option is enabled in the app configuration (`cwl_wes/config/app_config.yaml`). However, resources are only restricted inasmuch that users can only perform `GET` operations on workflow runs they have created themselves via `POST /runs`. To protect cwl-WES resources from unprivileged users, access to both `POST` and `GET` methods on `/runs` and derived endpoints should be granted only if a given user has the necessary permissions.
**Describe the solution you'd like**
Ideally, access management should follow the [GA4GH Passport](https://github.com/ga4gh-duri/ga4gh-duri.github.io/blob/master/researcher_ids/ga4gh_passport_v1.md) specification to ensure that only privileged users can access resources.
Users are granted access to a resource only if their token contains the necessary _visa_.
**Describe alternatives you've considered**
Alternatively, or in addition, an access control management endpoint should be designed that allows devops/system admins to set permissions individually for each user and/or user groups (e.g. ELIXIR AAI groups).
**Additional context**
N/A
| priority | implement access management is your feature request related to a problem please describe currently access to cwl wes is granted to everyone with a valid bearer token provided that the authorization required option is enabled in the app configuration cwl wes config app config yaml however resources are only restricted inasmuch that users can only perform get operations on workflow runs they have created themselves via post runs to protect cwl wes resources from unprivileged users access to both post and get methods on runs and derived endpoints should be granted only if a given user has the necessary permissions describe the solution you d like ideally access management should follow the specification to ensure that only privileged users can access resources users are granted access to a resource only if their token contains the necessary visa describe alternatives you ve considered alternatively or in addition an access control management endpoint should be designed that allows devops system admins to set permissions individually for each user and or user groups e g elixir aai groups additional context n a | 1 |
310,355 | 9,489,003,126 | IssuesEvent | 2019-04-22 21:08:06 | emory-libraries/ezpaarse-platforms | https://api.github.com/repos/emory-libraries/ezpaarse-platforms | closed | The Journal of Graduate Medical Education (WHSCL 7) | Medium Priority | ### Example:star::star: :
https://login.proxy.library.emory.edu/login?url=http://www.jgme.org/
### Priority:
Medium
### Subscriber (Library):
Health | 1.0 | The Journal of Graduate Medical Education (WHSCL 7) - ### Example:star::star: :
https://login.proxy.library.emory.edu/login?url=http://www.jgme.org/
### Priority:
Medium
### Subscriber (Library):
Health | priority | the journal of graduate medical education whscl example star star priority medium subscriber library health | 1 |
109,799 | 4,414,082,295 | IssuesEvent | 2016-08-13 06:47:30 | pymedusa/SickRage | https://api.github.com/repos/pymedusa/SickRage | closed | Shows that looks like dates break SHOWQUEUE-REFRESH | bug Priority: 2. Medium | The show is [11.22.63](https://thetvdb.com/?tab=seasonall&id=301824&lid=7) for some reason it's seeing the name as a date?
````
2016-05-08 03:35:07 SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
````
Since I can't access SSH at the moment the best I could do is use the viewlog page with `11.22.63` as the search term and the level set to debug.
DEBUG LOGS:
````
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Checking & filling cache for show 11.22.63
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Metadata provider KODI 12+ updating show indexer info metadata file for 11.22.63
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Checking if /tv/11.22.63/tvshow.nfo exists: True
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Checking if /tv/11.22.63/tvshow.nfo exists: True
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E08 - The Day in Question 720p WEB-DL into 11.22.63 - S01E08 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv parsed to 11.22.63 S01E08
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv into 11.22.63 - S01E082063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:07 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E05 - The Truth 1080p HDTV into 11.22.63 - S01E05 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv parsed to 11.22.63 S01E05
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv into 11.22.63 - S01E052063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:06 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E04 - The Eyes of Texas 720p HDTV into 11.22.63 - S01E04 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv parsed to 11.22.63 S01E04
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv into 11.22.63 - S01E042063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:06 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV into 11.22.63 - S01E03 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv parsed to 11.22.63 S01E03
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv into 11.22.63 - S01E032063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:05 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E02 - The Kill Floor 720p HDTV into 11.22.63 - S01E02 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4 parsed to 11.22.63 S01E02
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4 into 11.22.63 - S01E022063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:05 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E01 - The Rabbit Hole SDTV into 11.22.63 - S01E01 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv parsed to 11.22.63 S01E01
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv into 11.22.63 - S01E012063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:04 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV into 11.22.63 - S01E06 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv parsed to 11.22.63 S01E06
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv into 11.22.63 - S01E062063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:04 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E07 - Soldier Boy 1080p HDTV into 11.22.63 - S01E07 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv parsed to 11.22.63 S01E07
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv into 11.22.63 - S01E072063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:04 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:03 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv
2016-05-08 03:35:03 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv
2016-05-08 03:35:03 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Found files: [u'/tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4', u'/tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv']
2016-05-08 03:35:03 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Loading all episodes from the show directory /tv/11.22.63
2016-05-08 03:35:03 INFO SHOWQUEUE-REFRESH :: [d491854] Performing refresh on 11.22.63
````
| 1.0 | Shows that looks like dates break SHOWQUEUE-REFRESH - The show is [11.22.63](https://thetvdb.com/?tab=seasonall&id=301824&lid=7) for some reason it's seeing the name as a date?
````
2016-05-08 03:35:07 SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
````
Since I can't access SSH at the moment the best I could do is use the viewlog page with `11.22.63` as the search term and the level set to debug.
DEBUG LOGS:
````
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Checking & filling cache for show 11.22.63
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Metadata provider KODI 12+ updating show indexer info metadata file for 11.22.63
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Checking if /tv/11.22.63/tvshow.nfo exists: True
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Checking if /tv/11.22.63/tvshow.nfo exists: True
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E08 - The Day in Question 720p WEB-DL into 11.22.63 - S01E08 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv parsed to 11.22.63 S01E08
2016-05-08 03:35:07 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv into 11.22.63 - S01E082063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:07 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E05 - The Truth 1080p HDTV into 11.22.63 - S01E05 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv parsed to 11.22.63 S01E05
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv into 11.22.63 - S01E052063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:06 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E04 - The Eyes of Texas 720p HDTV into 11.22.63 - S01E04 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv parsed to 11.22.63 S01E04
2016-05-08 03:35:06 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv into 11.22.63 - S01E042063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:06 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV into 11.22.63 - S01E03 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv parsed to 11.22.63 S01E03
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv into 11.22.63 - S01E032063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:05 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E02 - The Kill Floor 720p HDTV into 11.22.63 - S01E02 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4 parsed to 11.22.63 S01E02
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4 into 11.22.63 - S01E022063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:05 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4
2016-05-08 03:35:05 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E01 - The Rabbit Hole SDTV into 11.22.63 - S01E01 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv parsed to 11.22.63 S01E01
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv into 11.22.63 - S01E012063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:04 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV into 11.22.63 - S01E06 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv parsed to 11.22.63 S01E06
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv into 11.22.63 - S01E062063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:04 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed 11.22.63 - S01E07 - Soldier Boy 1080p HDTV into 11.22.63 - S01E07 [ABD: False] [ANIME: False] [whichReg: ['standard']]
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Setter sets location to /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv parsed to 11.22.63 S01E07
2016-05-08 03:35:04 DEBUG SHOWQUEUE-REFRESH :: [d491854] Parsed /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv into 11.22.63 - S01E072063-11-22 [ABD: True] [ANIME: False] [whichReg: ['standard', 'scene_date_format']]
2016-05-08 03:35:04 WARNING SHOWQUEUE-REFRESH :: [d491854] Unable to find episode with date 2063-11-22 for show 11.22.63, skipping
2016-05-08 03:35:03 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode object from /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv
2016-05-08 03:35:03 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Creating episode from /tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv
2016-05-08 03:35:03 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Found files: [u'/tv/11.22.63/11.22.63 - S01E07 - Soldier Boy 1080p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E06 - Happy Birthday, Lee Harvey Oswald 720p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E01 - The Rabbit Hole SDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E02 - The Kill Floor 720p HDTV.mp4', u'/tv/11.22.63/11.22.63 - S01E03 - Other Voices, Other Rooms 720p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E04 - The Eyes of Texas 720p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E05 - The Truth 1080p HDTV.mkv', u'/tv/11.22.63/11.22.63 - S01E08 - The Day in Question 720p WEB-DL.mkv']
2016-05-08 03:35:03 DEBUG SHOWQUEUE-REFRESH :: [d491854] 301824: Loading all episodes from the show directory /tv/11.22.63
2016-05-08 03:35:03 INFO SHOWQUEUE-REFRESH :: [d491854] Performing refresh on 11.22.63
````
| priority | shows that looks like dates break showqueue refresh the show is for some reason it s seeing the name as a date showqueue refresh unable to find episode with date for show skipping since i can t access ssh at the moment the best i could do is use the viewlog page with as the search term and the level set to debug debug logs debug showqueue refresh checking filling cache for show debug showqueue refresh metadata provider kodi updating show indexer info metadata file for debug showqueue refresh checking if tv tvshow nfo exists true debug showqueue refresh checking if tv tvshow nfo exists true debug showqueue refresh parsed the day in question web dl into debug showqueue refresh setter sets location to tv the day in question web dl mkv debug showqueue refresh tv the day in question web dl mkv parsed to debug showqueue refresh parsed tv the day in question web dl mkv into warning showqueue refresh unable to find episode with date for show skipping debug showqueue refresh creating episode object from tv the day in question web dl mkv debug showqueue refresh creating episode from tv the day in question web dl mkv debug showqueue refresh parsed the truth hdtv into debug showqueue refresh setter sets location to tv the truth hdtv mkv debug showqueue refresh tv the truth hdtv mkv parsed to debug showqueue refresh parsed tv the truth hdtv mkv into warning showqueue refresh unable to find episode with date for show skipping debug showqueue refresh creating episode object from tv the truth hdtv mkv debug showqueue refresh creating episode from tv the truth hdtv mkv debug showqueue refresh parsed the eyes of texas hdtv into debug showqueue refresh setter sets location to tv the eyes of texas hdtv mkv debug showqueue refresh tv the eyes of texas hdtv mkv parsed to debug showqueue refresh parsed tv the eyes of texas hdtv mkv into warning showqueue refresh unable to find episode with date for show skipping debug showqueue refresh creating episode object from tv the eyes of texas hdtv mkv debug showqueue refresh creating episode from tv the eyes of texas hdtv mkv debug showqueue refresh parsed other voices other rooms hdtv into debug showqueue refresh setter sets location to tv other voices other rooms hdtv mkv debug showqueue refresh tv other voices other rooms hdtv mkv parsed to debug showqueue refresh parsed tv other voices other rooms hdtv mkv into warning showqueue refresh unable to find episode with date for show skipping debug showqueue refresh creating episode object from tv other voices other rooms hdtv mkv debug showqueue refresh creating episode from tv other voices other rooms hdtv mkv debug showqueue refresh parsed the kill floor hdtv into debug showqueue refresh setter sets location to tv the kill floor hdtv debug showqueue refresh tv the kill floor hdtv parsed to debug showqueue refresh parsed tv the kill floor hdtv into warning showqueue refresh unable to find episode with date for show skipping debug showqueue refresh creating episode object from tv the kill floor hdtv debug showqueue refresh creating episode from tv the kill floor hdtv debug showqueue refresh parsed the rabbit hole sdtv into debug showqueue refresh setter sets location to tv the rabbit hole sdtv mkv debug showqueue refresh tv the rabbit hole sdtv mkv parsed to debug showqueue refresh parsed tv the rabbit hole sdtv mkv into warning showqueue refresh unable to find episode with date for show skipping debug showqueue refresh creating episode object from tv the rabbit hole sdtv mkv debug showqueue refresh creating episode from tv the rabbit hole sdtv mkv debug showqueue refresh parsed happy birthday lee harvey oswald hdtv into debug showqueue refresh setter sets location to tv happy birthday lee harvey oswald hdtv mkv debug showqueue refresh tv happy birthday lee harvey oswald hdtv mkv parsed to debug showqueue refresh parsed tv happy birthday lee harvey oswald hdtv mkv into warning showqueue refresh unable to find episode with date for show skipping debug showqueue refresh creating episode object from tv happy birthday lee harvey oswald hdtv mkv debug showqueue refresh creating episode from tv happy birthday lee harvey oswald hdtv mkv debug showqueue refresh parsed soldier boy hdtv into debug showqueue refresh setter sets location to tv soldier boy hdtv mkv debug showqueue refresh tv soldier boy hdtv mkv parsed to debug showqueue refresh parsed tv soldier boy hdtv mkv into warning showqueue refresh unable to find episode with date for show skipping debug showqueue refresh creating episode object from tv soldier boy hdtv mkv debug showqueue refresh creating episode from tv soldier boy hdtv mkv debug showqueue refresh found files debug showqueue refresh loading all episodes from the show directory tv info showqueue refresh performing refresh on | 1 |
491,891 | 14,173,664,320 | IssuesEvent | 2020-11-12 18:41:26 | dojot/dojot | https://api.github.com/repos/dojot/dojot | closed | Locust message when creating certificates | Priority:Medium Team:DevOps Type:Bug :bug: |
**1º** Create device using:
- python -m src.scripts.generate_certs dojot create --devices 1
**2º** Create certificates using:
- python -m src.scripts.generate_certs cert --dojot --remove
When creating the certificates, in the log the message is successful, but it was not created.
File "/usr/local/lib/python3.6/multiprocessing/process.py", line 93, in run
self._target(*self._args, **self._kwargs)
File "/usr/src/app/src/scripts/generate_certs.py", line 583, in register_thing
thing = Thing(CONFIG['app']['tenant'], thing_id)
File "/usr/src/app/src/ejbca/thing.py", line 16, in __init__
self.cert = Certificate(thing_id)
File "/usr/src/app/src/ejbca/certificate.py", line 25, in __init__
DojotAPI.create_ejbca_user(self.jwt, self.c_name)
File "/usr/src/app/src/dojot/api.py", line 247, in create_ejbca_user
DojotAPI.call_api(requests.post, args, False)
File "/usr/src/app/src/dojot/api.py", line 361, in call_api
raise APICallError("exceeded the number of retries to {0}".format(args['url']))
src.dojot.api.APICallError: exceeded the number of retries to http://10.50.11.203/user
generate_cert line 509 | 27-08-2020 16:20:16 [INFO]: Total inserts 17 in 20s using 4 processes
generate_cert line 430 | 27-08-2020 16:20:16 [INFO]: Creating key files...
generate_cert line 442 | 27-08-2020 16:20:16 [INFO]: Successfully created!
generate_cert line 447 | 27-08-2020 16:20:16 [INFO]: Creating certificate files...
_**generate_cert line 459 | 27-08-2020 16:20:16 [INFO]: Successfully created!**_
Traceback (most recent call last):
File "/usr/local/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/local/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/usr/src/app/src/scripts/generate_certs.py", line 601, in <module>
GenerateCerts()
File "/usr/src/app/src/scripts/generate_certs.py", line 56, in __init__
self.run()
File "/usr/src/app/src/scripts/generate_certs.py", line 197, in run
self.cert_commands()
File "/usr/src/app/src/scripts/generate_certs.py", line 257, in cert_commands
self.retrieve_ca_cert()
File "/usr/src/app/src/scripts/generate_certs.py", line 475, in retrieve_ca_cert
if res["certificate"] is None:
KeyError: 'certificate'
bash-5.0#
**3º** When verifying that the certificates were created, nothing was found.
fsilva@freedom:~/Área de Trabalho/DOJOT/LOCUST/dojot/connector/mqtt/locust$ **ls cert**
renew revoke
version Locust: v0.5.0-alpha2 | 1.0 | Locust message when creating certificates -
**1º** Create device using:
- python -m src.scripts.generate_certs dojot create --devices 1
**2º** Create certificates using:
- python -m src.scripts.generate_certs cert --dojot --remove
When creating the certificates, in the log the message is successful, but it was not created.
File "/usr/local/lib/python3.6/multiprocessing/process.py", line 93, in run
self._target(*self._args, **self._kwargs)
File "/usr/src/app/src/scripts/generate_certs.py", line 583, in register_thing
thing = Thing(CONFIG['app']['tenant'], thing_id)
File "/usr/src/app/src/ejbca/thing.py", line 16, in __init__
self.cert = Certificate(thing_id)
File "/usr/src/app/src/ejbca/certificate.py", line 25, in __init__
DojotAPI.create_ejbca_user(self.jwt, self.c_name)
File "/usr/src/app/src/dojot/api.py", line 247, in create_ejbca_user
DojotAPI.call_api(requests.post, args, False)
File "/usr/src/app/src/dojot/api.py", line 361, in call_api
raise APICallError("exceeded the number of retries to {0}".format(args['url']))
src.dojot.api.APICallError: exceeded the number of retries to http://10.50.11.203/user
generate_cert line 509 | 27-08-2020 16:20:16 [INFO]: Total inserts 17 in 20s using 4 processes
generate_cert line 430 | 27-08-2020 16:20:16 [INFO]: Creating key files...
generate_cert line 442 | 27-08-2020 16:20:16 [INFO]: Successfully created!
generate_cert line 447 | 27-08-2020 16:20:16 [INFO]: Creating certificate files...
_**generate_cert line 459 | 27-08-2020 16:20:16 [INFO]: Successfully created!**_
Traceback (most recent call last):
File "/usr/local/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/local/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/usr/src/app/src/scripts/generate_certs.py", line 601, in <module>
GenerateCerts()
File "/usr/src/app/src/scripts/generate_certs.py", line 56, in __init__
self.run()
File "/usr/src/app/src/scripts/generate_certs.py", line 197, in run
self.cert_commands()
File "/usr/src/app/src/scripts/generate_certs.py", line 257, in cert_commands
self.retrieve_ca_cert()
File "/usr/src/app/src/scripts/generate_certs.py", line 475, in retrieve_ca_cert
if res["certificate"] is None:
KeyError: 'certificate'
bash-5.0#
**3º** When verifying that the certificates were created, nothing was found.
fsilva@freedom:~/Área de Trabalho/DOJOT/LOCUST/dojot/connector/mqtt/locust$ **ls cert**
renew revoke
version Locust: v0.5.0-alpha2 | priority | locust message when creating certificates create device using python m src scripts generate certs dojot create devices create certificates using python m src scripts generate certs cert dojot remove when creating the certificates in the log the message is successful but it was not created file usr local lib multiprocessing process py line in run self target self args self kwargs file usr src app src scripts generate certs py line in register thing thing thing config thing id file usr src app src ejbca thing py line in init self cert certificate thing id file usr src app src ejbca certificate py line in init dojotapi create ejbca user self jwt self c name file usr src app src dojot api py line in create ejbca user dojotapi call api requests post args false file usr src app src dojot api py line in call api raise apicallerror exceeded the number of retries to format args src dojot api apicallerror exceeded the number of retries to generate cert line total inserts in using processes generate cert line creating key files generate cert line successfully created generate cert line creating certificate files generate cert line successfully created traceback most recent call last file usr local lib runpy py line in run module as main main mod spec file usr local lib runpy py line in run code exec code run globals file usr src app src scripts generate certs py line in generatecerts file usr src app src scripts generate certs py line in init self run file usr src app src scripts generate certs py line in run self cert commands file usr src app src scripts generate certs py line in cert commands self retrieve ca cert file usr src app src scripts generate certs py line in retrieve ca cert if res is none keyerror certificate bash when verifying that the certificates were created nothing was found fsilva freedom área de trabalho dojot locust dojot connector mqtt locust ls cert renew revoke version locust | 1 |
570,138 | 17,019,535,179 | IssuesEvent | 2021-07-02 16:37:40 | knative/docs | https://api.github.com/repos/knative/docs | closed | Replace all **NOTE:** text in Channels subheading (/eventing/channels/*) to "info" Admonitions | kind/enhancement kind/good-first-issue kind/style priority/medium | <!-- For a feature request about a change to Knative, please open the issue in the corresponding repo. -->
**Describe the change you'd like to see**
See title!
Formatting
```
!!! info
<tab> <tab> {all text after "NOTE:" (delete "NOTE:")}
```
**Additional context**
Add any other context or screenshots about the feature request here.
| 1.0 | Replace all **NOTE:** text in Channels subheading (/eventing/channels/*) to "info" Admonitions - <!-- For a feature request about a change to Knative, please open the issue in the corresponding repo. -->
**Describe the change you'd like to see**
See title!
Formatting
```
!!! info
<tab> <tab> {all text after "NOTE:" (delete "NOTE:")}
```
**Additional context**
Add any other context or screenshots about the feature request here.
| priority | replace all note text in channels subheading eventing channels to info admonitions describe the change you d like to see see title formatting info all text after note delete note additional context add any other context or screenshots about the feature request here | 1 |
16,740 | 2,615,122,821 | IssuesEvent | 2015-03-01 05:50:11 | chrsmith/google-api-java-client | https://api.github.com/repos/chrsmith/google-api-java-client | closed | Deprecate package extensions.auth.helpers.appengine | auto-migrated Milestone-Version1.6.0 Priority-Medium Type-Enhancement | ```
External references, such as a standards document, or specification?
http://javadoc.google-api-java-client.googlecode.com/hg/1.5.0-beta/com/google/ap
i/client/googleapis/extensions/auth/helpers/appengine/GoogleAppAssertionFlow.htm
l
http://javadoc.google-api-java-client.googlecode.com/hg/1.5.0-beta/com/google/ap
i/client/googleapis/extensions/appengine/auth/helpers/GoogleAppAssertionFlow.htm
l
Java environments (e.g. Java 6, Android 2.3, App Engine, or All)?
All
Please describe the feature requested.
We accidentally added GoogleAppAssertionFlow.java into two packages. We meant
to have it only in extensions.appengine.auth.helpers, not in
extensions.auth.helpers.appengine. So we should deprecate it in 1.6 with the
intention to remove it in 1.7
```
Original issue reported on code.google.com by `yan...@google.com` on 5 Oct 2011 at 7:30 | 1.0 | Deprecate package extensions.auth.helpers.appengine - ```
External references, such as a standards document, or specification?
http://javadoc.google-api-java-client.googlecode.com/hg/1.5.0-beta/com/google/ap
i/client/googleapis/extensions/auth/helpers/appengine/GoogleAppAssertionFlow.htm
l
http://javadoc.google-api-java-client.googlecode.com/hg/1.5.0-beta/com/google/ap
i/client/googleapis/extensions/appengine/auth/helpers/GoogleAppAssertionFlow.htm
l
Java environments (e.g. Java 6, Android 2.3, App Engine, or All)?
All
Please describe the feature requested.
We accidentally added GoogleAppAssertionFlow.java into two packages. We meant
to have it only in extensions.appengine.auth.helpers, not in
extensions.auth.helpers.appengine. So we should deprecate it in 1.6 with the
intention to remove it in 1.7
```
Original issue reported on code.google.com by `yan...@google.com` on 5 Oct 2011 at 7:30 | priority | deprecate package extensions auth helpers appengine external references such as a standards document or specification i client googleapis extensions auth helpers appengine googleappassertionflow htm l i client googleapis extensions appengine auth helpers googleappassertionflow htm l java environments e g java android app engine or all all please describe the feature requested we accidentally added googleappassertionflow java into two packages we meant to have it only in extensions appengine auth helpers not in extensions auth helpers appengine so we should deprecate it in with the intention to remove it in original issue reported on code google com by yan google com on oct at | 1 |
607,060 | 18,772,654,905 | IssuesEvent | 2021-11-07 04:50:40 | space-wizards/space-station-14 | https://api.github.com/repos/space-wizards/space-station-14 | closed | Strange flashes when pushing against pulled objects momentum | Type: Bug Priority: 2-Before Release Difficulty: 2-Medium | <!-- To automatically tag this issue, add the uppercase label(s) surrounded by brackets below, for example: [LABEL] -->
## Description
<!-- Explain your issue in detail, including the steps to reproduce it if applicable. Issues without proper explanation are liable to be closed by maintainers.-->
Idk why this happens. The gif won't embed since it's so big.
**Screenshots**
<!-- If applicable, add screenshots to help explain your problem. -->
https://cdn.discordapp.com/attachments/790656972801572905/826922144419676211/2021-03-31_13-40-28.gif
**Additional context**
<!-- Add any other context about the problem here. -->
| 1.0 | Strange flashes when pushing against pulled objects momentum - <!-- To automatically tag this issue, add the uppercase label(s) surrounded by brackets below, for example: [LABEL] -->
## Description
<!-- Explain your issue in detail, including the steps to reproduce it if applicable. Issues without proper explanation are liable to be closed by maintainers.-->
Idk why this happens. The gif won't embed since it's so big.
**Screenshots**
<!-- If applicable, add screenshots to help explain your problem. -->
https://cdn.discordapp.com/attachments/790656972801572905/826922144419676211/2021-03-31_13-40-28.gif
**Additional context**
<!-- Add any other context about the problem here. -->
| priority | strange flashes when pushing against pulled objects momentum description idk why this happens the gif won t embed since it s so big screenshots additional context | 1 |
172,791 | 6,516,248,913 | IssuesEvent | 2017-08-27 05:34:28 | therajanmaurya/android-client-2.0 | https://api.github.com/repos/therajanmaurya/android-client-2.0 | opened | Fix: Planned payment fetch more failed | enhancement GSoC 2017 Medium Priority | **Summary:**
initially, we are fetching the `50` planned payments at the page `0` and getting the planned payments as a response
```
{
"chargeNames": [
{
"identifier": "processing-fee",
"name": "Processing fee"
},
{
"identifier": "loan-origination-fee",
"name": "Loan origination fee"
},
{
"identifier": "disburse-payment",
"name": "Disburse payment"
},
{
"identifier": "return-disbursement",
"name": "Return disbursement"
},
{
"identifier": "disbursement-fee",
"name": "Disbursement fee"
},
{
"identifier": "track-return-principal",
"name": "Track return principal"
},
{
"identifier": "loan-funds-allocation",
"name": "loan-funds-allocation"
},
{
"identifier": "track-disburse-payment",
"name": "Track disburse payment"
},
{
"identifier": "repayment",
"name": "Repayment"
},
{
"identifier": "interest",
"name": "Interest"
}
],
"elements": [
{
"interestRate": null,
"costComponents": [
{
"chargeIdentifier": "loan-funds-allocation",
"amount": 1500
},
{
"chargeIdentifier": "processing-fee",
"amount": 15
},
{
"chargeIdentifier": "disbursement-fee",
"amount": 1.5
},
{
"chargeIdentifier": "loan-origination-fee",
"amount": 15
},
{
"chargeIdentifier": "return-disbursement",
"amount": 1500
},
{
"chargeIdentifier": "track-disburse-payment",
"amount": 0
},
{
"chargeIdentifier": "disburse-payment",
"amount": 0
}
],
"remainingPrincipal": 1500,
"date": null
},
{
"interestRate": null,
"costComponents": [
{
"chargeIdentifier": "repayment",
"amount": 752.7
},
{
"chargeIdentifier": "interest",
"amount": 1.03
},
{
"chargeIdentifier": "track-return-principal",
"amount": 751.67
}
],
"remainingPrincipal": 748.33,
"date": "2017-09-01Z"
},
{
"interestRate": null,
"costComponents": [
{
"chargeIdentifier": "repayment",
"amount": 755.7
},
{
"chargeIdentifier": "interest",
"amount": 3.08
},
{
"chargeIdentifier": "track-return-principal",
"amount": 748.33
}
],
"remainingPrincipal": 0,
"date": "2017-10-01Z"
}
],
"totalPages": 1,
"totalElements": 3
}```
You can see in response we are getting `totalPages` and `totalElements`. We need to refactor our current load more REST API call according to these two parameter otherwise server is giving this error.
```
{
"timestamp": 1503811590076,
"status": 500,
"error": "Internal Server Error",
"exception": "java.lang.IllegalArgumentException",
"message": "org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalArgumentException: fromIndex(50) > toIndex(3)",
"path": "/portfolio/v1/individuallending/products/lending/cases/lending_loan_001/plannedpayments"
}
``` | 1.0 | Fix: Planned payment fetch more failed - **Summary:**
initially, we are fetching the `50` planned payments at the page `0` and getting the planned payments as a response
```
{
"chargeNames": [
{
"identifier": "processing-fee",
"name": "Processing fee"
},
{
"identifier": "loan-origination-fee",
"name": "Loan origination fee"
},
{
"identifier": "disburse-payment",
"name": "Disburse payment"
},
{
"identifier": "return-disbursement",
"name": "Return disbursement"
},
{
"identifier": "disbursement-fee",
"name": "Disbursement fee"
},
{
"identifier": "track-return-principal",
"name": "Track return principal"
},
{
"identifier": "loan-funds-allocation",
"name": "loan-funds-allocation"
},
{
"identifier": "track-disburse-payment",
"name": "Track disburse payment"
},
{
"identifier": "repayment",
"name": "Repayment"
},
{
"identifier": "interest",
"name": "Interest"
}
],
"elements": [
{
"interestRate": null,
"costComponents": [
{
"chargeIdentifier": "loan-funds-allocation",
"amount": 1500
},
{
"chargeIdentifier": "processing-fee",
"amount": 15
},
{
"chargeIdentifier": "disbursement-fee",
"amount": 1.5
},
{
"chargeIdentifier": "loan-origination-fee",
"amount": 15
},
{
"chargeIdentifier": "return-disbursement",
"amount": 1500
},
{
"chargeIdentifier": "track-disburse-payment",
"amount": 0
},
{
"chargeIdentifier": "disburse-payment",
"amount": 0
}
],
"remainingPrincipal": 1500,
"date": null
},
{
"interestRate": null,
"costComponents": [
{
"chargeIdentifier": "repayment",
"amount": 752.7
},
{
"chargeIdentifier": "interest",
"amount": 1.03
},
{
"chargeIdentifier": "track-return-principal",
"amount": 751.67
}
],
"remainingPrincipal": 748.33,
"date": "2017-09-01Z"
},
{
"interestRate": null,
"costComponents": [
{
"chargeIdentifier": "repayment",
"amount": 755.7
},
{
"chargeIdentifier": "interest",
"amount": 3.08
},
{
"chargeIdentifier": "track-return-principal",
"amount": 748.33
}
],
"remainingPrincipal": 0,
"date": "2017-10-01Z"
}
],
"totalPages": 1,
"totalElements": 3
}```
You can see in response we are getting `totalPages` and `totalElements`. We need to refactor our current load more REST API call according to these two parameter otherwise server is giving this error.
```
{
"timestamp": 1503811590076,
"status": 500,
"error": "Internal Server Error",
"exception": "java.lang.IllegalArgumentException",
"message": "org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalArgumentException: fromIndex(50) > toIndex(3)",
"path": "/portfolio/v1/individuallending/products/lending/cases/lending_loan_001/plannedpayments"
}
``` | priority | fix planned payment fetch more failed summary initially we are fetching the planned payments at the page and getting the planned payments as a response chargenames identifier processing fee name processing fee identifier loan origination fee name loan origination fee identifier disburse payment name disburse payment identifier return disbursement name return disbursement identifier disbursement fee name disbursement fee identifier track return principal name track return principal identifier loan funds allocation name loan funds allocation identifier track disburse payment name track disburse payment identifier repayment name repayment identifier interest name interest elements interestrate null costcomponents chargeidentifier loan funds allocation amount chargeidentifier processing fee amount chargeidentifier disbursement fee amount chargeidentifier loan origination fee amount chargeidentifier return disbursement amount chargeidentifier track disburse payment amount chargeidentifier disburse payment amount remainingprincipal date null interestrate null costcomponents chargeidentifier repayment amount chargeidentifier interest amount chargeidentifier track return principal amount remainingprincipal date interestrate null costcomponents chargeidentifier repayment amount chargeidentifier interest amount chargeidentifier track return principal amount remainingprincipal date totalpages totalelements you can see in response we are getting totalpages and totalelements we need to refactor our current load more rest api call according to these two parameter otherwise server is giving this error timestamp status error internal server error exception java lang illegalargumentexception message org springframework web util nestedservletexception request processing failed nested exception is java lang illegalargumentexception fromindex toindex path portfolio individuallending products lending cases lending loan plannedpayments | 1 |
375,661 | 11,115,017,638 | IssuesEvent | 2019-12-18 09:53:39 | huridocs/uwazi | https://api.github.com/repos/huridocs/uwazi | closed | Ensure correct import / cast of values for Geolocations | Bug Priority: Medium Status: Sprint | Some instances have recorded strings instead of numbers in their geolocation fields after import.
Also, there are some values that have been imported with non-geolocation values. Should we implement some sort of validation for the CSV import? | 1.0 | Ensure correct import / cast of values for Geolocations - Some instances have recorded strings instead of numbers in their geolocation fields after import.
Also, there are some values that have been imported with non-geolocation values. Should we implement some sort of validation for the CSV import? | priority | ensure correct import cast of values for geolocations some instances have recorded strings instead of numbers in their geolocation fields after import also there are some values that have been imported with non geolocation values should we implement some sort of validation for the csv import | 1 |
645,361 | 21,002,779,454 | IssuesEvent | 2022-03-29 19:10:39 | AY2122S2-CS2103T-W09-2/tp | https://api.github.com/repos/AY2122S2-CS2103T-W09-2/tp | closed | Create and update test cases for LogicManager | type.Task priority.Medium | As a developer of CinnamonBun, I can automate the testing of LogicManager, so I know if there are any issues when I modify the code.
**Description:**
Previously LogicManager was removed as huge changes were done to the code base. Let's add it back in along with adding updated test cases to ensure our code is better covered.
| 1.0 | Create and update test cases for LogicManager - As a developer of CinnamonBun, I can automate the testing of LogicManager, so I know if there are any issues when I modify the code.
**Description:**
Previously LogicManager was removed as huge changes were done to the code base. Let's add it back in along with adding updated test cases to ensure our code is better covered.
| priority | create and update test cases for logicmanager as a developer of cinnamonbun i can automate the testing of logicmanager so i know if there are any issues when i modify the code description previously logicmanager was removed as huge changes were done to the code base let s add it back in along with adding updated test cases to ensure our code is better covered | 1 |
100,219 | 4,081,326,288 | IssuesEvent | 2016-05-31 08:28:29 | w3c/webpayments | https://api.github.com/repos/w3c/webpayments | opened | Terminology across all Web Payments documents should be aligned | bug Priority: Medium | Migrated from https://github.com/w3c/browser-payment-api/issues/43 by @msporny
Migrating from https://github.com/w3c/webpayments/issues/23:
The specs should import the Web Payments IG glossary. An example of how to do this is in the Web Payments CG's Browser API spec:
https://github.com/WICG/web-payments-browser-api/blob/5034393370c54226eb13fbdacde2462ba5e11713/index.html#L170-L177
You will also need to include a script here:
https://github.com/WICG/web-payments-browser-api/blob/5034393370c54226eb13fbdacde2462ba5e11713/index.html#L13
which can be found here:
https://github.com/WICG/web-payments-browser-api/blob/5034393370c54226eb13fbdacde2462ba5e11713/utils.js
Spec refs:
http://wicg.github.io/paymentrequest/specs/architecture.html#glossary
http://wicg.github.io/web-payments-browser-api/#terminology | 1.0 | Terminology across all Web Payments documents should be aligned - Migrated from https://github.com/w3c/browser-payment-api/issues/43 by @msporny
Migrating from https://github.com/w3c/webpayments/issues/23:
The specs should import the Web Payments IG glossary. An example of how to do this is in the Web Payments CG's Browser API spec:
https://github.com/WICG/web-payments-browser-api/blob/5034393370c54226eb13fbdacde2462ba5e11713/index.html#L170-L177
You will also need to include a script here:
https://github.com/WICG/web-payments-browser-api/blob/5034393370c54226eb13fbdacde2462ba5e11713/index.html#L13
which can be found here:
https://github.com/WICG/web-payments-browser-api/blob/5034393370c54226eb13fbdacde2462ba5e11713/utils.js
Spec refs:
http://wicg.github.io/paymentrequest/specs/architecture.html#glossary
http://wicg.github.io/web-payments-browser-api/#terminology | priority | terminology across all web payments documents should be aligned migrated from by msporny migrating from the specs should import the web payments ig glossary an example of how to do this is in the web payments cg s browser api spec you will also need to include a script here which can be found here spec refs | 1 |
546,048 | 15,983,342,848 | IssuesEvent | 2021-04-18 08:45:30 | tatapuchi/Idle-Developer | https://api.github.com/repos/tatapuchi/Idle-Developer | closed | Implement Base Shop Page | feature medium priority | **Describe the solution you'd like**
Create a basic prototype implementation of the shop page such that the play can buy and obtain in game items | 1.0 | Implement Base Shop Page - **Describe the solution you'd like**
Create a basic prototype implementation of the shop page such that the play can buy and obtain in game items | priority | implement base shop page describe the solution you d like create a basic prototype implementation of the shop page such that the play can buy and obtain in game items | 1 |
802,693 | 29,044,336,385 | IssuesEvent | 2023-05-13 11:05:49 | vdjagilev/nmap-formatter | https://api.github.com/repos/vdjagilev/nmap-formatter | closed | OS class have multiple values | type/bug priority/medium tech/go prop/bc-break tech/xml | `osclass` have multiple values (from radialnet example nmap xml file):
```xml
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="91" />
<osclass type="security-misc" vendor="Aladdin" osfamily="Linux" osgen="2.4.X" accuracy="88" />
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.4.X" accuracy="87" />
<osclass type="switch" vendor="QLogic" osfamily="embedded" accuracy="87" />
<osclass type="PDA" vendor="Sharp" osfamily="Linux" osgen="2.4.X" accuracy="87" />
<osclass type="VoIP gateway" vendor="Tandberg" osfamily="Linux" osgen="2.6.X" accuracy="87" />
<osclass type="WAP" vendor="Siemens" osfamily="Linux" accuracy="87" />
<osclass type="server appliance" vendor="Toshiba" osfamily="Linux" osgen="2.4.X" accuracy="87" />
<osclass type="VoIP gateway" vendor="Occam" osfamily="embedded" accuracy="86" />
<osclass type="WAP" vendor="FON" osfamily="Linux" osgen="2.4.X" accuracy="86" />
```
Now OS struct have to have `OSClass` as `[]OSClass`, which is a BC-break
```go
// OS describes all information about underlying operating system that this host operates
type OS struct {
OSPortUsed []OSPortUsed `xml:"portused"`
OSClass []OSClass `xml:"osclass"` // <--- []
OSMatch []OSMatch `xml:"osmatch"`
}
```
This would require changes in all formats and the way they display data | 1.0 | OS class have multiple values - `osclass` have multiple values (from radialnet example nmap xml file):
```xml
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="91" />
<osclass type="security-misc" vendor="Aladdin" osfamily="Linux" osgen="2.4.X" accuracy="88" />
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.4.X" accuracy="87" />
<osclass type="switch" vendor="QLogic" osfamily="embedded" accuracy="87" />
<osclass type="PDA" vendor="Sharp" osfamily="Linux" osgen="2.4.X" accuracy="87" />
<osclass type="VoIP gateway" vendor="Tandberg" osfamily="Linux" osgen="2.6.X" accuracy="87" />
<osclass type="WAP" vendor="Siemens" osfamily="Linux" accuracy="87" />
<osclass type="server appliance" vendor="Toshiba" osfamily="Linux" osgen="2.4.X" accuracy="87" />
<osclass type="VoIP gateway" vendor="Occam" osfamily="embedded" accuracy="86" />
<osclass type="WAP" vendor="FON" osfamily="Linux" osgen="2.4.X" accuracy="86" />
```
Now OS struct have to have `OSClass` as `[]OSClass`, which is a BC-break
```go
// OS describes all information about underlying operating system that this host operates
type OS struct {
OSPortUsed []OSPortUsed `xml:"portused"`
OSClass []OSClass `xml:"osclass"` // <--- []
OSMatch []OSMatch `xml:"osmatch"`
}
```
This would require changes in all formats and the way they display data | priority | os class have multiple values osclass have multiple values from radialnet example nmap xml file xml now os struct have to have osclass as osclass which is a bc break go os describes all information about underlying operating system that this host operates type os struct osportused osportused xml portused osclass osclass xml osclass osmatch osmatch xml osmatch this would require changes in all formats and the way they display data | 1 |
105,378 | 4,234,791,312 | IssuesEvent | 2016-07-05 13:17:06 | lale-help/lale-help | https://api.github.com/repos/lale-help/lale-help | closed | Add google analytics tracking id to staging.lale.help | priority:medium status: delivered | Related to #365, the analytics ID for staging is UA-69286385-3.
```
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-69286385-3', 'auto');
ga('send', 'pageview');
</script>
```
| 1.0 | Add google analytics tracking id to staging.lale.help - Related to #365, the analytics ID for staging is UA-69286385-3.
```
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-69286385-3', 'auto');
ga('send', 'pageview');
</script>
```
| priority | add google analytics tracking id to staging lale help related to the analytics id for staging is ua function i s o g r a m i r i i function i q i q push arguments i l new date a s createelement o m s getelementsbytagname o a async a src g m parentnode insertbefore a m window document script ga create ua auto ga send pageview | 1 |
777,430 | 27,279,413,195 | IssuesEvent | 2023-02-23 08:56:43 | dodona-edu/dodona | https://api.github.com/repos/dodona-edu/dodona | closed | Remove Indianio support | medium priority enhancement | There are currently a few open issues involving streamlining the format of the several exports we offer. Before tackling those, it would make sense to investigate if Indianio support can be removed. This would simplify the code and thus the changes needed for a more uniform export.
Indianio support is disabled by default and can only be enabled for courses associated with Ghent University. This means we can easily track the use of this feature. In 2020-2021, only a single course enabled Indianio support. We will discuss the need for this feature with the teacher of this course. | 1.0 | Remove Indianio support - There are currently a few open issues involving streamlining the format of the several exports we offer. Before tackling those, it would make sense to investigate if Indianio support can be removed. This would simplify the code and thus the changes needed for a more uniform export.
Indianio support is disabled by default and can only be enabled for courses associated with Ghent University. This means we can easily track the use of this feature. In 2020-2021, only a single course enabled Indianio support. We will discuss the need for this feature with the teacher of this course. | priority | remove indianio support there are currently a few open issues involving streamlining the format of the several exports we offer before tackling those it would make sense to investigate if indianio support can be removed this would simplify the code and thus the changes needed for a more uniform export indianio support is disabled by default and can only be enabled for courses associated with ghent university this means we can easily track the use of this feature in only a single course enabled indianio support we will discuss the need for this feature with the teacher of this course | 1 |
559,218 | 16,552,734,557 | IssuesEvent | 2021-05-28 10:26:10 | FAIRsharing/fairsharing.github.io | https://api.github.com/repos/FAIRsharing/fairsharing.github.io | closed | Define internal and external link in footerData.json | Medium priority | in order for front end side to distinct internal and external link in footer, there should be a typeLink defined telling developer how to deal with it as an internal route or external... | 1.0 | Define internal and external link in footerData.json - in order for front end side to distinct internal and external link in footer, there should be a typeLink defined telling developer how to deal with it as an internal route or external... | priority | define internal and external link in footerdata json in order for front end side to distinct internal and external link in footer there should be a typelink defined telling developer how to deal with it as an internal route or external | 1 |
359,858 | 10,681,808,263 | IssuesEvent | 2019-10-22 02:29:17 | RoboJackets/apiary | https://api.github.com/repos/RoboJackets/apiary | closed | Resume book generation | area / backend area / frontend priority / medium type / feature | Upload resume on user profile semesterly, then generate one big PDF for companies | 1.0 | Resume book generation - Upload resume on user profile semesterly, then generate one big PDF for companies | priority | resume book generation upload resume on user profile semesterly then generate one big pdf for companies | 1 |
5,777 | 2,579,503,637 | IssuesEvent | 2015-02-13 10:47:54 | olga-jane/prizm | https://api.github.com/repos/olga-jane/prizm | closed | Loading (Shipping) report at Mill | bug bug - functional Coding MEDIUM priority Reports | Loading report doesn't display railcar information
Reason:
SubReportForLoadingXtraReport have wrong sqlDataSource (CustomSqlQuery should have right SQL query)
SQL query should be like this, but Xtra report doesn't processes such query:
select rn.number, r.number number,destination, certificate, n.length length,n.weight weight from Railcar r inner join (select SUM (length) length, sum (weight) weight, railcarId from Pipe group by railcarId) n on n.railcarId = r.id inner join releaseNote rn on rn.id=r.releaseNoteId | 1.0 | Loading (Shipping) report at Mill - Loading report doesn't display railcar information
Reason:
SubReportForLoadingXtraReport have wrong sqlDataSource (CustomSqlQuery should have right SQL query)
SQL query should be like this, but Xtra report doesn't processes such query:
select rn.number, r.number number,destination, certificate, n.length length,n.weight weight from Railcar r inner join (select SUM (length) length, sum (weight) weight, railcarId from Pipe group by railcarId) n on n.railcarId = r.id inner join releaseNote rn on rn.id=r.releaseNoteId | priority | loading shipping report at mill loading report doesn t display railcar information reason subreportforloadingxtrareport have wrong sqldatasource customsqlquery should have right sql query sql query should be like this but xtra report doesn t processes such query select rn number r number number destination certificate n length length n weight weight from railcar r inner join select sum length length sum weight weight railcarid from pipe group by railcarid n on n railcarid r id inner join releasenote rn on rn id r releasenoteid | 1 |
307,736 | 9,421,642,531 | IssuesEvent | 2019-04-11 07:24:42 | teleskope/teleskope | https://api.github.com/repos/teleskope/teleskope | closed | Register as a Company | Priority: Medium UI | Do all work for this task in a branch called issue-23
## Description
### What is the new behavior (if this is a feature change)?
- company and student should be able to register for their respective roles from the registration page.
| 1.0 | Register as a Company - Do all work for this task in a branch called issue-23
## Description
### What is the new behavior (if this is a feature change)?
- company and student should be able to register for their respective roles from the registration page.
| priority | register as a company do all work for this task in a branch called issue description what is the new behavior if this is a feature change company and student should be able to register for their respective roles from the registration page | 1 |
784,201 | 27,561,243,015 | IssuesEvent | 2023-03-07 22:14:43 | rancher/rancher-docs | https://api.github.com/repos/rancher/rancher-docs | closed | Confusion around organization of content under "Authentication, Permissions, and Global Configurations" | priority/medium docs-site-meta good-first-issue | From Slack:
> Any idea why this is below the authentication section in docs? [https://ranchermanager.docs.rancher.com/how-to-guides/new-user-guides/authentication-permiss[…]ons-and-global-configuration/manage-cluster-templates](https://ranchermanager.docs.rancher.com/how-to-guides/new-user-guides/authentication-permissions-and-global-configuration/manage-cluster-templates#deploying-clusters-from-a-template-with-fleet) I would have expected this in an area about creating downstream clusters… but maybe we should split the chapter “authenticaion… global configuration” into two or three chapters?
Background context: based on previous feedback there was an effort to reduce the number of levels in the sidebar so that navigation would be easier for users. This may have resulted in new groupings that may not be as ntuitive, such as the example provided here.
| 1.0 | Confusion around organization of content under "Authentication, Permissions, and Global Configurations" - From Slack:
> Any idea why this is below the authentication section in docs? [https://ranchermanager.docs.rancher.com/how-to-guides/new-user-guides/authentication-permiss[…]ons-and-global-configuration/manage-cluster-templates](https://ranchermanager.docs.rancher.com/how-to-guides/new-user-guides/authentication-permissions-and-global-configuration/manage-cluster-templates#deploying-clusters-from-a-template-with-fleet) I would have expected this in an area about creating downstream clusters… but maybe we should split the chapter “authenticaion… global configuration” into two or three chapters?
Background context: based on previous feedback there was an effort to reduce the number of levels in the sidebar so that navigation would be easier for users. This may have resulted in new groupings that may not be as ntuitive, such as the example provided here.
| priority | confusion around organization of content under authentication permissions and global configurations from slack any idea why this is below the authentication section in docs ons and global configuration manage cluster templates i would have expected this in an area about creating downstream clusters… but maybe we should split the chapter “authenticaion… global configuration” into two or three chapters background context based on previous feedback there was an effort to reduce the number of levels in the sidebar so that navigation would be easier for users this may have resulted in new groupings that may not be as ntuitive such as the example provided here | 1 |
87,183 | 3,738,836,204 | IssuesEvent | 2016-03-09 00:46:18 | AtomicGameEngine/AtomicGameEngine | https://api.github.com/repos/AtomicGameEngine/AtomicGameEngine | closed | Enable 3D API on Web Build | difficulty: 3 priority: medium type: enhancement | The current WebPlayer deployment is 2D only, add a 3D option (maybe need both for now until have discrete 2D/3D projects?) Also, update the current version of Emscripten | 1.0 | Enable 3D API on Web Build - The current WebPlayer deployment is 2D only, add a 3D option (maybe need both for now until have discrete 2D/3D projects?) Also, update the current version of Emscripten | priority | enable api on web build the current webplayer deployment is only add a option maybe need both for now until have discrete projects also update the current version of emscripten | 1 |
674,326 | 23,046,599,485 | IssuesEvent | 2022-07-24 01:33:18 | Vooper-Media-LLC/Valour | https://api.github.com/repos/Vooper-Media-LLC/Valour | closed | 🏗 Feature - DMs | Enhancement Medium Priority | # Board Feature Request
DMs
## Describe Issue
Have a functioning DM system
| 1.0 | 🏗 Feature - DMs - # Board Feature Request
DMs
## Describe Issue
Have a functioning DM system
| priority | 🏗 feature dms board feature request dms describe issue have a functioning dm system | 1 |
658,117 | 21,878,480,766 | IssuesEvent | 2022-05-19 12:27:22 | bounswe/bounswe2022group9 | https://api.github.com/repos/bounswe/bounswe2022group9 | closed | Practice App: Adding back link to viewActivity page | Enhancement Priority: Medium Practice Application | Deadline: 19.05.2022 23.59
TODO:
- [x] A link should be added on viewActivity page to return to the home page. | 1.0 | Practice App: Adding back link to viewActivity page - Deadline: 19.05.2022 23.59
TODO:
- [x] A link should be added on viewActivity page to return to the home page. | priority | practice app adding back link to viewactivity page deadline todo a link should be added on viewactivity page to return to the home page | 1 |
29,480 | 2,716,139,445 | IssuesEvent | 2015-04-10 17:16:42 | CruxFramework/crux | https://api.github.com/repos/CruxFramework/crux | closed | Add one header on request to allow view identification when firing AJAX calls | enhancement imported Milestone-M14-C3 Priority-Medium | _From [thi...@cruxframework.org](https://code.google.com/u/114650528804514463329/) on June 13, 2014 17:45:19_
Purpose of enhancement We need to know the name of the view that was being displayed when each AJAX request occurred. It is important for auditing loggings on our application.
_Original issue: http://code.google.com/p/crux-framework/issues/detail?id=409_ | 1.0 | Add one header on request to allow view identification when firing AJAX calls - _From [thi...@cruxframework.org](https://code.google.com/u/114650528804514463329/) on June 13, 2014 17:45:19_
Purpose of enhancement We need to know the name of the view that was being displayed when each AJAX request occurred. It is important for auditing loggings on our application.
_Original issue: http://code.google.com/p/crux-framework/issues/detail?id=409_ | priority | add one header on request to allow view identification when firing ajax calls from on june purpose of enhancement we need to know the name of the view that was being displayed when each ajax request occurred it is important for auditing loggings on our application original issue | 1 |
329,270 | 10,014,234,451 | IssuesEvent | 2019-07-15 17:00:14 | canonical-web-and-design/jaas.ai | https://api.github.com/repos/canonical-web-and-design/jaas.ai | closed | [Copy Update] kubernetes - "Kubernetes" - jaas.ai | Priority: Medium | @SirSamTumless commented on [Tue Jun 04 2019](https://github.com/canonical-web-and-design/www.ubuntu.com/issues/5249)
Please update kubernetes - "Kubernetes" - jaas.ai from the [copy doc](https://docs.google.com/document/d/1LXZM3RpFoIhInfdQI0Go7xL9hxCGcit1HVoncvm1cok/edit?usp=drivesdk)
---
@SirSamTumless commented on [Wed Jun 05 2019](https://github.com/canonical-web-and-design/www.ubuntu.com/issues/5249#issuecomment-498988927)
@WendyS1000 I have assigned you to this to review the changes that were made by Kelly.
| 1.0 | [Copy Update] kubernetes - "Kubernetes" - jaas.ai - @SirSamTumless commented on [Tue Jun 04 2019](https://github.com/canonical-web-and-design/www.ubuntu.com/issues/5249)
Please update kubernetes - "Kubernetes" - jaas.ai from the [copy doc](https://docs.google.com/document/d/1LXZM3RpFoIhInfdQI0Go7xL9hxCGcit1HVoncvm1cok/edit?usp=drivesdk)
---
@SirSamTumless commented on [Wed Jun 05 2019](https://github.com/canonical-web-and-design/www.ubuntu.com/issues/5249#issuecomment-498988927)
@WendyS1000 I have assigned you to this to review the changes that were made by Kelly.
| priority | kubernetes kubernetes jaas ai sirsamtumless commented on please update kubernetes kubernetes jaas ai from the sirsamtumless commented on i have assigned you to this to review the changes that were made by kelly | 1 |
230,761 | 7,613,628,676 | IssuesEvent | 2018-05-01 21:59:51 | kcgrimes/grimes-simple-revive | https://api.github.com/repos/kcgrimes/grimes-simple-revive | closed | Make use of MenuPosition optional | Priority: Medium Status: Completed Type: Feature | Currently MenuPosition is selected within the script. Re-arrange description.ext-related settings and allow the mission maker the option of using any of the respawn setting available in the editor. | 1.0 | Make use of MenuPosition optional - Currently MenuPosition is selected within the script. Re-arrange description.ext-related settings and allow the mission maker the option of using any of the respawn setting available in the editor. | priority | make use of menuposition optional currently menuposition is selected within the script re arrange description ext related settings and allow the mission maker the option of using any of the respawn setting available in the editor | 1 |
253,830 | 8,066,446,101 | IssuesEvent | 2018-08-04 15:54:51 | postcss/postcss-loader | https://api.github.com/repos/postcss/postcss-loader | closed | sourcemap loses information about source file from the previous sourcemap | priority: medium status: reproduce type: bug |
### `Details`
---
posscss-loader loses information about source file from the previous map.
links to a single app.scss file generated by sass-loader
### **with postcss-loader**

### **without postcss-loader**

### `Reproduction [Code]`
---
```js
{
test: /\.scss$/,
use: [{
loader: "style-loader",
options: { sourceMap: true }
},
{
loader: require.resolve('css-loader'),
options: {
importLoaders: 2,
sourceMap: true
},
},
{
loader: require.resolve('postcss-loader'),
options: {
sourceMap: true,
// Necessary for external CSS imports to work
// https://github.com/facebookincubator/create-react-app/issues/2677
ident: 'postcss',
plugins: () => [
require('postcss-flexbugs-fixes'),
autoprefixer({
browsers: [
'>1%',
'last 4 versions',
'Firefox ESR',
'not ie < 9', // React doesn't support IE8 anyway
],
flexbox: 'no-2009',
}),
],
},
},
{
loader: "sass-loader",
options: {
sourceMap: true,
includePaths: ["node_modules"]
}
}]
},
``` | 1.0 | sourcemap loses information about source file from the previous sourcemap -
### `Details`
---
posscss-loader loses information about source file from the previous map.
links to a single app.scss file generated by sass-loader
### **with postcss-loader**

### **without postcss-loader**

### `Reproduction [Code]`
---
```js
{
test: /\.scss$/,
use: [{
loader: "style-loader",
options: { sourceMap: true }
},
{
loader: require.resolve('css-loader'),
options: {
importLoaders: 2,
sourceMap: true
},
},
{
loader: require.resolve('postcss-loader'),
options: {
sourceMap: true,
// Necessary for external CSS imports to work
// https://github.com/facebookincubator/create-react-app/issues/2677
ident: 'postcss',
plugins: () => [
require('postcss-flexbugs-fixes'),
autoprefixer({
browsers: [
'>1%',
'last 4 versions',
'Firefox ESR',
'not ie < 9', // React doesn't support IE8 anyway
],
flexbox: 'no-2009',
}),
],
},
},
{
loader: "sass-loader",
options: {
sourceMap: true,
includePaths: ["node_modules"]
}
}]
},
``` | priority | sourcemap loses information about source file from the previous sourcemap details posscss loader loses information about source file from the previous map links to a single app scss file generated by sass loader with postcss loader without postcss loader reproduction js test scss use loader style loader options sourcemap true loader require resolve css loader options importloaders sourcemap true loader require resolve postcss loader options sourcemap true necessary for external css imports to work ident postcss plugins require postcss flexbugs fixes autoprefixer browsers last versions firefox esr not ie react doesn t support anyway flexbox no loader sass loader options sourcemap true includepaths | 1 |
304,885 | 9,337,168,409 | IssuesEvent | 2019-03-28 23:52:41 | bcgov/ols-router | https://api.github.com/repos/bcgov/ols-router | closed | In turn restriction editor, add support for clickable OSM street-level image photos | Turn restriction editor enhancement medium priority | Add a layer of street-level image photo points that when clicked, pop-up the appropriate street photo and an attribution link. The image icon should be a cone like in OSM ID that indicates camera orientation at time of photo. | 1.0 | In turn restriction editor, add support for clickable OSM street-level image photos - Add a layer of street-level image photo points that when clicked, pop-up the appropriate street photo and an attribution link. The image icon should be a cone like in OSM ID that indicates camera orientation at time of photo. | priority | in turn restriction editor add support for clickable osm street level image photos add a layer of street level image photo points that when clicked pop up the appropriate street photo and an attribution link the image icon should be a cone like in osm id that indicates camera orientation at time of photo | 1 |
26,223 | 2,684,248,714 | IssuesEvent | 2015-03-28 20:04:32 | ConEmu/old-issues | https://api.github.com/repos/ConEmu/old-issues | opened | Использование памяти ConEmu | 1 star bug imported Priority-Medium | _From [Dmitriy....@gmail.com](https://code.google.com/u/118428503880752500726/) on December 21, 2012 04:33:39_
OS version: Win7 SP1 x64 (с откллюченным свопом) ConEmu version: 121216
Far version: 2.0 r1807 x86 *Bug description* Последние версии ConEmu используют в два раза больше оперативы - 17+6 MB против 6MB на старенькой v2008.3.26.0
Если запустить 5 инстансов фара в отдельном окне - это уже -100мб на ровном месте. Можно как-то уменьшить аппетиты? *Steps to reproduction* 1. Запустить FAR
2. Открыть Task Manager и посмотреть столбцы Working Set и Private Working Set.
На приатаченной картинке
* ConEmu _old.exe - это v2008.3.26.0
* ConEmu .exe и ConEmu C.exe - это 121216
**Attachment:** [conemu.png](http://code.google.com/p/conemu-maximus5/issues/detail?id=855)
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=855_ | 1.0 | Использование памяти ConEmu - _From [Dmitriy....@gmail.com](https://code.google.com/u/118428503880752500726/) on December 21, 2012 04:33:39_
OS version: Win7 SP1 x64 (с откллюченным свопом) ConEmu version: 121216
Far version: 2.0 r1807 x86 *Bug description* Последние версии ConEmu используют в два раза больше оперативы - 17+6 MB против 6MB на старенькой v2008.3.26.0
Если запустить 5 инстансов фара в отдельном окне - это уже -100мб на ровном месте. Можно как-то уменьшить аппетиты? *Steps to reproduction* 1. Запустить FAR
2. Открыть Task Manager и посмотреть столбцы Working Set и Private Working Set.
На приатаченной картинке
* ConEmu _old.exe - это v2008.3.26.0
* ConEmu .exe и ConEmu C.exe - это 121216
**Attachment:** [conemu.png](http://code.google.com/p/conemu-maximus5/issues/detail?id=855)
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=855_ | priority | использование памяти conemu from on december os version с откллюченным свопом conemu version far version bug description последние версии conemu используют в два раза больше оперативы mb против на старенькой если запустить инстансов фара в отдельном окне это уже на ровном месте можно как то уменьшить аппетиты steps to reproduction запустить far открыть task manager и посмотреть столбцы working set и private working set на приатаченной картинке conemu old exe это conemu exe и conemu c exe это attachment original issue | 1 |
45,615 | 2,937,573,977 | IssuesEvent | 2015-07-01 03:18:21 | isuPatches/RockThePatch | https://api.github.com/repos/isuPatches/RockThePatch | closed | GitHub API has a rate limit and messages that should be shown | Affected- Develop Bug Bug Severity - Priority 3 (medium) Bug Source - External Source Bug Type - Other Fixed In - Develop Found By Me Found In - Develop Resolution - Fixed Status - Fixed And Has A Commit | Sometimes there's a hiccup and I need to show the GitHub API message or an error dialog instead of attempting to still show the github issues for bugs and projects. | 1.0 | GitHub API has a rate limit and messages that should be shown - Sometimes there's a hiccup and I need to show the GitHub API message or an error dialog instead of attempting to still show the github issues for bugs and projects. | priority | github api has a rate limit and messages that should be shown sometimes there s a hiccup and i need to show the github api message or an error dialog instead of attempting to still show the github issues for bugs and projects | 1 |
398,251 | 11,739,399,362 | IssuesEvent | 2020-03-11 17:38:34 | thaliawww/ThaliApp | https://api.github.com/repos/thaliawww/ThaliApp | closed | The dot indicating whether you are registered for an event or not partially covers text | bug priority: medium | In GitLab by @joren485 on Jul 20, 2018, 11:27
### One-sentence description
The dot indicating whether you are registered for an event or not partially covers text
### Current behaviour

The word "Berendonck" is (partially) covered.
### Expected behaviour
The text is fully visible.
### Steps to reproduce
1. Register for an event with a long location description.
2. Look at the registration on the welcome screen of the app. | 1.0 | The dot indicating whether you are registered for an event or not partially covers text - In GitLab by @joren485 on Jul 20, 2018, 11:27
### One-sentence description
The dot indicating whether you are registered for an event or not partially covers text
### Current behaviour

The word "Berendonck" is (partially) covered.
### Expected behaviour
The text is fully visible.
### Steps to reproduce
1. Register for an event with a long location description.
2. Look at the registration on the welcome screen of the app. | priority | the dot indicating whether you are registered for an event or not partially covers text in gitlab by on jul one sentence description the dot indicating whether you are registered for an event or not partially covers text current behaviour the word berendonck is partially covered expected behaviour the text is fully visible steps to reproduce register for an event with a long location description look at the registration on the welcome screen of the app | 1 |
112,042 | 4,501,646,817 | IssuesEvent | 2016-09-01 10:07:17 | thommoboy/There-are-no-brakes | https://api.github.com/repos/thommoboy/There-are-no-brakes | opened | cross movement not clear when zoomed out | enhancement Priority Medium Tutorial | simplest solution is just to make it move back a lot more so the shadows move in over the cross and change the color seen on it, making it much more obvious | 1.0 | cross movement not clear when zoomed out - simplest solution is just to make it move back a lot more so the shadows move in over the cross and change the color seen on it, making it much more obvious | priority | cross movement not clear when zoomed out simplest solution is just to make it move back a lot more so the shadows move in over the cross and change the color seen on it making it much more obvious | 1 |
360,965 | 10,699,927,903 | IssuesEvent | 2019-10-23 22:12:38 | RoboJackets/apiary | https://api.github.com/repos/RoboJackets/apiary | closed | Add a card to the dashboard if a user has a pending GitHub invitation | area / frontend priority / medium type / feature | Also expose this field in Nova (maybe split out the GitHub fields?)
Updates to this attribute will be pushed by JEDI once an invitation has been successfully created or accepted.
JEDI will handle all GitHub interactions. | 1.0 | Add a card to the dashboard if a user has a pending GitHub invitation - Also expose this field in Nova (maybe split out the GitHub fields?)
Updates to this attribute will be pushed by JEDI once an invitation has been successfully created or accepted.
JEDI will handle all GitHub interactions. | priority | add a card to the dashboard if a user has a pending github invitation also expose this field in nova maybe split out the github fields updates to this attribute will be pushed by jedi once an invitation has been successfully created or accepted jedi will handle all github interactions | 1 |
758,248 | 26,547,279,767 | IssuesEvent | 2023-01-20 02:10:45 | Alluxio/alluxio | https://api.github.com/repos/Alluxio/alluxio | closed | Add documentation on launch proxy in a docker or helmchart | type-docs priority-medium area-k8s task-easy area-docs | **Page**
https://docs.alluxio.io/os/user/stable/en/api/S3-API.html
**Summary**
This page only talks about how to interact using S3 API,
Right now the documentation assumes the ProxyServer is running and configured already
but i could not find pages talking about how to launch and configure ProxyServer in order to enable S3 API.
E.g., how to achieve this in docker or helmchart
This is reported from user slack channel:
https://alluxio-community.slack.com/archives/CEXGGUBDK/p1617116386075100
| 1.0 | Add documentation on launch proxy in a docker or helmchart - **Page**
https://docs.alluxio.io/os/user/stable/en/api/S3-API.html
**Summary**
This page only talks about how to interact using S3 API,
Right now the documentation assumes the ProxyServer is running and configured already
but i could not find pages talking about how to launch and configure ProxyServer in order to enable S3 API.
E.g., how to achieve this in docker or helmchart
This is reported from user slack channel:
https://alluxio-community.slack.com/archives/CEXGGUBDK/p1617116386075100
| priority | add documentation on launch proxy in a docker or helmchart page summary this page only talks about how to interact using api right now the documentation assumes the proxyserver is running and configured already but i could not find pages talking about how to launch and configure proxyserver in order to enable api e g how to achieve this in docker or helmchart this is reported from user slack channel | 1 |
51,939 | 3,015,717,527 | IssuesEvent | 2015-07-29 21:03:31 | washingtontrails/vms | https://api.github.com/repos/washingtontrails/vms | opened | Fix semi-transparent text for waitlisted volunteers on roster | Medium Priority Pyramid | Charlie said:
The folks that are Wait Listed have that detail view popup in a semitransparent box (Firefox v39) which is hard to read, can you change that to a solid background as with the registered volunteers? Perhaps use a different color background for those on the wait list but keep it solid rather than transparent. | 1.0 | Fix semi-transparent text for waitlisted volunteers on roster - Charlie said:
The folks that are Wait Listed have that detail view popup in a semitransparent box (Firefox v39) which is hard to read, can you change that to a solid background as with the registered volunteers? Perhaps use a different color background for those on the wait list but keep it solid rather than transparent. | priority | fix semi transparent text for waitlisted volunteers on roster charlie said the folks that are wait listed have that detail view popup in a semitransparent box firefox which is hard to read can you change that to a solid background as with the registered volunteers perhaps use a different color background for those on the wait list but keep it solid rather than transparent | 1 |
790,964 | 27,844,732,324 | IssuesEvent | 2023-03-20 14:50:53 | EvoMapViz/EvoMapJS | https://api.github.com/repos/EvoMapViz/EvoMapJS | opened | Wrong time label position after zoom when adaptive size is UNselected | bug medium-priority | Before slight zoom:
<img width="579" alt="Screen Shot 2023-03-20 at 10 49 07 AM" src="https://user-images.githubusercontent.com/2767157/226377143-2bc0eef0-5821-4ef2-a4be-923e6c79ca9d.png">
After slight zoom:
<img width="522" alt="Screen Shot 2023-03-20 at 10 49 13 AM" src="https://user-images.githubusercontent.com/2767157/226377199-0aca24f8-520f-4337-9029-7d36937e19da.png">
| 1.0 | Wrong time label position after zoom when adaptive size is UNselected - Before slight zoom:
<img width="579" alt="Screen Shot 2023-03-20 at 10 49 07 AM" src="https://user-images.githubusercontent.com/2767157/226377143-2bc0eef0-5821-4ef2-a4be-923e6c79ca9d.png">
After slight zoom:
<img width="522" alt="Screen Shot 2023-03-20 at 10 49 13 AM" src="https://user-images.githubusercontent.com/2767157/226377199-0aca24f8-520f-4337-9029-7d36937e19da.png">
| priority | wrong time label position after zoom when adaptive size is unselected before slight zoom img width alt screen shot at am src after slight zoom img width alt screen shot at am src | 1 |
53,831 | 3,051,595,790 | IssuesEvent | 2015-08-12 09:38:00 | HubTurbo/HubTurbo | https://api.github.com/repos/HubTurbo/HubTurbo | closed | Label picker goes off screen | feature-labels priority.medium | 
This happened in a Win 8 laptop with only one screen.
resolution: 1920x1200 | 1.0 | Label picker goes off screen - 
This happened in a Win 8 laptop with only one screen.
resolution: 1920x1200 | priority | label picker goes off screen this happened in a win laptop with only one screen resolution | 1 |
584,129 | 17,406,978,869 | IssuesEvent | 2021-08-03 07:28:18 | capitalone/DataProfiler | https://api.github.com/repos/capitalone/DataProfiler | closed | Disable output / silent option? | Medium Priority Refactor | Would it be possible to have an option to disable any output / info messages when running the Profiler? I've had a look at the sources, and it seems simple `print`s are used, e.g. for:
```
Finding the Null values in the columns... (with 9 processes)
...
```
Maybe there could be a 'silent=True' option in the Profiler base class, or something similar? Having this output in the (standard) log(s) would still be useful, but as it is it gets in the way of my 'normal' command-line output, unless I apply some dodgy workarounds... | 1.0 | Disable output / silent option? - Would it be possible to have an option to disable any output / info messages when running the Profiler? I've had a look at the sources, and it seems simple `print`s are used, e.g. for:
```
Finding the Null values in the columns... (with 9 processes)
...
```
Maybe there could be a 'silent=True' option in the Profiler base class, or something similar? Having this output in the (standard) log(s) would still be useful, but as it is it gets in the way of my 'normal' command-line output, unless I apply some dodgy workarounds... | priority | disable output silent option would it be possible to have an option to disable any output info messages when running the profiler i ve had a look at the sources and it seems simple print s are used e g for finding the null values in the columns with processes maybe there could be a silent true option in the profiler base class or something similar having this output in the standard log s would still be useful but as it is it gets in the way of my normal command line output unless i apply some dodgy workarounds | 1 |
672,819 | 22,840,821,202 | IssuesEvent | 2022-07-12 21:38:34 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [DocDB] xCluster with bootstrap CDC producer for YCQL missing rows | kind/bug area/docdb priority/medium | Jira Link: [DB-2884](https://yugabyte.atlassian.net/browse/DB-2884)
### Description
1. Create 2 Universes(Universe-1(source) and Universe-2(target))
2. Create Keyspace, tables in source universe
```
create keyspace if not exists xcluster_with_bootstrap_cdc;
create table xcluster_with_bootstrap_cdc.employees(id text, ename text, age int, city text, about_me text, primary key(id));
```
3. Load some data at source universe
4. Run bootstrap cdc command at source universe and collect bootstrap cdc ids
5. Compare rows in `employees` on target universe with source
Expected: Same rows, Actual: About half the rows are missing. This is happening since https://phabricator.dev.yugabyte.com/D16001 | 1.0 | [DocDB] xCluster with bootstrap CDC producer for YCQL missing rows - Jira Link: [DB-2884](https://yugabyte.atlassian.net/browse/DB-2884)
### Description
1. Create 2 Universes(Universe-1(source) and Universe-2(target))
2. Create Keyspace, tables in source universe
```
create keyspace if not exists xcluster_with_bootstrap_cdc;
create table xcluster_with_bootstrap_cdc.employees(id text, ename text, age int, city text, about_me text, primary key(id));
```
3. Load some data at source universe
4. Run bootstrap cdc command at source universe and collect bootstrap cdc ids
5. Compare rows in `employees` on target universe with source
Expected: Same rows, Actual: About half the rows are missing. This is happening since https://phabricator.dev.yugabyte.com/D16001 | priority | xcluster with bootstrap cdc producer for ycql missing rows jira link description create universes universe source and universe target create keyspace tables in source universe create keyspace if not exists xcluster with bootstrap cdc create table xcluster with bootstrap cdc employees id text ename text age int city text about me text primary key id load some data at source universe run bootstrap cdc command at source universe and collect bootstrap cdc ids compare rows in employees on target universe with source expected same rows actual about half the rows are missing this is happening since | 1 |
494,764 | 14,264,977,852 | IssuesEvent | 2020-11-20 16:28:05 | ngageoint/hootenanny | https://api.github.com/repos/ngageoint/hootenanny | reopened | Need JSON conf syntax for list option replacement/removal | Category: Core Priority: Medium Status: Defined Type: Maintenance | From the command line you have:
* += to append to a list option
* ++= to prepend to a list option
* -= to remove from a list option
From JSON you can append:
` "conflate.post.ops": "$(conflate.post.ops);hoot::IdSwapOp;hoot::RemoveElementsVisitor;hoot::RemoveUnknown2Visitor",`
or prepend:
`"conflate.post.ops": "hoot::IdSwapOp;hoot::RemoveElementsVisitor;hoot::RemoveUnknown2Visitor;$(conflate.post.ops);",`
Need a way to do list option removal from a json config. This will help clean up `DifferentialConflation.conf` and possibly also `AttributeConflation.conf`. | 1.0 | Need JSON conf syntax for list option replacement/removal - From the command line you have:
* += to append to a list option
* ++= to prepend to a list option
* -= to remove from a list option
From JSON you can append:
` "conflate.post.ops": "$(conflate.post.ops);hoot::IdSwapOp;hoot::RemoveElementsVisitor;hoot::RemoveUnknown2Visitor",`
or prepend:
`"conflate.post.ops": "hoot::IdSwapOp;hoot::RemoveElementsVisitor;hoot::RemoveUnknown2Visitor;$(conflate.post.ops);",`
Need a way to do list option removal from a json config. This will help clean up `DifferentialConflation.conf` and possibly also `AttributeConflation.conf`. | priority | need json conf syntax for list option replacement removal from the command line you have to append to a list option to prepend to a list option to remove from a list option from json you can append conflate post ops conflate post ops hoot idswapop hoot removeelementsvisitor hoot or prepend conflate post ops hoot idswapop hoot removeelementsvisitor hoot conflate post ops need a way to do list option removal from a json config this will help clean up differentialconflation conf and possibly also attributeconflation conf | 1 |
65,501 | 3,228,551,476 | IssuesEvent | 2015-10-12 03:50:14 | nus-cs2103/website | https://api.github.com/repos/nus-cs2103/website | closed | Show the link text of embedded link as the heading of the loaded content | enhancement priority.medium | Because the loaded text does not have any heading, the reader doesn't know which link has been loaded.

| 1.0 | Show the link text of embedded link as the heading of the loaded content - Because the loaded text does not have any heading, the reader doesn't know which link has been loaded.

| priority | show the link text of embedded link as the heading of the loaded content because the loaded text does not have any heading the reader doesn t know which link has been loaded | 1 |
256,959 | 8,130,771,519 | IssuesEvent | 2018-08-17 19:46:13 | openforge/junto-scope | https://api.github.com/repos/openforge/junto-scope | opened | Scoping Session as Moderator: When finalizing the scope | Bug Priority: Medium | When Finalizing the scope for a task (selecting average/max/custom) the keyboard will push the submit button up, as well as any items above the submit button is they were towards the bottom of the page(See screenshot)
| 1.0 | Scoping Session as Moderator: When finalizing the scope - When Finalizing the scope for a task (selecting average/max/custom) the keyboard will push the submit button up, as well as any items above the submit button is they were towards the bottom of the page(See screenshot)
| priority | scoping session as moderator when finalizing the scope when finalizing the scope for a task selecting average max custom the keyboard will push the submit button up as well as any items above the submit button is they were towards the bottom of the page see screenshot | 1 |
431,451 | 12,479,564,411 | IssuesEvent | 2020-05-29 18:29:17 | cjshelton/blog | https://api.github.com/repos/cjshelton/blog | closed | Add custom domain | medium priority | Add the custom cshelton.co.uk domain to the blog to replace the default GitHub user URL. | 1.0 | Add custom domain - Add the custom cshelton.co.uk domain to the blog to replace the default GitHub user URL. | priority | add custom domain add the custom cshelton co uk domain to the blog to replace the default github user url | 1 |
40,712 | 2,868,937,757 | IssuesEvent | 2015-06-05 22:04:20 | dart-lang/pub | https://api.github.com/repos/dart-lang/pub | closed | Old tempdir directories on the 'pub-win' bot | bug Fixed Priority-Medium | <a href="https://github.com/mkustermann"><img src="https://avatars.githubusercontent.com/u/5757092?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [mkustermann](https://github.com/mkustermann)**
_Originally opened as dart-lang/sdk#7268_
----
There are a lot of left-over directories on the pub-win bot (in "C:\Users\chrome-bot\AppData\Local\Temp"). They have a "curl-headers" file in them.
The pub tests should make sure that there are no left-over directories in temp. | 1.0 | Old tempdir directories on the 'pub-win' bot - <a href="https://github.com/mkustermann"><img src="https://avatars.githubusercontent.com/u/5757092?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [mkustermann](https://github.com/mkustermann)**
_Originally opened as dart-lang/sdk#7268_
----
There are a lot of left-over directories on the pub-win bot (in "C:\Users\chrome-bot\AppData\Local\Temp"). They have a "curl-headers" file in them.
The pub tests should make sure that there are no left-over directories in temp. | priority | old tempdir directories on the pub win bot issue by originally opened as dart lang sdk there are a lot of left over directories on the pub win bot in quot c users chrome bot appdata local temp quot they have a quot curl headers quot file in them the pub tests should make sure that there are no left over directories in temp | 1 |
164,975 | 6,259,666,305 | IssuesEvent | 2017-07-14 18:36:46 | OpenPHDGuiding/phd2 | https://api.github.com/repos/OpenPHDGuiding/phd2 | closed | Enable INDI support on OSX | auto-migrated OpSys-OSX Priority-Medium Type-Enhancement | ```
We should be able to support INDI on OSX
```
Original issue reported on code.google.com by `andy.gal...@gmail.com` on 19 Oct 2014 at 5:49
| 1.0 | Enable INDI support on OSX - ```
We should be able to support INDI on OSX
```
Original issue reported on code.google.com by `andy.gal...@gmail.com` on 19 Oct 2014 at 5:49
| priority | enable indi support on osx we should be able to support indi on osx original issue reported on code google com by andy gal gmail com on oct at | 1 |
797,021 | 28,135,446,390 | IssuesEvent | 2023-04-01 10:20:25 | CodeYourFuture/Module-Template | https://api.github.com/repos/CodeYourFuture/Module-Template | opened | [TECH ED] This issue is a test | 🏕 Priority Mandatory 🐂 Size Medium | ### Link to the coursework
n/a
### Why are we doing this?
This issue can be queried from the API
### Maximum time in hours
0
### How to get help
_No response_
### How to submit
n/a
### How to review
_No response_
### Anything else?
_No response_ | 1.0 | [TECH ED] This issue is a test - ### Link to the coursework
n/a
### Why are we doing this?
This issue can be queried from the API
### Maximum time in hours
0
### How to get help
_No response_
### How to submit
n/a
### How to review
_No response_
### Anything else?
_No response_ | priority | this issue is a test link to the coursework n a why are we doing this this issue can be queried from the api maximum time in hours how to get help no response how to submit n a how to review no response anything else no response | 1 |
485,420 | 13,965,215,789 | IssuesEvent | 2020-10-25 21:27:00 | MSFS-Mega-Pack/MSFS2020-livery-manager | https://api.github.com/repos/MSFS-Mega-Pack/MSFS2020-livery-manager | closed | [BUG] Clarify text in RefreshBox | bug priority: MEDIUM type: ux | ## Description
<!-- Describe the bug you're reporting -->
Currently, the refresh box states "livery list last updated at...", but some people take this to mean that this is when the latest livery was released.
We should change this to something like "Last refreshed" to make this clearer.
This was raised in this review: https://youtu.be/g7YvGgIhLl0?t=152
## Environment
<!-- Find your manager version at the bottom of the Settings tab -->
**Manager version:** 0.2.2
**FS2020 Version:** N/A
## Screenshots or videos
<details>
<summary>Click to expand</summary>
<!-- upload any screenshots or recordings demonstrating the issue here-->
</details>
| 1.0 | [BUG] Clarify text in RefreshBox - ## Description
<!-- Describe the bug you're reporting -->
Currently, the refresh box states "livery list last updated at...", but some people take this to mean that this is when the latest livery was released.
We should change this to something like "Last refreshed" to make this clearer.
This was raised in this review: https://youtu.be/g7YvGgIhLl0?t=152
## Environment
<!-- Find your manager version at the bottom of the Settings tab -->
**Manager version:** 0.2.2
**FS2020 Version:** N/A
## Screenshots or videos
<details>
<summary>Click to expand</summary>
<!-- upload any screenshots or recordings demonstrating the issue here-->
</details>
| priority | clarify text in refreshbox description currently the refresh box states livery list last updated at but some people take this to mean that this is when the latest livery was released we should change this to something like last refreshed to make this clearer this was raised in this review environment manager version version n a screenshots or videos click to expand | 1 |
42,051 | 2,869,095,209 | IssuesEvent | 2015-06-05 23:17:47 | dart-lang/test | https://api.github.com/repos/dart-lang/test | closed | unittest documentation uses old import syntax | bug Fixed Priority-Medium | <a href="https://github.com/jmesserly"><img src="https://avatars.githubusercontent.com/u/1081711?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [jmesserly](https://github.com/jmesserly)**
_Originally opened as dart-lang/sdk#6179_
----
http://api.dartlang.org/docs/continuous/unittest.html | 1.0 | unittest documentation uses old import syntax - <a href="https://github.com/jmesserly"><img src="https://avatars.githubusercontent.com/u/1081711?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [jmesserly](https://github.com/jmesserly)**
_Originally opened as dart-lang/sdk#6179_
----
http://api.dartlang.org/docs/continuous/unittest.html | priority | unittest documentation uses old import syntax issue by originally opened as dart lang sdk | 1 |
489,621 | 14,108,996,356 | IssuesEvent | 2020-11-06 18:47:33 | bitrise-io/bumblebee | https://api.github.com/repos/bitrise-io/bumblebee | opened | Task: Implement UI for Performance Monitoring | Category: User Interface Priority: Medium Status: Pending | ### Description:
Implement UI.
### Implemented in:
Swift. | 1.0 | Task: Implement UI for Performance Monitoring - ### Description:
Implement UI.
### Implemented in:
Swift. | priority | task implement ui for performance monitoring description implement ui implemented in swift | 1 |
302,228 | 9,256,286,114 | IssuesEvent | 2019-03-16 17:45:19 | bounswe/bounswe2019group1 | https://api.github.com/repos/bounswe/bounswe2019group1 | closed | Review the Feedback for Assignment 3 | Priority: Medium Status: Review Needed Type: Enhancement | Review the feedback for assignment 3 and add necessary changes. Deadline: 13.03.2019 @ 18.00 | 1.0 | Review the Feedback for Assignment 3 - Review the feedback for assignment 3 and add necessary changes. Deadline: 13.03.2019 @ 18.00 | priority | review the feedback for assignment review the feedback for assignment and add necessary changes deadline | 1 |
327,820 | 9,981,700,392 | IssuesEvent | 2019-07-10 08:09:19 | compodoc/compodoc | https://api.github.com/repos/compodoc/compodoc | closed | [BUG] Does not generate full documentation but no error | Priority: Medium Status: Accepted Status: Waiting feedback Type: Bug | ##### **Overview of the issue**
Running the compodoc command does run without error, finds all components that it should but does not generate all documentation. Only a `documentation/js/routes/routes_index.js` folder is created. Also there is no console output `Documentation generated ...`.
When using the `--minimal` flag it does create the complete documentation succesfully.
It worked earlier and now it doesn't work without changing the compodoc config. So this might be due to a code change inside the project, which compodoc cannot process. Unfortunately I cannot provide the code, but I think there should atleast be some error output?
The last console output is that the documentation coverage is above the threshold
##### **Operating System, Node.js, npm, compodoc version(s)**
Windows 7
Node v10.9.0
compodoc ^1.1.8
`compodoc -p src/tsconfig.app.json`
##### **Compodoc installed globally or locally ?**
locally
| 1.0 | [BUG] Does not generate full documentation but no error - ##### **Overview of the issue**
Running the compodoc command does run without error, finds all components that it should but does not generate all documentation. Only a `documentation/js/routes/routes_index.js` folder is created. Also there is no console output `Documentation generated ...`.
When using the `--minimal` flag it does create the complete documentation succesfully.
It worked earlier and now it doesn't work without changing the compodoc config. So this might be due to a code change inside the project, which compodoc cannot process. Unfortunately I cannot provide the code, but I think there should atleast be some error output?
The last console output is that the documentation coverage is above the threshold
##### **Operating System, Node.js, npm, compodoc version(s)**
Windows 7
Node v10.9.0
compodoc ^1.1.8
`compodoc -p src/tsconfig.app.json`
##### **Compodoc installed globally or locally ?**
locally
| priority | does not generate full documentation but no error overview of the issue running the compodoc command does run without error finds all components that it should but does not generate all documentation only a documentation js routes routes index js folder is created also there is no console output documentation generated when using the minimal flag it does create the complete documentation succesfully it worked earlier and now it doesn t work without changing the compodoc config so this might be due to a code change inside the project which compodoc cannot process unfortunately i cannot provide the code but i think there should atleast be some error output the last console output is that the documentation coverage is above the threshold operating system node js npm compodoc version s windows node compodoc compodoc p src tsconfig app json compodoc installed globally or locally locally | 1 |
807,146 | 29,953,434,742 | IssuesEvent | 2023-06-23 04:50:56 | yukieiji/ExtremeRoles | https://api.github.com/repos/yukieiji/ExtremeRoles | opened | 情報表示画面の作り直し | 優先度:中/Priority:Medium 機能拡張/Enhancement ExtremeRoles ビジュアル/Visual バグではない/Not bug | ### 追加する機能の詳細 / Feature details
- 情報表示画面を作り直す
- 今の情報表示画面は今のExRのように大量の情報を表示管理するようには作られていない
- なのでUI周りを大きく作り直し見やすく操作しやすいようにする
- 方針
- まず常時左側に表示していたグローバル設定の表示をメニューとして小さくする
- メニューには「自分の役職」、「自分の幽霊役職」、「現在の設定」、「全役職」、「全幽霊役職」が順番にありそれらを選択できるようにする
- そして右側のメイン部分にわかりやすく役職を情報を表示する
- 広々と2つの情報表示部分を使う
- 自分の役職はMultiAssignでは無いときは役職の情報とオプションをそれぞれ分けて表示
- MultiAssignのときは両方を並べて表示
- 全役職と全幽霊役職は役職の情報とオプションをそれぞれ分けて表示
- 現在の設定に「グローバル設定」と「バニラの設定」を並べる
- これまでのキーボードショートカット動作は全て対応、追加でマウスクリックでの操作に対応させる
- 「?」ボタンはHキーを押せばいいよう画像に記載する
- また今後必要な情報が出た場合すぐに追加できるような調整にする
### 機能を追加するメリット / Benefits of adding features
- 素早く情報を見つけ確認できるようにする | 1.0 | 情報表示画面の作り直し - ### 追加する機能の詳細 / Feature details
- 情報表示画面を作り直す
- 今の情報表示画面は今のExRのように大量の情報を表示管理するようには作られていない
- なのでUI周りを大きく作り直し見やすく操作しやすいようにする
- 方針
- まず常時左側に表示していたグローバル設定の表示をメニューとして小さくする
- メニューには「自分の役職」、「自分の幽霊役職」、「現在の設定」、「全役職」、「全幽霊役職」が順番にありそれらを選択できるようにする
- そして右側のメイン部分にわかりやすく役職を情報を表示する
- 広々と2つの情報表示部分を使う
- 自分の役職はMultiAssignでは無いときは役職の情報とオプションをそれぞれ分けて表示
- MultiAssignのときは両方を並べて表示
- 全役職と全幽霊役職は役職の情報とオプションをそれぞれ分けて表示
- 現在の設定に「グローバル設定」と「バニラの設定」を並べる
- これまでのキーボードショートカット動作は全て対応、追加でマウスクリックでの操作に対応させる
- 「?」ボタンはHキーを押せばいいよう画像に記載する
- また今後必要な情報が出た場合すぐに追加できるような調整にする
### 機能を追加するメリット / Benefits of adding features
- 素早く情報を見つけ確認できるようにする | priority | 情報表示画面の作り直し 追加する機能の詳細 feature details 情報表示画面を作り直す 今の情報表示画面は今のexrのように大量の情報を表示管理するようには作られていない なのでui周りを大きく作り直し見やすく操作しやすいようにする 方針 まず常時左側に表示していたグローバル設定の表示をメニューとして小さくする メニューには「自分の役職」、「自分の幽霊役職」、「現在の設定」、「全役職」、「全幽霊役職」が順番にありそれらを選択できるようにする そして右側のメイン部分にわかりやすく役職を情報を表示する 自分の役職はmultiassignでは無いときは役職の情報とオプションをそれぞれ分けて表示 multiassignのときは両方を並べて表示 全役職と全幽霊役職は役職の情報とオプションをそれぞれ分けて表示 現在の設定に「グローバル設定」と「バニラの設定」を並べる これまでのキーボードショートカット動作は全て対応、追加でマウスクリックでの操作に対応させる 「?」ボタンはhキーを押せばいいよう画像に記載する また今後必要な情報が出た場合すぐに追加できるような調整にする 機能を追加するメリット benefits of adding features 素早く情報を見つけ確認できるようにする | 1 |
662,727 | 22,150,907,922 | IssuesEvent | 2022-06-03 16:40:02 | CDCgov/prime-reportstream | https://api.github.com/repos/CDCgov/prime-reportstream | opened | MN - MDH:CDC Prime ELR Errors 06/03/2022 | onboarding-ops Medium Priority Minnesota | Name: Srujana Japa
Email: srujana.japa@state.mn.us
MDH has received 41 messages on 06/03/2022 with incorrect values in MSH.5 and MSH.6, would you please be able to correct and re-send them?
Please find the accession IDs in the attachment. | 1.0 | MN - MDH:CDC Prime ELR Errors 06/03/2022 - Name: Srujana Japa
Email: srujana.japa@state.mn.us
MDH has received 41 messages on 06/03/2022 with incorrect values in MSH.5 and MSH.6, would you please be able to correct and re-send them?
Please find the accession IDs in the attachment. | priority | mn mdh cdc prime elr errors name srujana japa email srujana japa state mn us mdh has received messages on with incorrect values in msh and msh would you please be able to correct and re send them please find the accession ids in the attachment | 1 |
69,833 | 3,315,827,756 | IssuesEvent | 2015-11-06 14:18:45 | dart-lang/sdk | https://api.github.com/repos/dart-lang/sdk | closed | If a class Foo has a constructor named bar, warn when calling Foo.bar() | Analyzer-Hint Area-Analyzer Priority-Medium Type-Enhancement | The following code:
```dart
Foo foo = Foo.bar()
```
...leads to analyzer errors to the effect that there's no such static method as Foo.bar(). When there's a constructor with that name, we should add a hint to the effect that maybe you forgot the "new". | 1.0 | If a class Foo has a constructor named bar, warn when calling Foo.bar() - The following code:
```dart
Foo foo = Foo.bar()
```
...leads to analyzer errors to the effect that there's no such static method as Foo.bar(). When there's a constructor with that name, we should add a hint to the effect that maybe you forgot the "new". | priority | if a class foo has a constructor named bar warn when calling foo bar the following code dart foo foo foo bar leads to analyzer errors to the effect that there s no such static method as foo bar when there s a constructor with that name we should add a hint to the effect that maybe you forgot the new | 1 |
405,371 | 11,872,181,243 | IssuesEvent | 2020-03-26 15:26:49 | luna/ide | https://api.github.com/repos/luna/ide | opened | Missing Text Editor shortcuts | Category: IDE Change: Non-Breaking Priority: Medium Type: Enhancement | <!--
Please ensure that you check the latest version of Enso IDE to see if your feature
has been implemented.
-->
### General Summary
<!--
- Describe the feature you are requesting.
-->
There is a list of text editor operations that should be implemented and work on all systems:
cut line - `cmd+x` / `ctrl+x`
insert line after - `cmd+enter` / `ctrl+enter`
insert line before - `cmd+shift+enter` / `ctrl+shift+enter`
move line/selection up - `cmd+ctrl+arrow up` / `ctrl+shift+arrow up`
move line/selection down - `cmd+ctrl+arrow down` / `ctrl+shift+arrow down`
select line - repeat to select next lines - `cmd + L` / `ctrl + L`
select word - repeat to select next occurrence - `cmd + d` / `ctrl + d`
indent current line(s) - `cmd+]` / `ctrl+]
un-indent current line(s) - `cmd+[` / `ctrl+[`
Comment/un-comment current line - `cmd+/` / `ctrl+/`
### Motivation
<!--
- A description of the motivation for adding this feature to Enso IDE.
- Ideally this would include use-cases that support the feature.
-->
Fully working text editor. | 1.0 | Missing Text Editor shortcuts - <!--
Please ensure that you check the latest version of Enso IDE to see if your feature
has been implemented.
-->
### General Summary
<!--
- Describe the feature you are requesting.
-->
There is a list of text editor operations that should be implemented and work on all systems:
cut line - `cmd+x` / `ctrl+x`
insert line after - `cmd+enter` / `ctrl+enter`
insert line before - `cmd+shift+enter` / `ctrl+shift+enter`
move line/selection up - `cmd+ctrl+arrow up` / `ctrl+shift+arrow up`
move line/selection down - `cmd+ctrl+arrow down` / `ctrl+shift+arrow down`
select line - repeat to select next lines - `cmd + L` / `ctrl + L`
select word - repeat to select next occurrence - `cmd + d` / `ctrl + d`
indent current line(s) - `cmd+]` / `ctrl+]
un-indent current line(s) - `cmd+[` / `ctrl+[`
Comment/un-comment current line - `cmd+/` / `ctrl+/`
### Motivation
<!--
- A description of the motivation for adding this feature to Enso IDE.
- Ideally this would include use-cases that support the feature.
-->
Fully working text editor. | priority | missing text editor shortcuts please ensure that you check the latest version of enso ide to see if your feature has been implemented general summary describe the feature you are requesting there is a list of text editor operations that should be implemented and work on all systems cut line cmd x ctrl x insert line after cmd enter ctrl enter insert line before cmd shift enter ctrl shift enter move line selection up cmd ctrl arrow up ctrl shift arrow up move line selection down cmd ctrl arrow down ctrl shift arrow down select line repeat to select next lines cmd l ctrl l select word repeat to select next occurrence cmd d ctrl d indent current line s cmd ctrl un indent current line s cmd ctrl comment un comment current line cmd ctrl motivation a description of the motivation for adding this feature to enso ide ideally this would include use cases that support the feature fully working text editor | 1 |
178,569 | 6,612,131,925 | IssuesEvent | 2017-09-20 01:43:19 | markup-app/markup | https://api.github.com/repos/markup-app/markup | closed | Bad scrolling support on textarea | bug priority-medium | In a document, the textarea is weird and doesn't scroll.
I think this has to do with the height of the document and the textarea itself not being as tall as its contents. This shouldn't be too hard of a fix — simply make it so the textarea's height is relative to what it's value is.
I'm sure this has been done before since it would seem to be like a very common problem. | 1.0 | Bad scrolling support on textarea - In a document, the textarea is weird and doesn't scroll.
I think this has to do with the height of the document and the textarea itself not being as tall as its contents. This shouldn't be too hard of a fix — simply make it so the textarea's height is relative to what it's value is.
I'm sure this has been done before since it would seem to be like a very common problem. | priority | bad scrolling support on textarea in a document the textarea is weird and doesn t scroll i think this has to do with the height of the document and the textarea itself not being as tall as its contents this shouldn t be too hard of a fix — simply make it so the textarea s height is relative to what it s value is i m sure this has been done before since it would seem to be like a very common problem | 1 |
235,037 | 7,733,878,966 | IssuesEvent | 2018-05-26 17:05:49 | vinitkumar/googlecl | https://api.github.com/repos/vinitkumar/googlecl | closed | Google docs upload error | Priority-Medium bug imported | _From [anees...@gmail.com](https://code.google.com/u/113955572448857746835/) on June 28, 2010 08:18:43_
## Steps to reproduce the problem
$ google docs edit --editor=vim --title="testdoc"
Modify file then save and exit from vim (:wq)
## I exepected a confirmation message but I got the following error
Traceback (most recent call last):
File "/usr/bin/google", line 463, in <module>
main()
File "/usr/bin/google", line 457, in main
run_once(options, args)
File "/usr/bin/google", line 356, in run_once
task.run(client, options, args)
File "/usr/lib/python2.6/site-packages/googlecl/docs/service.py", line 439, in _run_edit
client.edit_doc(doc_entry, editor, format_ext)
File "/usr/lib/python2.6/site-packages/googlecl/docs/service.py", line 121, in edit_doc
self.Put(mediasource, doc_entry.GetEditMediaLink().href)
File "/usr/lib/python2.6/site-packages/gdata/service.py", line 1394, in Put
media_source=media_source, converter=converter)
File "/usr/lib/python2.6/site-packages/gdata/service.py", line 1357, in PostOrPut
'reason': server_response.reason, 'body': result_body}
gdata.service.RequestError: {'status': 400, 'body': '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">\n<html><head>\n<title>400 Bad Request</title>\n</head><body>\n<h1>Bad Request</h1>\n<p>Your browser sent a request that this server could not understand.<br />\n</p>\n</body></html>\n', 'reason': 'Bad Request'}
## Version Details
python2.6
elementtree-1.2.6
googlecl-0.9.7
gdata-2.0.10
## Additional information.
I performed this test using Cygwin.
Thanks
Aneesh
_Original issue: http://code.google.com/p/googlecl/issues/detail?id=182_
| 1.0 | Google docs upload error - _From [anees...@gmail.com](https://code.google.com/u/113955572448857746835/) on June 28, 2010 08:18:43_
## Steps to reproduce the problem
$ google docs edit --editor=vim --title="testdoc"
Modify file then save and exit from vim (:wq)
## I exepected a confirmation message but I got the following error
Traceback (most recent call last):
File "/usr/bin/google", line 463, in <module>
main()
File "/usr/bin/google", line 457, in main
run_once(options, args)
File "/usr/bin/google", line 356, in run_once
task.run(client, options, args)
File "/usr/lib/python2.6/site-packages/googlecl/docs/service.py", line 439, in _run_edit
client.edit_doc(doc_entry, editor, format_ext)
File "/usr/lib/python2.6/site-packages/googlecl/docs/service.py", line 121, in edit_doc
self.Put(mediasource, doc_entry.GetEditMediaLink().href)
File "/usr/lib/python2.6/site-packages/gdata/service.py", line 1394, in Put
media_source=media_source, converter=converter)
File "/usr/lib/python2.6/site-packages/gdata/service.py", line 1357, in PostOrPut
'reason': server_response.reason, 'body': result_body}
gdata.service.RequestError: {'status': 400, 'body': '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">\n<html><head>\n<title>400 Bad Request</title>\n</head><body>\n<h1>Bad Request</h1>\n<p>Your browser sent a request that this server could not understand.<br />\n</p>\n</body></html>\n', 'reason': 'Bad Request'}
## Version Details
python2.6
elementtree-1.2.6
googlecl-0.9.7
gdata-2.0.10
## Additional information.
I performed this test using Cygwin.
Thanks
Aneesh
_Original issue: http://code.google.com/p/googlecl/issues/detail?id=182_
| priority | google docs upload error from on june steps to reproduce the problem google docs edit editor vim title testdoc modify file then save and exit from vim wq i exepected a confirmation message but i got the following error traceback most recent call last file usr bin google line in main file usr bin google line in main run once options args file usr bin google line in run once task run client options args file usr lib site packages googlecl docs service py line in run edit client edit doc doc entry editor format ext file usr lib site packages googlecl docs service py line in edit doc self put mediasource doc entry geteditmedialink href file usr lib site packages gdata service py line in put media source media source converter converter file usr lib site packages gdata service py line in postorput reason server response reason body result body gdata service requesterror status body n n bad request n n bad request n your browser sent a request that this server could not understand n n n reason bad request version details elementtree googlecl gdata additional information i performed this test using cygwin thanks aneesh original issue | 1 |
6,717 | 2,591,219,843 | IssuesEvent | 2015-02-18 23:58:18 | IQSS/dataverse | https://api.github.com/repos/IQSS/dataverse | closed | Linked Datasets: Can't link to a dataset in the root dv. | Component: UX & Upgrade Priority: Medium Status: QA Type: Bug |
Can't link to a dataset in the root dv.
I checked with Gustavo and he thought it was a bug though there is/ may be some logic about preventing linking to root dv and that might cause this unintended? consequence. | 1.0 | Linked Datasets: Can't link to a dataset in the root dv. -
Can't link to a dataset in the root dv.
I checked with Gustavo and he thought it was a bug though there is/ may be some logic about preventing linking to root dv and that might cause this unintended? consequence. | priority | linked datasets can t link to a dataset in the root dv can t link to a dataset in the root dv i checked with gustavo and he thought it was a bug though there is may be some logic about preventing linking to root dv and that might cause this unintended consequence | 1 |
449,219 | 12,965,273,748 | IssuesEvent | 2020-07-20 22:01:12 | radcampaign/allaboveall2020 | https://api.github.com/repos/radcampaign/allaboveall2020 | closed | [Abortion Coverage] Map not working in IE and Edge | Priority: Medium | https://live-allaboveall2020.pantheonsite.io/abortion-coverage/
Checked the map out in Edge and IE and looks like it's not working. No rollover color in either, and the map shows up gray instead of black in IE.
Also, the down arrow still isn't working to open the dropdown in any browsers. | 1.0 | [Abortion Coverage] Map not working in IE and Edge - https://live-allaboveall2020.pantheonsite.io/abortion-coverage/
Checked the map out in Edge and IE and looks like it's not working. No rollover color in either, and the map shows up gray instead of black in IE.
Also, the down arrow still isn't working to open the dropdown in any browsers. | priority | map not working in ie and edge checked the map out in edge and ie and looks like it s not working no rollover color in either and the map shows up gray instead of black in ie also the down arrow still isn t working to open the dropdown in any browsers | 1 |
17,389 | 2,615,142,966 | IssuesEvent | 2015-03-01 06:18:10 | chrsmith/html5rocks | https://api.github.com/repos/chrsmith/html5rocks | closed | Flexible box model tutorial | auto-migrated Milestone-3 NewArticle Priority-Medium Tutorial Type-Enhancement | ```
Please provide a tutorial for the CSS3 flexible box model
http://www.w3.org/TR/css3-flexbox/
```
Original issue reported on code.google.com by `patc...@gmail.com` on 22 Jun 2010 at 10:45 | 1.0 | Flexible box model tutorial - ```
Please provide a tutorial for the CSS3 flexible box model
http://www.w3.org/TR/css3-flexbox/
```
Original issue reported on code.google.com by `patc...@gmail.com` on 22 Jun 2010 at 10:45 | priority | flexible box model tutorial please provide a tutorial for the flexible box model original issue reported on code google com by patc gmail com on jun at | 1 |
712,195 | 24,486,940,142 | IssuesEvent | 2022-10-09 15:08:58 | AY2223S1-CS2113-W13-2/tp | https://api.github.com/repos/AY2223S1-CS2113-W13-2/tp | closed | As a user, I want to be able to view my past modules that I have saved | type.Enhancement priority.Medium | So that I can refer back to my previous lists
Add on to #13 | 1.0 | As a user, I want to be able to view my past modules that I have saved - So that I can refer back to my previous lists
Add on to #13 | priority | as a user i want to be able to view my past modules that i have saved so that i can refer back to my previous lists add on to | 1 |
256,022 | 8,126,783,240 | IssuesEvent | 2018-08-17 04:37:44 | aowen87/BAR | https://api.github.com/repos/aowen87/BAR | closed | Build VisIt with DDT support at LLNL | Expected Use: 3 - Occasional Feature Impact: 3 - Medium Priority: Normal | For 2.6.3
-----------------------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: 1467
Status: Resolved
Project: VisIt
Tracker: Feature
Priority: Normal
Subject: Build VisIt with DDT support at LLNL
Assigned to: Eric Brugger
Category:
Target version: 2.6.3
Author: Cyrus Harrison
Start: 05/21/2013
Due date:
% Done: 100
Estimated time: 1.0
Created: 05/21/2013 04:36 pm
Updated: 07/16/2013 02:37 pm
Likelihood:
Severity:
Found in version:
Impact: 3 - Medium
Expected Use: 3 - Occasional
OS: All
Support Group: Any
Description:
For 2.6.3
Comments:
I committed revisions 21409 and 21411 the 2.6 RC and trunk with thefollowing change:1) I modified the config site files for aztec and rzzeus to build with support for DDT. This resolves #1467.M config-site/aztec1.cmakeM config-site/rzzeus286.cmake
I committed revisions 21412 and 21414 the 2.6 RC and trunk with thefollowing change:1) I also modified the config site file for zin to build with support for DDT. This now really resolves #1467.M config-site/zin497.cmake
| 1.0 | Build VisIt with DDT support at LLNL - For 2.6.3
-----------------------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: 1467
Status: Resolved
Project: VisIt
Tracker: Feature
Priority: Normal
Subject: Build VisIt with DDT support at LLNL
Assigned to: Eric Brugger
Category:
Target version: 2.6.3
Author: Cyrus Harrison
Start: 05/21/2013
Due date:
% Done: 100
Estimated time: 1.0
Created: 05/21/2013 04:36 pm
Updated: 07/16/2013 02:37 pm
Likelihood:
Severity:
Found in version:
Impact: 3 - Medium
Expected Use: 3 - Occasional
OS: All
Support Group: Any
Description:
For 2.6.3
Comments:
I committed revisions 21409 and 21411 the 2.6 RC and trunk with thefollowing change:1) I modified the config site files for aztec and rzzeus to build with support for DDT. This resolves #1467.M config-site/aztec1.cmakeM config-site/rzzeus286.cmake
I committed revisions 21412 and 21414 the 2.6 RC and trunk with thefollowing change:1) I also modified the config site file for zin to build with support for DDT. This now really resolves #1467.M config-site/zin497.cmake
| priority | build visit with ddt support at llnl for redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status resolved project visit tracker feature priority normal subject build visit with ddt support at llnl assigned to eric brugger category target version author cyrus harrison start due date done estimated time created pm updated pm likelihood severity found in version impact medium expected use occasional os all support group any description for comments i committed revisions and the rc and trunk with thefollowing change i modified the config site files for aztec and rzzeus to build with support for ddt this resolves m config site cmakem config site cmake i committed revisions and the rc and trunk with thefollowing change i also modified the config site file for zin to build with support for ddt this now really resolves m config site cmake | 1 |
797,745 | 28,154,344,243 | IssuesEvent | 2023-04-03 05:58:47 | AY2223S2-CS2103-W17-3/tp | https://api.github.com/repos/AY2223S2-CS2103-W17-3/tp | closed | [PE-D][Tester B] Adding of events that overlap in time is allowed | bug priority.Medium | The UG stated that adding two events that overlap in time is not allowed. However, the user is still able to do so if the two events do not overlap _entirely_ in time.

<!--session: 1680242425854-183ba3e1-b2e5-4d2f-9f19-6e1f934c74ac-->
<!--Version: Web v3.4.7-->
-------------
Labels: `type.FeatureFlaw` `severity.High`
original: jmestxr/ped#7 | 1.0 | [PE-D][Tester B] Adding of events that overlap in time is allowed - The UG stated that adding two events that overlap in time is not allowed. However, the user is still able to do so if the two events do not overlap _entirely_ in time.

<!--session: 1680242425854-183ba3e1-b2e5-4d2f-9f19-6e1f934c74ac-->
<!--Version: Web v3.4.7-->
-------------
Labels: `type.FeatureFlaw` `severity.High`
original: jmestxr/ped#7 | priority | adding of events that overlap in time is allowed the ug stated that adding two events that overlap in time is not allowed however the user is still able to do so if the two events do not overlap entirely in time labels type featureflaw severity high original jmestxr ped | 1 |
268,648 | 8,409,908,291 | IssuesEvent | 2018-10-12 08:56:37 | CS2113-AY1819S1-T13-4/main | https://api.github.com/repos/CS2113-AY1819S1-T13-4/main | closed | Implements a script to do multiple commands | priority.medium type.story | Features:
Read and extract add commands from a text file
Execute Multiple Add Commands
| 1.0 | Implements a script to do multiple commands - Features:
Read and extract add commands from a text file
Execute Multiple Add Commands
| priority | implements a script to do multiple commands features read and extract add commands from a text file execute multiple add commands | 1 |
519,975 | 15,076,222,101 | IssuesEvent | 2021-02-05 04:05:37 | nlpsandbox/person-name-annotator-example | https://api.github.com/repos/nlpsandbox/person-name-annotator-example | closed | Update the names in data folder | Priority: Medium | By annotating a note, I found that there are a lot of firstnames/lastnames that would probably cause a lot of issues. For instance:
"me", "the", "on", "so", "per", "he", "D", "M", "G", "I", "weeks"
I find that these could potentially be problematic, especially "the", "on", "he".... | 1.0 | Update the names in data folder - By annotating a note, I found that there are a lot of firstnames/lastnames that would probably cause a lot of issues. For instance:
"me", "the", "on", "so", "per", "he", "D", "M", "G", "I", "weeks"
I find that these could potentially be problematic, especially "the", "on", "he".... | priority | update the names in data folder by annotating a note i found that there are a lot of firstnames lastnames that would probably cause a lot of issues for instance me the on so per he d m g i weeks i find that these could potentially be problematic especially the on he | 1 |
99,601 | 4,057,249,940 | IssuesEvent | 2016-05-24 21:25:14 | flashxyz/BookMe | https://api.github.com/repos/flashxyz/BookMe | opened | BUG: Rooms Edit validation problem | AdminSettingsTeam bug Development priority : medium | validation doesn't apply for every field of every room.
this should be fixed | 1.0 | BUG: Rooms Edit validation problem - validation doesn't apply for every field of every room.
this should be fixed | priority | bug rooms edit validation problem validation doesn t apply for every field of every room this should be fixed | 1 |
446,757 | 12,878,268,103 | IssuesEvent | 2020-07-11 15:40:14 | DevAdventCalendar/DevAdventCalendar | https://api.github.com/repos/DevAdventCalendar/DevAdventCalendar | closed | Fix Sonarcloud bugs | bug good first issue medium priority | **To Reproduce**
Steps to reproduce the behavior:
1. Go to https://sonarcloud.io/project/issues?id=DevAdventCalendar_DevAdventCalendar&resolved=false&types=BUG
**Current behavior**
There are many bugs and vulnerabilities
**Expected behavior**
There are no bugs (besides this from /libs or /wwwroot folder)
| 1.0 | Fix Sonarcloud bugs - **To Reproduce**
Steps to reproduce the behavior:
1. Go to https://sonarcloud.io/project/issues?id=DevAdventCalendar_DevAdventCalendar&resolved=false&types=BUG
**Current behavior**
There are many bugs and vulnerabilities
**Expected behavior**
There are no bugs (besides this from /libs or /wwwroot folder)
| priority | fix sonarcloud bugs to reproduce steps to reproduce the behavior go to current behavior there are many bugs and vulnerabilities expected behavior there are no bugs besides this from libs or wwwroot folder | 1 |
2,126 | 2,523,945,534 | IssuesEvent | 2015-01-20 14:46:34 | olga-jane/prizm | https://api.github.com/repos/olga-jane/prizm | closed | Exception on viewing not saved attachments | Attachments bug bug - crash/performance/leak bug - functional Coding MEDIUM priority | Steps to reproduce:
Open Mill-> new pipe
Click attachments button
Add some attachment
Click on view button
Expected result : message that attachments cannot be seen without saving entity appears
Actual result: exception appears | 1.0 | Exception on viewing not saved attachments - Steps to reproduce:
Open Mill-> new pipe
Click attachments button
Add some attachment
Click on view button
Expected result : message that attachments cannot be seen without saving entity appears
Actual result: exception appears | priority | exception on viewing not saved attachments steps to reproduce open mill new pipe click attachments button add some attachment click on view button expected result message that attachments cannot be seen without saving entity appears actual result exception appears | 1 |
695,885 | 23,875,430,006 | IssuesEvent | 2022-09-07 18:33:53 | phylum-dev/cli | https://api.github.com/repos/phylum-dev/cli | closed | Improve error message for non-existent project | bug medium priority | # Overview
When attempting to submit an analysis job with a project that doesn't exist, the user receives a 404 error that is unlikely to clarify the issue. This case is more common now as a user can delete a project, but not delete the `.phylum_project` file and run the `analyze` command.
# How To Reproduce
Steps to reproduce this behavior:
1. Create a project
2. Submit a file for analysis
3. See success
4. Delete the project, but do not delete the `.phylum_project` file
5. Run the analysis command again
6. See the 404 error
# Expected Behavior
A more helpful error message so the user can troubleshoot their situation - ideally, clearly stating that the project does not exist.
# Additional Context

Related API change: https://github.com/phylum-dev/api/issues/457
Closing this issue should be the last piece of this Story: https://github.com/phylum-dev/roadmap/issues/35 | 1.0 | Improve error message for non-existent project - # Overview
When attempting to submit an analysis job with a project that doesn't exist, the user receives a 404 error that is unlikely to clarify the issue. This case is more common now as a user can delete a project, but not delete the `.phylum_project` file and run the `analyze` command.
# How To Reproduce
Steps to reproduce this behavior:
1. Create a project
2. Submit a file for analysis
3. See success
4. Delete the project, but do not delete the `.phylum_project` file
5. Run the analysis command again
6. See the 404 error
# Expected Behavior
A more helpful error message so the user can troubleshoot their situation - ideally, clearly stating that the project does not exist.
# Additional Context

Related API change: https://github.com/phylum-dev/api/issues/457
Closing this issue should be the last piece of this Story: https://github.com/phylum-dev/roadmap/issues/35 | priority | improve error message for non existent project overview when attempting to submit an analysis job with a project that doesn t exist the user receives a error that is unlikely to clarify the issue this case is more common now as a user can delete a project but not delete the phylum project file and run the analyze command how to reproduce steps to reproduce this behavior create a project submit a file for analysis see success delete the project but do not delete the phylum project file run the analysis command again see the error expected behavior a more helpful error message so the user can troubleshoot their situation ideally clearly stating that the project does not exist additional context related api change closing this issue should be the last piece of this story | 1 |
319,694 | 9,753,355,397 | IssuesEvent | 2019-06-04 08:57:09 | status-im/status-react | https://api.github.com/repos/status-im/status-react | opened | json: cannot unmarshal hex string when transaction sent without internet connection | bug core-ui-grooming medium-priority | # Problem
`:wallet/transaction-error :code 2 :message json: cannot unmarshal hex string "0x" into Go value of type *hexutil.Big`
# Logs
```
2019-06-04 11:48:58.174 7313-7409/? D/StatusModule: sendTransaction
2019-06-04 11:48:58.298 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :wallet.callback/transaction-completed
2019-06-04 11:48:58.304 7313-7408/? W/ReactNativeJS: WARN [status-im.wallet.core:337] - :wallet/transaction-error :code 2 :message json: cannot unmarshal hex string "0x" into Go value of type *hexutil.Big
2019-06-04 11:48:58.313 7313-7408/? D/ReactNativeJS: DEBUG [status-im.ui.screens.navigation:86] - :navigate-back
2019-06-04 11:48:58.342 7313-7408/? D/ReactNativeJS: DEBUG [status-im.ui.screens.routing.core:31] - :on-will-focus :browser
2019-06-04 11:48:58.349 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :wallet.dapp/transaction-on-error
2019-06-04 11:48:58.353 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :screens/on-will-focus
2019-06-04 11:48:58.359 7313-7408/? D/ReactNativeJS: DEBUG [status-im.ui.screens.views:85] - :main-component-did-update :browser
2019-06-04 11:48:58.379 7313-7313/? I/chromium: [INFO:CONSOLE(1)] "Uncaught SyntaxError: Unexpected number in JSON at position 94", source: https://ciqne5onq6dbtaqlamhh6yi3bv36o7olkaaucygae5gmdd4boxceyja.infura.status.im/ (1)
2019-06-04 11:48:58.380 7313-15269/? E/GoLog: [INFO:CONSOLE(1)] "Uncaught SyntaxError: Unexpected number in JSON at position 94", source: https://ciqne5onq6dbtaqlamhh6yi3bv36o7olkaaucygae5gmdd4boxceyja.infura.status.im/ (1)
2019-06-04 11:48:58.462 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :show-tab-bar
2019-06-04 11:48:58.466 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :set
2019-06-04 11:48:58.473 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :set-once
2019-06-04 11:48:58.643 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :set-once
```
## Steps
1. request eth in simple dapp
2. throttle internet connection (or limit it to 0 kbs)
3. request stt in simple dpp
This also was seen when buying stickers.

## Build
nightly https://status-im.ams3.digitaloceanspaces.com/StatusIm-190603-025900-34300c-nightly.apk
| 1.0 | json: cannot unmarshal hex string when transaction sent without internet connection - # Problem
`:wallet/transaction-error :code 2 :message json: cannot unmarshal hex string "0x" into Go value of type *hexutil.Big`
# Logs
```
2019-06-04 11:48:58.174 7313-7409/? D/StatusModule: sendTransaction
2019-06-04 11:48:58.298 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :wallet.callback/transaction-completed
2019-06-04 11:48:58.304 7313-7408/? W/ReactNativeJS: WARN [status-im.wallet.core:337] - :wallet/transaction-error :code 2 :message json: cannot unmarshal hex string "0x" into Go value of type *hexutil.Big
2019-06-04 11:48:58.313 7313-7408/? D/ReactNativeJS: DEBUG [status-im.ui.screens.navigation:86] - :navigate-back
2019-06-04 11:48:58.342 7313-7408/? D/ReactNativeJS: DEBUG [status-im.ui.screens.routing.core:31] - :on-will-focus :browser
2019-06-04 11:48:58.349 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :wallet.dapp/transaction-on-error
2019-06-04 11:48:58.353 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :screens/on-will-focus
2019-06-04 11:48:58.359 7313-7408/? D/ReactNativeJS: DEBUG [status-im.ui.screens.views:85] - :main-component-did-update :browser
2019-06-04 11:48:58.379 7313-7313/? I/chromium: [INFO:CONSOLE(1)] "Uncaught SyntaxError: Unexpected number in JSON at position 94", source: https://ciqne5onq6dbtaqlamhh6yi3bv36o7olkaaucygae5gmdd4boxceyja.infura.status.im/ (1)
2019-06-04 11:48:58.380 7313-15269/? E/GoLog: [INFO:CONSOLE(1)] "Uncaught SyntaxError: Unexpected number in JSON at position 94", source: https://ciqne5onq6dbtaqlamhh6yi3bv36o7olkaaucygae5gmdd4boxceyja.infura.status.im/ (1)
2019-06-04 11:48:58.462 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :show-tab-bar
2019-06-04 11:48:58.466 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :set
2019-06-04 11:48:58.473 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :set-once
2019-06-04 11:48:58.643 7313-7408/? D/ReactNativeJS: DEBUG [status-im.utils.handlers:34] - Handling re-frame event: :set-once
```
## Steps
1. request eth in simple dapp
2. throttle internet connection (or limit it to 0 kbs)
3. request stt in simple dpp
This also was seen when buying stickers.

## Build
nightly https://status-im.ams3.digitaloceanspaces.com/StatusIm-190603-025900-34300c-nightly.apk
| priority | json cannot unmarshal hex string when transaction sent without internet connection problem wallet transaction error code message json cannot unmarshal hex string into go value of type hexutil big logs d statusmodule sendtransaction d reactnativejs debug handling re frame event wallet callback transaction completed w reactnativejs warn wallet transaction error code message json cannot unmarshal hex string into go value of type hexutil big d reactnativejs debug navigate back d reactnativejs debug on will focus browser d reactnativejs debug handling re frame event wallet dapp transaction on error d reactnativejs debug handling re frame event screens on will focus d reactnativejs debug main component did update browser i chromium uncaught syntaxerror unexpected number in json at position source e golog uncaught syntaxerror unexpected number in json at position source d reactnativejs debug handling re frame event show tab bar d reactnativejs debug handling re frame event set d reactnativejs debug handling re frame event set once d reactnativejs debug handling re frame event set once steps request eth in simple dapp throttle internet connection or limit it to kbs request stt in simple dpp this also was seen when buying stickers build nightly | 1 |
266,640 | 8,373,096,589 | IssuesEvent | 2018-10-05 09:16:11 | CS2103-AY1819S1-W14-2/main | https://api.github.com/repos/CS2103-AY1819S1-W14-2/main | opened | As a theme park manager, I want to find less popular rides | priority.Medium type.Story | so that I can replace them with better ones, to keep the park fresh for visitors. | 1.0 | As a theme park manager, I want to find less popular rides - so that I can replace them with better ones, to keep the park fresh for visitors. | priority | as a theme park manager i want to find less popular rides so that i can replace them with better ones to keep the park fresh for visitors | 1 |
185,401 | 6,721,643,323 | IssuesEvent | 2017-10-16 12:34:10 | AnSyn/ansyn | https://api.github.com/repos/AnSyn/ansyn | opened | Bug- changing pin-point location | Bug Priority: Medium Severity: Medium |
This bug re-accrued 3 different times. Resolved by refresh.
**Current behavior**
I opened a new case ("new"), and after a few minutes i tried to edit the pin-point location (from an image).
Although the new location appears in all the screens (4)- 3 of them (with the overlays) showed "this overlay is not part of the case" notification. In addition, it failed to present the overlays on the time line.
**Expected behavior**
The pin-point location will changed in all of the overlays, and relevant overlays will be presented on the time line.
**Minimal reproduction of the problem with instructions**
Open new case
Set pin-point
Open 4 screens (3 with overlays and one with base map)
Edit pin-point location
Please see-

| 1.0 | Bug- changing pin-point location -
This bug re-accrued 3 different times. Resolved by refresh.
**Current behavior**
I opened a new case ("new"), and after a few minutes i tried to edit the pin-point location (from an image).
Although the new location appears in all the screens (4)- 3 of them (with the overlays) showed "this overlay is not part of the case" notification. In addition, it failed to present the overlays on the time line.
**Expected behavior**
The pin-point location will changed in all of the overlays, and relevant overlays will be presented on the time line.
**Minimal reproduction of the problem with instructions**
Open new case
Set pin-point
Open 4 screens (3 with overlays and one with base map)
Edit pin-point location
Please see-

| priority | bug changing pin point location this bug re accrued different times resolved by refresh current behavior i opened a new case new and after a few minutes i tried to edit the pin point location from an image although the new location appears in all the screens of them with the overlays showed this overlay is not part of the case notification in addition it failed to present the overlays on the time line expected behavior the pin point location will changed in all of the overlays and relevant overlays will be presented on the time line minimal reproduction of the problem with instructions open new case set pin point open screens with overlays and one with base map edit pin point location please see | 1 |
55,565 | 3,073,784,761 | IssuesEvent | 2015-08-20 00:30:00 | RobotiumTech/robotium | https://api.github.com/repos/RobotiumTech/robotium | closed | clickOnText() fails on partially visible text in WebView | bug imported Priority-Medium | _From [Gabor.Pa...@flexionmobile.com](https://code.google.com/u/103117315352862916361/) on May 30, 2013 08:58:29_
What steps will reproduce the problem? 1. Create a layout where the WebView does not fill up all the available space.
2. Load content in the WebView.
3. Call clickOnText() on a partially visible text. What is the expected output? What do you see instead? Expected: The WebView's content should be scrolled until the center of the text becomes visible/clickable.
Actual: clickOnText() clicks on an other component. What version of the product are you using? On what operating system? The test was performed on emulator with target Android 2.3.3 and resolution 320x480 using Robotium 4.1 Please provide any additional information below. The problem is that the text is considered as sufficiently visible when it is not.
Please find the test applications (to illustrate the problem) and a possible patch attached.
**Attachment:** [WebViewTest.zip robotium.patch](http://code.google.com/p/robotium/issues/detail?id=468)
_Original issue: http://code.google.com/p/robotium/issues/detail?id=468_ | 1.0 | clickOnText() fails on partially visible text in WebView - _From [Gabor.Pa...@flexionmobile.com](https://code.google.com/u/103117315352862916361/) on May 30, 2013 08:58:29_
What steps will reproduce the problem? 1. Create a layout where the WebView does not fill up all the available space.
2. Load content in the WebView.
3. Call clickOnText() on a partially visible text. What is the expected output? What do you see instead? Expected: The WebView's content should be scrolled until the center of the text becomes visible/clickable.
Actual: clickOnText() clicks on an other component. What version of the product are you using? On what operating system? The test was performed on emulator with target Android 2.3.3 and resolution 320x480 using Robotium 4.1 Please provide any additional information below. The problem is that the text is considered as sufficiently visible when it is not.
Please find the test applications (to illustrate the problem) and a possible patch attached.
**Attachment:** [WebViewTest.zip robotium.patch](http://code.google.com/p/robotium/issues/detail?id=468)
_Original issue: http://code.google.com/p/robotium/issues/detail?id=468_ | priority | clickontext fails on partially visible text in webview from on may what steps will reproduce the problem create a layout where the webview does not fill up all the available space load content in the webview call clickontext on a partially visible text what is the expected output what do you see instead expected the webview s content should be scrolled until the center of the text becomes visible clickable actual clickontext clicks on an other component what version of the product are you using on what operating system the test was performed on emulator with target android and resolution using robotium please provide any additional information below the problem is that the text is considered as sufficiently visible when it is not please find the test applications to illustrate the problem and a possible patch attached attachment original issue | 1 |
749,275 | 26,156,887,260 | IssuesEvent | 2022-12-31 00:13:42 | sfuphantom/bms-fw | https://api.github.com/repos/sfuphantom/bms-fw | opened | 4A: Define APIs between modules | Medium priority | This task mainly focuses on refactoring at the module level and *defining responsibilities for modules.
* we should decentralize initialization code and dissolve it into separate modules where there is a single owner
Output:
- Task skeletons
- Queue modules
| 1.0 | 4A: Define APIs between modules - This task mainly focuses on refactoring at the module level and *defining responsibilities for modules.
* we should decentralize initialization code and dissolve it into separate modules where there is a single owner
Output:
- Task skeletons
- Queue modules
| priority | define apis between modules this task mainly focuses on refactoring at the module level and defining responsibilities for modules we should decentralize initialization code and dissolve it into separate modules where there is a single owner output task skeletons queue modules | 1 |
584,546 | 17,457,957,376 | IssuesEvent | 2021-08-06 06:05:04 | buddyboss/buddyboss-platform | https://api.github.com/repos/buddyboss/buddyboss-platform | closed | Video - Moderation Support | feature: enhancement priority: medium component: moderation | **Is your feature request related to a problem? Please describe.**
Provide moderation support for Video module same as Photos & Documents. | 1.0 | Video - Moderation Support - **Is your feature request related to a problem? Please describe.**
Provide moderation support for Video module same as Photos & Documents. | priority | video moderation support is your feature request related to a problem please describe provide moderation support for video module same as photos documents | 1 |
100,314 | 4,082,782,295 | IssuesEvent | 2016-05-31 14:01:21 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | opened | SnapShot: html2canvas creates a canvas of the wrong size | bug LeafLetJS Priority: Medium | It uses document size, instead of map size, so if the map is not full size you have white bands | 1.0 | SnapShot: html2canvas creates a canvas of the wrong size - It uses document size, instead of map size, so if the map is not full size you have white bands | priority | snapshot creates a canvas of the wrong size it uses document size instead of map size so if the map is not full size you have white bands | 1 |
285,821 | 8,775,126,247 | IssuesEvent | 2018-12-18 21:59:45 | Shymain/Monochrome | https://api.github.com/repos/Shymain/Monochrome | closed | Data Organization Structure | Data New Feature Priority: Medium | Require a data structure and actively use the structure for implementing alternate script loading and image loading.
File Structure:
> parent folder
> ---main file
> ---images folder
> ------images
> ---scripts folder
> ------scripts | 1.0 | Data Organization Structure - Require a data structure and actively use the structure for implementing alternate script loading and image loading.
File Structure:
> parent folder
> ---main file
> ---images folder
> ------images
> ---scripts folder
> ------scripts | priority | data organization structure require a data structure and actively use the structure for implementing alternate script loading and image loading file structure parent folder main file images folder images scripts folder scripts | 1 |
691,519 | 23,699,699,388 | IssuesEvent | 2022-08-29 17:46:17 | RedstoneMedia/HAG-Timetable-App | https://api.github.com/repos/RedstoneMedia/HAG-Timetable-App | closed | Support AGs | enhancement Medium Priority | ## Describe the feature you'd like
The app should support adding AGs to the course list and displaying them and their potential substitutions.
This information is already stored in the special "AG" class on IServ only.
## Describe why you think your feature is important
There are numerous people that have AGs, while they might know when they have them, since they chose them themselves.
They might not know if they are substituted. Providing this information in the App is trivial and comes with a great benefit for those people. | 1.0 | Support AGs - ## Describe the feature you'd like
The app should support adding AGs to the course list and displaying them and their potential substitutions.
This information is already stored in the special "AG" class on IServ only.
## Describe why you think your feature is important
There are numerous people that have AGs, while they might know when they have them, since they chose them themselves.
They might not know if they are substituted. Providing this information in the App is trivial and comes with a great benefit for those people. | priority | support ags describe the feature you d like the app should support adding ags to the course list and displaying them and their potential substitutions this information is already stored in the special ag class on iserv only describe why you think your feature is important there are numerous people that have ags while they might know when they have them since they chose them themselves they might not know if they are substituted providing this information in the app is trivial and comes with a great benefit for those people | 1 |
334,740 | 10,144,586,674 | IssuesEvent | 2019-08-04 22:22:15 | salihciftci/liman | https://api.github.com/repos/salihciftci/liman | closed | Aggregate information from different servers | kind/feature priority/medium stale | **Detailed Description**
<!--- Provide a detailed description of the change or addition you are proposing -->
If you have multiple different servers, running docker and not participating in a swarm then you would have to run Liman on each of these nodes.
It would be nice if Liman could run in a cluster or slave/master setup, such that one Liman instance can use the API to import information from the other servers.
This is a pretty major change, and there is quite a few functional as well as UI changes in order to make it look properly.
**Context**
<!--- Why is this change important to you? How would you use it? -->
<!--- How can it benefit other users? -->
This change would allow Liman to be a cross-cutting infrastructure monitoring tool, which helps keeping an overview of multiple environments, rather than just being a front-end for the docker daemon.
Being able to monitor multiple environments would allow Liman to be a great light-weight enterprise solution. | 1.0 | Aggregate information from different servers - **Detailed Description**
<!--- Provide a detailed description of the change or addition you are proposing -->
If you have multiple different servers, running docker and not participating in a swarm then you would have to run Liman on each of these nodes.
It would be nice if Liman could run in a cluster or slave/master setup, such that one Liman instance can use the API to import information from the other servers.
This is a pretty major change, and there is quite a few functional as well as UI changes in order to make it look properly.
**Context**
<!--- Why is this change important to you? How would you use it? -->
<!--- How can it benefit other users? -->
This change would allow Liman to be a cross-cutting infrastructure monitoring tool, which helps keeping an overview of multiple environments, rather than just being a front-end for the docker daemon.
Being able to monitor multiple environments would allow Liman to be a great light-weight enterprise solution. | priority | aggregate information from different servers detailed description if you have multiple different servers running docker and not participating in a swarm then you would have to run liman on each of these nodes it would be nice if liman could run in a cluster or slave master setup such that one liman instance can use the api to import information from the other servers this is a pretty major change and there is quite a few functional as well as ui changes in order to make it look properly context this change would allow liman to be a cross cutting infrastructure monitoring tool which helps keeping an overview of multiple environments rather than just being a front end for the docker daemon being able to monitor multiple environments would allow liman to be a great light weight enterprise solution | 1 |
487,917 | 14,061,264,511 | IssuesEvent | 2020-11-03 07:50:03 | AY2021S1-CS2103T-T13-1/tp | https://api.github.com/repos/AY2021S1-CS2103T-T13-1/tp | closed | Remove tags from VirusTracker | Implementation priority.Medium | Tags is a legacy from addressbook and serves no purpose within VirusTracker. This aspect ought to be removed to make VirusTracker more specialised and to make each Person panel cleaner. | 1.0 | Remove tags from VirusTracker - Tags is a legacy from addressbook and serves no purpose within VirusTracker. This aspect ought to be removed to make VirusTracker more specialised and to make each Person panel cleaner. | priority | remove tags from virustracker tags is a legacy from addressbook and serves no purpose within virustracker this aspect ought to be removed to make virustracker more specialised and to make each person panel cleaner | 1 |
704,205 | 24,189,057,977 | IssuesEvent | 2022-09-23 15:41:46 | medic/cht-core | https://api.github.com/repos/medic/cht-core | closed | Add "belongs to" breadcrumbs to tasks in the LHS list | Tasks Priority: 2 - Medium Type: Improvement | #5697 is related and either needs to be completed before, or at the same time as, this request.
**User stories**
- As a CHW, when I look at my tasks list, I would like to know the family or primary contact that an individual person belongs to, so that I can identify patients easier. (For example, tasks about children currently only display the child’s name. But children often have similar names and some parents wait months to give their baby a name. The child’s name is not always enough information.)
- As a CHW, when I look at my tasks list, I would like to know the family or primary contact that an individual person belongs to, so that I can better plan my visits and can complete all tasks for the same family at the same time. (Currently a CHW may have more than one open task for the same family, but because the tasks list is sorted by due date and doesn’t list the family name, they may miss other tasks for the same family.)
- As a CHW, I would like tasks for the same family to be grouped together so that I can be more efficient with my visit time and planning. (This spec/feature doesn’t address grouping, but just noting that displaying the family name is probably a desired prerequisite to sorting by family.)
**Summary**
- After discussing many possibilities, we decided that we would like to add a third line of text to tasks to display the additional contextual information.
- This new line of text should display breadcrumbs showing where the person/place the task is about belongs to.
- The functionality should match how we display breadcrumbs elsewhere on the app. Note that we are updating breadcrumbs across the app so that they do not list out the level the user themselves belongs to repetitively (i.e. CHW Janet will not see “CHW Janet’s Area” repeated all over the place, ticket #5697).
- The text should be styled just like breadcrumbs elsewhere on the app (Noto Sans 14px).
**Examples**
- For CHWs on the webapp looking at a task about a particular person, the breadcrumbs should most often be just the family name (e.g. “Beatrice Bass Family”). Only a single level is listed because the next level, CHW Janet’s Area, is the CHW’s own level.

- Some tasks are for families instead of individual people, like family surveys or bed net distribution. In these cases, the breadcrumbs may not display at all, since there are no levels between the family and the CHW area.

- IF we ever do eventually add in the concept of sub-areas, at that point the breadcrumbs could display both the family name and the sub area name (since there would now be two levels before the CHW area).

- For facility users on Standard, the breadcrumbs will start with the CHW Area (since Standard does not have a concept of families).

- For a CHW supervisor, if the supervisor has a task about a CHW, the breadcrumbs would display the CHW Area (and any other levels between the CHW and the supervisor, if applicable).

- Also, a reminder that we sometimes have high risk task styling. In the cases of high risk, the breadcrumb info should come after the risk message.

| 1.0 | Add "belongs to" breadcrumbs to tasks in the LHS list - #5697 is related and either needs to be completed before, or at the same time as, this request.
**User stories**
- As a CHW, when I look at my tasks list, I would like to know the family or primary contact that an individual person belongs to, so that I can identify patients easier. (For example, tasks about children currently only display the child’s name. But children often have similar names and some parents wait months to give their baby a name. The child’s name is not always enough information.)
- As a CHW, when I look at my tasks list, I would like to know the family or primary contact that an individual person belongs to, so that I can better plan my visits and can complete all tasks for the same family at the same time. (Currently a CHW may have more than one open task for the same family, but because the tasks list is sorted by due date and doesn’t list the family name, they may miss other tasks for the same family.)
- As a CHW, I would like tasks for the same family to be grouped together so that I can be more efficient with my visit time and planning. (This spec/feature doesn’t address grouping, but just noting that displaying the family name is probably a desired prerequisite to sorting by family.)
**Summary**
- After discussing many possibilities, we decided that we would like to add a third line of text to tasks to display the additional contextual information.
- This new line of text should display breadcrumbs showing where the person/place the task is about belongs to.
- The functionality should match how we display breadcrumbs elsewhere on the app. Note that we are updating breadcrumbs across the app so that they do not list out the level the user themselves belongs to repetitively (i.e. CHW Janet will not see “CHW Janet’s Area” repeated all over the place, ticket #5697).
- The text should be styled just like breadcrumbs elsewhere on the app (Noto Sans 14px).
**Examples**
- For CHWs on the webapp looking at a task about a particular person, the breadcrumbs should most often be just the family name (e.g. “Beatrice Bass Family”). Only a single level is listed because the next level, CHW Janet’s Area, is the CHW’s own level.

- Some tasks are for families instead of individual people, like family surveys or bed net distribution. In these cases, the breadcrumbs may not display at all, since there are no levels between the family and the CHW area.

- IF we ever do eventually add in the concept of sub-areas, at that point the breadcrumbs could display both the family name and the sub area name (since there would now be two levels before the CHW area).

- For facility users on Standard, the breadcrumbs will start with the CHW Area (since Standard does not have a concept of families).

- For a CHW supervisor, if the supervisor has a task about a CHW, the breadcrumbs would display the CHW Area (and any other levels between the CHW and the supervisor, if applicable).

- Also, a reminder that we sometimes have high risk task styling. In the cases of high risk, the breadcrumb info should come after the risk message.

| priority | add belongs to breadcrumbs to tasks in the lhs list is related and either needs to be completed before or at the same time as this request user stories as a chw when i look at my tasks list i would like to know the family or primary contact that an individual person belongs to so that i can identify patients easier for example tasks about children currently only display the child’s name but children often have similar names and some parents wait months to give their baby a name the child’s name is not always enough information as a chw when i look at my tasks list i would like to know the family or primary contact that an individual person belongs to so that i can better plan my visits and can complete all tasks for the same family at the same time currently a chw may have more than one open task for the same family but because the tasks list is sorted by due date and doesn’t list the family name they may miss other tasks for the same family as a chw i would like tasks for the same family to be grouped together so that i can be more efficient with my visit time and planning this spec feature doesn’t address grouping but just noting that displaying the family name is probably a desired prerequisite to sorting by family summary after discussing many possibilities we decided that we would like to add a third line of text to tasks to display the additional contextual information this new line of text should display breadcrumbs showing where the person place the task is about belongs to the functionality should match how we display breadcrumbs elsewhere on the app note that we are updating breadcrumbs across the app so that they do not list out the level the user themselves belongs to repetitively i e chw janet will not see “chw janet’s area” repeated all over the place ticket the text should be styled just like breadcrumbs elsewhere on the app noto sans examples for chws on the webapp looking at a task about a particular person the breadcrumbs should most often be just the family name e g “beatrice bass family” only a single level is listed because the next level chw janet’s area is the chw’s own level some tasks are for families instead of individual people like family surveys or bed net distribution in these cases the breadcrumbs may not display at all since there are no levels between the family and the chw area if we ever do eventually add in the concept of sub areas at that point the breadcrumbs could display both the family name and the sub area name since there would now be two levels before the chw area for facility users on standard the breadcrumbs will start with the chw area since standard does not have a concept of families for a chw supervisor if the supervisor has a task about a chw the breadcrumbs would display the chw area and any other levels between the chw and the supervisor if applicable also a reminder that we sometimes have high risk task styling in the cases of high risk the breadcrumb info should come after the risk message | 1 |
25,932 | 2,684,049,081 | IssuesEvent | 2015-03-28 16:13:28 | ConEmu/old-issues | https://api.github.com/repos/ConEmu/old-issues | closed | ConEmu не собирается из исходников | 1 star bug imported Priority-Medium | _From [alterm...@gmail.com](https://code.google.com/u/109041299096554972583/) on February 24, 2012 10:47:37_
В исходниках в svn отсутствуют файлы GuiServer.h и GuiServer.cpp (как минимум), из-за чего проект, естественно, не собирается.
Скажите, это нарочно сделано, т.е. проект на самом деле не оупенсорсный? Или все-таки произошло какое-то недоразумение с коммитом этих файлов?
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=497_ | 1.0 | ConEmu не собирается из исходников - _From [alterm...@gmail.com](https://code.google.com/u/109041299096554972583/) on February 24, 2012 10:47:37_
В исходниках в svn отсутствуют файлы GuiServer.h и GuiServer.cpp (как минимум), из-за чего проект, естественно, не собирается.
Скажите, это нарочно сделано, т.е. проект на самом деле не оупенсорсный? Или все-таки произошло какое-то недоразумение с коммитом этих файлов?
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=497_ | priority | conemu не собирается из исходников from on february в исходниках в svn отсутствуют файлы guiserver h и guiserver cpp как минимум из за чего проект естественно не собирается скажите это нарочно сделано т е проект на самом деле не оупенсорсный или все таки произошло какое то недоразумение с коммитом этих файлов original issue | 1 |
281,570 | 8,696,968,954 | IssuesEvent | 2018-12-04 18:57:57 | blackbaud/skyux-list-builder-view-grids | https://api.github.com/repos/blackbaud/skyux-list-builder-view-grids | closed | Dependent modules are not exported with parent module | From: Consumer Priority: Medium | ### Expected behavior
Consumer should be able to use List Builder View Grids by importing `SkyListBuilderViewGridModule` into their application.
### Actual behavior
The consumer needs to also import `SkyListColumnSelectorActionModule` and `SkyColumnSelectorModule`.
| 1.0 | Dependent modules are not exported with parent module - ### Expected behavior
Consumer should be able to use List Builder View Grids by importing `SkyListBuilderViewGridModule` into their application.
### Actual behavior
The consumer needs to also import `SkyListColumnSelectorActionModule` and `SkyColumnSelectorModule`.
| priority | dependent modules are not exported with parent module expected behavior consumer should be able to use list builder view grids by importing skylistbuilderviewgridmodule into their application actual behavior the consumer needs to also import skylistcolumnselectoractionmodule and skycolumnselectormodule | 1 |
26,326 | 2,684,316,631 | IssuesEvent | 2015-03-28 21:24:59 | ConEmu/old-issues | https://api.github.com/repos/ConEmu/old-issues | closed | conemu x64: Crash after clicking the window to maximize it | 2–5 stars bug duplicate imported Priority-Medium | _From [dud...@gmail.com](https://code.google.com/u/112707543299487936621/) on March 13, 2013 06:00:47_
Required information! OS version: Win7 SP? x64 ConEmu version: 130304 *Bug description* CRASH
--------------------------- ConEmu 130304 [64]
\---------------------------
Assertion (nNewWidth>0 && nNewHeight>0) at
RealBuffer.cpp:1630
Press \<Retry> to report a bug (web page)
\---------------------------
Retry Cancel
--------------------------- *Steps to reproduction* 1.clicked the window title to enlarge it
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=986_ | 1.0 | conemu x64: Crash after clicking the window to maximize it - _From [dud...@gmail.com](https://code.google.com/u/112707543299487936621/) on March 13, 2013 06:00:47_
Required information! OS version: Win7 SP? x64 ConEmu version: 130304 *Bug description* CRASH
--------------------------- ConEmu 130304 [64]
\---------------------------
Assertion (nNewWidth>0 && nNewHeight>0) at
RealBuffer.cpp:1630
Press \<Retry> to report a bug (web page)
\---------------------------
Retry Cancel
--------------------------- *Steps to reproduction* 1.clicked the window title to enlarge it
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=986_ | priority | conemu crash after clicking the window to maximize it from on march required information os version sp conemu version bug description crash conemu assertion nnewwidth nnewheight at realbuffer cpp press to report a bug web page retry cancel steps to reproduction clicked the window title to enlarge it original issue | 1 |
795,558 | 28,077,483,396 | IssuesEvent | 2023-03-30 01:47:10 | hackforla/tdm-calculator | https://api.github.com/repos/hackforla/tdm-calculator | closed | Bug: EV Bonus Dependency | bug role: front-end level: medium priority: MUST HAVE p-Feature - Strategies Page p4 | ### Overview
From Emily Gable:
I see Electric Vehicle Bonus is automatically selected if "BlueLA" is selected in the "Car Share Memberships" strategy. That's correct.
However, if "BlueLA" is then unselected (changed to N/A or third party operator), then the EV Bonus appears to stay checked, but becomes greyed out. This is a problem because it's granting a point that shouldn't be granted.
There's a little problem with forcibly un-checking the EV Bonus when BlueLA is unselected (for instance, maybe the private car share fleet is ALSO electric, and the applicant manually selected EV bonus), but that under-counting error, which they could manually fix, seems preferable to the over-counting error, which is greyed out and therefore unfixable.
### Action Items
- [ ] Fix
### Resources/Instructions
| 1.0 | Bug: EV Bonus Dependency - ### Overview
From Emily Gable:
I see Electric Vehicle Bonus is automatically selected if "BlueLA" is selected in the "Car Share Memberships" strategy. That's correct.
However, if "BlueLA" is then unselected (changed to N/A or third party operator), then the EV Bonus appears to stay checked, but becomes greyed out. This is a problem because it's granting a point that shouldn't be granted.
There's a little problem with forcibly un-checking the EV Bonus when BlueLA is unselected (for instance, maybe the private car share fleet is ALSO electric, and the applicant manually selected EV bonus), but that under-counting error, which they could manually fix, seems preferable to the over-counting error, which is greyed out and therefore unfixable.
### Action Items
- [ ] Fix
### Resources/Instructions
| priority | bug ev bonus dependency overview from emily gable i see electric vehicle bonus is automatically selected if bluela is selected in the car share memberships strategy that s correct however if bluela is then unselected changed to n a or third party operator then the ev bonus appears to stay checked but becomes greyed out this is a problem because it s granting a point that shouldn t be granted there s a little problem with forcibly un checking the ev bonus when bluela is unselected for instance maybe the private car share fleet is also electric and the applicant manually selected ev bonus but that under counting error which they could manually fix seems preferable to the over counting error which is greyed out and therefore unfixable action items fix resources instructions | 1 |
290,965 | 8,915,608,567 | IssuesEvent | 2019-01-19 07:54:54 | PolarisSS13/Polaris | https://api.github.com/repos/PolarisSS13/Polaris | opened | View Variables "Mark Object" menu option does not mark the object | Bug Priority: Medium | #### Brief description of the issue
 is nonfunctional. Objects can only be marked by right-clicking, which also necessarily precludes datums from being marked, despite that function being extremely useful
#### What you expected to happen
Marking an object to mark an object through the same mechanism I've always used to mark objects, i.e., via VV.
#### What actually happened
"Why isn't this marking an object?"
"You have to right click the object to mark it"
"What about datums?"
"lel"
#### Steps to reproduce
#### Additional info:
- **Server Revision**: Found using the "Show Server Revision" verb under the OOC tab.
- **Anything else you may wish to add** (Location if it's a mapping issue, etc)
| 1.0 | View Variables "Mark Object" menu option does not mark the object - #### Brief description of the issue
 is nonfunctional. Objects can only be marked by right-clicking, which also necessarily precludes datums from being marked, despite that function being extremely useful
#### What you expected to happen
Marking an object to mark an object through the same mechanism I've always used to mark objects, i.e., via VV.
#### What actually happened
"Why isn't this marking an object?"
"You have to right click the object to mark it"
"What about datums?"
"lel"
#### Steps to reproduce
#### Additional info:
- **Server Revision**: Found using the "Show Server Revision" verb under the OOC tab.
- **Anything else you may wish to add** (Location if it's a mapping issue, etc)
| priority | view variables mark object menu option does not mark the object brief description of the issue is nonfunctional objects can only be marked by right clicking which also necessarily precludes datums from being marked despite that function being extremely useful what you expected to happen marking an object to mark an object through the same mechanism i ve always used to mark objects i e via vv what actually happened why isn t this marking an object you have to right click the object to mark it what about datums lel steps to reproduce additional info server revision found using the show server revision verb under the ooc tab anything else you may wish to add location if it s a mapping issue etc | 1 |
141,387 | 5,435,504,043 | IssuesEvent | 2017-03-05 17:32:42 | dmusican/Elegit | https://api.github.com/repos/dmusican/Elegit | opened | Fix when remove is grayed out | bug priority medium | Right now, you can only remove files that have been staged...
Remove should allow you to remove any file that is in the index at any time, but should perhaps pop up a warning. This can probably be delayed to the index remake | 1.0 | Fix when remove is grayed out - Right now, you can only remove files that have been staged...
Remove should allow you to remove any file that is in the index at any time, but should perhaps pop up a warning. This can probably be delayed to the index remake | priority | fix when remove is grayed out right now you can only remove files that have been staged remove should allow you to remove any file that is in the index at any time but should perhaps pop up a warning this can probably be delayed to the index remake | 1 |
110,690 | 4,436,591,770 | IssuesEvent | 2016-08-18 13:02:52 | RobotLocomotion/drake | https://api.github.com/repos/RobotLocomotion/drake | closed | Implement helper methods to sanity check SystemOutput and Context. | priority: medium team: dynamics type: cleanup type: feature request | Implement methods `System<T>::IsOutputValid(SystemOutput<T>& output)` and `System<T>::IsContextValid(ContextBase<T>& context)` that check the consistency of systems' outputs and contexts when passed to methods `EvalOutput` and `EvalTimeDerivatives` since right now we are copying these code for each primitive.
| 1.0 | Implement helper methods to sanity check SystemOutput and Context. - Implement methods `System<T>::IsOutputValid(SystemOutput<T>& output)` and `System<T>::IsContextValid(ContextBase<T>& context)` that check the consistency of systems' outputs and contexts when passed to methods `EvalOutput` and `EvalTimeDerivatives` since right now we are copying these code for each primitive.
| priority | implement helper methods to sanity check systemoutput and context implement methods system isoutputvalid systemoutput output and system iscontextvalid contextbase context that check the consistency of systems outputs and contexts when passed to methods evaloutput and evaltimederivatives since right now we are copying these code for each primitive | 1 |
17,490 | 2,615,145,502 | IssuesEvent | 2015-03-01 06:21:23 | chrsmith/html5rocks | https://api.github.com/repos/chrsmith/html5rocks | closed | Moving audit panel tutorial to devtools directory. Adding it to tutorials index. | auto-migrated Milestone-2 Priority-Medium Type-Review | ```
Please describe the issue:
Please provide any additional information below.
```
Original issue reported on code.google.com by `ericbide...@html5rocks.com` on 1 Aug 2010 at 9:42 | 1.0 | Moving audit panel tutorial to devtools directory. Adding it to tutorials index. - ```
Please describe the issue:
Please provide any additional information below.
```
Original issue reported on code.google.com by `ericbide...@html5rocks.com` on 1 Aug 2010 at 9:42 | priority | moving audit panel tutorial to devtools directory adding it to tutorials index please describe the issue please provide any additional information below original issue reported on code google com by ericbide com on aug at | 1 |
204,208 | 7,085,543,188 | IssuesEvent | 2018-01-11 11:20:00 | EyeSeeTea/dhis2-android-sdk | https://api.github.com/repos/EyeSeeTea/dhis2-android-sdk | closed | Install dhis 2 (2.28 o later) in local and execute connectivity tests for RabbitMQ message broker | complexity - med (1-5hr) in progress new SDK priority - medium type - feature | * https://docs.dhis2.org/master/en/developer/html/webapi_amqp_rabbitmq_integration.html
* https://www.rabbitmq.com/tutorials/tutorial-one-java.html
* https://github.com/rabbitmq/rabbitmq-java-client
* branch: feature-new-sdk_implement_amqp_rabbitmq | 1.0 | Install dhis 2 (2.28 o later) in local and execute connectivity tests for RabbitMQ message broker - * https://docs.dhis2.org/master/en/developer/html/webapi_amqp_rabbitmq_integration.html
* https://www.rabbitmq.com/tutorials/tutorial-one-java.html
* https://github.com/rabbitmq/rabbitmq-java-client
* branch: feature-new-sdk_implement_amqp_rabbitmq | priority | install dhis o later in local and execute connectivity tests for rabbitmq message broker branch feature new sdk implement amqp rabbitmq | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.