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
57,106
3,081,240,361
IssuesEvent
2015-08-22 14:30:17
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
Переподключение на ADC хабах не работает
bug imported Priority-Medium
_From [zippoz...@gmail.com](https://code.google.com/u/112526314443357204055/) on November 26, 2012 22:20:44_ Не уверен что факт 100%-ый, но ситуёвина такая: Есть два клиента Флая. Версии серые последние (думаю проблема на всех версиях) Итак. Сидим с одного, основного клиента на неком ADC хабе. Стартуем второй клиент, автоматом входим в тот-же ADC хаб с другого ника естественно. Клиент то другой. В первом клиенте с хаба выкидывает. Закрываем второй клиент. Ну потестировали и хватит. Первый клиент по идее должен через некое время автопереподключиться. Но проходит двое суток, а коннект не налажен и даже попыток не было. На NMDC хабах подключает автоматически через какое-то время. Видимо значение вшито. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=867_
1.0
Переподключение на ADC хабах не работает - _From [zippoz...@gmail.com](https://code.google.com/u/112526314443357204055/) on November 26, 2012 22:20:44_ Не уверен что факт 100%-ый, но ситуёвина такая: Есть два клиента Флая. Версии серые последние (думаю проблема на всех версиях) Итак. Сидим с одного, основного клиента на неком ADC хабе. Стартуем второй клиент, автоматом входим в тот-же ADC хаб с другого ника естественно. Клиент то другой. В первом клиенте с хаба выкидывает. Закрываем второй клиент. Ну потестировали и хватит. Первый клиент по идее должен через некое время автопереподключиться. Но проходит двое суток, а коннект не налажен и даже попыток не было. На NMDC хабах подключает автоматически через какое-то время. Видимо значение вшито. _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=867_
priority
переподключение на adc хабах не работает from on november не уверен что факт ый но ситуёвина такая есть два клиента флая версии серые последние думаю проблема на всех версиях итак сидим с одного основного клиента на неком adc хабе стартуем второй клиент автоматом входим в тот же adc хаб с другого ника естественно клиент то другой в первом клиенте с хаба выкидывает закрываем второй клиент ну потестировали и хватит первый клиент по идее должен через некое время автопереподключиться но проходит двое суток а коннект не налажен и даже попыток не было на nmdc хабах подключает автоматически через какое то время видимо значение вшито original issue
1
30,693
2,724,905,771
IssuesEvent
2015-04-14 20:29:21
CruxFramework/crux-widgets
https://api.github.com/repos/CruxFramework/crux-widgets
closed
Type error (undefined) on View.setActive()
bug imported Milestone-M14-C2 Priority-Medium
_From [thi...@cruxframework.org](https://code.google.com/u/114650528804514463329/) on May 02, 2014 23:34:42_ IE is throwing an error on View.setActive() method due to variable scope problems on IE when calling setTimeout function. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=357_
1.0
Type error (undefined) on View.setActive() - _From [thi...@cruxframework.org](https://code.google.com/u/114650528804514463329/) on May 02, 2014 23:34:42_ IE is throwing an error on View.setActive() method due to variable scope problems on IE when calling setTimeout function. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=357_
priority
type error undefined on view setactive from on may ie is throwing an error on view setactive method due to variable scope problems on ie when calling settimeout function original issue
1
693,115
23,763,744,500
IssuesEvent
2022-09-01 11:04:06
pendulum-chain/spacewalk
https://api.github.com/repos/pendulum-chain/spacewalk
opened
Listen to and execute issue events in vault client
priority:medium type:enhancement
Requires #85. Make the vault client listen to events related to issue requests, emitted by the connected parachain and execute them if they are directed at them. ### Handling Issue events - On a new `RequestIssueEvent` check if it targets this vault and if it does, store it as a new `Issue` request locally in a set - On a new `CancelIssueEvent` or `ExecuteIssueEvent` remove the related `Issue` if it is contained in the local set - In a separate task, sequentially try to execute all the issues contained in the issue set (described in more detail below) ### Storing Stellar transactions directed at the vault - When issuing, the user has to send a Stellar transaction with a payment to the vault - The vault continuously fetches the transactions for its Stellar account from the network and stores them locally - It would be okay to only store the new transactions after going online - It would also be okay to discard all transactions that don't contain a transaction memo, because the memo is required for fulfilling issue requests ### Executing Issue requests - First, look through the stored (vault-related) Stellar transactions and try to find one that contains the `issue_id` as a transaction memo - If no such transaction can be found, skip the issue for now (or remove it from the set? to be defined) - Check if the `amount` and `asset` contained in the `Issue` match `amount` and `asset` contained in the Stellar transaction - If they don't match, print an error and remove the issue from the set - If they match, build the proof - Look at the Stellar transactions `ledger` field and retrieve the `externalizedMessages[]` and `transactionSet[]` from the map (build in #85) - (Optional: Reduce the externalized messages to a minimal amount that builds a valid quorum set (11-12 nodes) and check all the messages for validity, i.e. check their signatures, if they all contain the same txSetHash, etc.) - Call the `executeIssue()` extrinsic with the Stellar transaction, the externalized messages, and the transaction set
1.0
Listen to and execute issue events in vault client - Requires #85. Make the vault client listen to events related to issue requests, emitted by the connected parachain and execute them if they are directed at them. ### Handling Issue events - On a new `RequestIssueEvent` check if it targets this vault and if it does, store it as a new `Issue` request locally in a set - On a new `CancelIssueEvent` or `ExecuteIssueEvent` remove the related `Issue` if it is contained in the local set - In a separate task, sequentially try to execute all the issues contained in the issue set (described in more detail below) ### Storing Stellar transactions directed at the vault - When issuing, the user has to send a Stellar transaction with a payment to the vault - The vault continuously fetches the transactions for its Stellar account from the network and stores them locally - It would be okay to only store the new transactions after going online - It would also be okay to discard all transactions that don't contain a transaction memo, because the memo is required for fulfilling issue requests ### Executing Issue requests - First, look through the stored (vault-related) Stellar transactions and try to find one that contains the `issue_id` as a transaction memo - If no such transaction can be found, skip the issue for now (or remove it from the set? to be defined) - Check if the `amount` and `asset` contained in the `Issue` match `amount` and `asset` contained in the Stellar transaction - If they don't match, print an error and remove the issue from the set - If they match, build the proof - Look at the Stellar transactions `ledger` field and retrieve the `externalizedMessages[]` and `transactionSet[]` from the map (build in #85) - (Optional: Reduce the externalized messages to a minimal amount that builds a valid quorum set (11-12 nodes) and check all the messages for validity, i.e. check their signatures, if they all contain the same txSetHash, etc.) - Call the `executeIssue()` extrinsic with the Stellar transaction, the externalized messages, and the transaction set
priority
listen to and execute issue events in vault client requires make the vault client listen to events related to issue requests emitted by the connected parachain and execute them if they are directed at them handling issue events on a new requestissueevent check if it targets this vault and if it does store it as a new issue request locally in a set on a new cancelissueevent or executeissueevent remove the related issue if it is contained in the local set in a separate task sequentially try to execute all the issues contained in the issue set described in more detail below storing stellar transactions directed at the vault when issuing the user has to send a stellar transaction with a payment to the vault the vault continuously fetches the transactions for its stellar account from the network and stores them locally it would be okay to only store the new transactions after going online it would also be okay to discard all transactions that don t contain a transaction memo because the memo is required for fulfilling issue requests executing issue requests first look through the stored vault related stellar transactions and try to find one that contains the issue id as a transaction memo if no such transaction can be found skip the issue for now or remove it from the set to be defined check if the amount and asset contained in the issue match amount and asset contained in the stellar transaction if they don t match print an error and remove the issue from the set if they match build the proof look at the stellar transactions ledger field and retrieve the externalizedmessages and transactionset from the map build in optional reduce the externalized messages to a minimal amount that builds a valid quorum set nodes and check all the messages for validity i e check their signatures if they all contain the same txsethash etc call the executeissue extrinsic with the stellar transaction the externalized messages and the transaction set
1
359,929
10,682,551,161
IssuesEvent
2019-10-22 05:52:51
vmware/singleton
https://api.github.com/repos/vmware/singleton
opened
[BUG] [Angular Client]Need to parse business code 404 response when requesting getsupportlanguagelist feature.
area/angular-client kind/bug priority/medium
**Describe the bug** Due to white list feature is added into service, it will respond to 404 if the requested product isn't in white list. Now angular can't parse business code 404 and cause error. **To Reproduce** Steps to reproduce the behavior: 1. Launch angular sample app to request support language list of a product that isn't in white list. 2. Error pops up in browser console. **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** ![2019-10-22-issue](https://user-images.githubusercontent.com/51813046/67261139-fc50b280-f4d1-11e9-88a0-8c60a161aa5a.jpg)
1.0
[BUG] [Angular Client]Need to parse business code 404 response when requesting getsupportlanguagelist feature. - **Describe the bug** Due to white list feature is added into service, it will respond to 404 if the requested product isn't in white list. Now angular can't parse business code 404 and cause error. **To Reproduce** Steps to reproduce the behavior: 1. Launch angular sample app to request support language list of a product that isn't in white list. 2. Error pops up in browser console. **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** ![2019-10-22-issue](https://user-images.githubusercontent.com/51813046/67261139-fc50b280-f4d1-11e9-88a0-8c60a161aa5a.jpg)
priority
need to parse business code response when requesting getsupportlanguagelist feature describe the bug due to white list feature is added into service it will respond to if the requested product isn t in white list now angular can t parse business code and cause error to reproduce steps to reproduce the behavior launch angular sample app to request support language list of a product that isn t in white list error pops up in browser console expected behavior a clear and concise description of what you expected to happen screenshots
1
592,205
17,872,321,673
IssuesEvent
2021-09-06 17:49:16
MarketSquare/robotframework-browser
https://api.github.com/repos/MarketSquare/robotframework-browser
closed
Record Selector improvements
enhancement priority: medium
Identified couple of problems with Record Selector: 1. When running Record Selector multiple times in a test it is easy to get lost on what this one is => Add label text to show in the box 2. Created selector may contain classes related to mouse hover that can not be used => Expose https://github.com/antonmedv/finder className restrictions (ignore_classes=....) could be also done on page.. which would be extremely cool. Some edit selector thing or show multiple selectors or something. 3. Preview / test selector https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll 4. Print chosen selector to console also (can write directly to test file instead of waiting until test ends) 5. Frame piercing 6. Shadow root piercing 7. Logging Position x, y inside the component
1.0
Record Selector improvements - Identified couple of problems with Record Selector: 1. When running Record Selector multiple times in a test it is easy to get lost on what this one is => Add label text to show in the box 2. Created selector may contain classes related to mouse hover that can not be used => Expose https://github.com/antonmedv/finder className restrictions (ignore_classes=....) could be also done on page.. which would be extremely cool. Some edit selector thing or show multiple selectors or something. 3. Preview / test selector https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll 4. Print chosen selector to console also (can write directly to test file instead of waiting until test ends) 5. Frame piercing 6. Shadow root piercing 7. Logging Position x, y inside the component
priority
record selector improvements identified couple of problems with record selector when running record selector multiple times in a test it is easy to get lost on what this one is add label text to show in the box created selector may contain classes related to mouse hover that can not be used expose classname restrictions ignore classes could be also done on page which would be extremely cool some edit selector thing or show multiple selectors or something preview test selector print chosen selector to console also can write directly to test file instead of waiting until test ends frame piercing shadow root piercing logging position x y inside the component
1
726,178
24,990,932,527
IssuesEvent
2022-11-02 18:42:34
OneSignal/OneSignal-Xamarin-SDK
https://api.github.com/repos/OneSignal/OneSignal-Xamarin-SDK
closed
Unable to Compile and Test 4.2.0 Beta - MAUI
Medium Priority
In VS 2022 Preview on Mac and Windows (latest) **Description:** Opening the project, I immediately get a few notices about the build settings on Windows. The panel where you set Debug / Release and All CPU. Then when trying to run, it is not happy with the Android Manifest.xml file. Looks like the the target and min versions are not right. I am unable to find a good combination. (your description here) **Environment** This is just a simple download of the 4.2.0-beta1-maui codeline and upzip it. Issues on Mac are all related to the Android code but preventing the app from fully building. Has anyone had issue or success on this beta code?
1.0
Unable to Compile and Test 4.2.0 Beta - MAUI - In VS 2022 Preview on Mac and Windows (latest) **Description:** Opening the project, I immediately get a few notices about the build settings on Windows. The panel where you set Debug / Release and All CPU. Then when trying to run, it is not happy with the Android Manifest.xml file. Looks like the the target and min versions are not right. I am unable to find a good combination. (your description here) **Environment** This is just a simple download of the 4.2.0-beta1-maui codeline and upzip it. Issues on Mac are all related to the Android code but preventing the app from fully building. Has anyone had issue or success on this beta code?
priority
unable to compile and test beta maui in vs preview on mac and windows latest description opening the project i immediately get a few notices about the build settings on windows the panel where you set debug release and all cpu then when trying to run it is not happy with the android manifest xml file looks like the the target and min versions are not right i am unable to find a good combination your description here environment this is just a simple download of the maui codeline and upzip it issues on mac are all related to the android code but preventing the app from fully building has anyone had issue or success on this beta code
1
329,761
10,024,163,658
IssuesEvent
2019-07-16 21:05:41
crafted/crafted
https://api.github.com/repos/crafted/crafted
closed
User-defined custom fields
feature pkg: github-dashboard priority: medium
Be able to create custom fields where if a field is populated by a particular filterer state E.g. "Needs priority" field where the value is a boolean (true/false) based on whether it has a priority label assigned
1.0
User-defined custom fields - Be able to create custom fields where if a field is populated by a particular filterer state E.g. "Needs priority" field where the value is a boolean (true/false) based on whether it has a priority label assigned
priority
user defined custom fields be able to create custom fields where if a field is populated by a particular filterer state e g needs priority field where the value is a boolean true false based on whether it has a priority label assigned
1
337,033
10,209,494,201
IssuesEvent
2019-08-14 12:51:32
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
BLE Mesh When Friend Send Seg Message To LPN
area: Bluetooth bug priority: medium
When a **friend node** needs to send **large message**, it is reasonable to send all the segment message of high transport layer message, but as shown in the code below, **only the _first packet_ is stored in the friend queue, and then the program _terminates inexplicably_, then the _other Where did the data packet go_?** ``` C static int send_seg(struct bt_mesh_net_tx *net_tx, struct net_buf_simple *sdu, const struct bt_mesh_send_cb *cb, void *cb_data) { u8_t seg_hdr, seg_o; u16_t seq_zero; struct seg_tx *tx; int i; BT_DBG("src 0x%04x dst 0x%04x app_idx 0x%04x aszmic %u sdu_len %u", net_tx->src, net_tx->ctx->addr, net_tx->ctx->app_idx, net_tx->aszmic, sdu->len); if (sdu->len < 1) { BT_DBG("Zero-length SDU not allowed"); return -EINVAL; } if (sdu->len > BLE_MESH_TX_SDU_MAX) { BT_DBG("Not enough segment buffers for length %u", sdu->len); return -EMSGSIZE; } for (tx = NULL, i = 0; i < ARRAY_SIZE(seg_tx); i++) { if (!seg_tx[i].nack_count) { tx = &seg_tx[i]; break; } } if (!tx) { BT_DBG("No multi-segment message contexts available"); return -EBUSY; } if (net_tx->ctx->app_idx == BLE_MESH_KEY_DEV) { seg_hdr = SEG_HDR(0, 0); } else { seg_hdr = SEG_HDR(1, net_tx->aid); } seg_o = 0U; tx->dst = net_tx->ctx->addr; tx->seg_n = (sdu->len - 1) / 12U; tx->nack_count = tx->seg_n + 1; tx->seq_auth = SEQ_AUTH(BLE_MESH_NET_IVI_TX, bt_mesh.seq); tx->sub = net_tx->sub; tx->new_key = net_tx->sub->kr_flag; tx->cb = cb; tx->cb_data = cb_data; if (net_tx->ctx->send_ttl == BLE_MESH_TTL_DEFAULT) { tx->ttl = bt_mesh_default_ttl_get(); } else { tx->ttl = net_tx->ctx->send_ttl; } seq_zero = tx->seq_auth & 0x1fff; BT_DBG("SeqZero 0x%04x", seq_zero); for (seg_o = 0U; sdu->len; seg_o++) { struct net_buf *seg; u16_t len; int err; seg = bt_mesh_adv_create(BLE_MESH_ADV_DATA, net_tx->xmit, BUF_TIMEOUT); if (!seg) { BT_DBG("Out of segment buffers"); seg_tx_reset(tx); return -ENOBUFS; } BLE_MESH_ADV(seg)->seg.attempts = SEG_RETRANSMIT_ATTEMPTS; net_buf_reserve(seg, BLE_MESH_NET_HDR_LEN); net_buf_add_u8(seg, seg_hdr); net_buf_add_u8(seg, (net_tx->aszmic << 7) | seq_zero >> 6); net_buf_add_u8(seg, (((seq_zero & 0x3f) << 2) | (seg_o >> 3))); net_buf_add_u8(seg, ((seg_o & 0x07) << 5) | tx->seg_n); len = MIN(sdu->len, 12); net_buf_add_mem(seg, sdu->data, len); net_buf_simple_pull(sdu, len); tx->seg[seg_o] = net_buf_ref(seg); if (IS_ENABLED(CONFIG_BLE_MESH_FRIEND)) { enum bt_mesh_friend_pdu_type type; if (seg_o == tx->seg_n) { type = BLE_MESH_FRIEND_PDU_COMPLETE; } else { type = BLE_MESH_FRIEND_PDU_PARTIAL; } if (bt_mesh_friend_enqueue_tx(net_tx, type, &tx->seq_auth, &seg->b) && BLE_MESH_ADDR_IS_UNICAST(net_tx->ctx->addr)) { /* PDUs for a specific Friend should only go * out through the Friend Queue. */ net_buf_unref(seg); return 0; } } BT_DBG("Sending %u/%u", seg_o, tx->seg_n); err = bt_mesh_net_send(net_tx, seg, seg_o ? &seg_sent_cb : &first_sent_cb, tx); if (err) { BT_DBG("Sending segment failed"); seg_tx_reset(tx); return err; } } if (IS_ENABLED(CONFIG_BLE_MESH_LOW_POWER) && bt_mesh_lpn_established()) { bt_mesh_lpn_poll(); } return 0; } ```
1.0
BLE Mesh When Friend Send Seg Message To LPN - When a **friend node** needs to send **large message**, it is reasonable to send all the segment message of high transport layer message, but as shown in the code below, **only the _first packet_ is stored in the friend queue, and then the program _terminates inexplicably_, then the _other Where did the data packet go_?** ``` C static int send_seg(struct bt_mesh_net_tx *net_tx, struct net_buf_simple *sdu, const struct bt_mesh_send_cb *cb, void *cb_data) { u8_t seg_hdr, seg_o; u16_t seq_zero; struct seg_tx *tx; int i; BT_DBG("src 0x%04x dst 0x%04x app_idx 0x%04x aszmic %u sdu_len %u", net_tx->src, net_tx->ctx->addr, net_tx->ctx->app_idx, net_tx->aszmic, sdu->len); if (sdu->len < 1) { BT_DBG("Zero-length SDU not allowed"); return -EINVAL; } if (sdu->len > BLE_MESH_TX_SDU_MAX) { BT_DBG("Not enough segment buffers for length %u", sdu->len); return -EMSGSIZE; } for (tx = NULL, i = 0; i < ARRAY_SIZE(seg_tx); i++) { if (!seg_tx[i].nack_count) { tx = &seg_tx[i]; break; } } if (!tx) { BT_DBG("No multi-segment message contexts available"); return -EBUSY; } if (net_tx->ctx->app_idx == BLE_MESH_KEY_DEV) { seg_hdr = SEG_HDR(0, 0); } else { seg_hdr = SEG_HDR(1, net_tx->aid); } seg_o = 0U; tx->dst = net_tx->ctx->addr; tx->seg_n = (sdu->len - 1) / 12U; tx->nack_count = tx->seg_n + 1; tx->seq_auth = SEQ_AUTH(BLE_MESH_NET_IVI_TX, bt_mesh.seq); tx->sub = net_tx->sub; tx->new_key = net_tx->sub->kr_flag; tx->cb = cb; tx->cb_data = cb_data; if (net_tx->ctx->send_ttl == BLE_MESH_TTL_DEFAULT) { tx->ttl = bt_mesh_default_ttl_get(); } else { tx->ttl = net_tx->ctx->send_ttl; } seq_zero = tx->seq_auth & 0x1fff; BT_DBG("SeqZero 0x%04x", seq_zero); for (seg_o = 0U; sdu->len; seg_o++) { struct net_buf *seg; u16_t len; int err; seg = bt_mesh_adv_create(BLE_MESH_ADV_DATA, net_tx->xmit, BUF_TIMEOUT); if (!seg) { BT_DBG("Out of segment buffers"); seg_tx_reset(tx); return -ENOBUFS; } BLE_MESH_ADV(seg)->seg.attempts = SEG_RETRANSMIT_ATTEMPTS; net_buf_reserve(seg, BLE_MESH_NET_HDR_LEN); net_buf_add_u8(seg, seg_hdr); net_buf_add_u8(seg, (net_tx->aszmic << 7) | seq_zero >> 6); net_buf_add_u8(seg, (((seq_zero & 0x3f) << 2) | (seg_o >> 3))); net_buf_add_u8(seg, ((seg_o & 0x07) << 5) | tx->seg_n); len = MIN(sdu->len, 12); net_buf_add_mem(seg, sdu->data, len); net_buf_simple_pull(sdu, len); tx->seg[seg_o] = net_buf_ref(seg); if (IS_ENABLED(CONFIG_BLE_MESH_FRIEND)) { enum bt_mesh_friend_pdu_type type; if (seg_o == tx->seg_n) { type = BLE_MESH_FRIEND_PDU_COMPLETE; } else { type = BLE_MESH_FRIEND_PDU_PARTIAL; } if (bt_mesh_friend_enqueue_tx(net_tx, type, &tx->seq_auth, &seg->b) && BLE_MESH_ADDR_IS_UNICAST(net_tx->ctx->addr)) { /* PDUs for a specific Friend should only go * out through the Friend Queue. */ net_buf_unref(seg); return 0; } } BT_DBG("Sending %u/%u", seg_o, tx->seg_n); err = bt_mesh_net_send(net_tx, seg, seg_o ? &seg_sent_cb : &first_sent_cb, tx); if (err) { BT_DBG("Sending segment failed"); seg_tx_reset(tx); return err; } } if (IS_ENABLED(CONFIG_BLE_MESH_LOW_POWER) && bt_mesh_lpn_established()) { bt_mesh_lpn_poll(); } return 0; } ```
priority
ble mesh when friend send seg message to lpn when a friend node needs to send large message it is reasonable to send all the segment message of high transport layer message but as shown in the code below only the first packet is stored in the friend queue and then the program terminates inexplicably then the other where did the data packet go c static int send seg struct bt mesh net tx net tx struct net buf simple sdu const struct bt mesh send cb cb void cb data t seg hdr seg o t seq zero struct seg tx tx int i bt dbg src dst app idx aszmic u sdu len u net tx src net tx ctx addr net tx ctx app idx net tx aszmic sdu len if sdu len bt dbg zero length sdu not allowed return einval if sdu len ble mesh tx sdu max bt dbg not enough segment buffers for length u sdu len return emsgsize for tx null i i array size seg tx i if seg tx nack count tx seg tx break if tx bt dbg no multi segment message contexts available return ebusy if net tx ctx app idx ble mesh key dev seg hdr seg hdr else seg hdr seg hdr net tx aid seg o tx dst net tx ctx addr tx seg n sdu len tx nack count tx seg n tx seq auth seq auth ble mesh net ivi tx bt mesh seq tx sub net tx sub tx new key net tx sub kr flag tx cb cb tx cb data cb data if net tx ctx send ttl ble mesh ttl default tx ttl bt mesh default ttl get else tx ttl net tx ctx send ttl seq zero tx seq auth bt dbg seqzero seq zero for seg o sdu len seg o struct net buf seg t len int err seg bt mesh adv create ble mesh adv data net tx xmit buf timeout if seg bt dbg out of segment buffers seg tx reset tx return enobufs ble mesh adv seg seg attempts seg retransmit attempts net buf reserve seg ble mesh net hdr len net buf add seg seg hdr net buf add seg net tx aszmic net buf add seg seq zero seg o net buf add seg seg o seg n len min sdu len net buf add mem seg sdu data len net buf simple pull sdu len tx seg net buf ref seg if is enabled config ble mesh friend enum bt mesh friend pdu type type if seg o tx seg n type ble mesh friend pdu complete else type ble mesh friend pdu partial if bt mesh friend enqueue tx net tx type tx seq auth seg b ble mesh addr is unicast net tx ctx addr pdus for a specific friend should only go out through the friend queue net buf unref seg return bt dbg sending u u seg o tx seg n err bt mesh net send net tx seg seg o seg sent cb first sent cb tx if err bt dbg sending segment failed seg tx reset tx return err if is enabled config ble mesh low power bt mesh lpn established bt mesh lpn poll return
1
189,706
6,800,992,839
IssuesEvent
2017-11-02 15:32:56
vmware/admiral
https://api.github.com/repos/vmware/admiral
closed
Unable to download ca.crt from Admiral UI
kind/bug priority/medium
Build: https://storage.googleapis.com/vic-product-ova-builds/vic-2255-v1.2.0-rc1-147-gf06f08e.ova ![image](https://user-images.githubusercontent.com/25006749/32219783-61c6bf5c-be55-11e7-8066-363cc808614e.png) Testbed : https://10.197.37.132:8282/#/administration/configuration - administrator@vsphere.local/Admin!23 OVA initialization was successful but UI seems to be messed up in Admiral/Configuration. I cannot find the download ca.crt .
1.0
Unable to download ca.crt from Admiral UI - Build: https://storage.googleapis.com/vic-product-ova-builds/vic-2255-v1.2.0-rc1-147-gf06f08e.ova ![image](https://user-images.githubusercontent.com/25006749/32219783-61c6bf5c-be55-11e7-8066-363cc808614e.png) Testbed : https://10.197.37.132:8282/#/administration/configuration - administrator@vsphere.local/Admin!23 OVA initialization was successful but UI seems to be messed up in Admiral/Configuration. I cannot find the download ca.crt .
priority
unable to download ca crt from admiral ui build testbed administrator vsphere local admin ova initialization was successful but ui seems to be messed up in admiral configuration i cannot find the download ca crt
1
73,439
3,412,016,378
IssuesEvent
2015-12-05 15:08:37
rathena/rathena
https://api.github.com/repos/rathena/rathena
closed
Bug Sell and Buy from NPC Shop
bug:core mode:prerenewal mode:renewal priority:medium server:map status:confirmed
After upgrade and compile, my server can't sell and buy from NPC Shop, please help !
1.0
Bug Sell and Buy from NPC Shop - After upgrade and compile, my server can't sell and buy from NPC Shop, please help !
priority
bug sell and buy from npc shop after upgrade and compile my server can t sell and buy from npc shop please help
1
635,191
20,381,553,132
IssuesEvent
2022-02-21 22:43:48
Rastaiha/workshop_backend
https://api.github.com/repos/Rastaiha/workshop_backend
opened
Add event id to request sent to Zarinpal
enhancement priority: medium
because when payment completes, it should return to the event page and so, we need to know event id.
1.0
Add event id to request sent to Zarinpal - because when payment completes, it should return to the event page and so, we need to know event id.
priority
add event id to request sent to zarinpal because when payment completes it should return to the event page and so we need to know event id
1
796,181
28,101,181,554
IssuesEvent
2023-03-30 19:38:32
poissonconsulting/ypr
https://api.github.com/repos/poissonconsulting/ypr
opened
aes_string()` is deprecated
Difficulty: 2 Intermediate Effort: 2 Medium Priority: 2 High
``` `aes_string()` was deprecated in ggplot2 3.0.0. i Please use tidy evaluation ideoms with `aes()` ```
1.0
aes_string()` is deprecated - ``` `aes_string()` was deprecated in ggplot2 3.0.0. i Please use tidy evaluation ideoms with `aes()` ```
priority
aes string is deprecated aes string was deprecated in i please use tidy evaluation ideoms with aes
1
582,718
17,368,657,057
IssuesEvent
2021-07-30 10:53:19
VoltanFr/memcheck
https://api.github.com/repos/VoltanFr/memcheck
closed
Review the use of languages on client side
complexity-medium priority-medium
For each page displayed, there is a request to GetAvailableLanguages and another one to GetActiveLanguage. Probably related to the code in `site.js`. There has to be a better way, let's save the bandwidth and help the planet
1.0
Review the use of languages on client side - For each page displayed, there is a request to GetAvailableLanguages and another one to GetActiveLanguage. Probably related to the code in `site.js`. There has to be a better way, let's save the bandwidth and help the planet
priority
review the use of languages on client side for each page displayed there is a request to getavailablelanguages and another one to getactivelanguage probably related to the code in site js there has to be a better way let s save the bandwidth and help the planet
1
599,300
18,270,453,976
IssuesEvent
2021-10-04 13:20:17
dodona-edu/dodona
https://api.github.com/repos/dodona-edu/dodona
closed
Reimplement series graph legends in html
bug student medium priority
The bottom legends in the graphs from #2598 are implemented using svg. This causes problems with text reflow on narrow screens. It would be better to move these legends to a normal div that's positioned in the same place as the current legend.
1.0
Reimplement series graph legends in html - The bottom legends in the graphs from #2598 are implemented using svg. This causes problems with text reflow on narrow screens. It would be better to move these legends to a normal div that's positioned in the same place as the current legend.
priority
reimplement series graph legends in html the bottom legends in the graphs from are implemented using svg this causes problems with text reflow on narrow screens it would be better to move these legends to a normal div that s positioned in the same place as the current legend
1
116,694
4,705,311,656
IssuesEvent
2016-10-13 14:12:08
CS2103AUG2016-W13-C3/main
https://api.github.com/repos/CS2103AUG2016-W13-C3/main
opened
All screenshots of the application broken when the help window is first opened.
priority.medium type.bug
After reloading the help window, all screenshots loaded properly. Please check if this also happens to you.
1.0
All screenshots of the application broken when the help window is first opened. - After reloading the help window, all screenshots loaded properly. Please check if this also happens to you.
priority
all screenshots of the application broken when the help window is first opened after reloading the help window all screenshots loaded properly please check if this also happens to you
1
793,362
27,992,561,517
IssuesEvent
2023-03-27 05:46:10
chaotic-aur/packages
https://api.github.com/repos/chaotic-aur/packages
closed
[Bug] Logsec not installing correctly
priority:medium bug:misc
### What happens? ``` logseq fish: Unknown command. '/usr/bin/logseq' exists but is not an executable file. ``` Bash gives this ``` /usr/bin/logseq bash: /usr/bin/logseq: Permission denied ``` Installing from the aur https://aur.archlinux.org/packages/logseq-desktop has the same issue https://aur.archlinux.org/packages/logseq-desktop-bin does not have this issue ### What is expected to happen? program launches with no errors ### If possible, please attach logs _No response_ ### More information _No response_
1.0
[Bug] Logsec not installing correctly - ### What happens? ``` logseq fish: Unknown command. '/usr/bin/logseq' exists but is not an executable file. ``` Bash gives this ``` /usr/bin/logseq bash: /usr/bin/logseq: Permission denied ``` Installing from the aur https://aur.archlinux.org/packages/logseq-desktop has the same issue https://aur.archlinux.org/packages/logseq-desktop-bin does not have this issue ### What is expected to happen? program launches with no errors ### If possible, please attach logs _No response_ ### More information _No response_
priority
logsec not installing correctly what happens logseq fish unknown command usr bin logseq exists but is not an executable file bash gives this usr bin logseq bash usr bin logseq permission denied installing from the aur has the same issue does not have this issue what is expected to happen program launches with no errors if possible please attach logs no response more information no response
1
453,238
13,067,012,292
IssuesEvent
2020-07-30 23:08:55
ngageoint/hootenanny-ui
https://api.github.com/repos/ngageoint/hootenanny-ui
closed
iD shows no error if Element Merge Service is not available
Category: UI Defined Priority: Medium Type: Bug
Saw this in the VGI instance where the Element Merge Service was not operational for some reason. iD sends the merge request during the review session to the service but never reports back an error when no response comes back from it and the POIs never merge.
1.0
iD shows no error if Element Merge Service is not available - Saw this in the VGI instance where the Element Merge Service was not operational for some reason. iD sends the merge request during the review session to the service but never reports back an error when no response comes back from it and the POIs never merge.
priority
id shows no error if element merge service is not available saw this in the vgi instance where the element merge service was not operational for some reason id sends the merge request during the review session to the service but never reports back an error when no response comes back from it and the pois never merge
1
610,342
18,905,082,270
IssuesEvent
2021-11-16 08:09:27
ita-social-projects/TeachUA
https://api.github.com/repos/ita-social-projects/TeachUA
closed
[Реєстрація] "Пароль" field can't contain RUS, UKR letters.
bug Backend Frontend Priority: Medium
**Environment:** Windows 10 + Google Chrome Version 94.0.4606.81. **Reproducible:** always **Build found:** last commit from https://speak-ukrainian.org.ua/dev/ **Steps to reproduce** 1. Go to https://speak-ukrainian.org.ua/dev 2. Click in user profile dropdown on "Зареєструватися" item. 3. Type "МійПароль" in "Пароль" text box. **Actual result** RUS, UKR letters are valid for ‘Пароль’ field. ![image](https://user-images.githubusercontent.com/23051196/140529792-e9bbd04b-868a-48d8-a8dd-8516b76641ea.png) **Expected result** ‘Пароль’ сan contain LATIN letters. RUS, UKR letters are not valid. User story #97
1.0
[Реєстрація] "Пароль" field can't contain RUS, UKR letters. - **Environment:** Windows 10 + Google Chrome Version 94.0.4606.81. **Reproducible:** always **Build found:** last commit from https://speak-ukrainian.org.ua/dev/ **Steps to reproduce** 1. Go to https://speak-ukrainian.org.ua/dev 2. Click in user profile dropdown on "Зареєструватися" item. 3. Type "МійПароль" in "Пароль" text box. **Actual result** RUS, UKR letters are valid for ‘Пароль’ field. ![image](https://user-images.githubusercontent.com/23051196/140529792-e9bbd04b-868a-48d8-a8dd-8516b76641ea.png) **Expected result** ‘Пароль’ сan contain LATIN letters. RUS, UKR letters are not valid. User story #97
priority
пароль field can t contain rus ukr letters environment windows google chrome version reproducible always build found last commit from steps to reproduce go to click in user profile dropdown on зареєструватися item type мійпароль in пароль text box actual result rus ukr letters are valid for ‘пароль’ field expected result ‘пароль’ сan contain latin letters rus ukr letters are not valid user story
1
478,339
13,777,787,554
IssuesEvent
2020-10-08 11:29:44
AY2021S1-CS2103T-T10-1/tp
https://api.github.com/repos/AY2021S1-CS2103T-T10-1/tp
closed
As a user, I can add a deadline for a project
priority.Medium type.Story
... so that I know which project will be due soon.
1.0
As a user, I can add a deadline for a project - ... so that I know which project will be due soon.
priority
as a user i can add a deadline for a project so that i know which project will be due soon
1
193,702
6,887,142,529
IssuesEvent
2017-11-21 22:08:19
terascope/teraslice
https://api.github.com/repos/terascope/teraslice
closed
Implement script example
priority:medium
Teraslice includes a basic external script interface, it should have an example in the `examples/` directory. https://github.com/terascope/teraslice/blob/master/docs/ops-reference.md#script I will try and think of a meaningful example, but if anyone else thinks of one in the meantime feel free to share.
1.0
Implement script example - Teraslice includes a basic external script interface, it should have an example in the `examples/` directory. https://github.com/terascope/teraslice/blob/master/docs/ops-reference.md#script I will try and think of a meaningful example, but if anyone else thinks of one in the meantime feel free to share.
priority
implement script example teraslice includes a basic external script interface it should have an example in the examples directory i will try and think of a meaningful example but if anyone else thinks of one in the meantime feel free to share
1
705,738
24,246,811,957
IssuesEvent
2022-09-27 11:15:52
COS301-SE-2022/Map-out-game-reserves-using-aerial-photographs
https://api.github.com/repos/COS301-SE-2022/Map-out-game-reserves-using-aerial-photographs
closed
Update Login and Register pages
scope:ui type:fix priority:medium
- [x] Login page - [x] Register page - [x] Possibly update css to align with overall design
1.0
Update Login and Register pages - - [x] Login page - [x] Register page - [x] Possibly update css to align with overall design
priority
update login and register pages login page register page possibly update css to align with overall design
1
535,659
15,696,021,045
IssuesEvent
2021-03-26 00:59:35
AbirAahammed/E-card
https://api.github.com/repos/AbirAahammed/E-card
closed
Profile Customization
Core Features Medium Priority
Ability for users to edit their own profiles, settings and E-cards. Estimated Time: 6 days Time Taken: 7 days. Developer tasks: - UI: for editing settings, profiles and E-cards - UI: for both creating and deleting E-cards - database to store customer's data. User stories: #7
1.0
Profile Customization - Ability for users to edit their own profiles, settings and E-cards. Estimated Time: 6 days Time Taken: 7 days. Developer tasks: - UI: for editing settings, profiles and E-cards - UI: for both creating and deleting E-cards - database to store customer's data. User stories: #7
priority
profile customization ability for users to edit their own profiles settings and e cards estimated time days time taken days developer tasks ui for editing settings profiles and e cards ui for both creating and deleting e cards database to store customer s data user stories
1
308,713
9,442,572,459
IssuesEvent
2019-04-15 07:10:46
wmeints/observatory
https://api.github.com/repos/wmeints/observatory
opened
Create user interface mock-ups
priority:medium theme:dashboard
To get a better idea of how the dashboard is going to look, a few mockups will have to be created
1.0
Create user interface mock-ups - To get a better idea of how the dashboard is going to look, a few mockups will have to be created
priority
create user interface mock ups to get a better idea of how the dashboard is going to look a few mockups will have to be created
1
714,791
24,575,201,477
IssuesEvent
2022-10-13 11:48:16
elabftw/elabftw
https://api.github.com/repos/elabftw/elabftw
closed
Selection of bookable/booked items
feature request fixed in hypernext priority:medium
# Feature request Hello, It would be nice to be able to select the bookable/booked items in the scheduler. When you have many items to book, it's not easy to have a clear view if everything is shown. Moreover, everybody doesn't use all the items, it would be interesting to show only a few items. Thank you.
1.0
Selection of bookable/booked items - # Feature request Hello, It would be nice to be able to select the bookable/booked items in the scheduler. When you have many items to book, it's not easy to have a clear view if everything is shown. Moreover, everybody doesn't use all the items, it would be interesting to show only a few items. Thank you.
priority
selection of bookable booked items feature request hello it would be nice to be able to select the bookable booked items in the scheduler when you have many items to book it s not easy to have a clear view if everything is shown moreover everybody doesn t use all the items it would be interesting to show only a few items thank you
1
88,019
3,770,576,429
IssuesEvent
2016-03-16 15:01:09
ngageoint/hootenanny-ui
https://api.github.com/repos/ngageoint/hootenanny-ui
opened
Determine validity of warnings shown in UI received from the core
Category: UI Defined Priority: Medium Type: Task
Follows #282 Many of the jobs execute from the UI result in warnings back from the core. * Determine what these warnings are * If they're valid as warnings, determine what can be done to keep them happening, possibly by modifying the hoot command sent to the core. * If they're not valid, reduce the log level for the statement to info. This may result in changes in all three codebases: ui, services, and core.
1.0
Determine validity of warnings shown in UI received from the core - Follows #282 Many of the jobs execute from the UI result in warnings back from the core. * Determine what these warnings are * If they're valid as warnings, determine what can be done to keep them happening, possibly by modifying the hoot command sent to the core. * If they're not valid, reduce the log level for the statement to info. This may result in changes in all three codebases: ui, services, and core.
priority
determine validity of warnings shown in ui received from the core follows many of the jobs execute from the ui result in warnings back from the core determine what these warnings are if they re valid as warnings determine what can be done to keep them happening possibly by modifying the hoot command sent to the core if they re not valid reduce the log level for the statement to info this may result in changes in all three codebases ui services and core
1
439,328
12,681,346,666
IssuesEvent
2020-06-19 15:14:27
kiwicom/schemathesis
https://api.github.com/repos/kiwicom/schemathesis
closed
Support multiple examples specified in Open API schema
Priority: Medium Type: Enhancement
As mentioned in #582 we can generate multiple examples via the `examples` keyword: ``` parameters: - in: query name: limit schema: type: integer maximum: 50 examples: # Multiple examples zero: # Distinct name value: 0 # Example value summary: A sample limit value # Optional description max: # Distinct name value: 50 # Example value summary: A sample limit value ```
1.0
Support multiple examples specified in Open API schema - As mentioned in #582 we can generate multiple examples via the `examples` keyword: ``` parameters: - in: query name: limit schema: type: integer maximum: 50 examples: # Multiple examples zero: # Distinct name value: 0 # Example value summary: A sample limit value # Optional description max: # Distinct name value: 50 # Example value summary: A sample limit value ```
priority
support multiple examples specified in open api schema as mentioned in we can generate multiple examples via the examples keyword parameters in query name limit schema type integer maximum examples multiple examples zero distinct name value example value summary a sample limit value optional description max distinct name value example value summary a sample limit value
1
462,138
13,241,457,530
IssuesEvent
2020-08-19 08:14:00
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
closed
Discussion formatting elements not working properly.
Has-PR bug priority: medium
**Describe the bug** When you click once, the formatting do not apply and the option remains inactive. **Screenshots** https://www.loom.com/share/a046d870296d4132b0760b19a2ff1fc4 **Support ticket links** https://secure.helpscout.net/conversation/1154059146/71676?folderId=3701249
1.0
Discussion formatting elements not working properly. - **Describe the bug** When you click once, the formatting do not apply and the option remains inactive. **Screenshots** https://www.loom.com/share/a046d870296d4132b0760b19a2ff1fc4 **Support ticket links** https://secure.helpscout.net/conversation/1154059146/71676?folderId=3701249
priority
discussion formatting elements not working properly describe the bug when you click once the formatting do not apply and the option remains inactive screenshots support ticket links
1
748,178
26,110,485,963
IssuesEvent
2022-12-27 19:02:15
NomicFoundation/hardhat
https://api.github.com/repos/NomicFoundation/hardhat
opened
Create a hub of Hardhat templates
priority:medium type:epic status:ready
There are three ways to start a Hardhat project right now: - Creating a sample project with our CLI - Using our [official boilerplate](https://github.com/NomicFoundation/hardhat-boilerplate) - Using a community template We should: - Have more official templates. At least one should have a more opinionated, full setup (see #2994). - Create a page in the site that works as a hub of the available templates - Consider having a `hardhat create` kind of command (or `npm init hardhat`, maybe).
1.0
Create a hub of Hardhat templates - There are three ways to start a Hardhat project right now: - Creating a sample project with our CLI - Using our [official boilerplate](https://github.com/NomicFoundation/hardhat-boilerplate) - Using a community template We should: - Have more official templates. At least one should have a more opinionated, full setup (see #2994). - Create a page in the site that works as a hub of the available templates - Consider having a `hardhat create` kind of command (or `npm init hardhat`, maybe).
priority
create a hub of hardhat templates there are three ways to start a hardhat project right now creating a sample project with our cli using our using a community template we should have more official templates at least one should have a more opinionated full setup see create a page in the site that works as a hub of the available templates consider having a hardhat create kind of command or npm init hardhat maybe
1
710,711
24,430,129,724
IssuesEvent
2022-10-06 07:30:03
ckiplab/ckip-transformers
https://api.github.com/repos/ckiplab/ckip-transformers
closed
如何使用fine-tuned完的model
Priority: Medium Status: 2-Progressing Type: Question
您好: 想請教一下我目前利用了您在說明中提到的範例檔run_ner.py來去依照我自己的資料集微調完model了 [https://github.com/huggingface/transformers/tree/main/examples/pytorch/token-classification](https://github.com/huggingface/transformers/tree/main/examples/pytorch/token-classification) 最後分別生成了config.json以及tf_model.h5兩個檔案 但是當我想使用使用自己微調過的model時 在這行 `ws_driver = CkipNerChunker(model="tmp/tf_model.h5")` 跳出了以下錯誤 Traceback (most recent call last): File "/root/miniconda3/envs/chatbot/lib/python3.6/site-packages/ckip_transformers/nlp/util.py", line 89, in _get_model_name model_name = self._model_names[model] KeyError: './tmp/tf_model.h5' The above exception was the direct cause of the following exception: Traceback (most recent call last): File "Transformers_pretrained.py", line 12, in <module> ws_driver = CkipWordSegmenter(model="./tmp/tf_model.h5") File "/root/miniconda3/envs/chatbot/lib/python3.6/site-packages/ckip_transformers/nlp/driver.py", line 52, in __init__ model_name = kwargs.pop("model_name", self._get_model_name(model)) File "/root/miniconda3/envs/chatbot/lib/python3.6/site-packages/ckip_transformers/nlp/util.py", line 91, in _get_model_name raise KeyError(f"Invalid model {model}") from exc KeyError: 'Invalid model ./tmp/tf_model.h5' 請問我該如何正確地使用我自己微調完的model搭配CkipWordSegmenter, CkipPosTagger以及CkipNerChunker呢
1.0
如何使用fine-tuned完的model - 您好: 想請教一下我目前利用了您在說明中提到的範例檔run_ner.py來去依照我自己的資料集微調完model了 [https://github.com/huggingface/transformers/tree/main/examples/pytorch/token-classification](https://github.com/huggingface/transformers/tree/main/examples/pytorch/token-classification) 最後分別生成了config.json以及tf_model.h5兩個檔案 但是當我想使用使用自己微調過的model時 在這行 `ws_driver = CkipNerChunker(model="tmp/tf_model.h5")` 跳出了以下錯誤 Traceback (most recent call last): File "/root/miniconda3/envs/chatbot/lib/python3.6/site-packages/ckip_transformers/nlp/util.py", line 89, in _get_model_name model_name = self._model_names[model] KeyError: './tmp/tf_model.h5' The above exception was the direct cause of the following exception: Traceback (most recent call last): File "Transformers_pretrained.py", line 12, in <module> ws_driver = CkipWordSegmenter(model="./tmp/tf_model.h5") File "/root/miniconda3/envs/chatbot/lib/python3.6/site-packages/ckip_transformers/nlp/driver.py", line 52, in __init__ model_name = kwargs.pop("model_name", self._get_model_name(model)) File "/root/miniconda3/envs/chatbot/lib/python3.6/site-packages/ckip_transformers/nlp/util.py", line 91, in _get_model_name raise KeyError(f"Invalid model {model}") from exc KeyError: 'Invalid model ./tmp/tf_model.h5' 請問我該如何正確地使用我自己微調完的model搭配CkipWordSegmenter, CkipPosTagger以及CkipNerChunker呢
priority
如何使用fine tuned完的model 您好 想請教一下我目前利用了您在說明中提到的範例檔run ner py來去依照我自己的資料集微調完model了 最後分別生成了config json以及tf model 但是當我想使用使用自己微調過的model時 在這行 ws driver ckipnerchunker model tmp tf model 跳出了以下錯誤 traceback most recent call last file root envs chatbot lib site packages ckip transformers nlp util py line in get model name model name self model names keyerror tmp tf model the above exception was the direct cause of the following exception traceback most recent call last file transformers pretrained py line in ws driver ckipwordsegmenter model tmp tf model file root envs chatbot lib site packages ckip transformers nlp driver py line in init model name kwargs pop model name self get model name model file root envs chatbot lib site packages ckip transformers nlp util py line in get model name raise keyerror f invalid model model from exc keyerror invalid model tmp tf model 請問我該如何正確地使用我自己微調完的model搭配ckipwordsegmenter ckippostagger以及ckipnerchunker呢
1
515,170
14,951,842,980
IssuesEvent
2021-01-26 14:51:54
canonical-web-and-design/juju.is
https://api.github.com/repos/canonical-web-and-design/juju.is
closed
Videos on https://juju.is/docs/microk8s-cloud are shown as links rather than a video preview
Priority: Medium
The videos on https://juju.is/docs/microk8s-cloud are shown as links rather than a video preview. For example: ``` A model is a container for a set of related applications. That model represents resources needed for the applications within it, including compute, storage and network. juju add-model testing https://discourse.jujucharms.com/uploads/default/original/1X/88e808884b25f675bc59c067a6f0f4a842a831da.mp4 Difference from traditional clouds: There is no ‘default’ model provided on k8s clouds. Creating a model implies creating a Kubernetes namespace. Rather than pollute your cluster’s namespaces, Juju favours an explicit approach. ```
1.0
Videos on https://juju.is/docs/microk8s-cloud are shown as links rather than a video preview - The videos on https://juju.is/docs/microk8s-cloud are shown as links rather than a video preview. For example: ``` A model is a container for a set of related applications. That model represents resources needed for the applications within it, including compute, storage and network. juju add-model testing https://discourse.jujucharms.com/uploads/default/original/1X/88e808884b25f675bc59c067a6f0f4a842a831da.mp4 Difference from traditional clouds: There is no ‘default’ model provided on k8s clouds. Creating a model implies creating a Kubernetes namespace. Rather than pollute your cluster’s namespaces, Juju favours an explicit approach. ```
priority
videos on are shown as links rather than a video preview the videos on are shown as links rather than a video preview for example a model is a container for a set of related applications that model represents resources needed for the applications within it including compute storage and network juju add model testing difference from traditional clouds there is no ‘default’ model provided on clouds creating a model implies creating a kubernetes namespace rather than pollute your cluster’s namespaces juju favours an explicit approach
1
774,146
27,184,778,217
IssuesEvent
2023-02-19 03:41:34
elementary/gala
https://api.github.com/repos/elementary/gala
closed
Picture-in-Picture area selection being offset
Priority: Medium Status: Confirmed
<!-- By filing an Issue, you are expected to comply with the elementary code of conduct: https://elementary.io/code-of-conduct Please fill out this template with all the information you have. We can't do much without a detailed description of what you've encountered. Please do your best! Please note that this tracker is only for bugs and feature requests. Please try these locations if you have a question or comment: https://elementaryos.stackexchange.com/ https://www.reddit.com/r/elementaryos/ Please read and follow these tips: https://elementary.io/docs/code/reference#be-prepared-to-provide-more-information Lastly, be sure to preview your issue before saving. Thanks! --> ## Prerequisites - [x] I have searched open and closed issues for duplicates. ## Describe the bug The area selection in Picture-in-Picture is being offset in both X and Y axis. In the recording bellow, you can see that only the orange area is selected but the Picture-in-Picture window shows the white portion around the selection. ### Screenshots or screen recordings <!--If applicable, add screenshots or screen recordings to help explain your problem.--> ![](https://media.giphy.com/media/gLX9N7sXr6SSjU5Lfd/giphy.gif) ### Expected behavior <!--A clear and concise description of what you expected to happen.--> The Picture-in-Picture window should display exactly what was selected. ## Platform Information <!-- Please share a screenshot of the System Settings > About screen. If you can't please share: - OS: [e.g. elementary OS] - OS Version [e.g. Juno] - Hardware info Please check what applies: --> The bug is present on all my devices, 2 laptops and 1 desktop. Each with completely different hardware but all using Hera 5.1.5. One of the notebooks was outdated (Hera 5.1.2) and only started showing the behavior after updating and rebooting (still worked fine before the reboot). - [ ] I'm using the latest version from git that I've manually compiled - [x] I'm using the latest released stable version ## Additional context <!--Add any other context about the problem here.--> I've used Picture-in-Picture for a long time and it used to work fine. I've been experiencing this bug for quite some time now (can't tell exactly when it started) and I just lived with it hoping for an update to fix the issue.
1.0
Picture-in-Picture area selection being offset - <!-- By filing an Issue, you are expected to comply with the elementary code of conduct: https://elementary.io/code-of-conduct Please fill out this template with all the information you have. We can't do much without a detailed description of what you've encountered. Please do your best! Please note that this tracker is only for bugs and feature requests. Please try these locations if you have a question or comment: https://elementaryos.stackexchange.com/ https://www.reddit.com/r/elementaryos/ Please read and follow these tips: https://elementary.io/docs/code/reference#be-prepared-to-provide-more-information Lastly, be sure to preview your issue before saving. Thanks! --> ## Prerequisites - [x] I have searched open and closed issues for duplicates. ## Describe the bug The area selection in Picture-in-Picture is being offset in both X and Y axis. In the recording bellow, you can see that only the orange area is selected but the Picture-in-Picture window shows the white portion around the selection. ### Screenshots or screen recordings <!--If applicable, add screenshots or screen recordings to help explain your problem.--> ![](https://media.giphy.com/media/gLX9N7sXr6SSjU5Lfd/giphy.gif) ### Expected behavior <!--A clear and concise description of what you expected to happen.--> The Picture-in-Picture window should display exactly what was selected. ## Platform Information <!-- Please share a screenshot of the System Settings > About screen. If you can't please share: - OS: [e.g. elementary OS] - OS Version [e.g. Juno] - Hardware info Please check what applies: --> The bug is present on all my devices, 2 laptops and 1 desktop. Each with completely different hardware but all using Hera 5.1.5. One of the notebooks was outdated (Hera 5.1.2) and only started showing the behavior after updating and rebooting (still worked fine before the reboot). - [ ] I'm using the latest version from git that I've manually compiled - [x] I'm using the latest released stable version ## Additional context <!--Add any other context about the problem here.--> I've used Picture-in-Picture for a long time and it used to work fine. I've been experiencing this bug for quite some time now (can't tell exactly when it started) and I just lived with it hoping for an update to fix the issue.
priority
picture in picture area selection being offset by filing an issue you are expected to comply with the elementary code of conduct please fill out this template with all the information you have we can t do much without a detailed description of what you ve encountered please do your best please note that this tracker is only for bugs and feature requests please try these locations if you have a question or comment please read and follow these tips lastly be sure to preview your issue before saving thanks prerequisites i have searched open and closed issues for duplicates describe the bug the area selection in picture in picture is being offset in both x and y axis in the recording bellow you can see that only the orange area is selected but the picture in picture window shows the white portion around the selection screenshots or screen recordings expected behavior the picture in picture window should display exactly what was selected platform information please share a screenshot of the system settings about screen if you can t please share os os version hardware info please check what applies the bug is present on all my devices laptops and desktop each with completely different hardware but all using hera one of the notebooks was outdated hera and only started showing the behavior after updating and rebooting still worked fine before the reboot i m using the latest version from git that i ve manually compiled i m using the latest released stable version additional context i ve used picture in picture for a long time and it used to work fine i ve been experiencing this bug for quite some time now can t tell exactly when it started and i just lived with it hoping for an update to fix the issue
1
560,699
16,601,901,859
IssuesEvent
2021-06-01 20:45:03
patternfly/patternfly-elements
https://api.github.com/repos/patternfly/patternfly-elements
closed
pfe-cta - svgs in ie11 are receiving focus
accessibility fix good first issue needs: prioritization priority: medium size: sm
The accompanying svgs in default ctas are receiving focus in ie11. This fix is focusable="false"' needs to be added to the <svg> in the template
1.0
pfe-cta - svgs in ie11 are receiving focus - The accompanying svgs in default ctas are receiving focus in ie11. This fix is focusable="false"' needs to be added to the <svg> in the template
priority
pfe cta svgs in are receiving focus the accompanying svgs in default ctas are receiving focus in this fix is focusable false needs to be added to the in the template
1
58,064
3,087,123,949
IssuesEvent
2015-08-25 09:33:04
pavel-pimenov/flylinkdc-r5xx
https://api.github.com/repos/pavel-pimenov/flylinkdc-r5xx
closed
ошибка в поиске
bug imported Priority-Medium
_From [anima.c...@gmail.com](https://code.google.com/u/103640124537713910352/) on October 27, 2013 08:50:05_ FlylinkDC++ r502 release При нажатии кнопки поиск, а также при поиске файла по магнет ссылке происходит отключение от хаба _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1360_
1.0
ошибка в поиске - _From [anima.c...@gmail.com](https://code.google.com/u/103640124537713910352/) on October 27, 2013 08:50:05_ FlylinkDC++ r502 release При нажатии кнопки поиск, а также при поиске файла по магнет ссылке происходит отключение от хаба _Original issue: http://code.google.com/p/flylinkdc/issues/detail?id=1360_
priority
ошибка в поиске from on october flylinkdc release при нажатии кнопки поиск а также при поиске файла по магнет ссылке происходит отключение от хаба original issue
1
28,549
2,707,734,898
IssuesEvent
2015-04-08 01:22:44
kevinchandler/test
https://api.github.com/repos/kevinchandler/test
opened
test
bug-report-cs Priority: Medium
Description: test Priority: Medium Date Reported: 04-07-2015 User Email: kevin@onradpad.com Profile: https://onradpad.com/admin/landlords/837750 Platform: Android Able to Replicate: Could not test Reported By: Kevin C. - kevin@onradpad.com
1.0
test - Description: test Priority: Medium Date Reported: 04-07-2015 User Email: kevin@onradpad.com Profile: https://onradpad.com/admin/landlords/837750 Platform: Android Able to Replicate: Could not test Reported By: Kevin C. - kevin@onradpad.com
priority
test description test priority medium date reported user email kevin onradpad com profile platform android able to replicate could not test reported by kevin c kevin onradpad com
1
750,473
26,203,032,833
IssuesEvent
2023-01-03 19:26:28
gamefreedomgit/Maelstrom
https://api.github.com/repos/gamefreedomgit/Maelstrom
opened
[Quest][Cata] Death to Mor'Ghor
NPC Quest - Cataclysm (80+) Movement Priority: Medium Status: Confirmed
**How to reproduce:** This quest is not fully scripted npc that you are supposed to kill is not scripted properly he jumps over the tent and after jumping down he gets stuck and wont attack you and you can simply back down also npcs that you freed up from quests before should cheer up and don't follow you anymore which they still do and after killing the boss he just despawns (gives you credit) ![image](https://user-images.githubusercontent.com/36106057/210427129-1927f16d-e5db-4140-8615-be05a1a19e5e.png) **How it should work:** He should not despawn, event should fully play out and npcs stop following you around **Database links:** https://cata-twinhead.twinstar.cz/?quest=26622
1.0
[Quest][Cata] Death to Mor'Ghor - **How to reproduce:** This quest is not fully scripted npc that you are supposed to kill is not scripted properly he jumps over the tent and after jumping down he gets stuck and wont attack you and you can simply back down also npcs that you freed up from quests before should cheer up and don't follow you anymore which they still do and after killing the boss he just despawns (gives you credit) ![image](https://user-images.githubusercontent.com/36106057/210427129-1927f16d-e5db-4140-8615-be05a1a19e5e.png) **How it should work:** He should not despawn, event should fully play out and npcs stop following you around **Database links:** https://cata-twinhead.twinstar.cz/?quest=26622
priority
death to mor ghor how to reproduce this quest is not fully scripted npc that you are supposed to kill is not scripted properly he jumps over the tent and after jumping down he gets stuck and wont attack you and you can simply back down also npcs that you freed up from quests before should cheer up and don t follow you anymore which they still do and after killing the boss he just despawns gives you credit how it should work he should not despawn event should fully play out and npcs stop following you around database links
1
699,335
24,012,553,906
IssuesEvent
2022-09-14 20:15:54
all-contributors/cli
https://api.github.com/repos/all-contributors/cli
closed
Breaking change: update default URL behavior
help wanted priority: medium pinned
:wave: Hi again! I'm opening up this issue because [this feature](https://github.com/jfmengels/all-contributors-cli/blob/e5bd3b4c700ff91fd5b3228625a013ecf2b7cc7f/lib/generate/format-contribution-type.js#L27) seems unexpected to me. I could see someone _maybe_ adding these URLs to their projects, but it seems like that would be the exception, rather than the default. For instance, the [all-contributors](https://github.com/kentcdodds/all-contributors) project itself doesn't include links like this. I didn't check all of the projects, but it's probably a safe bet that none of the projects listed in [the implementations list](https://github.com/kentcdodds/all-contributors/blob/master/other/IMPLEMENTATIONS.md) use these links, either. Does anyone else think it would make more sense to default these sorts of contribution types to having no link? Right now, if most of the contributions have links that don't work, then that could possibly distract from the links that actually do point somewhere useful. No big deal either way, but I figured I'd open this up for discussion. Thanks for reading!
1.0
Breaking change: update default URL behavior - :wave: Hi again! I'm opening up this issue because [this feature](https://github.com/jfmengels/all-contributors-cli/blob/e5bd3b4c700ff91fd5b3228625a013ecf2b7cc7f/lib/generate/format-contribution-type.js#L27) seems unexpected to me. I could see someone _maybe_ adding these URLs to their projects, but it seems like that would be the exception, rather than the default. For instance, the [all-contributors](https://github.com/kentcdodds/all-contributors) project itself doesn't include links like this. I didn't check all of the projects, but it's probably a safe bet that none of the projects listed in [the implementations list](https://github.com/kentcdodds/all-contributors/blob/master/other/IMPLEMENTATIONS.md) use these links, either. Does anyone else think it would make more sense to default these sorts of contribution types to having no link? Right now, if most of the contributions have links that don't work, then that could possibly distract from the links that actually do point somewhere useful. No big deal either way, but I figured I'd open this up for discussion. Thanks for reading!
priority
breaking change update default url behavior wave hi again i m opening up this issue because seems unexpected to me i could see someone maybe adding these urls to their projects but it seems like that would be the exception rather than the default for instance the project itself doesn t include links like this i didn t check all of the projects but it s probably a safe bet that none of the projects listed in use these links either does anyone else think it would make more sense to default these sorts of contribution types to having no link right now if most of the contributions have links that don t work then that could possibly distract from the links that actually do point somewhere useful no big deal either way but i figured i d open this up for discussion thanks for reading
1
69,860
3,316,176,627
IssuesEvent
2015-11-06 15:49:51
craftjk/issue-migration-test6
https://api.github.com/repos/craftjk/issue-migration-test6
opened
j5 results - clicking on j5 run complete notification does not highlight in blue most active j5 run for the active design
imported Priority: Medium Type: Bug
<a href="https://github.com/KeeganW"><img src="https://avatars.githubusercontent.com/u/7226822?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [KeeganW](https://github.com/KeeganW)** _Tuesday Jun 10, 2014 at 23:00 GMT_ _Originally opened as https://github.com/TeselaGen/ve/issues/55_ ---- Nathan Hillson commented July 16, 2013 07:43 If I click on the notification that j5 results are done, the top most j5 run is not highlighted in blue. I noticed this initially because the new parts grid in the j5 results didn't show any content after I clicked on the notification, but only appeared when I clicked on the top most j5 results and made it blue. There is also some weird behavior if there is already a result in the j5 results list, because the second oldest run seems to be highlighted instead of the most recent. I also observed that the new parts grid doesn't appear until one of the results is clicked in the j5 runs panel.
1.0
j5 results - clicking on j5 run complete notification does not highlight in blue most active j5 run for the active design - <a href="https://github.com/KeeganW"><img src="https://avatars.githubusercontent.com/u/7226822?v=3" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [KeeganW](https://github.com/KeeganW)** _Tuesday Jun 10, 2014 at 23:00 GMT_ _Originally opened as https://github.com/TeselaGen/ve/issues/55_ ---- Nathan Hillson commented July 16, 2013 07:43 If I click on the notification that j5 results are done, the top most j5 run is not highlighted in blue. I noticed this initially because the new parts grid in the j5 results didn't show any content after I clicked on the notification, but only appeared when I clicked on the top most j5 results and made it blue. There is also some weird behavior if there is already a result in the j5 results list, because the second oldest run seems to be highlighted instead of the most recent. I also observed that the new parts grid doesn't appear until one of the results is clicked in the j5 runs panel.
priority
results clicking on run complete notification does not highlight in blue most active run for the active design issue by tuesday jun at gmt originally opened as nathan hillson commented july if i click on the notification that results are done the top most run is not highlighted in blue i noticed this initially because the new parts grid in the results didn t show any content after i clicked on the notification but only appeared when i clicked on the top most results and made it blue there is also some weird behavior if there is already a result in the results list because the second oldest run seems to be highlighted instead of the most recent i also observed that the new parts grid doesn t appear until one of the results is clicked in the runs panel
1
808,352
30,078,920,807
IssuesEvent
2023-06-29 00:14:09
ONEARMY/community-platform
https://api.github.com/repos/ONEARMY/community-platform
closed
[bug] - Legacy user login bug
Priority: Medium Type:Bug🐛 Backend Mod: Profiles 👱 Difficulty:Hard 🔬 Triage
**Describe the bug** As discussed on slack (https://onearmy.slack.com/archives/CHUDUK0UV/p1599150097000600?thread_ts=1599062533.001400&cid=CHUDUK0UV) There are still some older accounts that have incorrect auth information and should be migrated. It would be worth going through sentry messages to see how many different users there are (around 180 events recorded, but lots of duplicates), and then see which can be addressed. Current work around code in `src/stores.user.store.ts` can also be tidied once resolved ![image](https://user-images.githubusercontent.com/10515065/92141814-d1104280-edc7-11ea-95e5-4489bd1b106f.png) **To Reproduce** Only via specific users who don't have the correct `authID` specified, so hard to reproduce. **Screenshots** (see slack thread)
1.0
[bug] - Legacy user login bug - **Describe the bug** As discussed on slack (https://onearmy.slack.com/archives/CHUDUK0UV/p1599150097000600?thread_ts=1599062533.001400&cid=CHUDUK0UV) There are still some older accounts that have incorrect auth information and should be migrated. It would be worth going through sentry messages to see how many different users there are (around 180 events recorded, but lots of duplicates), and then see which can be addressed. Current work around code in `src/stores.user.store.ts` can also be tidied once resolved ![image](https://user-images.githubusercontent.com/10515065/92141814-d1104280-edc7-11ea-95e5-4489bd1b106f.png) **To Reproduce** Only via specific users who don't have the correct `authID` specified, so hard to reproduce. **Screenshots** (see slack thread)
priority
legacy user login bug describe the bug as discussed on slack there are still some older accounts that have incorrect auth information and should be migrated it would be worth going through sentry messages to see how many different users there are around events recorded but lots of duplicates and then see which can be addressed current work around code in src stores user store ts can also be tidied once resolved to reproduce only via specific users who don t have the correct authid specified so hard to reproduce screenshots see slack thread
1
602,216
18,456,831,005
IssuesEvent
2021-10-15 17:39:13
cds-snc/scan-websites
https://api.github.com/repos/cds-snc/scan-websites
closed
Operations: add Slack notifications for alarms
Medium Priority | Priorité moyenne Operations
1. Create an SNS topic and subscription that posts alarms to a Slack channel. 2. Create an alarm for `Lambda invocations > threshold` (catch cascades).
1.0
Operations: add Slack notifications for alarms - 1. Create an SNS topic and subscription that posts alarms to a Slack channel. 2. Create an alarm for `Lambda invocations > threshold` (catch cascades).
priority
operations add slack notifications for alarms create an sns topic and subscription that posts alarms to a slack channel create an alarm for lambda invocations threshold catch cascades
1
388,295
11,485,941,553
IssuesEvent
2020-02-11 08:56:07
DigitalCampus/moodle-block_oppia_mobile_export
https://api.github.com/repos/DigitalCampus/moodle-block_oppia_mobile_export
closed
Review options for media embedding in moodle/oppiamobile
enhancement medium priority
Potentially having a separate activity type for doing this, so we can hide the complexity of the embed code from users.
1.0
Review options for media embedding in moodle/oppiamobile - Potentially having a separate activity type for doing this, so we can hide the complexity of the embed code from users.
priority
review options for media embedding in moodle oppiamobile potentially having a separate activity type for doing this so we can hide the complexity of the embed code from users
1
428,497
12,412,458,129
IssuesEvent
2020-05-22 10:36:04
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[0.9.0 staging-1548] NetObject update in localization
Fix Version: 0.9.0.0 Priority: Medium Status: Fixed
1) Change server languge to some non-english (checked with rissuan and german) 2) Start a fresh world 3) Check placing for the world objects It has some time delay https://drive.google.com/file/d/1DivApO7xstl3il30XdIc9-hkpTeYiRor/view?usp=sharing Can be fixed with server restart
1.0
[0.9.0 staging-1548] NetObject update in localization - 1) Change server languge to some non-english (checked with rissuan and german) 2) Start a fresh world 3) Check placing for the world objects It has some time delay https://drive.google.com/file/d/1DivApO7xstl3il30XdIc9-hkpTeYiRor/view?usp=sharing Can be fixed with server restart
priority
netobject update in localization change server languge to some non english checked with rissuan and german start a fresh world check placing for the world objects it has some time delay can be fixed with server restart
1
669,519
22,629,324,966
IssuesEvent
2022-06-30 13:28:05
admiral-team/admiralui-android
https://api.github.com/repos/admiral-team/admiralui-android
closed
[FEATURE] - Присвоить id для кнопок + и - в Badges
enhancement medium priority
**Описание задачи:** Присвоить id для кнопок + и - в Badges **Фреймворк** XML **Ресурсы:** Ссылка на макеты или ресурсы...
1.0
[FEATURE] - Присвоить id для кнопок + и - в Badges - **Описание задачи:** Присвоить id для кнопок + и - в Badges **Фреймворк** XML **Ресурсы:** Ссылка на макеты или ресурсы...
priority
присвоить id для кнопок и в badges описание задачи присвоить id для кнопок и в badges фреймворк xml ресурсы ссылка на макеты или ресурсы
1
640,957
20,813,667,478
IssuesEvent
2022-03-18 07:41:09
bounswe/bounswe2022group7
https://api.github.com/repos/bounswe/bounswe2022group7
opened
Enrich the home Wiki page
Type: Enhancement Status: Not Yet Started Priority: Medium Difficulty: Easy
In our [3rd Weekly Meeting](https://github.com/bounswe/bounswe2022group7/wiki/Meeting-Notes-%233), we decided that our home Wiki page should include those: * Obvious links to the time trackers so that it will be much easier for anyone to find. * Little descriptions about our group's project. * Headlines directing to our research. It is also possible to change the sidebar after these updates. The sidebar may also include everyone's personal time tracking pages.
1.0
Enrich the home Wiki page - In our [3rd Weekly Meeting](https://github.com/bounswe/bounswe2022group7/wiki/Meeting-Notes-%233), we decided that our home Wiki page should include those: * Obvious links to the time trackers so that it will be much easier for anyone to find. * Little descriptions about our group's project. * Headlines directing to our research. It is also possible to change the sidebar after these updates. The sidebar may also include everyone's personal time tracking pages.
priority
enrich the home wiki page in our we decided that our home wiki page should include those obvious links to the time trackers so that it will be much easier for anyone to find little descriptions about our group s project headlines directing to our research it is also possible to change the sidebar after these updates the sidebar may also include everyone s personal time tracking pages
1
116,157
4,697,841,992
IssuesEvent
2016-10-12 10:44:33
ox-it/ords-ui
https://api.github.com/repos/ox-it/ords-ui
reopened
Data Viewer doesn't deal well with long text fields
Data Viewer enhancement Medium priority
When a table is viewed in the Data Viewer, the width of the columns adapts to fit the size of the window. However, the white cells which contain the data don't adjust, and there seems to be no way of resizing them to accommodate longer text strings. This results in a lot of data that's cannot be seen without clicking in individual cells: ![long text fields in data viewer](https://cloud.githubusercontent.com/assets/13660306/18922943/79dc2f7e-85a2-11e6-82b7-453b71211e8b.PNG)
1.0
Data Viewer doesn't deal well with long text fields - When a table is viewed in the Data Viewer, the width of the columns adapts to fit the size of the window. However, the white cells which contain the data don't adjust, and there seems to be no way of resizing them to accommodate longer text strings. This results in a lot of data that's cannot be seen without clicking in individual cells: ![long text fields in data viewer](https://cloud.githubusercontent.com/assets/13660306/18922943/79dc2f7e-85a2-11e6-82b7-453b71211e8b.PNG)
priority
data viewer doesn t deal well with long text fields when a table is viewed in the data viewer the width of the columns adapts to fit the size of the window however the white cells which contain the data don t adjust and there seems to be no way of resizing them to accommodate longer text strings this results in a lot of data that s cannot be seen without clicking in individual cells
1
481,160
13,881,098,578
IssuesEvent
2020-10-17 22:08:07
trihargianto/trihargianto.com
https://api.github.com/repos/trihargianto/trihargianto.com
closed
Share article to facebook, twitter
Priority: Medium feature
Create a feature to share a blog post on social media like facebook and twitter. Also, make sure post’s meta information shown properly
1.0
Share article to facebook, twitter - Create a feature to share a blog post on social media like facebook and twitter. Also, make sure post’s meta information shown properly
priority
share article to facebook twitter create a feature to share a blog post on social media like facebook and twitter also make sure post’s meta information shown properly
1
691,466
23,697,603,303
IssuesEvent
2022-08-29 15:54:28
wp-media/wp-rocket
https://api.github.com/repos/wp-media/wp-rocket
closed
Database guard when cache table is not created
type: bug module: preload priority: medium effort: [S] severity: major
**Before submitting an issue please check that you’ve completed the following steps:** - Made sure you’re on the latest version - Used the search feature to ensure that the bug hasn’t been reported before **Describe the bug** We have one ticket related to the `cache` table not being created: https://snippi.com/s/uqa7zrn **To Reproduce** We're not sure how it's possible that this error happened. We can force it to happen manually: 1. Install WP Rocket 3.12.0.x 2. Go to db manager and remove the `wpr_rocket_cache` table 3. Run the preload 4. See error in logs **Expected behavior** We should: 1. Make sure that preload is not running and nto adding entries in the logs 2. Try to recreate the table 3. Display the error message: **WP Rocket:** We detected missing database table related to Preload feature. We're trying to fix this problem automatically, if you're still seeing this message after refreshing the page, please contact our support team. **Additional context** Similar: https://github.com/wp-media/wp-rocket/pull/4897/files Related ticket: https://secure.helpscout.net/conversation/1990501756/364243 We need to check: 1. The update process with/without the cache table in previous version 2. Manual removal of the table **Backlog Grooming (for WP Media dev team use only)** - [ ] Reproduce the problem - [ ] Identify the root cause - [ ] Scope a solution - [ ] Estimate the effort
1.0
Database guard when cache table is not created - **Before submitting an issue please check that you’ve completed the following steps:** - Made sure you’re on the latest version - Used the search feature to ensure that the bug hasn’t been reported before **Describe the bug** We have one ticket related to the `cache` table not being created: https://snippi.com/s/uqa7zrn **To Reproduce** We're not sure how it's possible that this error happened. We can force it to happen manually: 1. Install WP Rocket 3.12.0.x 2. Go to db manager and remove the `wpr_rocket_cache` table 3. Run the preload 4. See error in logs **Expected behavior** We should: 1. Make sure that preload is not running and nto adding entries in the logs 2. Try to recreate the table 3. Display the error message: **WP Rocket:** We detected missing database table related to Preload feature. We're trying to fix this problem automatically, if you're still seeing this message after refreshing the page, please contact our support team. **Additional context** Similar: https://github.com/wp-media/wp-rocket/pull/4897/files Related ticket: https://secure.helpscout.net/conversation/1990501756/364243 We need to check: 1. The update process with/without the cache table in previous version 2. Manual removal of the table **Backlog Grooming (for WP Media dev team use only)** - [ ] Reproduce the problem - [ ] Identify the root cause - [ ] Scope a solution - [ ] Estimate the effort
priority
database guard when cache table is not created before submitting an issue please check that you’ve completed the following steps made sure you’re on the latest version used the search feature to ensure that the bug hasn’t been reported before describe the bug we have one ticket related to the cache table not being created to reproduce we re not sure how it s possible that this error happened we can force it to happen manually install wp rocket x go to db manager and remove the wpr rocket cache table run the preload see error in logs expected behavior we should make sure that preload is not running and nto adding entries in the logs try to recreate the table display the error message wp rocket we detected missing database table related to preload feature we re trying to fix this problem automatically if you re still seeing this message after refreshing the page please contact our support team additional context similar related ticket we need to check the update process with without the cache table in previous version manual removal of the table backlog grooming for wp media dev team use only reproduce the problem identify the root cause scope a solution estimate the effort
1
3,200
2,537,493,760
IssuesEvent
2015-01-26 20:58:54
web2py/web2py
https://api.github.com/repos/web2py/web2py
opened
Firebird Adapter can't insert blobs greater than 64kb
1 star bug imported Priority-Medium
_From [r..._at_tarkus.mx](https://code.google.com/u/104102434118943698957/) on July 03, 2013 00:30:23_ What steps will reproduce the problem? 1.- Define a table containing a blob field 2.- Try to insert or update a row assigning that field data > 64kb What is the expected output? What do you see instead? It's expected that the field will contain the data assigned, just as it functions when the data \< 64kb What version of the product are you using? On what operating system? Using web2py 2.5.1, fdb 1.4 Please provide any additional information below. This occurs because Firebird has a 64kb limit on the size of parameters. According to fdb documentation, a blob parameter has to be manipulated as a file-like object. cur.execute("insert into blob_test values (?)", (StringIO('abcdef'),)) _Original issue: http://code.google.com/p/web2py/issues/detail?id=1571_
1.0
Firebird Adapter can't insert blobs greater than 64kb - _From [r..._at_tarkus.mx](https://code.google.com/u/104102434118943698957/) on July 03, 2013 00:30:23_ What steps will reproduce the problem? 1.- Define a table containing a blob field 2.- Try to insert or update a row assigning that field data > 64kb What is the expected output? What do you see instead? It's expected that the field will contain the data assigned, just as it functions when the data \< 64kb What version of the product are you using? On what operating system? Using web2py 2.5.1, fdb 1.4 Please provide any additional information below. This occurs because Firebird has a 64kb limit on the size of parameters. According to fdb documentation, a blob parameter has to be manipulated as a file-like object. cur.execute("insert into blob_test values (?)", (StringIO('abcdef'),)) _Original issue: http://code.google.com/p/web2py/issues/detail?id=1571_
priority
firebird adapter can t insert blobs greater than from on july what steps will reproduce the problem define a table containing a blob field try to insert or update a row assigning that field data what is the expected output what do you see instead it s expected that the field will contain the data assigned just as it functions when the data what version of the product are you using on what operating system using fdb please provide any additional information below this occurs because firebird has a limit on the size of parameters according to fdb documentation a blob parameter has to be manipulated as a file like object cur execute insert into blob test values stringio abcdef original issue
1
443,397
12,793,855,547
IssuesEvent
2020-07-02 05:22:35
buddyboss/buddyboss-platform
https://api.github.com/repos/buddyboss/buddyboss-platform
closed
Can not translate his/her/their determiners.
bug priority: medium
**Describe the bug** You can not translate his/her on Activity page. E.g @Test changed **his** profile photo . https://prnt.sc/stoeph **To Reproduce** Steps to reproduce the behavior: 1. Enable gender profile field. 2. Choose your Gender. 3. Change the Profile photo. 4. Check Activity. **Expected behavior** Translatable **Support ticket links** https://secure.helpscout.net/conversation/1140460465/69444?folderId=3701249
1.0
Can not translate his/her/their determiners. - **Describe the bug** You can not translate his/her on Activity page. E.g @Test changed **his** profile photo . https://prnt.sc/stoeph **To Reproduce** Steps to reproduce the behavior: 1. Enable gender profile field. 2. Choose your Gender. 3. Change the Profile photo. 4. Check Activity. **Expected behavior** Translatable **Support ticket links** https://secure.helpscout.net/conversation/1140460465/69444?folderId=3701249
priority
can not translate his her their determiners describe the bug you can not translate his her on activity page e g test changed his profile photo to reproduce steps to reproduce the behavior enable gender profile field choose your gender change the profile photo check activity expected behavior translatable support ticket links
1
602,438
18,469,296,598
IssuesEvent
2021-10-17 13:06:14
AY2122S1-CS2103-W14-4/tp
https://api.github.com/repos/AY2122S1-CS2103-W14-4/tp
opened
Purge all tasks
type.Story priority.Medium
As a user I can purge all current tasks so that I can get rid of sample data I used for exploring the app.
1.0
Purge all tasks - As a user I can purge all current tasks so that I can get rid of sample data I used for exploring the app.
priority
purge all tasks as a user i can purge all current tasks so that i can get rid of sample data i used for exploring the app
1
153,694
5,897,168,808
IssuesEvent
2017-05-18 11:46:10
Pamasich/pamautils
https://api.github.com/repos/Pamasich/pamautils
opened
SafeAccess
enhancement medium_priority
Enter a chain of getters, which should be called on each other until one returns null, at which point an exception shall be thrown.
1.0
SafeAccess - Enter a chain of getters, which should be called on each other until one returns null, at which point an exception shall be thrown.
priority
safeaccess enter a chain of getters which should be called on each other until one returns null at which point an exception shall be thrown
1
781,130
27,423,854,889
IssuesEvent
2023-03-01 18:41:03
Cameronketchem/CEN3031-Group91
https://api.github.com/repos/Cameronketchem/CEN3031-Group91
closed
Set up automated unit testing for routes package
backend medium priority
The routes package doesn't have automated unit testing. The gin module provides examples on how to set this up [here](https://pkg.go.dev/github.com/gin-gonic/gin#readme-testing)
1.0
Set up automated unit testing for routes package - The routes package doesn't have automated unit testing. The gin module provides examples on how to set this up [here](https://pkg.go.dev/github.com/gin-gonic/gin#readme-testing)
priority
set up automated unit testing for routes package the routes package doesn t have automated unit testing the gin module provides examples on how to set this up
1
118,773
4,755,733,697
IssuesEvent
2016-10-24 11:50:54
BinPar/eBooks
https://api.github.com/repos/BinPar/eBooks
opened
1322016 Duda en materiales complementarios
DRM Priority: Medium
Necesito habilitar estos materiales complementarios y no los encuentro en el gestor. Puedes darme alguna pista sobre cómo buscarlos? - http://www.medicapanamericana.com/Libros/Libro/4630/eBook-Atencion-Integral-de-la-Infertilidad.html?TipoContenido=&buscador=atencion integral de la infer - Y de estos hay varios electrónicos y no sé cuál incluir: https://www.medicapanamericana.com/materialesComplementarios/Campbell-10/Campbell.aspx
1.0
1322016 Duda en materiales complementarios - Necesito habilitar estos materiales complementarios y no los encuentro en el gestor. Puedes darme alguna pista sobre cómo buscarlos? - http://www.medicapanamericana.com/Libros/Libro/4630/eBook-Atencion-Integral-de-la-Infertilidad.html?TipoContenido=&buscador=atencion integral de la infer - Y de estos hay varios electrónicos y no sé cuál incluir: https://www.medicapanamericana.com/materialesComplementarios/Campbell-10/Campbell.aspx
priority
duda en materiales complementarios necesito habilitar estos materiales complementarios y no los encuentro en el gestor puedes darme alguna pista sobre cómo buscarlos integral de la infer y de estos hay varios electrónicos y no sé cuál incluir
1
362,108
10,723,070,824
IssuesEvent
2019-10-27 16:16:40
ooni/netx
https://api.github.com/repos/ooni/netx
closed
Request- or context-rooted measurements
effort/L enhancement priority/medium story
As a user of the netx API, I would like to be able to automatically know what events have been generated by a specific `*http.Request`. In the same vein, I would like to know what events have been generated by code using a specific `context.Context`. Because we can assign a context to a request, the most general case is the latter. That is, we could always implement request-rooted measurements using context-rooted measurements. The use case for this functionality is easily getting measurements that are part of the same round-trip, or round-trips, without the need to join them in post-processing and/or without preventing concurrent round-trips, like we do in ooni/probe-engine now. With this functionality implemented, I doubt we will ever need to join measurements, because we could know by definition that a specific request is the root cause of a specific list of low-level measurements. This is not super urgent, because we can thrive in ooni/probe-engine even without this functionality, but our life would be easier with this functionality merged. Also, this probably solves the most pressing concern of `netx`'s original design, i.e. joining measurements.
1.0
Request- or context-rooted measurements - As a user of the netx API, I would like to be able to automatically know what events have been generated by a specific `*http.Request`. In the same vein, I would like to know what events have been generated by code using a specific `context.Context`. Because we can assign a context to a request, the most general case is the latter. That is, we could always implement request-rooted measurements using context-rooted measurements. The use case for this functionality is easily getting measurements that are part of the same round-trip, or round-trips, without the need to join them in post-processing and/or without preventing concurrent round-trips, like we do in ooni/probe-engine now. With this functionality implemented, I doubt we will ever need to join measurements, because we could know by definition that a specific request is the root cause of a specific list of low-level measurements. This is not super urgent, because we can thrive in ooni/probe-engine even without this functionality, but our life would be easier with this functionality merged. Also, this probably solves the most pressing concern of `netx`'s original design, i.e. joining measurements.
priority
request or context rooted measurements as a user of the netx api i would like to be able to automatically know what events have been generated by a specific http request in the same vein i would like to know what events have been generated by code using a specific context context because we can assign a context to a request the most general case is the latter that is we could always implement request rooted measurements using context rooted measurements the use case for this functionality is easily getting measurements that are part of the same round trip or round trips without the need to join them in post processing and or without preventing concurrent round trips like we do in ooni probe engine now with this functionality implemented i doubt we will ever need to join measurements because we could know by definition that a specific request is the root cause of a specific list of low level measurements this is not super urgent because we can thrive in ooni probe engine even without this functionality but our life would be easier with this functionality merged also this probably solves the most pressing concern of netx s original design i e joining measurements
1
726,537
25,002,612,513
IssuesEvent
2022-11-03 09:17:29
AY2223S1-CS2113-F11-4/tp
https://api.github.com/repos/AY2223S1-CS2113-F11-4/tp
closed
[PE-D][Tester B] Delete reason for visits even when reason does not exists
priority.Medium
Bug: user is able to delete reason even though reason does not exists Actual: ![image.png](https://raw.githubusercontent.com/chiewyx/ped/main/files/040dd502-f1ad-4538-9670-18564903c400.png) Expected: An error stating that the reason does not exist/or is already deleted Steps to recreate bug: 1. Enter 2 for visits page 2. Enter "add i/2345 d/23-10-2022 t/10:15" 3. Enter "deleteReason x/1" (index of visit depends on the list) <!--session: 1666946611684-c40134e0-4f6f-4ba7-b6b8-44fbef784c2f--> <!--Version: Web v3.4.4--> ------------- Labels: `type.FunctionalityBug` `severity.Low` original: chiewyx/ped#6
1.0
[PE-D][Tester B] Delete reason for visits even when reason does not exists - Bug: user is able to delete reason even though reason does not exists Actual: ![image.png](https://raw.githubusercontent.com/chiewyx/ped/main/files/040dd502-f1ad-4538-9670-18564903c400.png) Expected: An error stating that the reason does not exist/or is already deleted Steps to recreate bug: 1. Enter 2 for visits page 2. Enter "add i/2345 d/23-10-2022 t/10:15" 3. Enter "deleteReason x/1" (index of visit depends on the list) <!--session: 1666946611684-c40134e0-4f6f-4ba7-b6b8-44fbef784c2f--> <!--Version: Web v3.4.4--> ------------- Labels: `type.FunctionalityBug` `severity.Low` original: chiewyx/ped#6
priority
delete reason for visits even when reason does not exists bug user is able to delete reason even though reason does not exists actual expected an error stating that the reason does not exist or is already deleted steps to recreate bug enter for visits page enter add i d t enter deletereason x index of visit depends on the list labels type functionalitybug severity low original chiewyx ped
1
526,348
15,286,835,523
IssuesEvent
2021-02-23 15:07:38
airshipit/treasuremap
https://api.github.com/repos/airshipit/treasuremap
closed
Convert Airship 1.0 PSP chart to K8s PSP documents for Airship 2.0
2-Manifests enhancement priority/medium
As an operator transitioning from AS1.0 to AS2.0, I want the ability to convert my existing Pod Security Policy Armada chart to a raw K8s PSP document, so that I can easily apply my PSPs in a site deployed by Airship 2.0. This has a dependency on #31.
1.0
Convert Airship 1.0 PSP chart to K8s PSP documents for Airship 2.0 - As an operator transitioning from AS1.0 to AS2.0, I want the ability to convert my existing Pod Security Policy Armada chart to a raw K8s PSP document, so that I can easily apply my PSPs in a site deployed by Airship 2.0. This has a dependency on #31.
priority
convert airship psp chart to psp documents for airship as an operator transitioning from to i want the ability to convert my existing pod security policy armada chart to a raw psp document so that i can easily apply my psps in a site deployed by airship this has a dependency on
1
494,499
14,259,783,876
IssuesEvent
2020-11-20 08:51:18
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
[0.9.1 staging-1823] Exception in view notifySystem.Exception: Found <ecoicon> tag with invalid parameters.
Category: Tech Priority: Medium Status: Fixed
Step to reproduce: - I always forgot how to add right Icon on signs, so I write a wrong string, I forgot to use item, so I wrote <ecoicon='Masonry'> instead <ecoicon item='Masonry'> - After that I have exception: ``` Exception in view notifySystem.Exception: Found <ecoicon> tag with invalid parameters. Requires one of 'item' or 'name'. Found ecoicon at EcoTagParser.ProcessEcoiconMatch (System.Collections.Generic.Dictionary`2[TKey,TValue] paramNamesToValues, System.String content, System.Collections.Generic.Dictionary`2[TKey,TValue] parentAttrs) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser+CustomTagProcessor.Invoke (System.Collections.Generic.Dictionary`2[TKey,TValue] paramNamesToValues, System.String content, System.Collections.Generic.Dictionary`2[TKey,TValue] parentAttrs) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser+OpenTagMatch.Close (System.String raw, Eco.Shared.Utils.TagParser+OpenTagMatch parent, System.Collections.Generic.Dictionary`2[TKey,TValue] customProcessors, System.Boolean autoCloseTags) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser.ResolveClosing (System.String closingName, System.String textBefore, System.String raw, System.Text.StringBuilder result, System.Boolean autoCloseTags) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser.ParseInternal (System.String text, System.Boolean autoCloseTags, System.Text.StringBuilder result) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser.Parse (System.String text, System.Boolean autoCloseTags) [0x00000] in <00000000000000000000000000000000>:0 at EcoTagParser.Parse (System.String text, System.Boolean normalizeTags, System.Boolean autoCloseTags) [0x00000] in <00000000000000000000000000000000>:0 at Sign.UpdateText () [0x00000] in <00000000000000000000000000000000>:0 at UnityEngine.AndroidJavaRunnable.Invoke () [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.View.View.NotifyChanged (System.String propname) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.View.ViewManager.ReceiveViewUpdate (Eco.Shared.Serialization.BSONArray updates) [0x00000] in <00000000000000000000000000000000>:0 at ClientPacketHandler.ReceiveWhile (Eco.Shared.Networking.NetworkClient client, TimeLimit timeLimit) [0x00000] in <00000000000000000000000000000000>:0 at NetworkManager.OnTimeLimitedUpdate (TimeLimit timeLimit) [0x00000] in <00000000000000000000000000000000>:0 at System.Action`1[T].Invoke (T obj) [0x00000] in <00000000000000000000000000000000>:0 at FramePlanner.PlannerGroup.OnUpdate () [0x00000] in <00000000000000000000000000000000>:0 at FramePlanner.FramePlannerSystem.OnUpdate () [0x00000] in <00000000000000000000000000000000>:0 at Unity.Entities.ComponentSystem.Update () [0x00000] in <00000000000000000000000000000000>:0 at Unity.Entities.ComponentSystemGroup.UpdateAllSystems () [0x00000] in <00000000000000000000000000000000>:0 at Unity.Entities.ComponentSystem.Update () [0x00000] in <00000000000000000000000000000000>:0 at UnityEngine.AndroidJavaRunnable.Invoke () [0x00000] in <00000000000000000000000000000000>:0 ``` - disconnect and connect again, I have another exception and sign is using text template: ![image](https://user-images.githubusercontent.com/45708377/97271158-46851600-1841-11eb-8686-fc9a30933c23.png) ``` Caught exception on LargeHangingMortaredStoneSignObject while in NetObject ReceiveInitialState. BSON: { id: 5135 (int), view: (<Unknown View> 4687), components: [ (<Unknown View> 4688), (<Unknown View> 4690) ], auth: 1 (int), pos: (445, 63, 599) (Vector3), rot: (0,-0,7071068,0,0,7071068) (Quaternion), type: 'LargeHangingMortaredStoneSignObject' (string) } ``` [Player.log](https://github.com/StrangeLoopGames/EcoIssues/files/5443656/Player.log) We shouldn't have this exception, it should be processed
1.0
[0.9.1 staging-1823] Exception in view notifySystem.Exception: Found <ecoicon> tag with invalid parameters. - Step to reproduce: - I always forgot how to add right Icon on signs, so I write a wrong string, I forgot to use item, so I wrote <ecoicon='Masonry'> instead <ecoicon item='Masonry'> - After that I have exception: ``` Exception in view notifySystem.Exception: Found <ecoicon> tag with invalid parameters. Requires one of 'item' or 'name'. Found ecoicon at EcoTagParser.ProcessEcoiconMatch (System.Collections.Generic.Dictionary`2[TKey,TValue] paramNamesToValues, System.String content, System.Collections.Generic.Dictionary`2[TKey,TValue] parentAttrs) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser+CustomTagProcessor.Invoke (System.Collections.Generic.Dictionary`2[TKey,TValue] paramNamesToValues, System.String content, System.Collections.Generic.Dictionary`2[TKey,TValue] parentAttrs) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser+OpenTagMatch.Close (System.String raw, Eco.Shared.Utils.TagParser+OpenTagMatch parent, System.Collections.Generic.Dictionary`2[TKey,TValue] customProcessors, System.Boolean autoCloseTags) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser.ResolveClosing (System.String closingName, System.String textBefore, System.String raw, System.Text.StringBuilder result, System.Boolean autoCloseTags) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser.ParseInternal (System.String text, System.Boolean autoCloseTags, System.Text.StringBuilder result) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.Utils.TagParser.Parse (System.String text, System.Boolean autoCloseTags) [0x00000] in <00000000000000000000000000000000>:0 at EcoTagParser.Parse (System.String text, System.Boolean normalizeTags, System.Boolean autoCloseTags) [0x00000] in <00000000000000000000000000000000>:0 at Sign.UpdateText () [0x00000] in <00000000000000000000000000000000>:0 at UnityEngine.AndroidJavaRunnable.Invoke () [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.View.View.NotifyChanged (System.String propname) [0x00000] in <00000000000000000000000000000000>:0 at Eco.Shared.View.ViewManager.ReceiveViewUpdate (Eco.Shared.Serialization.BSONArray updates) [0x00000] in <00000000000000000000000000000000>:0 at ClientPacketHandler.ReceiveWhile (Eco.Shared.Networking.NetworkClient client, TimeLimit timeLimit) [0x00000] in <00000000000000000000000000000000>:0 at NetworkManager.OnTimeLimitedUpdate (TimeLimit timeLimit) [0x00000] in <00000000000000000000000000000000>:0 at System.Action`1[T].Invoke (T obj) [0x00000] in <00000000000000000000000000000000>:0 at FramePlanner.PlannerGroup.OnUpdate () [0x00000] in <00000000000000000000000000000000>:0 at FramePlanner.FramePlannerSystem.OnUpdate () [0x00000] in <00000000000000000000000000000000>:0 at Unity.Entities.ComponentSystem.Update () [0x00000] in <00000000000000000000000000000000>:0 at Unity.Entities.ComponentSystemGroup.UpdateAllSystems () [0x00000] in <00000000000000000000000000000000>:0 at Unity.Entities.ComponentSystem.Update () [0x00000] in <00000000000000000000000000000000>:0 at UnityEngine.AndroidJavaRunnable.Invoke () [0x00000] in <00000000000000000000000000000000>:0 ``` - disconnect and connect again, I have another exception and sign is using text template: ![image](https://user-images.githubusercontent.com/45708377/97271158-46851600-1841-11eb-8686-fc9a30933c23.png) ``` Caught exception on LargeHangingMortaredStoneSignObject while in NetObject ReceiveInitialState. BSON: { id: 5135 (int), view: (<Unknown View> 4687), components: [ (<Unknown View> 4688), (<Unknown View> 4690) ], auth: 1 (int), pos: (445, 63, 599) (Vector3), rot: (0,-0,7071068,0,0,7071068) (Quaternion), type: 'LargeHangingMortaredStoneSignObject' (string) } ``` [Player.log](https://github.com/StrangeLoopGames/EcoIssues/files/5443656/Player.log) We shouldn't have this exception, it should be processed
priority
exception in view notifysystem exception found tag with invalid parameters step to reproduce i always forgot how to add right icon on signs so i write a wrong string i forgot to use item so i wrote instead after that i have exception exception in view notifysystem exception found tag with invalid parameters requires one of item or name found ecoicon at ecotagparser processecoiconmatch system collections generic dictionary paramnamestovalues system string content system collections generic dictionary parentattrs in at eco shared utils tagparser customtagprocessor invoke system collections generic dictionary paramnamestovalues system string content system collections generic dictionary parentattrs in at eco shared utils tagparser opentagmatch close system string raw eco shared utils tagparser opentagmatch parent system collections generic dictionary customprocessors system boolean autoclosetags in at eco shared utils tagparser resolveclosing system string closingname system string textbefore system string raw system text stringbuilder result system boolean autoclosetags in at eco shared utils tagparser parseinternal system string text system boolean autoclosetags system text stringbuilder result in at eco shared utils tagparser parse system string text system boolean autoclosetags in at ecotagparser parse system string text system boolean normalizetags system boolean autoclosetags in at sign updatetext in at unityengine androidjavarunnable invoke in at eco shared view view notifychanged system string propname in at eco shared view viewmanager receiveviewupdate eco shared serialization bsonarray updates in at clientpackethandler receivewhile eco shared networking networkclient client timelimit timelimit in at networkmanager ontimelimitedupdate timelimit timelimit in at system action invoke t obj in at frameplanner plannergroup onupdate in at frameplanner frameplannersystem onupdate in at unity entities componentsystem update in at unity entities componentsystemgroup updateallsystems in at unity entities componentsystem update in at unityengine androidjavarunnable invoke in disconnect and connect again i have another exception and sign is using text template caught exception on largehangingmortaredstonesignobject while in netobject receiveinitialstate bson id int view components auth int pos rot quaternion type largehangingmortaredstonesignobject string we shouldn t have this exception it should be processed
1
142,174
5,460,030,978
IssuesEvent
2017-03-09 03:05:53
CS2103JAN2017-T16-B4/main
https://api.github.com/repos/CS2103JAN2017-T16-B4/main
opened
As a user I want to mark the task as done/require follow-up
medium priority user
So that I can have an up-to-date record of the tasks.
1.0
As a user I want to mark the task as done/require follow-up - So that I can have an up-to-date record of the tasks.
priority
as a user i want to mark the task as done require follow up so that i can have an up to date record of the tasks
1
516,253
14,978,180,775
IssuesEvent
2021-01-28 10:29:09
hochschule-darmstadt-UAS/ddk-artbrowser
https://api.github.com/repos/hochschule-darmstadt-UAS/ddk-artbrowser
opened
Iconclass rest call fails if URL is too long
frontend medium priority
**Describe the bug** To fetch the data of multipe iconographies from `iconclass.org/` a single URL/string is created. This URL consists of all child iconographies which have to be fetched. `http://www.iconclass.org/json/?notation=11H(...)(%2B0)&notation=11H......` Some iconographies have a huge amout of child iconographies (e.g. 200). In this case a huge URL is created which the iconclass-api cannot handle since the URL is way too long (limit: 5209 characters). As a result the child iconography-hierachy is not displayed. If you directly access the iconclass api with the huge URL you get the following error: `Bad Request Request Line is too large (5209 > 4094)` **To Reproduce** Go to `/iconography/11H%28...%29` The child iconography hierachy ist not displayed **Expected behavior** The child iconography hierachy ist not displayed **Possible fix** To bypass this problem you could make two REST calls to reduce the size of a request URL. To do this you might want to split the child-array of an iconography.
1.0
Iconclass rest call fails if URL is too long - **Describe the bug** To fetch the data of multipe iconographies from `iconclass.org/` a single URL/string is created. This URL consists of all child iconographies which have to be fetched. `http://www.iconclass.org/json/?notation=11H(...)(%2B0)&notation=11H......` Some iconographies have a huge amout of child iconographies (e.g. 200). In this case a huge URL is created which the iconclass-api cannot handle since the URL is way too long (limit: 5209 characters). As a result the child iconography-hierachy is not displayed. If you directly access the iconclass api with the huge URL you get the following error: `Bad Request Request Line is too large (5209 > 4094)` **To Reproduce** Go to `/iconography/11H%28...%29` The child iconography hierachy ist not displayed **Expected behavior** The child iconography hierachy ist not displayed **Possible fix** To bypass this problem you could make two REST calls to reduce the size of a request URL. To do this you might want to split the child-array of an iconography.
priority
iconclass rest call fails if url is too long describe the bug to fetch the data of multipe iconographies from iconclass org a single url string is created this url consists of all child iconographies which have to be fetched some iconographies have a huge amout of child iconographies e g in this case a huge url is created which the iconclass api cannot handle since the url is way too long limit characters as a result the child iconography hierachy is not displayed if you directly access the iconclass api with the huge url you get the following error bad request request line is too large to reproduce go to iconography the child iconography hierachy ist not displayed expected behavior the child iconography hierachy ist not displayed possible fix to bypass this problem you could make two rest calls to reduce the size of a request url to do this you might want to split the child array of an iconography
1
774,703
27,207,330,691
IssuesEvent
2023-02-20 14:04:02
wasmerio/wasmer
https://api.github.com/repos/wasmerio/wasmer
opened
WASIX: Nested Path Resolution Fails
priority-medium wasix
The #3422 WASIX implementation skips the `path_rename` WAST test due to failures in nested path resolution. This needs to be fixed. Problem is hard to isolate and only occurs in the `sub/` rename test in `path_rename.rs`.
1.0
WASIX: Nested Path Resolution Fails - The #3422 WASIX implementation skips the `path_rename` WAST test due to failures in nested path resolution. This needs to be fixed. Problem is hard to isolate and only occurs in the `sub/` rename test in `path_rename.rs`.
priority
wasix nested path resolution fails the wasix implementation skips the path rename wast test due to failures in nested path resolution this needs to be fixed problem is hard to isolate and only occurs in the sub rename test in path rename rs
1
30,023
2,722,132,350
IssuesEvent
2015-04-14 00:15:30
CruxFramework/crux-smart-faces
https://api.github.com/repos/CruxFramework/crux-smart-faces
closed
swapViewContainer do not accept changing animations
bug imported Milestone-M14-C4 Priority-Medium TargetVersion-5.3.0
_From [samuel@cruxframework.org](https://code.google.com/u/samuel@cruxframework.org/) on February 24, 2015 14:58:44_ If I try do swap the animation from swapViewContainer it will not work. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=602_
1.0
swapViewContainer do not accept changing animations - _From [samuel@cruxframework.org](https://code.google.com/u/samuel@cruxframework.org/) on February 24, 2015 14:58:44_ If I try do swap the animation from swapViewContainer it will not work. _Original issue: http://code.google.com/p/crux-framework/issues/detail?id=602_
priority
swapviewcontainer do not accept changing animations from on february if i try do swap the animation from swapviewcontainer it will not work original issue
1
736,504
25,476,441,671
IssuesEvent
2022-11-25 14:58:10
rstudio/gt
https://api.github.com/repos/rstudio/gt
closed
Make `tab_footnote()` more forgiving (better defaults and error messages)
Difficulty: [1] Novice Effort: [2] Medium Priority: [2] Medium Type: ★ Enhancement
If nothing is supplied for `locations` in `tab_footnote()` we get an uninformative error message. Perhaps defaults could be modified as well to provide something useful. Issue originally discovered and suggested by @tareefk.
1.0
Make `tab_footnote()` more forgiving (better defaults and error messages) - If nothing is supplied for `locations` in `tab_footnote()` we get an uninformative error message. Perhaps defaults could be modified as well to provide something useful. Issue originally discovered and suggested by @tareefk.
priority
make tab footnote more forgiving better defaults and error messages if nothing is supplied for locations in tab footnote we get an uninformative error message perhaps defaults could be modified as well to provide something useful issue originally discovered and suggested by tareefk
1
414,388
12,102,779,832
IssuesEvent
2020-04-20 17:15:39
clearlinux/mixer-tools
https://api.github.com/repos/clearlinux/mixer-tools
closed
MCA incompatible with mixes generated with --no-publish
bug medium-priority
Mixes built with the --no-publish flag do not produce files for the latest version in each format (update/www/version/format1/latest) which is currently required by MCA. This file is used by MCA to determine whether the version in the comparison is a +10. Mixer needs to deprecate the --no-publish flag or add support to MCA to handle mixes built with the --no-publish flag.
1.0
MCA incompatible with mixes generated with --no-publish - Mixes built with the --no-publish flag do not produce files for the latest version in each format (update/www/version/format1/latest) which is currently required by MCA. This file is used by MCA to determine whether the version in the comparison is a +10. Mixer needs to deprecate the --no-publish flag or add support to MCA to handle mixes built with the --no-publish flag.
priority
mca incompatible with mixes generated with no publish mixes built with the no publish flag do not produce files for the latest version in each format update www version latest which is currently required by mca this file is used by mca to determine whether the version in the comparison is a mixer needs to deprecate the no publish flag or add support to mca to handle mixes built with the no publish flag
1
26,434
2,684,494,275
IssuesEvent
2015-03-29 01:37:45
gtcasl/gpuocelot
https://api.github.com/repos/gtcasl/gpuocelot
closed
memoryChecker reports bad global memory access
bug imported Priority-Medium
_From [meaner...@gmail.com](https://code.google.com/u/117183860600220159184/) on August 04, 2010 00:21:23_ What steps will reproduce the problem? 1. allocate device memory 2. attempt to access the allocated memory within a kernel What is the expected output? What do you see instead? I expect the program to succeed with no output. Instead, the memory checker claims one of my kernels is accessing memory that is not allocated or mapped. However, it clearly is allocated, as its own list of device allocations shows it is within the fifth allocation: terminate called after throwing an instance of 'hydrazine::Exception' what(): [PC 26] [thread 0] [cta 0] ld.global.u8 &#37; r24 , [&#37; r23 + 0] - Global memory access 0xb79d0f is not within any allocated or mapped range. Nearby Device Allocations [0xa66fc0] - [0xa67020] (96 bytes) [0xa670a0] - [0xa674d8] (1080 bytes) [0xa67620] - [0xa67680] (96 bytes) [0xa67700] - [0xa67b38] (1080 bytes) [0xb79d00] - [0xb7bd00] (8192 bytes) [0xb7be20] - [0xb7de20] (8192 bytes) [0xb7df40] - [0xb7e740] (2048 bytes) [0xb7e860] - [0xb7f060] (2048 bytes) [0xb7f180] - [0xb7f980] (2048 bytes) [0xb7faa0] - [0xb802a0] (2048 bytes) [0xb803c0] - [0xb80bc0] (2048 bytes) [0xb80ce0] - [0xb814e0] (2048 bytes) [0xb83520] - [0xb85520] (8192 bytes) [0xb87660] - [0xb89660] (8192 bytes) [0xb89780] - [0xb8e780] (20480 bytes) [0xb8e8a0] - [0xb938a0] (20480 bytes) [0xb939c0] - [0xb989c0] (20480 bytes) [0xb98ae0] - [0xb9dae0] (20480 bytes) [0xb9dc00] - [0xba2c00] (20480 bytes) [0xba2d20] - [0xba7d20] (20480 bytes) [0xba7e40] - [0xbace40] (20480 bytes) [0xbacf60] - [0xbb1f60] (20480 bytes) [0xbb2080] - [0xbb2880] (2048 bytes) [0xbb29a0] - [0xbb31a0] (2048 bytes) [0xbb32c0] - [0xbb3ac0] (2048 bytes) [0xbb3be0] - [0xbb43e0] (2048 bytes) What version of the product are you using? On what operating system? -Ocelot version: SVN r634 -compiled with gcc 4.5 with the macro to disable c++0x feature in KernelEntry.cpp as described in http://groups.google.com/group/gpuocelot/msg/55339e218bc5bdaa?pli=1 -modifications to type checker described in http://groups.google.com/group/gpuocelot/browse_thread/thread/186dcb0bee10ed8b Cuda version: 2.3 Please provide any additional information below. _Original issue: http://code.google.com/p/gpuocelot/issues/detail?id=43_
1.0
memoryChecker reports bad global memory access - _From [meaner...@gmail.com](https://code.google.com/u/117183860600220159184/) on August 04, 2010 00:21:23_ What steps will reproduce the problem? 1. allocate device memory 2. attempt to access the allocated memory within a kernel What is the expected output? What do you see instead? I expect the program to succeed with no output. Instead, the memory checker claims one of my kernels is accessing memory that is not allocated or mapped. However, it clearly is allocated, as its own list of device allocations shows it is within the fifth allocation: terminate called after throwing an instance of 'hydrazine::Exception' what(): [PC 26] [thread 0] [cta 0] ld.global.u8 &#37; r24 , [&#37; r23 + 0] - Global memory access 0xb79d0f is not within any allocated or mapped range. Nearby Device Allocations [0xa66fc0] - [0xa67020] (96 bytes) [0xa670a0] - [0xa674d8] (1080 bytes) [0xa67620] - [0xa67680] (96 bytes) [0xa67700] - [0xa67b38] (1080 bytes) [0xb79d00] - [0xb7bd00] (8192 bytes) [0xb7be20] - [0xb7de20] (8192 bytes) [0xb7df40] - [0xb7e740] (2048 bytes) [0xb7e860] - [0xb7f060] (2048 bytes) [0xb7f180] - [0xb7f980] (2048 bytes) [0xb7faa0] - [0xb802a0] (2048 bytes) [0xb803c0] - [0xb80bc0] (2048 bytes) [0xb80ce0] - [0xb814e0] (2048 bytes) [0xb83520] - [0xb85520] (8192 bytes) [0xb87660] - [0xb89660] (8192 bytes) [0xb89780] - [0xb8e780] (20480 bytes) [0xb8e8a0] - [0xb938a0] (20480 bytes) [0xb939c0] - [0xb989c0] (20480 bytes) [0xb98ae0] - [0xb9dae0] (20480 bytes) [0xb9dc00] - [0xba2c00] (20480 bytes) [0xba2d20] - [0xba7d20] (20480 bytes) [0xba7e40] - [0xbace40] (20480 bytes) [0xbacf60] - [0xbb1f60] (20480 bytes) [0xbb2080] - [0xbb2880] (2048 bytes) [0xbb29a0] - [0xbb31a0] (2048 bytes) [0xbb32c0] - [0xbb3ac0] (2048 bytes) [0xbb3be0] - [0xbb43e0] (2048 bytes) What version of the product are you using? On what operating system? -Ocelot version: SVN r634 -compiled with gcc 4.5 with the macro to disable c++0x feature in KernelEntry.cpp as described in http://groups.google.com/group/gpuocelot/msg/55339e218bc5bdaa?pli=1 -modifications to type checker described in http://groups.google.com/group/gpuocelot/browse_thread/thread/186dcb0bee10ed8b Cuda version: 2.3 Please provide any additional information below. _Original issue: http://code.google.com/p/gpuocelot/issues/detail?id=43_
priority
memorychecker reports bad global memory access from on august what steps will reproduce the problem allocate device memory attempt to access the allocated memory within a kernel what is the expected output what do you see instead i expect the program to succeed with no output instead the memory checker claims one of my kernels is accessing memory that is not allocated or mapped however it clearly is allocated as its own list of device allocations shows it is within the fifth allocation terminate called after throwing an instance of hydrazine exception what ld global global memory access is not within any allocated or mapped range nearby device allocations bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes bytes what version of the product are you using on what operating system ocelot version svn compiled with gcc with the macro to disable c feature in kernelentry cpp as described in modifications to type checker described in cuda version please provide any additional information below original issue
1
151,499
5,823,349,146
IssuesEvent
2017-05-07 00:06:05
NAT0P0TAT0/Genesis-modpack
https://api.github.com/repos/NAT0P0TAT0/Genesis-modpack
closed
septic music bug
bug Priority: Medium Septic sounds/music
custom septic music starts when the floor loads but reverts to normal music when you leave the starting room
1.0
septic music bug - custom septic music starts when the floor loads but reverts to normal music when you leave the starting room
priority
septic music bug custom septic music starts when the floor loads but reverts to normal music when you leave the starting room
1
648,520
21,188,146,295
IssuesEvent
2022-04-08 14:40:08
AY2122S2-CS2103T-W13-2/tp
https://api.github.com/repos/AY2122S2-CS2103T-W13-2/tp
closed
[PE-D] Inconsistent format of examples for list commands in user guide
type.Bug priority.MEDIUM action.MustFix
Inconsistent format of example given. In listing commands, most list commands have a screenshot of examples but some commands such as `list_assessment` is missing of screen shot and example ![image.png](https://raw.githubusercontent.com/kaiyichen/ped/main/files/aac91013-6a78-43ee-9311-f601b704fdcc.png) ![image.png](https://raw.githubusercontent.com/kaiyichen/ped/main/files/dcf0d39c-e277-4285-a234-7e90a0855ada.png) <!--session: 1648792972720-065db0ad-573b-42f6-a53f-a171483af3b3--> <!--Version: Web v3.4.2--> ------------- Labels: `type.DocumentationBug` `severity.VeryLow` original: kaiyichen/ped#7
1.0
[PE-D] Inconsistent format of examples for list commands in user guide - Inconsistent format of example given. In listing commands, most list commands have a screenshot of examples but some commands such as `list_assessment` is missing of screen shot and example ![image.png](https://raw.githubusercontent.com/kaiyichen/ped/main/files/aac91013-6a78-43ee-9311-f601b704fdcc.png) ![image.png](https://raw.githubusercontent.com/kaiyichen/ped/main/files/dcf0d39c-e277-4285-a234-7e90a0855ada.png) <!--session: 1648792972720-065db0ad-573b-42f6-a53f-a171483af3b3--> <!--Version: Web v3.4.2--> ------------- Labels: `type.DocumentationBug` `severity.VeryLow` original: kaiyichen/ped#7
priority
inconsistent format of examples for list commands in user guide inconsistent format of example given in listing commands most list commands have a screenshot of examples but some commands such as list assessment is missing of screen shot and example labels type documentationbug severity verylow original kaiyichen ped
1
7,505
2,602,956,938
IssuesEvent
2015-02-24 13:08:55
cs2103jan2015-f13-4j/main
https://api.github.com/repos/cs2103jan2015-f13-4j/main
opened
A user can sort tasks based on certain criteria
priority.medium type.story
A user can sort tasks based on certain criteria so that he/she can read it easily
1.0
A user can sort tasks based on certain criteria - A user can sort tasks based on certain criteria so that he/she can read it easily
priority
a user can sort tasks based on certain criteria a user can sort tasks based on certain criteria so that he she can read it easily
1
159,090
6,040,492,030
IssuesEvent
2017-06-10 14:54:58
graphcool/console
https://api.github.com/repos/graphcool/console
closed
Algolia warning is confusing to users unfamiliar with Algolia
area/integrations priority/medium UX
> on UX of that popup: As a user never worked with the integration: I really have no idea what that "6 Operations" means. So the message is not very usefull at all. Also it make me feel doing something wrong while I was doing fine.
1.0
Algolia warning is confusing to users unfamiliar with Algolia - > on UX of that popup: As a user never worked with the integration: I really have no idea what that "6 Operations" means. So the message is not very usefull at all. Also it make me feel doing something wrong while I was doing fine.
priority
algolia warning is confusing to users unfamiliar with algolia on ux of that popup as a user never worked with the integration i really have no idea what that operations means so the message is not very usefull at all also it make me feel doing something wrong while i was doing fine
1
683,495
23,384,477,465
IssuesEvent
2022-08-11 12:39:13
pvs-hd-tea/PyTypes
https://api.github.com/repos/pvs-hd-tea/PyTypes
closed
Name unifiers in config file to be referenced from command line
Workflow Feature Request Enhancement Medium Priority
```toml [pytypes] project = "PyTypes" [[restrictive_subtype]] kind = "subtype" venv_path = "./.venv" only_replace_if_base_was_traced = true [[relaxed_subtype]] kind = "subtype" venv_path = "./.venv" only_replace_if_base_was_traced = false [[deduplicate]] kind = "dedup" ``` then on the typegen-cli: ```bash python main.py -p $PROJ_PATH --unifiers deduplicate,relaxed_subtype ```
1.0
Name unifiers in config file to be referenced from command line - ```toml [pytypes] project = "PyTypes" [[restrictive_subtype]] kind = "subtype" venv_path = "./.venv" only_replace_if_base_was_traced = true [[relaxed_subtype]] kind = "subtype" venv_path = "./.venv" only_replace_if_base_was_traced = false [[deduplicate]] kind = "dedup" ``` then on the typegen-cli: ```bash python main.py -p $PROJ_PATH --unifiers deduplicate,relaxed_subtype ```
priority
name unifiers in config file to be referenced from command line toml project pytypes kind subtype venv path venv only replace if base was traced true kind subtype venv path venv only replace if base was traced false kind dedup then on the typegen cli bash python main py p proj path unifiers deduplicate relaxed subtype
1
553,495
16,372,952,241
IssuesEvent
2021-05-15 14:18:41
SteamedHams722/automatic-octopus
https://api.github.com/repos/SteamedHams722/automatic-octopus
opened
Remove CSV file from responses.py
Medium Priority
Why This file creates a CSV file from the Google Sheets data so it can be loaded into the DB. However, it may make more sense to turn that dictionary data into a json and then load it into the DB instead of having this in between step. How - Remove the CSV file creation code - Replace it with code that turns the dictionary data into a Json object - Upload that into the db instead.
1.0
Remove CSV file from responses.py - Why This file creates a CSV file from the Google Sheets data so it can be loaded into the DB. However, it may make more sense to turn that dictionary data into a json and then load it into the DB instead of having this in between step. How - Remove the CSV file creation code - Replace it with code that turns the dictionary data into a Json object - Upload that into the db instead.
priority
remove csv file from responses py why this file creates a csv file from the google sheets data so it can be loaded into the db however it may make more sense to turn that dictionary data into a json and then load it into the db instead of having this in between step how remove the csv file creation code replace it with code that turns the dictionary data into a json object upload that into the db instead
1
691,912
23,716,154,292
IssuesEvent
2022-08-30 11:58:07
wp-media/wp-rocket
https://api.github.com/repos/wp-media/wp-rocket
closed
The cache is not preloaded after the CPCSS is regenerated
type: enhancement module: preload priority: medium needs: grooming module: critical path css
**Before submitting an issue please check that you’ve completed the following steps:** - Made sure you’re on the latest version ✅ - Used the search feature to ensure that the bug hasn’t been reported before ✅ **Describe the bug** After the Critical CSS is regenerated, and it successfully finishes, the preload is not triggered. **To Reproduce** Steps to reproduce the behavior: 1. Enable Preload 2. Click on **Regenerate Critical Path CSS** 2. Wait until it the generation finishes 3. Check the cache folder 4. The cache won't be regenerated **Expected behavior** The preload should be triggered after the CPCSS has been updated. **Additional context** Ticket: https://secure.helpscout.net/conversation/1446326041/245294?folderId=2683093 Slack convo: https://wp-media.slack.com/archives/C43T1AYMQ/p1618342744193000 **Backlog Grooming (for WP Media dev team use only)** - [ ] Reproduce the problem - [ ] Identify the root cause - [ ] Scope a solution - [ ] Estimate the effort
1.0
The cache is not preloaded after the CPCSS is regenerated - **Before submitting an issue please check that you’ve completed the following steps:** - Made sure you’re on the latest version ✅ - Used the search feature to ensure that the bug hasn’t been reported before ✅ **Describe the bug** After the Critical CSS is regenerated, and it successfully finishes, the preload is not triggered. **To Reproduce** Steps to reproduce the behavior: 1. Enable Preload 2. Click on **Regenerate Critical Path CSS** 2. Wait until it the generation finishes 3. Check the cache folder 4. The cache won't be regenerated **Expected behavior** The preload should be triggered after the CPCSS has been updated. **Additional context** Ticket: https://secure.helpscout.net/conversation/1446326041/245294?folderId=2683093 Slack convo: https://wp-media.slack.com/archives/C43T1AYMQ/p1618342744193000 **Backlog Grooming (for WP Media dev team use only)** - [ ] Reproduce the problem - [ ] Identify the root cause - [ ] Scope a solution - [ ] Estimate the effort
priority
the cache is not preloaded after the cpcss is regenerated before submitting an issue please check that you’ve completed the following steps made sure you’re on the latest version ✅ used the search feature to ensure that the bug hasn’t been reported before ✅ describe the bug after the critical css is regenerated and it successfully finishes the preload is not triggered to reproduce steps to reproduce the behavior enable preload click on regenerate critical path css wait until it the generation finishes check the cache folder the cache won t be regenerated expected behavior the preload should be triggered after the cpcss has been updated additional context ticket slack convo backlog grooming for wp media dev team use only reproduce the problem identify the root cause scope a solution estimate the effort
1
424,550
12,312,966,177
IssuesEvent
2020-05-12 14:40:05
luna/enso
https://api.github.com/repos/luna/enso
closed
Implement the Java FFI
Category: Compiler Category: RTS Change: Non-Breaking Difficulty: Core Contributor Priority: Medium Type: Enhancement
### Summary With a concrete design for the Java FFI (#685), all that remains is to implement the functionality and expose it to users. ### Value Users will be able to perform FFI with Java libraries. ### Specification - [ ] Extend the parser (if necessary) to support the determined surface syntax. - [ ] Extend `AstView` as needed to support the surface syntax for Java FFI. - [ ] Using the research and experimental code, connect up the reflection API to allow users to write Enso-level Java FFI. ### Acceptance Criteria & Test Cases - The runtime supports executing Java code via the FFI. - The surface syntax exposes this ability to the users. - The functionality and implementation is well documented. - The implementation is well tested, with both unit and integration tests.
1.0
Implement the Java FFI - ### Summary With a concrete design for the Java FFI (#685), all that remains is to implement the functionality and expose it to users. ### Value Users will be able to perform FFI with Java libraries. ### Specification - [ ] Extend the parser (if necessary) to support the determined surface syntax. - [ ] Extend `AstView` as needed to support the surface syntax for Java FFI. - [ ] Using the research and experimental code, connect up the reflection API to allow users to write Enso-level Java FFI. ### Acceptance Criteria & Test Cases - The runtime supports executing Java code via the FFI. - The surface syntax exposes this ability to the users. - The functionality and implementation is well documented. - The implementation is well tested, with both unit and integration tests.
priority
implement the java ffi summary with a concrete design for the java ffi all that remains is to implement the functionality and expose it to users value users will be able to perform ffi with java libraries specification extend the parser if necessary to support the determined surface syntax extend astview as needed to support the surface syntax for java ffi using the research and experimental code connect up the reflection api to allow users to write enso level java ffi acceptance criteria test cases the runtime supports executing java code via the ffi the surface syntax exposes this ability to the users the functionality and implementation is well documented the implementation is well tested with both unit and integration tests
1
606,682
18,767,462,492
IssuesEvent
2021-11-06 06:57:20
argosp/trialdash
https://api.github.com/repos/argosp/trialdash
closed
The dialog text when asking user if he wants to leave without changes
Priority Medium done
After the user changes the properties of an entity in a trial and tries to leave a dialog is opened: with the text "do you want to leave". Please change to the text "There are unsaved changes. Do you want to leave without saving the changes"? With the default is set on no.
1.0
The dialog text when asking user if he wants to leave without changes - After the user changes the properties of an entity in a trial and tries to leave a dialog is opened: with the text "do you want to leave". Please change to the text "There are unsaved changes. Do you want to leave without saving the changes"? With the default is set on no.
priority
the dialog text when asking user if he wants to leave without changes after the user changes the properties of an entity in a trial and tries to leave a dialog is opened with the text do you want to leave please change to the text there are unsaved changes do you want to leave without saving the changes with the default is set on no
1
303,341
9,305,806,078
IssuesEvent
2019-03-25 07:54:22
openbmc/openbmc-test-automation
https://api.github.com/repos/openbmc/openbmc-test-automation
closed
Network: MAC address tests validation scenarios
Priority Medium
MAC address tests validation scenarios 1. Configuration & verification of out of range MAC address 2. Configuration & verification of less byte MAC address 3. Configuration & verification of more byte MAC address
1.0
Network: MAC address tests validation scenarios - MAC address tests validation scenarios 1. Configuration & verification of out of range MAC address 2. Configuration & verification of less byte MAC address 3. Configuration & verification of more byte MAC address
priority
network mac address tests validation scenarios mac address tests validation scenarios configuration verification of out of range mac address configuration verification of less byte mac address configuration verification of more byte mac address
1
254,703
8,087,176,323
IssuesEvent
2018-08-09 00:05:09
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
closed
USER ISSUE: shops and other furniture disappearing
Medium Priority
**Version:** 0.7.4.5 beta **Steps to Reproduce:** placing an item in a players claim makes that item disappear. some placed objects have also disappeared. I attempted to place a carpenter table, but it was blocked. I placed it in a free space and it was invisible as well. **Expected behavior:** the objects should be visable and usable **Actual behavior:** objects have disappeared. a players store has disappeared and his offers are still appearing in the economy viewer. <details> <summary>Log File</summary>Initialize engine version: 2017.4.2f2 (52d9cb89b362) GfxDevice: creating device client; threaded=1 Direct3D: Version: Direct3D 11.0 [level 11.0] Renderer: NVIDIA GeForce GTX 750 Ti (ID=0x1380) Vendor: NVIDIA VRAM: 2007 MB Driver: 24.21.13.9764 Begin MonoManager ReloadAssembly - Completed reload, in 0.204 seconds <RI> Initializing input. <RI> Input initialized. <RI> Initialized touch support. UnloadTime: 1.143691 ms Setting up 3 worker threads for Enlighten. Thread -> id: 1790 -> priority: 1 Thread -> id: 22a8 -> priority: 1 Thread -> id: 1d6c -> priority: 1 The referenced script on this Behaviour (Game Object 'Camera') is missing! (Filename: Line: 1758) WARNING: Shader Unsupported: 'CalmWater/Calm Water [Double Sided]' - Pass 'FORWARDADD' has no vertex shader WARNING: Shader Unsupported: 'CalmWater/Calm Water [Double Sided]' - All passes removed Client version: 0.7.4.5 beta Tuesday, May 15, 2018 8:29 PM (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: PreLogin -> LoggedIn (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: LoggedIn -> ServerBrowser (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: ServerBrowser -> Connecting (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) The referenced script on this Behaviour is missing! (Filename: Line: 1515) The referenced script on this Behaviour (Game Object 'WorldObjects') is missing! (Filename: Line: 1758) Missing following objects: AirPumpObject, APGenObject, AtmosphereRegulatorObject, AtmosphereTesterObject, BigStorageChestObject, ButtonObject, GasGeneratorObject, LogicGateObject, SwitchObject (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: Connecting -> FadeAndClose (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Can not play a disabled audio source (Filename: Line: 707) Can not play a disabled audio source (Filename: Line: 707) Can not play a disabled audio source (Filename: Line: 707) Can not play a disabled audio source (Filename: Line: 707) Can not play a disabled audio source (Filename: Line: 707) </details>
1.0
USER ISSUE: shops and other furniture disappearing - **Version:** 0.7.4.5 beta **Steps to Reproduce:** placing an item in a players claim makes that item disappear. some placed objects have also disappeared. I attempted to place a carpenter table, but it was blocked. I placed it in a free space and it was invisible as well. **Expected behavior:** the objects should be visable and usable **Actual behavior:** objects have disappeared. a players store has disappeared and his offers are still appearing in the economy viewer. <details> <summary>Log File</summary>Initialize engine version: 2017.4.2f2 (52d9cb89b362) GfxDevice: creating device client; threaded=1 Direct3D: Version: Direct3D 11.0 [level 11.0] Renderer: NVIDIA GeForce GTX 750 Ti (ID=0x1380) Vendor: NVIDIA VRAM: 2007 MB Driver: 24.21.13.9764 Begin MonoManager ReloadAssembly - Completed reload, in 0.204 seconds <RI> Initializing input. <RI> Input initialized. <RI> Initialized touch support. UnloadTime: 1.143691 ms Setting up 3 worker threads for Enlighten. Thread -> id: 1790 -> priority: 1 Thread -> id: 22a8 -> priority: 1 Thread -> id: 1d6c -> priority: 1 The referenced script on this Behaviour (Game Object 'Camera') is missing! (Filename: Line: 1758) WARNING: Shader Unsupported: 'CalmWater/Calm Water [Double Sided]' - Pass 'FORWARDADD' has no vertex shader WARNING: Shader Unsupported: 'CalmWater/Calm Water [Double Sided]' - All passes removed Client version: 0.7.4.5 beta Tuesday, May 15, 2018 8:29 PM (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: PreLogin -> LoggedIn (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: LoggedIn -> ServerBrowser (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: ServerBrowser -> Connecting (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) The referenced script on this Behaviour is missing! (Filename: Line: 1515) The referenced script on this Behaviour (Game Object 'WorldObjects') is missing! (Filename: Line: 1758) Missing following objects: AirPumpObject, APGenObject, AtmosphereRegulatorObject, AtmosphereTesterObject, BigStorageChestObject, ButtonObject, GasGeneratorObject, LogicGateObject, SwitchObject (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Changing state: Connecting -> FadeAndClose (Filename: C:\buildslave\unity\build\artifacts/generated/common/runtime/DebugBindings.gen.cpp Line: 51) Can not play a disabled audio source (Filename: Line: 707) Can not play a disabled audio source (Filename: Line: 707) Can not play a disabled audio source (Filename: Line: 707) Can not play a disabled audio source (Filename: Line: 707) Can not play a disabled audio source (Filename: Line: 707) </details>
priority
user issue shops and other furniture disappearing version beta steps to reproduce placing an item in a players claim makes that item disappear some placed objects have also disappeared i attempted to place a carpenter table but it was blocked i placed it in a free space and it was invisible as well expected behavior the objects should be visable and usable actual behavior objects have disappeared a players store has disappeared and his offers are still appearing in the economy viewer log file initialize engine version gfxdevice creating device client threaded version renderer nvidia geforce gtx ti id vendor nvidia vram mb driver begin monomanager reloadassembly completed reload in seconds initializing input input initialized initialized touch support unloadtime ms setting up worker threads for enlighten thread id priority thread id priority thread id priority the referenced script on this behaviour game object camera is missing filename line warning shader unsupported calmwater calm water pass forwardadd has no vertex shader warning shader unsupported calmwater calm water all passes removed client version beta tuesday may pm filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state prelogin loggedin filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state loggedin serverbrowser filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state serverbrowser connecting filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line the referenced script on this behaviour is missing filename line the referenced script on this behaviour game object worldobjects is missing filename line missing following objects airpumpobject apgenobject atmosphereregulatorobject atmospheretesterobject bigstoragechestobject buttonobject gasgeneratorobject logicgateobject switchobject filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line changing state connecting fadeandclose filename c buildslave unity build artifacts generated common runtime debugbindings gen cpp line can not play a disabled audio source filename line can not play a disabled audio source filename line can not play a disabled audio source filename line can not play a disabled audio source filename line can not play a disabled audio source filename line
1
132,525
5,187,567,485
IssuesEvent
2017-01-20 17:11:22
vmware/vic
https://api.github.com/repos/vmware/vic
closed
Research spike: Investigate CI work
priority/medium Spike
As a QE on the project, I need to understand what work needs to be done in order to advance the story on improving our CI infrastructure so that I can work on the issues in future sprints. The stories generated from this research spike need to be ready to work on in future sprints. CI Requirements ============= In priority: Reliable - Trust the results Available - CI During work hours Production Ready - Reliable storage, recreate environment easily Reporting - Trend Analysis Performance - <1hr to completion Scalable - Should handle Bursts Easy to Use - Job Control(inc cancel, start job, pipelining, specify bersion target) Monitoring - Job feedback. Did I break something? System monitoring Publishing - Tagging
1.0
Research spike: Investigate CI work - As a QE on the project, I need to understand what work needs to be done in order to advance the story on improving our CI infrastructure so that I can work on the issues in future sprints. The stories generated from this research spike need to be ready to work on in future sprints. CI Requirements ============= In priority: Reliable - Trust the results Available - CI During work hours Production Ready - Reliable storage, recreate environment easily Reporting - Trend Analysis Performance - <1hr to completion Scalable - Should handle Bursts Easy to Use - Job Control(inc cancel, start job, pipelining, specify bersion target) Monitoring - Job feedback. Did I break something? System monitoring Publishing - Tagging
priority
research spike investigate ci work as a qe on the project i need to understand what work needs to be done in order to advance the story on improving our ci infrastructure so that i can work on the issues in future sprints the stories generated from this research spike need to be ready to work on in future sprints ci requirements in priority reliable trust the results available ci during work hours production ready reliable storage recreate environment easily reporting trend analysis performance to completion scalable should handle bursts easy to use job control inc cancel start job pipelining specify bersion target monitoring job feedback did i break something system monitoring publishing tagging
1
792,683
27,971,381,717
IssuesEvent
2023-03-25 03:37:29
simplexidev/sdevlibs
https://api.github.com/repos/simplexidev/sdevlibs
closed
Add `LibuiBindingGenerator` tool
Meta:GoodFirstIssue Platform:Any Priority:Medium Status:Available
This tool would generate bindings based on the header file located int \\ the root of the repository: `ui.h`.
1.0
Add `LibuiBindingGenerator` tool - This tool would generate bindings based on the header file located int \\ the root of the repository: `ui.h`.
priority
add libuibindinggenerator tool this tool would generate bindings based on the header file located int the root of the repository ui h
1
412,085
12,035,076,319
IssuesEvent
2020-04-13 17:13:40
ChainSafe/gossamer
https://api.github.com/repos/ChainSafe/gossamer
closed
cmd/gossamer: confirm reinitialize with prompt
Priority: 3 - Medium cmd
## Expected Behavior The user should receive a [Y/n] prompt to reinitialize a node if a node has already been initialized. ## Current Behavior We are warning the user that the node is being reinitialized without a confirmation prompt.
1.0
cmd/gossamer: confirm reinitialize with prompt - ## Expected Behavior The user should receive a [Y/n] prompt to reinitialize a node if a node has already been initialized. ## Current Behavior We are warning the user that the node is being reinitialized without a confirmation prompt.
priority
cmd gossamer confirm reinitialize with prompt expected behavior the user should receive a prompt to reinitialize a node if a node has already been initialized current behavior we are warning the user that the node is being reinitialized without a confirmation prompt
1
393,263
11,612,644,937
IssuesEvent
2020-02-26 09:21:09
elementary/installer
https://api.github.com/repos/elementary/installer
closed
Disable gala shortcuts
Priority: Medium Status: Confirmed
After the installer session shows up, you can create new wokspaces, cycle between them and execute any shortcut you want like Super+S, Super+A, Super+W etc. <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/49155122-disable-gala-shortcuts?utm_campaign=plugin&utm_content=tracker%2F46189108&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F46189108&utm_medium=issues&utm_source=github). </bountysource-plugin>
1.0
Disable gala shortcuts - After the installer session shows up, you can create new wokspaces, cycle between them and execute any shortcut you want like Super+S, Super+A, Super+W etc. <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/49155122-disable-gala-shortcuts?utm_campaign=plugin&utm_content=tracker%2F46189108&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F46189108&utm_medium=issues&utm_source=github). </bountysource-plugin>
priority
disable gala shortcuts after the installer session shows up you can create new wokspaces cycle between them and execute any shortcut you want like super s super a super w etc want to back this issue we accept bounties via
1
312,174
9,544,322,017
IssuesEvent
2019-05-01 13:52:25
BGWE/BoardgameWE
https://api.github.com/repos/BGWE/BoardgameWE
closed
When a user adds a Board Game to an Event, ask to add it to his/her library as well
component/ui priority/medium sev/improvement
Give the possibility to the user to add a Board Game to his/her library when adding it to an Event.
1.0
When a user adds a Board Game to an Event, ask to add it to his/her library as well - Give the possibility to the user to add a Board Game to his/her library when adding it to an Event.
priority
when a user adds a board game to an event ask to add it to his her library as well give the possibility to the user to add a board game to his her library when adding it to an event
1
805,444
29,520,176,034
IssuesEvent
2023-06-05 00:15:04
PediatricOpenTargets/ticket-tracker
https://api.github.com/repos/PediatricOpenTargets/ticket-tracker
closed
Add D3b warehouse table for BS_id mapping to study
medium priority
#### What data file(s) does this issue pertain to? histologies-base.tsv #### What release are you using? <!--You may want to check if the issue has been resolved in an updated release--> NA #### Put your question or report your issue here. We would like to add a table which contains all `BS_IDs` and `study_id`. This will be for internal use only, but would contain fine-grained information, including specific clinical trial numbers, and for PBTA, would either be `PBTA, PBTA-UPenn, PBTA-oligo, for ex., to be able to discern additional studies. cc @aadamk @nicholasvk this one is not as urgent, but would be nice to have soon so we can more easily discern what goes into the releases.
1.0
Add D3b warehouse table for BS_id mapping to study - #### What data file(s) does this issue pertain to? histologies-base.tsv #### What release are you using? <!--You may want to check if the issue has been resolved in an updated release--> NA #### Put your question or report your issue here. We would like to add a table which contains all `BS_IDs` and `study_id`. This will be for internal use only, but would contain fine-grained information, including specific clinical trial numbers, and for PBTA, would either be `PBTA, PBTA-UPenn, PBTA-oligo, for ex., to be able to discern additional studies. cc @aadamk @nicholasvk this one is not as urgent, but would be nice to have soon so we can more easily discern what goes into the releases.
priority
add warehouse table for bs id mapping to study what data file s does this issue pertain to histologies base tsv what release are you using na put your question or report your issue here we would like to add a table which contains all bs ids and study id this will be for internal use only but would contain fine grained information including specific clinical trial numbers and for pbta would either be pbta pbta upenn pbta oligo for ex to be able to discern additional studies cc aadamk nicholasvk this one is not as urgent but would be nice to have soon so we can more easily discern what goes into the releases
1
482,903
13,915,566,171
IssuesEvent
2020-10-21 00:59:57
syp7234/playerpiano
https://api.github.com/repos/syp7234/playerpiano
opened
Codebase Documentation
medium-priority
The code is in severe need of general code documentation. Issue may break apart into specific subsections as the code gets cleared up.
1.0
Codebase Documentation - The code is in severe need of general code documentation. Issue may break apart into specific subsections as the code gets cleared up.
priority
codebase documentation the code is in severe need of general code documentation issue may break apart into specific subsections as the code gets cleared up
1
16,676
2,615,121,173
IssuesEvent
2015-03-01 05:47:40
chrsmith/google-api-java-client
https://api.github.com/repos/chrsmith/google-api-java-client
opened
Google Analytics Data Export API sample (Android)
auto-migrated Priority-Medium Type-Sample
``` Which Google API and version (e.g. Google Calendar Data API version 2)? Google Analytics Data Export API v2 What format (e.g. JSON, Atom)? JSON or Atom What Authentation (e.g. OAuth, OAuth 2, Android, ClientLogin)? Android or OAuth Java environment (e.g. Java 6, Android 2.3, App Engine 1.4.2)? Java 6, Android 2+ External references, such as API reference guide? Please provide any additional information below. I'm trying to access Google Analytics data from an Android app using the AccountManager or OAuth. Thanks ``` Original issue reported on code.google.com by `mathieu.mea` on 11 Jul 2011 at 11:16
1.0
Google Analytics Data Export API sample (Android) - ``` Which Google API and version (e.g. Google Calendar Data API version 2)? Google Analytics Data Export API v2 What format (e.g. JSON, Atom)? JSON or Atom What Authentation (e.g. OAuth, OAuth 2, Android, ClientLogin)? Android or OAuth Java environment (e.g. Java 6, Android 2.3, App Engine 1.4.2)? Java 6, Android 2+ External references, such as API reference guide? Please provide any additional information below. I'm trying to access Google Analytics data from an Android app using the AccountManager or OAuth. Thanks ``` Original issue reported on code.google.com by `mathieu.mea` on 11 Jul 2011 at 11:16
priority
google analytics data export api sample android which google api and version e g google calendar data api version google analytics data export api what format e g json atom json or atom what authentation e g oauth oauth android clientlogin android or oauth java environment e g java android app engine java android external references such as api reference guide please provide any additional information below i m trying to access google analytics data from an android app using the accountmanager or oauth thanks original issue reported on code google com by mathieu mea on jul at
1
177,499
6,584,559,427
IssuesEvent
2017-09-13 10:41:20
gdgphilippines/devfest
https://api.github.com/repos/gdgphilippines/devfest
closed
app-header becomes hidden on window scroll (small device)
bug Priority Medium review
### Description **App-header** becomes hidden on window scroll in a small device because of the value of transform:translate3d ### Expected outcome app-header should **stay at the top** of the app-drawer ### Actual outcome app-header **becomes hidden** when you scroll the page before or after you open the app-drawer ### Live Demo N/A ### Steps to reproduce 1. Open the page in a web browser. 2. Open developers console 3. Click **Toggle Device Toolbar** 3. Set page to responsive with a **maximum** width of **700px** 4. Click the menu button 5. Close the sidebar 4. Scroll the page down to **what to expect** section 5. Click the menu button in header ### Browsers Affected - [ x] Chrome - [ x] Firefox
1.0
app-header becomes hidden on window scroll (small device) - ### Description **App-header** becomes hidden on window scroll in a small device because of the value of transform:translate3d ### Expected outcome app-header should **stay at the top** of the app-drawer ### Actual outcome app-header **becomes hidden** when you scroll the page before or after you open the app-drawer ### Live Demo N/A ### Steps to reproduce 1. Open the page in a web browser. 2. Open developers console 3. Click **Toggle Device Toolbar** 3. Set page to responsive with a **maximum** width of **700px** 4. Click the menu button 5. Close the sidebar 4. Scroll the page down to **what to expect** section 5. Click the menu button in header ### Browsers Affected - [ x] Chrome - [ x] Firefox
priority
app header becomes hidden on window scroll small device description app header becomes hidden on window scroll in a small device because of the value of transform expected outcome app header should stay at the top of the app drawer actual outcome app header becomes hidden when you scroll the page before or after you open the app drawer live demo n a steps to reproduce open the page in a web browser open developers console click toggle device toolbar set page to responsive with a maximum width of click the menu button close the sidebar scroll the page down to what to expect section click the menu button in header browsers affected chrome firefox
1
77,729
3,507,234,954
IssuesEvent
2016-01-08 12:04:41
OregonCore/OregonCore
https://api.github.com/repos/OregonCore/OregonCore
closed
Condition or Conditions? (BB #709)
Category: Database migrated Priority: Medium Type: Bug
This issue was migrated from bitbucket. **Original Reporter:** PadreWoW **Original Date:** 08.10.2014 07:38:27 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/709 <hr> sLog.outError("Spell %u has dummy effect/aura but don't have a record in spell_dummy_**conditions.** sLog.outError("Spell %u has SDC_BTM_NEEDS_SCRIPT_CHECK in bitMaskCondition (spell_dummy_**conditions**), if (QueryResult_AutoPtr result = WorldDatabase.PQuery("SELECT entry, effIndex, bitMaskCondition, condition0, data0, condition1, data1, condition2, data2, condition3, data3, condition4, data4 FROM spell_dummy_**condition** ORDER BY entry ASC")) -- Spell Dummy Conditions INSERT INTO spell_dummy_**conditions** VALUES Documentation for sql table spell_dummy_**condition** DROP TABLE IF EXISTS `spell_dummy_**condition**`; CREATE TABLE `spell_dummy_**condition**`
1.0
Condition or Conditions? (BB #709) - This issue was migrated from bitbucket. **Original Reporter:** PadreWoW **Original Date:** 08.10.2014 07:38:27 GMT+0000 **Original Priority:** major **Original Type:** bug **Original State:** resolved **Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/709 <hr> sLog.outError("Spell %u has dummy effect/aura but don't have a record in spell_dummy_**conditions.** sLog.outError("Spell %u has SDC_BTM_NEEDS_SCRIPT_CHECK in bitMaskCondition (spell_dummy_**conditions**), if (QueryResult_AutoPtr result = WorldDatabase.PQuery("SELECT entry, effIndex, bitMaskCondition, condition0, data0, condition1, data1, condition2, data2, condition3, data3, condition4, data4 FROM spell_dummy_**condition** ORDER BY entry ASC")) -- Spell Dummy Conditions INSERT INTO spell_dummy_**conditions** VALUES Documentation for sql table spell_dummy_**condition** DROP TABLE IF EXISTS `spell_dummy_**condition**`; CREATE TABLE `spell_dummy_**condition**`
priority
condition or conditions bb this issue was migrated from bitbucket original reporter padrewow original date gmt original priority major original type bug original state resolved direct link slog outerror spell u has dummy effect aura but don t have a record in spell dummy conditions slog outerror spell u has sdc btm needs script check in bitmaskcondition spell dummy conditions if queryresult autoptr result worlddatabase pquery select entry effindex bitmaskcondition from spell dummy condition order by entry asc spell dummy conditions insert into spell dummy conditions values documentation for sql table spell dummy condition drop table if exists spell dummy condition create table spell dummy condition
1
796,937
28,132,832,647
IssuesEvent
2023-04-01 03:13:17
AY2223S2-CS2103T-F12-3/tp
https://api.github.com/repos/AY2223S2-CS2103T-F12-3/tp
opened
Events created with `r/none` update timestamps erroneously
priority.High type.Bug severity.Medium
Steps to reproduce: 1. Create an event with `r/none` a. `addevent d/Catchup with John s/2023-03-30 1600 e/2023-03-30 1800 r/none` b. Note how the event is created at the current time instead 2. Use `addevent/editevent/delevent` on any other event a. Note how the event created in step 1. has its timing updated to the current time Other observations: * Using `editevent` on the affected event fixes the erroneous timing Mentioned in: * #241 * #242 * #244
1.0
Events created with `r/none` update timestamps erroneously - Steps to reproduce: 1. Create an event with `r/none` a. `addevent d/Catchup with John s/2023-03-30 1600 e/2023-03-30 1800 r/none` b. Note how the event is created at the current time instead 2. Use `addevent/editevent/delevent` on any other event a. Note how the event created in step 1. has its timing updated to the current time Other observations: * Using `editevent` on the affected event fixes the erroneous timing Mentioned in: * #241 * #242 * #244
priority
events created with r none update timestamps erroneously steps to reproduce create an event with r none a addevent d catchup with john s e r none b note how the event is created at the current time instead use addevent editevent delevent on any other event a note how the event created in step has its timing updated to the current time other observations using editevent on the affected event fixes the erroneous timing mentioned in
1
72,647
3,389,464,022
IssuesEvent
2015-11-30 02:21:16
crutchcorn/stagger
https://api.github.com/repos/crutchcorn/stagger
closed
Add a high-level tagging API with human-readable names for the most important frame types
enhancement Priority Medium
``` - Title - Artist - Album - Track number - Release date - Genre - Composer - Disk number - Grouping - Comments - Cover artwork This could be easily done by providing a bunch of extra tag methods (or properties). ``` Original issue reported on code.google.com by `Karoly.Lorentey` on 24 Jun 2009 at 11:27
1.0
Add a high-level tagging API with human-readable names for the most important frame types - ``` - Title - Artist - Album - Track number - Release date - Genre - Composer - Disk number - Grouping - Comments - Cover artwork This could be easily done by providing a bunch of extra tag methods (or properties). ``` Original issue reported on code.google.com by `Karoly.Lorentey` on 24 Jun 2009 at 11:27
priority
add a high level tagging api with human readable names for the most important frame types title artist album track number release date genre composer disk number grouping comments cover artwork this could be easily done by providing a bunch of extra tag methods or properties original issue reported on code google com by karoly lorentey on jun at
1
829,534
31,882,255,981
IssuesEvent
2023-09-16 14:15:56
uli/dragonbasic
https://api.github.com/repos/uli/dragonbasic
closed
Setting a string to be empty causes MF to generate a segmentation fault.
Bug Severity:High Priority:Medium
Issue found using the latest version of Dragon Basic under Linux (Commit ID: d2ce042366068083a5fe3089873a22221fffbc26) Setting a string to be empty (Ie. "") causes MF to generate a segmentation fault. This functionality is important since users may want to append values to a new string, but cannot do so from an empty one since MF does not allow empty strings to be defined. One example of this kind of use is padding a string with spaces to centre text with equal spaces on ether side of it. This bug is likely related to the issue "Checking the condition of a string to be empty causes MF to generate a segmentation fault." (https://github.com/uli/dragonbasic/issues/4) Partial workaround: Figure out what the first character of your string is and initialise it with that value instead of (""). This works for tasks like padding strings, but does not help when you want to make a string appear uninitialised, or truly empty with no value.
1.0
Setting a string to be empty causes MF to generate a segmentation fault. - Issue found using the latest version of Dragon Basic under Linux (Commit ID: d2ce042366068083a5fe3089873a22221fffbc26) Setting a string to be empty (Ie. "") causes MF to generate a segmentation fault. This functionality is important since users may want to append values to a new string, but cannot do so from an empty one since MF does not allow empty strings to be defined. One example of this kind of use is padding a string with spaces to centre text with equal spaces on ether side of it. This bug is likely related to the issue "Checking the condition of a string to be empty causes MF to generate a segmentation fault." (https://github.com/uli/dragonbasic/issues/4) Partial workaround: Figure out what the first character of your string is and initialise it with that value instead of (""). This works for tasks like padding strings, but does not help when you want to make a string appear uninitialised, or truly empty with no value.
priority
setting a string to be empty causes mf to generate a segmentation fault issue found using the latest version of dragon basic under linux commit id setting a string to be empty ie causes mf to generate a segmentation fault this functionality is important since users may want to append values to a new string but cannot do so from an empty one since mf does not allow empty strings to be defined one example of this kind of use is padding a string with spaces to centre text with equal spaces on ether side of it this bug is likely related to the issue checking the condition of a string to be empty causes mf to generate a segmentation fault partial workaround figure out what the first character of your string is and initialise it with that value instead of this works for tasks like padding strings but does not help when you want to make a string appear uninitialised or truly empty with no value
1
418,166
12,194,307,847
IssuesEvent
2020-04-29 15:37:11
CERT-Polska/mquery
https://api.github.com/repos/CERT-Polska/mquery
closed
Add pagination or lazy-load to results table
level:medium priority:high status:up for grabs zone:frontend
**Description** When executing a query with many results, the interface will show all the matches in the results table. The table can be with tens of thousands of results for a big dataset, which will make the page slow to response. I suggest implementing pagination (the xhr requests are already fetching 50 at a time) or a [lazy-loading](https://en.wikipedia.org/wiki/Lazy_loading)
1.0
Add pagination or lazy-load to results table - **Description** When executing a query with many results, the interface will show all the matches in the results table. The table can be with tens of thousands of results for a big dataset, which will make the page slow to response. I suggest implementing pagination (the xhr requests are already fetching 50 at a time) or a [lazy-loading](https://en.wikipedia.org/wiki/Lazy_loading)
priority
add pagination or lazy load to results table description when executing a query with many results the interface will show all the matches in the results table the table can be with tens of thousands of results for a big dataset which will make the page slow to response i suggest implementing pagination the xhr requests are already fetching at a time or a
1
290,870
8,908,887,333
IssuesEvent
2019-01-18 03:04:46
openshiftio/openshift.io
https://api.github.com/repos/openshiftio/openshift.io
closed
UI calls incorrect build tool detector URL
SEV3-medium area/app-wizard area/launcher env/prod-preview priority/P4 team/ui type/bug
When the UI tries to detect the build tool , it fails to do so because the request returns a 404 ``` someapp2:1 Failed to load https://detector.api.prod-preview.openshift.io//api/detect/build/https%3A%2F%2Fgithub.com%2Fsbose78%2Fspace-for-ingress: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://prod-preview.openshift.io' is therefore not allowed access. The response had HTTP status code 404. ``` The URL called needs to be `https://detector.api.prod-preview.openshift.io/api/detect/build/https%3A%2F%2Fgithub.com%2Fsbose78%2Fspace-for-ingress` instead of `https://detector.api.prod-preview.openshift.io//api/detect/build/https%3A%2F%2Fgithub.com%2Fsbose78%2Fspace-for-ingress`
1.0
UI calls incorrect build tool detector URL - When the UI tries to detect the build tool , it fails to do so because the request returns a 404 ``` someapp2:1 Failed to load https://detector.api.prod-preview.openshift.io//api/detect/build/https%3A%2F%2Fgithub.com%2Fsbose78%2Fspace-for-ingress: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://prod-preview.openshift.io' is therefore not allowed access. The response had HTTP status code 404. ``` The URL called needs to be `https://detector.api.prod-preview.openshift.io/api/detect/build/https%3A%2F%2Fgithub.com%2Fsbose78%2Fspace-for-ingress` instead of `https://detector.api.prod-preview.openshift.io//api/detect/build/https%3A%2F%2Fgithub.com%2Fsbose78%2Fspace-for-ingress`
priority
ui calls incorrect build tool detector url when the ui tries to detect the build tool it fails to do so because the request returns a failed to load response to preflight request doesn t pass access control check no access control allow origin header is present on the requested resource origin is therefore not allowed access the response had http status code the url called needs to be instead of
1
439,708
12,685,523,139
IssuesEvent
2020-06-20 05:02:39
bluenumberfoundation/humanid-ios-sdk
https://api.github.com/repos/bluenumberfoundation/humanid-ios-sdk
closed
User convenience - enter phone number screen & Default country
enhancement priority: medium
What: "Enter phone number" screen is not optimized for a great user experience. Solution: (1) The keyboard should open automatically (2) There should be a blinking cursor in the phone number field(see image) in the moment the user reaches the page already. (3) [see image] The field should have a default text (in grey?) "Enter Phone Number" before user starts typing (4) Optional: Gray out "Enter" button before user starts typing (5) The country should default to the country the user is in/registered. **If we can't recognize that, it should default to the U.S.A.** [Important!] (6) [see image] Select the country should not use the default iOS selection 'wheel' - it's not nice to use. Instead should be similar to Android version, with search function. Why/KPI: Conversion rate -- Re: (3) ![image](https://user-images.githubusercontent.com/46710651/84575732-87422e00-ad7d-11ea-914a-a2a80aaaedef.png) --- Re (6): ![image](https://user-images.githubusercontent.com/46710651/84575796-f1f36980-ad7d-11ea-8654-b47e54f56750.png) -- Version 1.1.1
1.0
User convenience - enter phone number screen & Default country - What: "Enter phone number" screen is not optimized for a great user experience. Solution: (1) The keyboard should open automatically (2) There should be a blinking cursor in the phone number field(see image) in the moment the user reaches the page already. (3) [see image] The field should have a default text (in grey?) "Enter Phone Number" before user starts typing (4) Optional: Gray out "Enter" button before user starts typing (5) The country should default to the country the user is in/registered. **If we can't recognize that, it should default to the U.S.A.** [Important!] (6) [see image] Select the country should not use the default iOS selection 'wheel' - it's not nice to use. Instead should be similar to Android version, with search function. Why/KPI: Conversion rate -- Re: (3) ![image](https://user-images.githubusercontent.com/46710651/84575732-87422e00-ad7d-11ea-914a-a2a80aaaedef.png) --- Re (6): ![image](https://user-images.githubusercontent.com/46710651/84575796-f1f36980-ad7d-11ea-8654-b47e54f56750.png) -- Version 1.1.1
priority
user convenience enter phone number screen default country what enter phone number screen is not optimized for a great user experience solution the keyboard should open automatically there should be a blinking cursor in the phone number field see image in the moment the user reaches the page already the field should have a default text in grey enter phone number before user starts typing optional gray out enter button before user starts typing the country should default to the country the user is in registered if we can t recognize that it should default to the u s a select the country should not use the default ios selection wheel it s not nice to use instead should be similar to android version with search function why kpi conversion rate re re version
1
98,702
4,030,341,143
IssuesEvent
2016-05-18 14:00:05
neviko/Diff-sign-project
https://api.github.com/repos/neviko/Diff-sign-project
closed
move the app to angular bootstrap
0 - Backlog point: 4 priority: medium
what Rapha found in the class the angular bootstrap. @raphym
1.0
move the app to angular bootstrap - what Rapha found in the class the angular bootstrap. @raphym
priority
move the app to angular bootstrap what rapha found in the class the angular bootstrap raphym
1
546,432
16,012,368,337
IssuesEvent
2021-04-20 12:18:16
canonical-web-and-design/vanilla-framework
https://api.github.com/repos/canonical-web-and-design/vanilla-framework
closed
Tidy up spacing on p-table--mobile-card
Priority: Medium WG: Validated
## Pattern to amend `p-table--mobile-card ` ## Visual How it currently looks like: <img width="684" alt="Screenshot 2020-02-06 at 15 21 33" src="https://user-images.githubusercontent.com/36884067/73951163-0ec1f100-48f5-11ea-8dca-c10923ee125e.png"> My proposal: <img width="1153" alt="Screenshot 2020-02-06 at 15 23 29" src="https://user-images.githubusercontent.com/36884067/73951187-16819580-48f5-11ea-99d7-811e1f58b0da.png"> ## Context Visually I don't think it looks right having all that white space on the left side, in my opinion, it looks like a mistake. It's also taking much space compared to my proposal, making the user scroll much more.
1.0
Tidy up spacing on p-table--mobile-card - ## Pattern to amend `p-table--mobile-card ` ## Visual How it currently looks like: <img width="684" alt="Screenshot 2020-02-06 at 15 21 33" src="https://user-images.githubusercontent.com/36884067/73951163-0ec1f100-48f5-11ea-8dca-c10923ee125e.png"> My proposal: <img width="1153" alt="Screenshot 2020-02-06 at 15 23 29" src="https://user-images.githubusercontent.com/36884067/73951187-16819580-48f5-11ea-99d7-811e1f58b0da.png"> ## Context Visually I don't think it looks right having all that white space on the left side, in my opinion, it looks like a mistake. It's also taking much space compared to my proposal, making the user scroll much more.
priority
tidy up spacing on p table mobile card pattern to amend p table mobile card visual how it currently looks like img width alt screenshot at src my proposal img width alt screenshot at src context visually i don t think it looks right having all that white space on the left side in my opinion it looks like a mistake it s also taking much space compared to my proposal making the user scroll much more
1
811,570
30,292,763,825
IssuesEvent
2023-07-09 13:35:01
ncssar/radiolog
https://api.github.com/repos/ncssar/radiolog
opened
known operator list forgets entries
bug Priority:Medium
Multiple reports of this problem over the last several months. Is it possible that the known operators file gets clobbered with version upgrades?
1.0
known operator list forgets entries - Multiple reports of this problem over the last several months. Is it possible that the known operators file gets clobbered with version upgrades?
priority
known operator list forgets entries multiple reports of this problem over the last several months is it possible that the known operators file gets clobbered with version upgrades
1
394,376
11,642,872,173
IssuesEvent
2020-02-29 09:53:56
bounswe/bounswe2020group7
https://api.github.com/repos/bounswe/bounswe2020group7
closed
Customer Meeting Meeting Notes
Priority: Medium Status: To Do Type: Task
* Upload the meeting notes of the first customer meeting * **Deadline: 02.03.2020 23.00**
1.0
Customer Meeting Meeting Notes - * Upload the meeting notes of the first customer meeting * **Deadline: 02.03.2020 23.00**
priority
customer meeting meeting notes upload the meeting notes of the first customer meeting deadline
1
99,324
4,052,815,128
IssuesEvent
2016-05-24 05:28:27
Baystation12/Baystation12
https://api.github.com/repos/Baystation12/Baystation12
closed
Pneumatic cannon tank insertion is slightly broken
balance bug Has known steps to reproduce. priority: medium
#### Brief description of the issue Pneumatic cannon tank insertion puts the tank on the floor, not inside the cannon #### What you expected to happen It would take the tank inside itself #### What actually happened It put it on the floor #### Steps to reproduce - Take tank out of cannon - Insert tank into cannon - Tank is now in the cannon and also on the floor - Inserting tank again puts it in the hopper #### Additional info: - **Server Revision**: 4ac97f4515bd5bc5f5d663f56a8c91725e91f1f9 - **Game ID**: bIH-bTZW
1.0
Pneumatic cannon tank insertion is slightly broken - #### Brief description of the issue Pneumatic cannon tank insertion puts the tank on the floor, not inside the cannon #### What you expected to happen It would take the tank inside itself #### What actually happened It put it on the floor #### Steps to reproduce - Take tank out of cannon - Insert tank into cannon - Tank is now in the cannon and also on the floor - Inserting tank again puts it in the hopper #### Additional info: - **Server Revision**: 4ac97f4515bd5bc5f5d663f56a8c91725e91f1f9 - **Game ID**: bIH-bTZW
priority
pneumatic cannon tank insertion is slightly broken brief description of the issue pneumatic cannon tank insertion puts the tank on the floor not inside the cannon what you expected to happen it would take the tank inside itself what actually happened it put it on the floor steps to reproduce take tank out of cannon insert tank into cannon tank is now in the cannon and also on the floor inserting tank again puts it in the hopper additional info server revision game id bih btzw
1
525,016
15,227,401,928
IssuesEvent
2021-02-18 10:08:55
IATI/ckanext-iati
https://api.github.com/repos/IATI/ckanext-iati
opened
Create list of changed org and publisher ids (re-opened)
Medium priority
Work was done last year to create a mapping of publisher ids on the IATI Registry. Found here: https://iatiregistry.org/ckan-admin/iati-redirects Issues: https://github.com/IATI/ckanext-iati/issues/218 However, this is only available for Registry Sysadmin accounts. It's not available to various IATI tool providers like the d-portal devs. We need two public mappings - one for changed Publisher IDs - one for changed IATI Org IDs This is what the current sysadmin mapping for publisher ids looks like: ![image](https://user-images.githubusercontent.com/27764077/108341043-294dcc00-71d1-11eb-96eb-07c41699eeb6.png) See the discussion on user need here: https://github.com/devinit/D-Portal/issues/503
1.0
Create list of changed org and publisher ids (re-opened) - Work was done last year to create a mapping of publisher ids on the IATI Registry. Found here: https://iatiregistry.org/ckan-admin/iati-redirects Issues: https://github.com/IATI/ckanext-iati/issues/218 However, this is only available for Registry Sysadmin accounts. It's not available to various IATI tool providers like the d-portal devs. We need two public mappings - one for changed Publisher IDs - one for changed IATI Org IDs This is what the current sysadmin mapping for publisher ids looks like: ![image](https://user-images.githubusercontent.com/27764077/108341043-294dcc00-71d1-11eb-96eb-07c41699eeb6.png) See the discussion on user need here: https://github.com/devinit/D-Portal/issues/503
priority
create list of changed org and publisher ids re opened work was done last year to create a mapping of publisher ids on the iati registry found here issues however this is only available for registry sysadmin accounts it s not available to various iati tool providers like the d portal devs we need two public mappings one for changed publisher ids one for changed iati org ids this is what the current sysadmin mapping for publisher ids looks like see the discussion on user need here
1
20,818
2,631,424,313
IssuesEvent
2015-03-07 02:20:20
Esri/briefing-book
https://api.github.com/repos/Esri/briefing-book
closed
BUG-000083162 Duplicate items are created at the Briefing Book homepage when the application is configured to use Enterprise Logins (OAuthAppid: "GUIDHERE",)
bug Medium Priority Support
<div><div> <span><b>Salesforce ID:</b> BUG-000083162</span><br/> <span><b>Salesforce Submitter:</b> Christopher Tartoni</span><br/> <span><b>Salesforce Submit Date:</b> 11/11/2014 12:05 PM</span><br/> <span><b>Salesforce Bug Type:</b> Failure/Error</span><br/> <span><b>Salesforce Severity:</b> Low</span><br/> <span><b>Product:</b> ArcGIS for Local Government</span><br/> <span><b>Functional Category:</b> ArcGIS for Local Government</span><br/> <span><b>Client Platform:</b> Windows N/A</span><br/> <span><b>Version Found:</b> No Version Found</span><br/> <span><b>Planned Version Fixed:</b> (n/a)</span><br/> <span><b>Comment:</b> This issue will be resolved in the next release. The Release is tentatively scheduled for Winter Q1 2014</span><br/> </div></div>
1.0
BUG-000083162 Duplicate items are created at the Briefing Book homepage when the application is configured to use Enterprise Logins (OAuthAppid: "GUIDHERE",) - <div><div> <span><b>Salesforce ID:</b> BUG-000083162</span><br/> <span><b>Salesforce Submitter:</b> Christopher Tartoni</span><br/> <span><b>Salesforce Submit Date:</b> 11/11/2014 12:05 PM</span><br/> <span><b>Salesforce Bug Type:</b> Failure/Error</span><br/> <span><b>Salesforce Severity:</b> Low</span><br/> <span><b>Product:</b> ArcGIS for Local Government</span><br/> <span><b>Functional Category:</b> ArcGIS for Local Government</span><br/> <span><b>Client Platform:</b> Windows N/A</span><br/> <span><b>Version Found:</b> No Version Found</span><br/> <span><b>Planned Version Fixed:</b> (n/a)</span><br/> <span><b>Comment:</b> This issue will be resolved in the next release. The Release is tentatively scheduled for Winter Q1 2014</span><br/> </div></div>
priority
bug duplicate items are created at the briefing book homepage when the application is configured to use enterprise logins oauthappid guidhere salesforce id bug salesforce submitter christopher tartoni salesforce submit date pm salesforce bug type failure error salesforce severity low product arcgis for local government functional category arcgis for local government client platform windows n a version found no version found planned version fixed n a comment this issue will be resolved in the next release the release is tentatively scheduled for winter
1
377,474
11,171,444,563
IssuesEvent
2019-12-28 19:48:43
ayumi-cloud/oc-security-module
https://api.github.com/repos/ayumi-cloud/oc-security-module
opened
Create inverse filters to exclude certain firewall objects
Firewall Priority: Medium enhancement
### Enhancement idea - [ ] Create inverse filters to exclude certain firewall objects.
1.0
Create inverse filters to exclude certain firewall objects - ### Enhancement idea - [ ] Create inverse filters to exclude certain firewall objects.
priority
create inverse filters to exclude certain firewall objects enhancement idea create inverse filters to exclude certain firewall objects
1
318,195
9,683,166,376
IssuesEvent
2019-05-23 10:50:10
netdata/netdata
https://api.github.com/repos/netdata/netdata
closed
[preparation] VMware Vsphere monitoring
area/external feature request priority/medium size:5
I see #4888 is getting votes. Plan is to setup a vmware vsphere lab and investigate APIS/metrics. ___ [golang library](https://github.com/vmware/govmomi/#govmomi) Metrics Groups: - Virtual Machine - Host System - Cluster - Datastore I want to understand what metrics are most useful, how many collectors do we need, etc. @jimidak @spiegela I hope for help/assistance :smile:
1.0
[preparation] VMware Vsphere monitoring - I see #4888 is getting votes. Plan is to setup a vmware vsphere lab and investigate APIS/metrics. ___ [golang library](https://github.com/vmware/govmomi/#govmomi) Metrics Groups: - Virtual Machine - Host System - Cluster - Datastore I want to understand what metrics are most useful, how many collectors do we need, etc. @jimidak @spiegela I hope for help/assistance :smile:
priority
vmware vsphere monitoring i see is getting votes plan is to setup a vmware vsphere lab and investigate apis metrics metrics groups virtual machine host system cluster datastore i want to understand what metrics are most useful how many collectors do we need etc jimidak spiegela i hope for help assistance smile
1
216,172
7,301,865,236
IssuesEvent
2018-02-27 07:32:32
robotology/wb-toolbox
https://api.github.com/repos/robotology/wb-toolbox
opened
GetControlReferences block
complexity:medium component:library-wbt component:simulink other:good-first-issue priority:low type:enhancement
The unmerged PR #54 introduced the support of reading control references (that might be streamed from outside Simulink, e.g. from a C++ application). This work was done for a past experiment, and due to the undergoing `WB-Toolbox` refactoring, the PR was not merged. I open this issue to keep track of this feature if we want to refactor it on the new version (this would require getting the real implementation from the `yarpWholeBodyInterface`).
1.0
GetControlReferences block - The unmerged PR #54 introduced the support of reading control references (that might be streamed from outside Simulink, e.g. from a C++ application). This work was done for a past experiment, and due to the undergoing `WB-Toolbox` refactoring, the PR was not merged. I open this issue to keep track of this feature if we want to refactor it on the new version (this would require getting the real implementation from the `yarpWholeBodyInterface`).
priority
getcontrolreferences block the unmerged pr introduced the support of reading control references that might be streamed from outside simulink e g from a c application this work was done for a past experiment and due to the undergoing wb toolbox refactoring the pr was not merged i open this issue to keep track of this feature if we want to refactor it on the new version this would require getting the real implementation from the yarpwholebodyinterface
1