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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
485,393 | 13,964,822,602 | IssuesEvent | 2020-10-25 19:44:42 | AY2021S1-CS2113T-T12-3/tp | https://api.github.com/repos/AY2021S1-CS2113T-T12-3/tp | closed | Implement tag function in notebook mode | priority.Medium type.Task | Allows user to label the notebook/section/page he/she is in | 1.0 | Implement tag function in notebook mode - Allows user to label the notebook/section/page he/she is in | priority | implement tag function in notebook mode allows user to label the notebook section page he she is in | 1 |
178,779 | 6,618,590,833 | IssuesEvent | 2017-09-21 08:47:56 | VALIDproject/DyNetFlowVis | https://api.github.com/repos/VALIDproject/DyNetFlowVis | closed | Rework the sankey detail | enhancement help wanted medium priority | Some things to note when sankey deatil is opend:
- Font is too big often (change font to smaller and make dependent)
- Make chart area smaller (more space for text)
- Apply the text ellipsis to the heading of the chart or the textwrap (both functions are in utitlities available)
- Make the both windows appear always in the center of the window (even if the user pressed load more 10 times and the div is now 5000px height) | 1.0 | Rework the sankey detail - Some things to note when sankey deatil is opend:
- Font is too big often (change font to smaller and make dependent)
- Make chart area smaller (more space for text)
- Apply the text ellipsis to the heading of the chart or the textwrap (both functions are in utitlities available)
- Make the both windows appear always in the center of the window (even if the user pressed load more 10 times and the div is now 5000px height) | priority | rework the sankey detail some things to note when sankey deatil is opend font is too big often change font to smaller and make dependent make chart area smaller more space for text apply the text ellipsis to the heading of the chart or the textwrap both functions are in utitlities available make the both windows appear always in the center of the window even if the user pressed load more times and the div is now height | 1 |
363,606 | 10,745,085,594 | IssuesEvent | 2019-10-30 08:12:57 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | Master: craft counters corrupted (count are doubled) | Medium Priority | 1) start project x20 hewnlog


2) wait
3) you see 9 hewnlog... But crafting counter is x18 complete.


| 1.0 | Master: craft counters corrupted (count are doubled) - 1) start project x20 hewnlog


2) wait
3) you see 9 hewnlog... But crafting counter is x18 complete.


| priority | master craft counters corrupted count are doubled start project hewnlog wait you see hewnlog but crafting counter is complete | 1 |
407,915 | 11,939,151,009 | IssuesEvent | 2020-04-02 14:48:41 | huridocs/uwazi | https://api.github.com/repos/huridocs/uwazi | closed | Fix charts legends | Good First Issue Priority: Medium Status: Sprint UX/UI | Some of our charts are failing to properly display the labels of the graphed values:

| 1.0 | Fix charts legends - Some of our charts are failing to properly display the labels of the graphed values:

| priority | fix charts legends some of our charts are failing to properly display the labels of the graphed values | 1 |
40,429 | 2,868,919,158 | IssuesEvent | 2015-06-05 21:57:45 | dart-lang/pub | https://api.github.com/repos/dart-lang/pub | closed | Fix the versioning of Dart SDK packages | bug Fixed Priority-Medium | <a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)**
_Originally opened as dart-lang/sdk#4352_
----
We used to use the /revision file in the Dart SDK to determine the version of the packages contained within, but that file has apparently disappeared. We should generate the version from the timestamp on the /create.stamp file instead. | 1.0 | Fix the versioning of Dart SDK packages - <a href="https://github.com/nex3"><img src="https://avatars.githubusercontent.com/u/188?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [nex3](https://github.com/nex3)**
_Originally opened as dart-lang/sdk#4352_
----
We used to use the /revision file in the Dart SDK to determine the version of the packages contained within, but that file has apparently disappeared. We should generate the version from the timestamp on the /create.stamp file instead. | priority | fix the versioning of dart sdk packages issue by originally opened as dart lang sdk we used to use the revision file in the dart sdk to determine the version of the packages contained within but that file has apparently disappeared we should generate the version from the timestamp on the create stamp file instead | 1 |
760,334 | 26,636,902,603 | IssuesEvent | 2023-01-24 22:57:13 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [DocDB] Restore sets the replication info in the table metadata to empty defaults if the snapshot does not contain it | kind/bug area/docdb priority/medium | Jira Link: [DB-5054](https://yugabyte.atlassian.net/browse/DB-5054)
### Description
When restoring a table, that did not have custom placement rules, we will end up defaulting to random tablet placement, rather than respecting the cluster-level zone/region aware placement.
### Longer form:
During restore in `RecreateTable()` we blindly copy the replication info from the snapshot when creating the table. This has big implications if the replication info field was not set in the snapshot. In particular, if it wasn't set in the snapshot then we end up incorrectly marking the field as present in the protobuf but setting the value to empty C.R.Z (thus the `has_replication_info()` check succeeds but C.R.Z is empty). The LB on seeing that the field is set starts using this to place the tablets of this table and it stops respecting tablespaces or the global policy present in the cluster config which is what it should be doing.
```
Status CatalogManager::RecreateTable(const NamespaceId& new_namespace_id,
const UDTypeMap& type_map,
const ExternalTableSnapshotDataMap& table_map,
ExternalTableSnapshotData* table_data) {
const SysTablesEntryPB& meta = DCHECK_NOTNULL(table_data)->table_entry_pb;
CreateTableRequestPB req;
CreateTableResponsePB resp;
req.set_name(meta.name());
req.set_table_type(meta.table_type());
req.set_num_tablets(narrow_cast<int32_t>(table_data->num_tablets));
for (const auto& p : table_data->partitions) {
*req.add_partitions() = p;
}
req.mutable_namespace_()->set_id(new_namespace_id);
*req.mutable_partition_schema() = meta.partition_schema();
*req.mutable_replication_info() = meta.replication_info();
```
[DB-5054]: https://yugabyte.atlassian.net/browse/DB-5054?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | 1.0 | [DocDB] Restore sets the replication info in the table metadata to empty defaults if the snapshot does not contain it - Jira Link: [DB-5054](https://yugabyte.atlassian.net/browse/DB-5054)
### Description
When restoring a table, that did not have custom placement rules, we will end up defaulting to random tablet placement, rather than respecting the cluster-level zone/region aware placement.
### Longer form:
During restore in `RecreateTable()` we blindly copy the replication info from the snapshot when creating the table. This has big implications if the replication info field was not set in the snapshot. In particular, if it wasn't set in the snapshot then we end up incorrectly marking the field as present in the protobuf but setting the value to empty C.R.Z (thus the `has_replication_info()` check succeeds but C.R.Z is empty). The LB on seeing that the field is set starts using this to place the tablets of this table and it stops respecting tablespaces or the global policy present in the cluster config which is what it should be doing.
```
Status CatalogManager::RecreateTable(const NamespaceId& new_namespace_id,
const UDTypeMap& type_map,
const ExternalTableSnapshotDataMap& table_map,
ExternalTableSnapshotData* table_data) {
const SysTablesEntryPB& meta = DCHECK_NOTNULL(table_data)->table_entry_pb;
CreateTableRequestPB req;
CreateTableResponsePB resp;
req.set_name(meta.name());
req.set_table_type(meta.table_type());
req.set_num_tablets(narrow_cast<int32_t>(table_data->num_tablets));
for (const auto& p : table_data->partitions) {
*req.add_partitions() = p;
}
req.mutable_namespace_()->set_id(new_namespace_id);
*req.mutable_partition_schema() = meta.partition_schema();
*req.mutable_replication_info() = meta.replication_info();
```
[DB-5054]: https://yugabyte.atlassian.net/browse/DB-5054?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ | priority | restore sets the replication info in the table metadata to empty defaults if the snapshot does not contain it jira link description when restoring a table that did not have custom placement rules we will end up defaulting to random tablet placement rather than respecting the cluster level zone region aware placement longer form during restore in recreatetable we blindly copy the replication info from the snapshot when creating the table this has big implications if the replication info field was not set in the snapshot in particular if it wasn t set in the snapshot then we end up incorrectly marking the field as present in the protobuf but setting the value to empty c r z thus the has replication info check succeeds but c r z is empty the lb on seeing that the field is set starts using this to place the tablets of this table and it stops respecting tablespaces or the global policy present in the cluster config which is what it should be doing status catalogmanager recreatetable const namespaceid new namespace id const udtypemap type map const externaltablesnapshotdatamap table map externaltablesnapshotdata table data const systablesentrypb meta dcheck notnull table data table entry pb createtablerequestpb req createtableresponsepb resp req set name meta name req set table type meta table type req set num tablets narrow cast table data num tablets for const auto p table data partitions req add partitions p req mutable namespace set id new namespace id req mutable partition schema meta partition schema req mutable replication info meta replication info | 1 |
80,168 | 3,551,524,037 | IssuesEvent | 2016-01-21 04:23:44 | Baystation12/Baystation12 | https://api.github.com/repos/Baystation12/Baystation12 | closed | Icarus drones always miss when target is prone | bug priority: medium | Icarus drone from the 'missing drone wing' event can't hit you when you are lying on the floor.
In case it's only specific situations:
I was lying on a plating of the aft port solar array, wearing standard engineering equipment plus engineering hardsuit.
Expected behaviour:
Drones keep shooting you and kills you, or loses interest
Actual behaviour:
Drones keep shooting you and keep missing. | 1.0 | Icarus drones always miss when target is prone - Icarus drone from the 'missing drone wing' event can't hit you when you are lying on the floor.
In case it's only specific situations:
I was lying on a plating of the aft port solar array, wearing standard engineering equipment plus engineering hardsuit.
Expected behaviour:
Drones keep shooting you and kills you, or loses interest
Actual behaviour:
Drones keep shooting you and keep missing. | priority | icarus drones always miss when target is prone icarus drone from the missing drone wing event can t hit you when you are lying on the floor in case it s only specific situations i was lying on a plating of the aft port solar array wearing standard engineering equipment plus engineering hardsuit expected behaviour drones keep shooting you and kills you or loses interest actual behaviour drones keep shooting you and keep missing | 1 |
401,579 | 11,795,164,882 | IssuesEvent | 2020-03-18 08:23:47 | thaliawww/concrexit | https://api.github.com/repos/thaliawww/concrexit | opened | sync_mailinglists errors | bug mailinglists priority: medium | In GitLab by @joren485 on Nov 26, 2019, 11:36
### One-sentence description
The `sync_mailinglists` generates many errors.
### Description
Currently, the `sync_mailinglists` generates many errors (see the [server sentry issues](https://sentry.io/organizations/thalia/issues/?project=1470866)).
These should either be caught or the underlying bug should be fixed. | 1.0 | sync_mailinglists errors - In GitLab by @joren485 on Nov 26, 2019, 11:36
### One-sentence description
The `sync_mailinglists` generates many errors.
### Description
Currently, the `sync_mailinglists` generates many errors (see the [server sentry issues](https://sentry.io/organizations/thalia/issues/?project=1470866)).
These should either be caught or the underlying bug should be fixed. | priority | sync mailinglists errors in gitlab by on nov one sentence description the sync mailinglists generates many errors description currently the sync mailinglists generates many errors see the these should either be caught or the underlying bug should be fixed | 1 |
40,449 | 2,868,920,453 | IssuesEvent | 2015-06-05 21:58:14 | dart-lang/pub | https://api.github.com/repos/dart-lang/pub | closed | Document that "pubspec.yaml" must contain a "name" key. | bug Fixed Priority-Medium | _Originally opened as dart-lang/sdk#4802_
*This issue was originally filed by jjinux...@google.com*
_____
I'm trying to run "pub install", and I'm getting:
"pubspec.yaml" must contain a "name" key.
I think this is connected to (https://groups.google.com/a/dartlang.org/forum/?fromgroups=#!topic/commits/UGdK0VrYmG4). However, I don't see anything about key names in (http://www.dartlang.org/docs/pub-package-manager/).
Apparently, you have to add:
name: project-name
to the top of your pubspec.yaml. I think this is a breaking change, so we should probably update the docs and blog about it.
I'm running a version of DartEditor that's just a couple days old:
DartEditor
Version 0.1.0.201208261548, build 11367
Dart SDK version 11367 | 1.0 | Document that "pubspec.yaml" must contain a "name" key. - _Originally opened as dart-lang/sdk#4802_
*This issue was originally filed by jjinux...@google.com*
_____
I'm trying to run "pub install", and I'm getting:
"pubspec.yaml" must contain a "name" key.
I think this is connected to (https://groups.google.com/a/dartlang.org/forum/?fromgroups=#!topic/commits/UGdK0VrYmG4). However, I don't see anything about key names in (http://www.dartlang.org/docs/pub-package-manager/).
Apparently, you have to add:
name: project-name
to the top of your pubspec.yaml. I think this is a breaking change, so we should probably update the docs and blog about it.
I'm running a version of DartEditor that's just a couple days old:
DartEditor
Version 0.1.0.201208261548, build 11367
Dart SDK version 11367 | priority | document that pubspec yaml must contain a name key originally opened as dart lang sdk this issue was originally filed by jjinux google com i m trying to run quot pub install quot and i m getting nbsp nbsp nbsp nbsp quot pubspec yaml quot must contain a quot name quot key i think this is connected to however i don t see anything about key names in apparently you have to add nbsp nbsp nbsp nbsp name project name to the top of your pubspec yaml i think this is a breaking change so we should probably update the docs and blog about it i m running a version of darteditor that s just a couple days old darteditor version build dart sdk version | 1 |
346,706 | 10,418,839,077 | IssuesEvent | 2019-09-15 12:08:12 | code4romania/mon-vot-android-kotlin | https://api.github.com/repos/code4romania/mon-vot-android-kotlin | opened | Push notifications - display received push notifications | backend-needed enhancement good first issue help wanted kotlin medium-priority | Display received push notifications info in a dialog. - they will only contain some text. | 1.0 | Push notifications - display received push notifications - Display received push notifications info in a dialog. - they will only contain some text. | priority | push notifications display received push notifications display received push notifications info in a dialog they will only contain some text | 1 |
84,178 | 3,654,764,018 | IssuesEvent | 2016-02-17 14:00:14 | GoldenSoftwareLtd/gedemin | https://api.github.com/repos/GoldenSoftwareLtd/gedemin | closed | Счета в ПИ | Accountancy Etalon Priority-Medium Type-Other | Originally reported on Google Code with ID 3558
```
Стандартные счета из плана счетов (с XID < 147000000 и DBID = 17, есть на чистом эталоне,
без ПИ) входят во множество ПИ (некоторые - в несколько ПИ одновременно). Зачем так
сделано (все аналитики ac_account сейчас входят в Общие данные)? Может, как-то это
упростить?
```
Reported by `alexandra.gsoftware` on 2015-03-12 16:02:04
| 1.0 | Счета в ПИ - Originally reported on Google Code with ID 3558
```
Стандартные счета из плана счетов (с XID < 147000000 и DBID = 17, есть на чистом эталоне,
без ПИ) входят во множество ПИ (некоторые - в несколько ПИ одновременно). Зачем так
сделано (все аналитики ac_account сейчас входят в Общие данные)? Может, как-то это
упростить?
```
Reported by `alexandra.gsoftware` on 2015-03-12 16:02:04
| priority | счета в пи originally reported on google code with id стандартные счета из плана счетов с xid и dbid есть на чистом эталоне без пи входят во множество пи некоторые в несколько пи одновременно зачем так сделано все аналитики ac account сейчас входят в общие данные может как то это упростить reported by alexandra gsoftware on | 1 |
75,987 | 3,479,373,805 | IssuesEvent | 2015-12-28 19:48:10 | stko/oobd | https://api.github.com/repos/stko/oobd | closed | Use object oriented class library for firmware | auto-migrated Priority-Medium Type-Enhancement | ```
A object oriented class library would make the firmware source much better read
- and maintainable
e.g. http://ooc-coding.sourceforge.net/
```
Original issue reported on code.google.com by `steffen....@gmail.com` on 12 Jan 2013 at 7:55 | 1.0 | Use object oriented class library for firmware - ```
A object oriented class library would make the firmware source much better read
- and maintainable
e.g. http://ooc-coding.sourceforge.net/
```
Original issue reported on code.google.com by `steffen....@gmail.com` on 12 Jan 2013 at 7:55 | priority | use object oriented class library for firmware a object oriented class library would make the firmware source much better read and maintainable e g original issue reported on code google com by steffen gmail com on jan at | 1 |
799,339 | 28,304,610,770 | IssuesEvent | 2023-04-10 09:43:31 | authzed/spicedb | https://api.github.com/repos/authzed/spicedb | closed | PostrgreSQL datastores do not timeout on initialization | kind/bug hint/good first issue priority/2 medium area/datastore | If PostgreSQL datastores are initialized on an unreachable/unresponsive database backend, the initialization hangs indefinitely, and the spicedb process wont report becoming healthy.
We can see this is caused by a missing deadline:
https://github.com/authzed/spicedb/blob/26d13e56948492537e02501c8d018e0def5ad204/internal/datastore/crdb/crdb.go#L92-L95 | 1.0 | PostrgreSQL datastores do not timeout on initialization - If PostgreSQL datastores are initialized on an unreachable/unresponsive database backend, the initialization hangs indefinitely, and the spicedb process wont report becoming healthy.
We can see this is caused by a missing deadline:
https://github.com/authzed/spicedb/blob/26d13e56948492537e02501c8d018e0def5ad204/internal/datastore/crdb/crdb.go#L92-L95 | priority | postrgresql datastores do not timeout on initialization if postgresql datastores are initialized on an unreachable unresponsive database backend the initialization hangs indefinitely and the spicedb process wont report becoming healthy we can see this is caused by a missing deadline | 1 |
47,999 | 2,990,108,551 | IssuesEvent | 2015-07-21 06:57:52 | jayway/rest-assured | https://api.github.com/repos/jayway/rest-assured | closed | support for multipart/mixed | bug imported Priority-Medium wontfix | _From [bwalli...@gmail.com](https://code.google.com/u/118396933656001965097/) on March 04, 2013 01:25:31_
Setting the content type to multi-part/mixed and inserting multiParts() fails to output the body of the request. See forum https://groups.google.com/forum/#!topic/rest-assured/nzgFK8bKwqk Summary:
expect().statusCode(200).given().contentType("multipart/mixed").multiPart("metadata", "file", mapper.writeValueAsBytes(doc2), "application/json").multiPart("filedata", "HelloWorld.txt", bis2, "text/plain").when().put("/documentstore-service/IHE:919191/sections/testSection1");
doc2 is an object that can be JSON serialised and bis2 is an inputstream with a small amount of text available to the reader.
If I leave the contentType() out then it PUTs the whole body of the request with a type of multipart/form-data but when I put the content type in it looses the body of the request.
_Original issue: http://code.google.com/p/rest-assured/issues/detail?id=220_ | 1.0 | support for multipart/mixed - _From [bwalli...@gmail.com](https://code.google.com/u/118396933656001965097/) on March 04, 2013 01:25:31_
Setting the content type to multi-part/mixed and inserting multiParts() fails to output the body of the request. See forum https://groups.google.com/forum/#!topic/rest-assured/nzgFK8bKwqk Summary:
expect().statusCode(200).given().contentType("multipart/mixed").multiPart("metadata", "file", mapper.writeValueAsBytes(doc2), "application/json").multiPart("filedata", "HelloWorld.txt", bis2, "text/plain").when().put("/documentstore-service/IHE:919191/sections/testSection1");
doc2 is an object that can be JSON serialised and bis2 is an inputstream with a small amount of text available to the reader.
If I leave the contentType() out then it PUTs the whole body of the request with a type of multipart/form-data but when I put the content type in it looses the body of the request.
_Original issue: http://code.google.com/p/rest-assured/issues/detail?id=220_ | priority | support for multipart mixed from on march setting the content type to multi part mixed and inserting multiparts fails to output the body of the request see forum summary expect statuscode given contenttype multipart mixed multipart metadata file mapper writevalueasbytes application json multipart filedata helloworld txt text plain when put documentstore service ihe sections is an object that can be json serialised and is an inputstream with a small amount of text available to the reader if i leave the contenttype out then it puts the whole body of the request with a type of multipart form data but when i put the content type in it looses the body of the request original issue | 1 |
366,025 | 10,807,790,773 | IssuesEvent | 2019-11-07 09:13:49 | openshift/odo | https://api.github.com/repos/openshift/odo | closed | add managed-by label | priority/Medium state/Ready | add `app.kubernetes.io/managed-by` = `odo` label
This label can be later used to identify all resources that were created by odo.
It would be also great to record odo version, maybe something like
`app.kubernetes.io/managed-by-version`?
This would be useful later when we have to introduce some breaking changes between odo versions
| 1.0 | add managed-by label - add `app.kubernetes.io/managed-by` = `odo` label
This label can be later used to identify all resources that were created by odo.
It would be also great to record odo version, maybe something like
`app.kubernetes.io/managed-by-version`?
This would be useful later when we have to introduce some breaking changes between odo versions
| priority | add managed by label add app kubernetes io managed by odo label this label can be later used to identify all resources that were created by odo it would be also great to record odo version maybe something like app kubernetes io managed by version this would be useful later when we have to introduce some breaking changes between odo versions | 1 |
823,415 | 31,019,151,556 | IssuesEvent | 2023-08-10 02:48:56 | markgravity/golang-ic | https://api.github.com/repos/markgravity/golang-ic | closed | [Integrate] As a user, I can view the list of keywords. | type: feature priority: medium | ## Acceptance Criteria
- Call #8 to get the list of keywords and display to the table following the design
- Integrate the paging and re-call #8 each time the user clicks on a page button
## Design

| 1.0 | [Integrate] As a user, I can view the list of keywords. - ## Acceptance Criteria
- Call #8 to get the list of keywords and display to the table following the design
- Integrate the paging and re-call #8 each time the user clicks on a page button
## Design

| priority | as a user i can view the list of keywords acceptance criteria call to get the list of keywords and display to the table following the design integrate the paging and re call each time the user clicks on a page button design | 1 |
92,889 | 3,874,906,567 | IssuesEvent | 2016-04-11 22:12:56 | LizardNet/LizardIRC-Beancounter | https://api.github.com/repos/LizardNet/LizardIRC-Beancounter | opened | Implement bit.ly link shortening and information | feacher request lizardbot Priority-Medium reimplementation | Implement ability to generate and check bit.ly shortlinks by command. Reimplementation of feature from LizardBot; see https://fastlizard4.org/wiki/LizardBot/bit.ly_API. | 1.0 | Implement bit.ly link shortening and information - Implement ability to generate and check bit.ly shortlinks by command. Reimplementation of feature from LizardBot; see https://fastlizard4.org/wiki/LizardBot/bit.ly_API. | priority | implement bit ly link shortening and information implement ability to generate and check bit ly shortlinks by command reimplementation of feature from lizardbot see | 1 |
123,503 | 4,864,057,708 | IssuesEvent | 2016-11-14 16:57:59 | leedongwei/CRIMP | https://api.github.com/repos/leedongwei/CRIMP | closed | Rename marker_id to climber_marker | app/android app/meteor-backend Priority: Medium | @ecc-weizhi It doesn't fit with the naming convention... See example:
```
climber_id: {
type: String,
defaultValue: '',
},
marker_id: {
type: String,
defaultValue: '',
label: 'Marker ID of climber',
},
climber_name: {
type: String,
defaultValue: '',
label: 'Name of climber',
},
climber_expiry: {
type: Date,
label: 'Time to remove climber',
autoValue: () => new Date(Date.now() + EXPIRY_INTERVAL_CLIMBER),
},
```
Spot the odd one out. Can we change the variable name on your side too?
| 1.0 | Rename marker_id to climber_marker - @ecc-weizhi It doesn't fit with the naming convention... See example:
```
climber_id: {
type: String,
defaultValue: '',
},
marker_id: {
type: String,
defaultValue: '',
label: 'Marker ID of climber',
},
climber_name: {
type: String,
defaultValue: '',
label: 'Name of climber',
},
climber_expiry: {
type: Date,
label: 'Time to remove climber',
autoValue: () => new Date(Date.now() + EXPIRY_INTERVAL_CLIMBER),
},
```
Spot the odd one out. Can we change the variable name on your side too?
| priority | rename marker id to climber marker ecc weizhi it doesn t fit with the naming convention see example climber id type string defaultvalue marker id type string defaultvalue label marker id of climber climber name type string defaultvalue label name of climber climber expiry type date label time to remove climber autovalue new date date now expiry interval climber spot the odd one out can we change the variable name on your side too | 1 |
430,991 | 12,468,371,234 | IssuesEvent | 2020-05-28 18:44:23 | carbon-design-system/ibm-dotcom-library | https://api.github.com/repos/carbon-design-system/ibm-dotcom-library | closed | [Feature card] Arrow should be Blue | Feature request dev priority: medium | This change is the result of design changes. The designs have been updated with these changes.
The arrow in feature card should be $link-01. See below
<img width="1530" alt="Screen Shot 2020-04-27 at 9 38 48 AM" src="https://user-images.githubusercontent.com/47458576/80384773-e8b04b00-886a-11ea-81b3-ed74231bf0c8.png">
| 1.0 | [Feature card] Arrow should be Blue - This change is the result of design changes. The designs have been updated with these changes.
The arrow in feature card should be $link-01. See below
<img width="1530" alt="Screen Shot 2020-04-27 at 9 38 48 AM" src="https://user-images.githubusercontent.com/47458576/80384773-e8b04b00-886a-11ea-81b3-ed74231bf0c8.png">
| priority | arrow should be blue this change is the result of design changes the designs have been updated with these changes the arrow in feature card should be link see below img width alt screen shot at am src | 1 |
84,204 | 3,655,196,927 | IssuesEvent | 2016-02-17 15:32:41 | daisy/pipeline-issues | https://api.github.com/repos/daisy/pipeline-issues | closed | Improve px:fileset-load performance | 4 - Done bug Component-Modules imported Module-fileset-utils OpSys-All Performance Priority-Medium | _From [josteinaj@gmail.com](https://code.google.com/u/josteinaj@gmail.com/) on June 05, 2013 23:23:40_
"px:mediatype-detect is very slow for large filesets": https://github.com/daisy-consortium/pipeline-modules-common/pull/22 The cause was px:fileset-load. Investigate why.
_Original issue: http://code.google.com/p/daisy-pipeline/issues/detail?id=324_
<!---
@huboard:{"order":94.5,"milestone_order":324,"custom_state":""}
-->
| 1.0 | Improve px:fileset-load performance - _From [josteinaj@gmail.com](https://code.google.com/u/josteinaj@gmail.com/) on June 05, 2013 23:23:40_
"px:mediatype-detect is very slow for large filesets": https://github.com/daisy-consortium/pipeline-modules-common/pull/22 The cause was px:fileset-load. Investigate why.
_Original issue: http://code.google.com/p/daisy-pipeline/issues/detail?id=324_
<!---
@huboard:{"order":94.5,"milestone_order":324,"custom_state":""}
-->
| priority | improve px fileset load performance from on june px mediatype detect is very slow for large filesets the cause was px fileset load investigate why original issue huboard order milestone order custom state | 1 |
22,217 | 2,645,778,140 | IssuesEvent | 2015-03-13 02:10:36 | prikhi/evoluspencil | https://api.github.com/repos/prikhi/evoluspencil | opened | Add placeholder image item to Basic Web Elements collection | 2–5 stars bug imported Priority-Medium | _From [frederic.vandaele](https://code.google.com/u/frederic.vandaele/) on September 23, 2009 05:10:09_
What steps will reproduce the problem? - this is an enhancement request, so no problem ;-) What is the expected output? What do you see instead? I propose to add to the Basic Web Elements collection the 'standard'
placeholder image that we use in Wireframing. What version of the product are you using? On what operating system? Pencil 1.0.7 BETA
_Original issue: http://code.google.com/p/evoluspencil/issues/detail?id=111_ | 1.0 | Add placeholder image item to Basic Web Elements collection - _From [frederic.vandaele](https://code.google.com/u/frederic.vandaele/) on September 23, 2009 05:10:09_
What steps will reproduce the problem? - this is an enhancement request, so no problem ;-) What is the expected output? What do you see instead? I propose to add to the Basic Web Elements collection the 'standard'
placeholder image that we use in Wireframing. What version of the product are you using? On what operating system? Pencil 1.0.7 BETA
_Original issue: http://code.google.com/p/evoluspencil/issues/detail?id=111_ | priority | add placeholder image item to basic web elements collection from on september what steps will reproduce the problem this is an enhancement request so no problem what is the expected output what do you see instead i propose to add to the basic web elements collection the standard placeholder image that we use in wireframing what version of the product are you using on what operating system pencil beta original issue | 1 |
492,076 | 14,176,268,744 | IssuesEvent | 2020-11-12 23:11:37 | isi-vista/curated-training-annotator | https://api.github.com/repos/isi-vista/curated-training-annotator | opened | Changes to annotation data storage | enhancement priority-1-normal size-medium | To make sure our annotation repos remain under 1 GB, we want to make the following changes:
* Add an optional step to ExportAnnotations that compresses the exported JSON after the Inception export is complete.
* Add an optional step to the [Curated Training Ingester](https://github.com/isi-vista/gaia-event-extraction/blob/master/gaia_event_extraction/ingesters/curated_training_ingester.py) that compresses the converted FlexNLP docs.
Additionally, we want to change what is stored in each of the annotation repos:
* `curated-training-annotation`: the compressed exported JSON and the stats reports
* `curated-training-vistanlp`: the stats reports and the compressed FlexNLP documents (currently also includes the exported JSON) | 1.0 | Changes to annotation data storage - To make sure our annotation repos remain under 1 GB, we want to make the following changes:
* Add an optional step to ExportAnnotations that compresses the exported JSON after the Inception export is complete.
* Add an optional step to the [Curated Training Ingester](https://github.com/isi-vista/gaia-event-extraction/blob/master/gaia_event_extraction/ingesters/curated_training_ingester.py) that compresses the converted FlexNLP docs.
Additionally, we want to change what is stored in each of the annotation repos:
* `curated-training-annotation`: the compressed exported JSON and the stats reports
* `curated-training-vistanlp`: the stats reports and the compressed FlexNLP documents (currently also includes the exported JSON) | priority | changes to annotation data storage to make sure our annotation repos remain under gb we want to make the following changes add an optional step to exportannotations that compresses the exported json after the inception export is complete add an optional step to the that compresses the converted flexnlp docs additionally we want to change what is stored in each of the annotation repos curated training annotation the compressed exported json and the stats reports curated training vistanlp the stats reports and the compressed flexnlp documents currently also includes the exported json | 1 |
579,862 | 17,199,388,104 | IssuesEvent | 2021-07-17 00:15:31 | xournalpp/xournalpp | https://api.github.com/repos/xournalpp/xournalpp | closed | Please delete the Italian translation duplicate it_IT.po | bug packaging priority::medium | In master source there are two Italian translations: it.po and it_IT.po. Please delete it_IT.po (and all its references so it won't be rebuild again) since there is (practically) no other Italian translation than it.po for _ANY_ apps out there.
If you do not believe me just see the content of:
/usr/share/locale/it_IT/LC_MESSAGES
and compare to
/usr/share/locale/it/LC_MESSAGES
in any Linux distro you may know.
TIA
| 1.0 | Please delete the Italian translation duplicate it_IT.po - In master source there are two Italian translations: it.po and it_IT.po. Please delete it_IT.po (and all its references so it won't be rebuild again) since there is (practically) no other Italian translation than it.po for _ANY_ apps out there.
If you do not believe me just see the content of:
/usr/share/locale/it_IT/LC_MESSAGES
and compare to
/usr/share/locale/it/LC_MESSAGES
in any Linux distro you may know.
TIA
| priority | please delete the italian translation duplicate it it po in master source there are two italian translations it po and it it po please delete it it po and all its references so it won t be rebuild again since there is practically no other italian translation than it po for any apps out there if you do not believe me just see the content of usr share locale it it lc messages and compare to usr share locale it lc messages in any linux distro you may know tia | 1 |
386,081 | 11,431,563,011 | IssuesEvent | 2020-02-04 12:25:06 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | USER ISSUE: Tooltip for Hewn Log Processing Speed shows wrong benefit target | Priority: Medium | The tooltip for the `Hewn Log Processing Speed` skill shows `Hewn Log` instead of `Hewn Log Recipe` as one of the targets of the benefit. | 1.0 | USER ISSUE: Tooltip for Hewn Log Processing Speed shows wrong benefit target - The tooltip for the `Hewn Log Processing Speed` skill shows `Hewn Log` instead of `Hewn Log Recipe` as one of the targets of the benefit. | priority | user issue tooltip for hewn log processing speed shows wrong benefit target the tooltip for the hewn log processing speed skill shows hewn log instead of hewn log recipe as one of the targets of the benefit | 1 |
658,247 | 21,882,779,540 | IssuesEvent | 2022-05-19 15:38:37 | pvs-hd-tea/LapsPython | https://api.github.com/repos/pvs-hd-tea/LapsPython | opened | Re-implement the data processing primitives in R | Medium Priority Enhancement | We will reuse the data processing tasks implemented for Python, but need to translate the primitives to R code. | 1.0 | Re-implement the data processing primitives in R - We will reuse the data processing tasks implemented for Python, but need to translate the primitives to R code. | priority | re implement the data processing primitives in r we will reuse the data processing tasks implemented for python but need to translate the primitives to r code | 1 |
588,242 | 17,650,558,938 | IssuesEvent | 2021-08-20 12:39:31 | CCAFS/MARLO | https://api.github.com/repos/CCAFS/MARLO | opened | [KT] (AICCRA) show on the AICCRA home page the indicators displayed in MARLO CRP | Priority - Medium Type - Enhancement AICCRA | - [ ] Front end develops
- [ ] Back end develops

| 1.0 | [KT] (AICCRA) show on the AICCRA home page the indicators displayed in MARLO CRP - - [ ] Front end develops
- [ ] Back end develops

| priority | aiccra show on the aiccra home page the indicators displayed in marlo crp front end develops back end develops | 1 |
377,257 | 11,167,007,121 | IssuesEvent | 2019-12-27 15:27:23 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | USER ISSUE: Unable to Pickup Wooden Cart | Medium Priority Needs Information | **Version:** 0.7.3.1 beta
**Steps to Reproduce:**
1. Create Wooden Cart
2. Place
3. Attempt to pickup
**Expected behavior:**
Pickup cart to begin pulling
**Actual behavior:**
Immediatly drop cart as if a physics bug. Small wooden cart works usually.
Edit: Almost immediately after placing report, pickup the small wooden cart and it goes ballistic. I am now stuck flying through oblivion... | 1.0 | USER ISSUE: Unable to Pickup Wooden Cart - **Version:** 0.7.3.1 beta
**Steps to Reproduce:**
1. Create Wooden Cart
2. Place
3. Attempt to pickup
**Expected behavior:**
Pickup cart to begin pulling
**Actual behavior:**
Immediatly drop cart as if a physics bug. Small wooden cart works usually.
Edit: Almost immediately after placing report, pickup the small wooden cart and it goes ballistic. I am now stuck flying through oblivion... | priority | user issue unable to pickup wooden cart version beta steps to reproduce create wooden cart place attempt to pickup expected behavior pickup cart to begin pulling actual behavior immediatly drop cart as if a physics bug small wooden cart works usually edit almost immediately after placing report pickup the small wooden cart and it goes ballistic i am now stuck flying through oblivion | 1 |
754,212 | 26,375,928,351 | IssuesEvent | 2023-01-12 02:26:34 | dcs-retribution/dcs-retribution | https://api.github.com/repos/dcs-retribution/dcs-retribution | opened | AIR SPAWN AI NEED TO DESPAWN IN THE AIR AFTER RTB | Enhancement Priority Medium | ### Is your feature request related to a problem? Please describe.
AI are garbage and cause huge congestion on airports and carriers.
### Describe the solution you'd like
If I set an aircraft to air spawn I also expect it to RTB and delete in the air instead of land.
### Additional context
_No response_ | 1.0 | AIR SPAWN AI NEED TO DESPAWN IN THE AIR AFTER RTB - ### Is your feature request related to a problem? Please describe.
AI are garbage and cause huge congestion on airports and carriers.
### Describe the solution you'd like
If I set an aircraft to air spawn I also expect it to RTB and delete in the air instead of land.
### Additional context
_No response_ | priority | air spawn ai need to despawn in the air after rtb is your feature request related to a problem please describe ai are garbage and cause huge congestion on airports and carriers describe the solution you d like if i set an aircraft to air spawn i also expect it to rtb and delete in the air instead of land additional context no response | 1 |
613,701 | 19,097,072,395 | IssuesEvent | 2021-11-29 17:48:31 | CMPUT301F21T25/AgileSprinters | https://api.github.com/repos/CMPUT301F21T25/AgileSprinters | closed | US 01.09.01 | Habits Priority: Medium Final Checkpoint Story Points: 7 | As a doer, I want for each habit on the list, a visual indicator to show how closely I am following its plan over time. | 1.0 | US 01.09.01 - As a doer, I want for each habit on the list, a visual indicator to show how closely I am following its plan over time. | priority | us as a doer i want for each habit on the list a visual indicator to show how closely i am following its plan over time | 1 |
223,688 | 7,459,768,801 | IssuesEvent | 2018-03-30 16:45:22 | EvictionLab/eviction-maps | https://api.github.com/repos/EvictionLab/eviction-maps | closed | Ranking panel robo-text only shows eviction numbers | enhancement medium priority | We should probably display whatever is currently selected | 1.0 | Ranking panel robo-text only shows eviction numbers - We should probably display whatever is currently selected | priority | ranking panel robo text only shows eviction numbers we should probably display whatever is currently selected | 1 |
534,523 | 15,624,838,692 | IssuesEvent | 2021-03-21 04:51:29 | bluecherrydvr/bluecherry-apps | https://api.github.com/repos/bluecherrydvr/bluecherry-apps | closed | motion_processor & motion_hander race condition for packet flags | Bug Priority Medium Server | `motion_processor` modifies packets `flags` in parallel to `motion_handler` working on them. This may lead to "false negatives" - the cases when frame has motion, but the actual motion flag value not taken into consideration, because it is checked early. This issue doesn't manifest itself (at last in obvious ways) because current implementation of motion_handler traverses packets of GOP again and again while packets add up in current GOP. For issue #86, this approach will be changed, and with new approach the issue manifests itself - detected motion doesn't cause recording start.
| 1.0 | motion_processor & motion_hander race condition for packet flags - `motion_processor` modifies packets `flags` in parallel to `motion_handler` working on them. This may lead to "false negatives" - the cases when frame has motion, but the actual motion flag value not taken into consideration, because it is checked early. This issue doesn't manifest itself (at last in obvious ways) because current implementation of motion_handler traverses packets of GOP again and again while packets add up in current GOP. For issue #86, this approach will be changed, and with new approach the issue manifests itself - detected motion doesn't cause recording start.
| priority | motion processor motion hander race condition for packet flags motion processor modifies packets flags in parallel to motion handler working on them this may lead to false negatives the cases when frame has motion but the actual motion flag value not taken into consideration because it is checked early this issue doesn t manifest itself at last in obvious ways because current implementation of motion handler traverses packets of gop again and again while packets add up in current gop for issue this approach will be changed and with new approach the issue manifests itself detected motion doesn t cause recording start | 1 |
700,624 | 24,067,182,992 | IssuesEvent | 2022-09-17 17:05:27 | alan-turing-institute/environmental-ds-book | https://api.github.com/repos/alan-turing-institute/environmental-ds-book | closed | [ENH] Improve the consistency of folder/files structure in notebooks repositories | enhancement good first issue medium priority | <!--- Thanks for taking the time to request a documentation improvement! -->
<!--- Please go through the sections below -->
## Describe the proposed improvement to the documentation
<!--- A description of what the improvement is -->
The notebook repositories don't have a consistent folder/file structure.
The optimal **folder** and _files_ structure is:
**.binder** (contain the environment.yml file)
**.github** (contain the workflow for automating notebooks)
**.lock** (contain lock files)
_.gitignore
LICENSE
README.md
config.json
<notebook>.ipynb_
In addition, the README.md should contain further instructions how to run the notebook in Binder or locally. See for example [general-preprocessing-rainfall_noaa](https://github.com/Environmental-DS-Book/general-preprocessing-rainfall_noaa).
## Additional information
<!--- Add any other context about the improvement here -->
The suggested changes require access to the [EnvDSbook organisation](https://github.com/Environmental-DS-Book). In most of the notebooks, the lock files are inside **.binder** folder so they should be moved to the **.locks** folder. | 1.0 | [ENH] Improve the consistency of folder/files structure in notebooks repositories - <!--- Thanks for taking the time to request a documentation improvement! -->
<!--- Please go through the sections below -->
## Describe the proposed improvement to the documentation
<!--- A description of what the improvement is -->
The notebook repositories don't have a consistent folder/file structure.
The optimal **folder** and _files_ structure is:
**.binder** (contain the environment.yml file)
**.github** (contain the workflow for automating notebooks)
**.lock** (contain lock files)
_.gitignore
LICENSE
README.md
config.json
<notebook>.ipynb_
In addition, the README.md should contain further instructions how to run the notebook in Binder or locally. See for example [general-preprocessing-rainfall_noaa](https://github.com/Environmental-DS-Book/general-preprocessing-rainfall_noaa).
## Additional information
<!--- Add any other context about the improvement here -->
The suggested changes require access to the [EnvDSbook organisation](https://github.com/Environmental-DS-Book). In most of the notebooks, the lock files are inside **.binder** folder so they should be moved to the **.locks** folder. | priority | improve the consistency of folder files structure in notebooks repositories describe the proposed improvement to the documentation the notebook repositories don t have a consistent folder file structure the optimal folder and files structure is binder contain the environment yml file github contain the workflow for automating notebooks lock contain lock files gitignore license readme md config json ipynb in addition the readme md should contain further instructions how to run the notebook in binder or locally see for example additional information the suggested changes require access to the in most of the notebooks the lock files are inside binder folder so they should be moved to the locks folder | 1 |
745,624 | 25,992,278,179 | IssuesEvent | 2022-12-20 08:42:24 | ColoredCow/portal | https://api.github.com/repos/ColoredCow/portal | closed | Pound option is not coming while creating a manual invoice. | priority : medium type : bug 🐛 module : finance Points: 1 | **Issue raised by**
@mohitsharma-22
**Describe the bug**
While creating invoices manually from the portal the user earlier used to get the `EUR` option in the currency dropdown. Due to some recent deployments, this option is now not visible to the user due to which we are not able to set the correct currency to the invoice amount of the clients that are in different currencies like a Euro.
Due to this currently, we have to correct the currency directly from the database which is not preferred.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to the invoice page from the finance menu
2. Click on `add invoice`
3. Click on the currency dropdown
4. Only INR and USD are available. EUR is not available.
**Expected behavior**
- [ ] We should be able to see `EUR` option in the dropdown
- [ ] After saving the invoice the correct currency should be shown in the created invoice details
**Screenshots**
In this `EUR` is not present
<img width="1214" alt="image" src="https://user-images.githubusercontent.com/54376313/205426024-50e6b251-1f61-4797-a7d1-8a44095ac702.png">
*Environment where error occurred**
- Environment: Production, Staging and local
- OS: All
- Browser: All
| 1.0 | Pound option is not coming while creating a manual invoice. - **Issue raised by**
@mohitsharma-22
**Describe the bug**
While creating invoices manually from the portal the user earlier used to get the `EUR` option in the currency dropdown. Due to some recent deployments, this option is now not visible to the user due to which we are not able to set the correct currency to the invoice amount of the clients that are in different currencies like a Euro.
Due to this currently, we have to correct the currency directly from the database which is not preferred.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to the invoice page from the finance menu
2. Click on `add invoice`
3. Click on the currency dropdown
4. Only INR and USD are available. EUR is not available.
**Expected behavior**
- [ ] We should be able to see `EUR` option in the dropdown
- [ ] After saving the invoice the correct currency should be shown in the created invoice details
**Screenshots**
In this `EUR` is not present
<img width="1214" alt="image" src="https://user-images.githubusercontent.com/54376313/205426024-50e6b251-1f61-4797-a7d1-8a44095ac702.png">
*Environment where error occurred**
- Environment: Production, Staging and local
- OS: All
- Browser: All
| priority | pound option is not coming while creating a manual invoice issue raised by mohitsharma describe the bug while creating invoices manually from the portal the user earlier used to get the eur option in the currency dropdown due to some recent deployments this option is now not visible to the user due to which we are not able to set the correct currency to the invoice amount of the clients that are in different currencies like a euro due to this currently we have to correct the currency directly from the database which is not preferred to reproduce steps to reproduce the behavior go to the invoice page from the finance menu click on add invoice click on the currency dropdown only inr and usd are available eur is not available expected behavior we should be able to see eur option in the dropdown after saving the invoice the correct currency should be shown in the created invoice details screenshots in this eur is not present img width alt image src environment where error occurred environment production staging and local os all browser all | 1 |
54,926 | 3,071,618,618 | IssuesEvent | 2015-08-19 13:12:54 | RobotiumTech/robotium | https://api.github.com/repos/RobotiumTech/robotium | closed | Spinner problem | bug imported invalid Priority-Medium | _From [rindug...@gmail.com](https://code.google.com/u/111945279986103189363/) on November 17, 2010 02:53:51_
1. What steps will reproduce the problem?
When we have the combination of Spinners and EditText fields test case is not working.
2. What is the expected output? What do you see instead?
It should run without any problems
3. What version of the product are you using? On what operating system?
robotium 0.9 and XP Please provide any additional information below. We have an activity where first we have 4 spinners and next some edit text fields when we ran the test case it is executing fine.
But we have one more activity where we have 8 edit text fields followed by 4 spinners but this is not working as expected.
_Original issue: http://code.google.com/p/robotium/issues/detail?id=31_ | 1.0 | Spinner problem - _From [rindug...@gmail.com](https://code.google.com/u/111945279986103189363/) on November 17, 2010 02:53:51_
1. What steps will reproduce the problem?
When we have the combination of Spinners and EditText fields test case is not working.
2. What is the expected output? What do you see instead?
It should run without any problems
3. What version of the product are you using? On what operating system?
robotium 0.9 and XP Please provide any additional information below. We have an activity where first we have 4 spinners and next some edit text fields when we ran the test case it is executing fine.
But we have one more activity where we have 8 edit text fields followed by 4 spinners but this is not working as expected.
_Original issue: http://code.google.com/p/robotium/issues/detail?id=31_ | priority | spinner problem from on november what steps will reproduce the problem when we have the combination of spinners and edittext fields test case is not working what is the expected output what do you see instead it should run without any problems what version of the product are you using on what operating system robotium and xp please provide any additional information below we have an activity where first we have spinners and next some edit text fields when we ran the test case it is executing fine but we have one more activity where we have edit text fields followed by spinners but this is not working as expected original issue | 1 |
476,150 | 13,734,513,250 | IssuesEvent | 2020-10-05 08:48:30 | AY2021S1-CS2103T-F12-4/tp | https://api.github.com/repos/AY2021S1-CS2103T-F12-4/tp | closed | Modify AB3 commands | priority.Medium type.Task | Modify (add the term "**contact**"):
-Add
add **contact** n/NAME** p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…
e.g., add **contact** n/James Ho p/22224444 e/jamesho@example.com a/123, Clementi Rd, 1234665 t/friend t/colleague
-Clear
clear **contact**
-Delete
delete **contact** INDEX
e.g., delete **contact** 3
-Edit
edit **contact** INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]
e.g., edit **contact** 2 n/James Lee e/jameslee@example.com
-Find
find **contact** KEYWORD [MORE_KEYWORDS]
e.g., find **contact** James Jake
-List
list **contact**
| 1.0 | Modify AB3 commands - Modify (add the term "**contact**"):
-Add
add **contact** n/NAME** p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…
e.g., add **contact** n/James Ho p/22224444 e/jamesho@example.com a/123, Clementi Rd, 1234665 t/friend t/colleague
-Clear
clear **contact**
-Delete
delete **contact** INDEX
e.g., delete **contact** 3
-Edit
edit **contact** INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]
e.g., edit **contact** 2 n/James Lee e/jameslee@example.com
-Find
find **contact** KEYWORD [MORE_KEYWORDS]
e.g., find **contact** James Jake
-List
list **contact**
| priority | modify commands modify add the term contact add add contact n name p phone number e email a address … e g add contact n james ho p e jamesho example com a clementi rd t friend t colleague clear clear contact delete delete contact index e g delete contact edit edit contact index e g edit contact n james lee e jameslee example com find find contact keyword e g find contact james jake list list contact | 1 |
644,625 | 20,982,956,368 | IssuesEvent | 2022-03-28 22:05:58 | AY2122S2-CS2103-W17-4/tp | https://api.github.com/repos/AY2122S2-CS2103-W17-4/tp | reopened | List command with sorting and filtering options | priority.Medium type.Epic | To upgrade `ListCommand` to accept parameters for sorting and/or filtering the list before displaying. The format of the command will be `list -X f\[filterType] a\[filterArgument] s\[sort-key]`.
- [x] Edit `ListCommandParser.java` to accept the parameters
- [x] Edit `ListXYZCommand.java` to call the different methods to filter and/or sort the list
- [x] Implement filter by @likeabowx
- [ ] Implement sort by @khoahre123
| 1.0 | List command with sorting and filtering options - To upgrade `ListCommand` to accept parameters for sorting and/or filtering the list before displaying. The format of the command will be `list -X f\[filterType] a\[filterArgument] s\[sort-key]`.
- [x] Edit `ListCommandParser.java` to accept the parameters
- [x] Edit `ListXYZCommand.java` to call the different methods to filter and/or sort the list
- [x] Implement filter by @likeabowx
- [ ] Implement sort by @khoahre123
| priority | list command with sorting and filtering options to upgrade listcommand to accept parameters for sorting and or filtering the list before displaying the format of the command will be list x f a s edit listcommandparser java to accept the parameters edit listxyzcommand java to call the different methods to filter and or sort the list implement filter by likeabowx implement sort by | 1 |
567,934 | 16,920,020,455 | IssuesEvent | 2021-06-25 03:12:24 | PazerOP/tf2_bot_detector | https://api.github.com/repos/PazerOP/tf2_bot_detector | closed | Problem with temp fix [BUG] | Priority: Medium Type: Bug | **Describe the bug**
> My localconfig.vdf file does not have the launch options section in it, and I don't want to break TF2 or Steam by trying to do it myself and getting it wrong.
**To Reproduce**
> Steps to reproduce the behavior:
> 1. Go to localconfig.vdf
> 2. Scroll down to "440"
> 3. See no "launchOptions" or "Launch Options go here" fields.
**Expected behavior**
> I was hoping to follow the guide and see the exact place to type in my launch options.
**Screenshots**
> 
**Desktop**
> - OS: Windows 10
> - Version of bot detector: 1.2.0.798
**Additional context**
> I apologize for making a Git Issue for this instead of asking in the Discord server, but Discord disabled my 5 year old account last week(never would tell me what I did) and won't let me verify with my phone again.
| 1.0 | Problem with temp fix [BUG] - **Describe the bug**
> My localconfig.vdf file does not have the launch options section in it, and I don't want to break TF2 or Steam by trying to do it myself and getting it wrong.
**To Reproduce**
> Steps to reproduce the behavior:
> 1. Go to localconfig.vdf
> 2. Scroll down to "440"
> 3. See no "launchOptions" or "Launch Options go here" fields.
**Expected behavior**
> I was hoping to follow the guide and see the exact place to type in my launch options.
**Screenshots**
> 
**Desktop**
> - OS: Windows 10
> - Version of bot detector: 1.2.0.798
**Additional context**
> I apologize for making a Git Issue for this instead of asking in the Discord server, but Discord disabled my 5 year old account last week(never would tell me what I did) and won't let me verify with my phone again.
| priority | problem with temp fix describe the bug my localconfig vdf file does not have the launch options section in it and i don t want to break or steam by trying to do it myself and getting it wrong to reproduce steps to reproduce the behavior go to localconfig vdf scroll down to see no launchoptions or launch options go here fields expected behavior i was hoping to follow the guide and see the exact place to type in my launch options screenshots desktop os windows version of bot detector additional context i apologize for making a git issue for this instead of asking in the discord server but discord disabled my year old account last week never would tell me what i did and won t let me verify with my phone again | 1 |
521,920 | 15,145,080,769 | IssuesEvent | 2021-02-11 03:18:26 | visit-dav/visit | https://api.github.com/repos/visit-dav/visit | closed | Should manual creation be enabled by default in build_visit? | bug impact medium likelihood medium low-hanging fruit priority | I noticed that the manual target is now contingent on VISIT_ENABLE_MANUALS. Should this be added to the config site file by build_visit by default? Should there be an option in build_visit to add it? | 1.0 | Should manual creation be enabled by default in build_visit? - I noticed that the manual target is now contingent on VISIT_ENABLE_MANUALS. Should this be added to the config site file by build_visit by default? Should there be an option in build_visit to add it? | priority | should manual creation be enabled by default in build visit i noticed that the manual target is now contingent on visit enable manuals should this be added to the config site file by build visit by default should there be an option in build visit to add it | 1 |
735,085 | 25,378,640,785 | IssuesEvent | 2022-11-21 15:51:24 | dmwm/CRABServer | https://api.github.com/repos/dmwm/CRABServer | opened | Jenkins integration tests - which cmssw versions should we use? | Priority: Medium Status: In Progress OPERATION | The file [testingConfig](https://github.com/dmwm/CRABServer/blob/master/test/testingConfigs) provides the list of the cmssw version and scram arch pairs that we use to test CRAB with our integration tests [1]. The full list of available cmssw versions is at [2].
Action items:
- [ ] add cmssw 12_5
- [ ] update cmssw 12_6 after it is released
- [ ] remove 12_0? do we want to do it, or do we want to keep testing cmssw 12 with slc7?
If anybody else has suggestions, they are welcome!
---
[1] https://cmssdt.cern.ch/dmwm-jenkins/job/CRABServer_ExecuteTests/
[2] https://cmssdt.cern.ch/SDT/cgi-bin/ReleasesXML | 1.0 | Jenkins integration tests - which cmssw versions should we use? - The file [testingConfig](https://github.com/dmwm/CRABServer/blob/master/test/testingConfigs) provides the list of the cmssw version and scram arch pairs that we use to test CRAB with our integration tests [1]. The full list of available cmssw versions is at [2].
Action items:
- [ ] add cmssw 12_5
- [ ] update cmssw 12_6 after it is released
- [ ] remove 12_0? do we want to do it, or do we want to keep testing cmssw 12 with slc7?
If anybody else has suggestions, they are welcome!
---
[1] https://cmssdt.cern.ch/dmwm-jenkins/job/CRABServer_ExecuteTests/
[2] https://cmssdt.cern.ch/SDT/cgi-bin/ReleasesXML | priority | jenkins integration tests which cmssw versions should we use the file provides the list of the cmssw version and scram arch pairs that we use to test crab with our integration tests the full list of available cmssw versions is at action items add cmssw update cmssw after it is released remove do we want to do it or do we want to keep testing cmssw with if anybody else has suggestions they are welcome | 1 |
153,822 | 5,904,046,482 | IssuesEvent | 2017-05-19 08:45:16 | dmwm/WMCore | https://api.github.com/repos/dmwm/WMCore | closed | Investigate why some files are not injected into PhEDEx | Medium Priority | Creating this issue so we do not forget to investigate and fix it once and for all.
Everytime we need to redeploy a new agent, we find lots of files that are not injected into PhEDEx (it seems they are only injected into DBS), and then we need to run the well known phedex-fix.sh script.
This is the query that always returns lots of files not injected:
```
mysql> select lfn from dbsbuffer_file where in_phedex=0 and lfn not like '%unmerged%';
```
| 1.0 | Investigate why some files are not injected into PhEDEx - Creating this issue so we do not forget to investigate and fix it once and for all.
Everytime we need to redeploy a new agent, we find lots of files that are not injected into PhEDEx (it seems they are only injected into DBS), and then we need to run the well known phedex-fix.sh script.
This is the query that always returns lots of files not injected:
```
mysql> select lfn from dbsbuffer_file where in_phedex=0 and lfn not like '%unmerged%';
```
| priority | investigate why some files are not injected into phedex creating this issue so we do not forget to investigate and fix it once and for all everytime we need to redeploy a new agent we find lots of files that are not injected into phedex it seems they are only injected into dbs and then we need to run the well known phedex fix sh script this is the query that always returns lots of files not injected mysql select lfn from dbsbuffer file where in phedex and lfn not like unmerged | 1 |
785,710 | 27,623,445,308 | IssuesEvent | 2023-03-10 03:27:00 | erxes/erxes | https://api.github.com/repos/erxes/erxes | closed | Fix & improve "Response Templates" -> Search section | 🐛 Bug priority: Medium 🧚🏻♀️ UI fix ⚡ Quick Wins | Fix & improve "Response Templates" -> Search section
Watch the screen recording here: https://jam.dev/c/464ef302-fec1-4168-bece-4233aba48816
**Website URL:**
[https://office.erxes.io/inbox/index?_id=2aQkEXdbATbGxbLpt](https://office.erxes.io/inbox/index?_id=2aQkEXdbATbGxbLpt)
**Device and browser info:**
Chrome 108.0.0.0 (1920x976) | Mac OS 10.15.7
**Date and time:**
January 12th 2023 | 2:58am UTC
**View developer information (console logs, network requests & timing):**
[jam.dev/c/464ef302-fec1-4168-bece-4233aba48816](https://jam.dev/c/464ef302-fec1-4168-bece-4233aba48816)
*Captured with* *[jam.dev](https://jam.dev?utm_source=github&utm_medium=integration&utm_campaign=captured_with_link_2022_11)* | 1.0 | Fix & improve "Response Templates" -> Search section - Fix & improve "Response Templates" -> Search section
Watch the screen recording here: https://jam.dev/c/464ef302-fec1-4168-bece-4233aba48816
**Website URL:**
[https://office.erxes.io/inbox/index?_id=2aQkEXdbATbGxbLpt](https://office.erxes.io/inbox/index?_id=2aQkEXdbATbGxbLpt)
**Device and browser info:**
Chrome 108.0.0.0 (1920x976) | Mac OS 10.15.7
**Date and time:**
January 12th 2023 | 2:58am UTC
**View developer information (console logs, network requests & timing):**
[jam.dev/c/464ef302-fec1-4168-bece-4233aba48816](https://jam.dev/c/464ef302-fec1-4168-bece-4233aba48816)
*Captured with* *[jam.dev](https://jam.dev?utm_source=github&utm_medium=integration&utm_campaign=captured_with_link_2022_11)* | priority | fix improve response templates search section fix improve response templates search section watch the screen recording here website url device and browser info chrome mac os date and time january utc view developer information console logs network requests timing captured with | 1 |
434,180 | 12,515,298,734 | IssuesEvent | 2020-06-03 07:24:42 | canonical-web-and-design/build.snapcraft.io | https://api.github.com/repos/canonical-web-and-design/build.snapcraft.io | closed | With no public personal GitHub repos, dialog still says “Choose repos to add”+“Add” [3] | Add repos Priority: Medium | 0\. Set up a GitHub account with no public, personal repos in it, unless you have a spare one handy.
1\. Go to build.snapcraft.io and get started using this account.
What you see: The “Add” dialog still says “Choose repos to add” and has an “Add” button, despite offering no repos to choose from.

[What you should see](https://docs.google.com/document/d/1koTwI3cRr2S2vj5zHKKbR7aWxLRfShDVq2gHQ29cDyU/edit#heading=h.43owh6tjv12q): “Hmm, nothing to see here… // The GitHub account {GitHub ID} doesn’t seem to be admin for any public repos. // • Want to use a private repo? Sign up and we’ll e-mail you…”

This issue will still be a problem, but will occur much less often, once organization repos (#132) and private repos (#537) are implemented. | 1.0 | With no public personal GitHub repos, dialog still says “Choose repos to add”+“Add” [3] - 0\. Set up a GitHub account with no public, personal repos in it, unless you have a spare one handy.
1\. Go to build.snapcraft.io and get started using this account.
What you see: The “Add” dialog still says “Choose repos to add” and has an “Add” button, despite offering no repos to choose from.

[What you should see](https://docs.google.com/document/d/1koTwI3cRr2S2vj5zHKKbR7aWxLRfShDVq2gHQ29cDyU/edit#heading=h.43owh6tjv12q): “Hmm, nothing to see here… // The GitHub account {GitHub ID} doesn’t seem to be admin for any public repos. // • Want to use a private repo? Sign up and we’ll e-mail you…”

This issue will still be a problem, but will occur much less often, once organization repos (#132) and private repos (#537) are implemented. | priority | with no public personal github repos dialog still says “choose repos to add” “add” set up a github account with no public personal repos in it unless you have a spare one handy go to build snapcraft io and get started using this account what you see the “add” dialog still says “choose repos to add” and has an “add” button despite offering no repos to choose from “hmm nothing to see here… the github account github id doesn’t seem to be admin for any public repos • want to use a private repo sign up and we’ll e mail you…” this issue will still be a problem but will occur much less often once organization repos and private repos are implemented | 1 |
135,932 | 5,266,952,003 | IssuesEvent | 2017-02-04 17:51:46 | senderle/topic-modeling-tool | https://api.github.com/repos/senderle/topic-modeling-tool | closed | handle inconsistent CSV line lengths | priority-medium | Right now, having a jagged-edged CSV causes bad topic alignment in the output. Pad out incomplete CSV rows. It might make sense to issue a warning, since the input probably has errors.
| 1.0 | handle inconsistent CSV line lengths - Right now, having a jagged-edged CSV causes bad topic alignment in the output. Pad out incomplete CSV rows. It might make sense to issue a warning, since the input probably has errors.
| priority | handle inconsistent csv line lengths right now having a jagged edged csv causes bad topic alignment in the output pad out incomplete csv rows it might make sense to issue a warning since the input probably has errors | 1 |
772,561 | 27,126,785,861 | IssuesEvent | 2023-02-16 06:17:33 | Financial-Instruments-Mini/Project_BE | https://api.github.com/repos/Financial-Instruments-Mini/Project_BE | opened | [feat] 회원 정보 관리 기능 구현 | Status: In Progress Priority: Medium For: API | ## Description (설명)
회원정보 조회, 수정 및 회원 정보 관리 기능을 구현한다.
## Tasks(New feature)
- [ ] 회원 정보 관리 관련 dto 생성
- [ ] 회원 정보 조회 api 구현
- [ ] 회원 정보 수정 api 구현
- [ ] 테스트
## References
[link text]()
| 1.0 | [feat] 회원 정보 관리 기능 구현 - ## Description (설명)
회원정보 조회, 수정 및 회원 정보 관리 기능을 구현한다.
## Tasks(New feature)
- [ ] 회원 정보 관리 관련 dto 생성
- [ ] 회원 정보 조회 api 구현
- [ ] 회원 정보 수정 api 구현
- [ ] 테스트
## References
[link text]()
| priority | 회원 정보 관리 기능 구현 description 설명 회원정보 조회 수정 및 회원 정보 관리 기능을 구현한다 tasks new feature 회원 정보 관리 관련 dto 생성 회원 정보 조회 api 구현 회원 정보 수정 api 구현 테스트 references | 1 |
163,404 | 6,197,926,797 | IssuesEvent | 2017-07-05 17:58:34 | systers/conference-android | https://api.github.com/repos/systers/conference-android | closed | User will have a profile detail page with personal details | Priority: MEDIUM Program: GSoC17 | **Description**
As an attendee,
I want to view my profile details like name, title, email, linked accounts.
**Mocks**

**Acceptance Criteria**
- User open profile detail screen.
- User can review information provided.
- User can edit profile detail page details.
- User can save the profile detail changes.
**Definition of Done**
- Passes all regression tests.
- Passes testing per acceptance criteria items.
- Approved by UI team.
- Able to show feature in demo.
**Estimation**
- 3-4 Hours | 1.0 | User will have a profile detail page with personal details - **Description**
As an attendee,
I want to view my profile details like name, title, email, linked accounts.
**Mocks**

**Acceptance Criteria**
- User open profile detail screen.
- User can review information provided.
- User can edit profile detail page details.
- User can save the profile detail changes.
**Definition of Done**
- Passes all regression tests.
- Passes testing per acceptance criteria items.
- Approved by UI team.
- Able to show feature in demo.
**Estimation**
- 3-4 Hours | priority | user will have a profile detail page with personal details description as an attendee i want to view my profile details like name title email linked accounts mocks acceptance criteria user open profile detail screen user can review information provided user can edit profile detail page details user can save the profile detail changes definition of done passes all regression tests passes testing per acceptance criteria items approved by ui team able to show feature in demo estimation hours | 1 |
331,292 | 10,063,736,104 | IssuesEvent | 2019-07-23 06:53:18 | RoboJackets/robocup-software | https://api.github.com/repos/RoboJackets/robocup-software | opened | (Tracking Issue) Refactor SystemState | area / soccer exp / legendary (∞) priority / medium status / developing type / refactor | We have as a stated goal to refactor Processor, but before we take a look at our logic we need to work on our data representation. Currently, all data is passed around in SystemState without any clear "ownership" over individual fields. For example, gameplay code, motion planning, and radio all read and write to fields in the `Robot` class.
Address this by splitting SystemState up into several smaller data structures that are more "atomic" (i.e. written as a unit, so WorldState written by vision filter, RobotStatus written by radio, RobotCommands written by gameplay, etc. with a Logger and DebugDrawer that are accessible everywhere), with each module containing a pointer to a Context that contains them all (instead of a SystemState pointer).
This doesn't necessarily fix all of our issues (we still have shared mutable state) but it clarifies who is responsible for which data and make each of the modules a little bit more independent, and prepares us well for a long-term move to ROS if that's the direction we want to go.
Current plan of attack (in chronological order):
- [ ] Add a `Context` struct containing only `SystemState`, propagate a `Context` through the tree.
- [ ] Move `GameState` from `SystemState` into `Context`.
- [ ] Break out debug-drawing capability from `SystemState` into `DebugDrawer`.
- [ ] Make Python-side Robot class to maintain existing gameplay API by wrapping reads/writes from structs (start by just forwarding calls to the old `OurRobot` class)
- [ ] Break out `WorldState` (ball and robot positions and velocities)
- [ ] Break out `RobotPath`
- [ ] Break out `RobotStatus` for robot status reports from radio
- [ ] Break out `RobotIntent` for the goals set by the gameplay module
- [ ] Break out `RobotCommand` for the final commands ready to be sent to the radio, with a function to generate a radio packet and a proto
- [ ] Move configuration parameters into context instead of making it totally global
- [ ] **(Ongoing)** make individual parts of the code take in one struct and return another instead of directly mutating values in the `SystemState`: for example, a path planner should take in a `WorldState` and `RobotIntent` and produce a `RobotPath`. The following is an in-progress list of places we need to do this; if you think of something that needs to be added to this list, comment or DM me.
- [ ] Planner: `(WorldState, RobotIntent) -> RobotPath`
- [ ] Radio: `RobotCommand -> (network) -> RobotStatus`
- [ ] Motion control/trajectory follower: `(RobotCommand, RobotPath, WorldState) -> RobotIntent`
- [ ] Vision filter: `RobotCommand -> WorldState`
- [ ] Joystick: `void -> RobotIntent` | 1.0 | (Tracking Issue) Refactor SystemState - We have as a stated goal to refactor Processor, but before we take a look at our logic we need to work on our data representation. Currently, all data is passed around in SystemState without any clear "ownership" over individual fields. For example, gameplay code, motion planning, and radio all read and write to fields in the `Robot` class.
Address this by splitting SystemState up into several smaller data structures that are more "atomic" (i.e. written as a unit, so WorldState written by vision filter, RobotStatus written by radio, RobotCommands written by gameplay, etc. with a Logger and DebugDrawer that are accessible everywhere), with each module containing a pointer to a Context that contains them all (instead of a SystemState pointer).
This doesn't necessarily fix all of our issues (we still have shared mutable state) but it clarifies who is responsible for which data and make each of the modules a little bit more independent, and prepares us well for a long-term move to ROS if that's the direction we want to go.
Current plan of attack (in chronological order):
- [ ] Add a `Context` struct containing only `SystemState`, propagate a `Context` through the tree.
- [ ] Move `GameState` from `SystemState` into `Context`.
- [ ] Break out debug-drawing capability from `SystemState` into `DebugDrawer`.
- [ ] Make Python-side Robot class to maintain existing gameplay API by wrapping reads/writes from structs (start by just forwarding calls to the old `OurRobot` class)
- [ ] Break out `WorldState` (ball and robot positions and velocities)
- [ ] Break out `RobotPath`
- [ ] Break out `RobotStatus` for robot status reports from radio
- [ ] Break out `RobotIntent` for the goals set by the gameplay module
- [ ] Break out `RobotCommand` for the final commands ready to be sent to the radio, with a function to generate a radio packet and a proto
- [ ] Move configuration parameters into context instead of making it totally global
- [ ] **(Ongoing)** make individual parts of the code take in one struct and return another instead of directly mutating values in the `SystemState`: for example, a path planner should take in a `WorldState` and `RobotIntent` and produce a `RobotPath`. The following is an in-progress list of places we need to do this; if you think of something that needs to be added to this list, comment or DM me.
- [ ] Planner: `(WorldState, RobotIntent) -> RobotPath`
- [ ] Radio: `RobotCommand -> (network) -> RobotStatus`
- [ ] Motion control/trajectory follower: `(RobotCommand, RobotPath, WorldState) -> RobotIntent`
- [ ] Vision filter: `RobotCommand -> WorldState`
- [ ] Joystick: `void -> RobotIntent` | priority | tracking issue refactor systemstate we have as a stated goal to refactor processor but before we take a look at our logic we need to work on our data representation currently all data is passed around in systemstate without any clear ownership over individual fields for example gameplay code motion planning and radio all read and write to fields in the robot class address this by splitting systemstate up into several smaller data structures that are more atomic i e written as a unit so worldstate written by vision filter robotstatus written by radio robotcommands written by gameplay etc with a logger and debugdrawer that are accessible everywhere with each module containing a pointer to a context that contains them all instead of a systemstate pointer this doesn t necessarily fix all of our issues we still have shared mutable state but it clarifies who is responsible for which data and make each of the modules a little bit more independent and prepares us well for a long term move to ros if that s the direction we want to go current plan of attack in chronological order add a context struct containing only systemstate propagate a context through the tree move gamestate from systemstate into context break out debug drawing capability from systemstate into debugdrawer make python side robot class to maintain existing gameplay api by wrapping reads writes from structs start by just forwarding calls to the old ourrobot class break out worldstate ball and robot positions and velocities break out robotpath break out robotstatus for robot status reports from radio break out robotintent for the goals set by the gameplay module break out robotcommand for the final commands ready to be sent to the radio with a function to generate a radio packet and a proto move configuration parameters into context instead of making it totally global ongoing make individual parts of the code take in one struct and return another instead of directly mutating values in the systemstate for example a path planner should take in a worldstate and robotintent and produce a robotpath the following is an in progress list of places we need to do this if you think of something that needs to be added to this list comment or dm me planner worldstate robotintent robotpath radio robotcommand network robotstatus motion control trajectory follower robotcommand robotpath worldstate robotintent vision filter robotcommand worldstate joystick void robotintent | 1 |
144,941 | 5,555,340,325 | IssuesEvent | 2017-03-24 04:27:22 | paceuniversity/CS3892017team5 | https://api.github.com/repos/paceuniversity/CS3892017team5 | opened | User Story #14 Display for Objective | MediumPriority Sprint 1 User Story | As a player I want some form of guidance that tells me what my current objective is so that I know my actions make a difference in the game. | 1.0 | User Story #14 Display for Objective - As a player I want some form of guidance that tells me what my current objective is so that I know my actions make a difference in the game. | priority | user story display for objective as a player i want some form of guidance that tells me what my current objective is so that i know my actions make a difference in the game | 1 |
620,715 | 19,568,323,484 | IssuesEvent | 2022-01-04 06:00:59 | bounswe/2021SpringGroup7 | https://api.github.com/repos/bounswe/2021SpringGroup7 | closed | CF-20 Add Theme For Whole Application | Type: Enhancement Status: In Progress Priority: Medium Frontend | Is your proposal related to a problem?
--------------------------------------
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
A theme should be added to make the colours consistent in whole app. The theme should apply to all elements in app. If need be the theme should e overridden to provide new colour, shadowing etc.
Describe the solution you'd like
--------------------------------
<!--
Provide a clear and concise description of what you want to happen.
-->
A theme wrapper around the whole app should create a theme for the application
Additional context
------------------
<!--
Is there anything else you can add about the proposal?
You might want to link to related issues here, if you haven't already.
-->
@erencanuysal already added some theme properties to register page. The colour palettes should be used from there.
| 1.0 | CF-20 Add Theme For Whole Application - Is your proposal related to a problem?
--------------------------------------
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
A theme should be added to make the colours consistent in whole app. The theme should apply to all elements in app. If need be the theme should e overridden to provide new colour, shadowing etc.
Describe the solution you'd like
--------------------------------
<!--
Provide a clear and concise description of what you want to happen.
-->
A theme wrapper around the whole app should create a theme for the application
Additional context
------------------
<!--
Is there anything else you can add about the proposal?
You might want to link to related issues here, if you haven't already.
-->
@erencanuysal already added some theme properties to register page. The colour palettes should be used from there.
| priority | cf add theme for whole application is your proposal related to a problem provide a clear and concise description of what the problem is for example i m always frustrated when a theme should be added to make the colours consistent in whole app the theme should apply to all elements in app if need be the theme should e overridden to provide new colour shadowing etc describe the solution you d like provide a clear and concise description of what you want to happen a theme wrapper around the whole app should create a theme for the application additional context is there anything else you can add about the proposal you might want to link to related issues here if you haven t already erencanuysal already added some theme properties to register page the colour palettes should be used from there | 1 |
95,856 | 3,961,276,665 | IssuesEvent | 2016-05-02 12:12:34 | restlet/restlet-framework-java | https://api.github.com/repos/restlet/restlet-framework-java | closed | Improve null handling when adding custom header | Module: Restlet Engine Priority: medium State: new Type: enhancement Version: 2.3 | Actually, `request.getHeaders()` could return null.
For example:
```java
ClientResource clientResource = new ClientResource("/path");
clientResource.getRequest().getHeaders().add("x-custom-header", "value");
``` | 1.0 | Improve null handling when adding custom header - Actually, `request.getHeaders()` could return null.
For example:
```java
ClientResource clientResource = new ClientResource("/path");
clientResource.getRequest().getHeaders().add("x-custom-header", "value");
``` | priority | improve null handling when adding custom header actually request getheaders could return null for example java clientresource clientresource new clientresource path clientresource getrequest getheaders add x custom header value | 1 |
36,186 | 2,796,738,557 | IssuesEvent | 2015-05-12 09:30:39 | marcopar/ethernetip4j | https://api.github.com/repos/marcopar/ethernetip4j | closed | Added source from patch to trunk | auto-migrated Priority-Medium Type-Enhancement Usability | ```
Now supports more complex tags using the "." notation from the user side hiding
the protocol specific delimiters.
```
Original issue reported on code.google.com by `sewallin...@gmail.com` on 14 Oct 2012 at 3:23 | 1.0 | Added source from patch to trunk - ```
Now supports more complex tags using the "." notation from the user side hiding
the protocol specific delimiters.
```
Original issue reported on code.google.com by `sewallin...@gmail.com` on 14 Oct 2012 at 3:23 | priority | added source from patch to trunk now supports more complex tags using the notation from the user side hiding the protocol specific delimiters original issue reported on code google com by sewallin gmail com on oct at | 1 |
795,380 | 28,071,004,163 | IssuesEvent | 2023-03-29 19:04:02 | gamefreedomgit/Maelstrom | https://api.github.com/repos/gamefreedomgit/Maelstrom | closed | Quest bug - level 16 Loch Modan | Priority: Medium Quest | [//]: # (REMBEMBER! Add links to things related to the bug using for example:)
[//]: # (http://wowhead.com/)
[//]: # (cata-twinhead.twinstar.cz)
**Description:**
Quest "Keep your hands off the merchandise" https://cata-twinhead.twinstar.cz/?quest=13650 does not allow for interaction with the quest objects. They don't sparkle either.
**How to reproduce:**
Have the quest and walk into the dig site. On two PCs we had no interact ability with any of the artifacts.
**How it should work:**
Should be able to inspect the artifacts for quest completion
**Database links:**
https://cata-twinhead.twinstar.cz/?quest=13650 | 1.0 | Quest bug - level 16 Loch Modan - [//]: # (REMBEMBER! Add links to things related to the bug using for example:)
[//]: # (http://wowhead.com/)
[//]: # (cata-twinhead.twinstar.cz)
**Description:**
Quest "Keep your hands off the merchandise" https://cata-twinhead.twinstar.cz/?quest=13650 does not allow for interaction with the quest objects. They don't sparkle either.
**How to reproduce:**
Have the quest and walk into the dig site. On two PCs we had no interact ability with any of the artifacts.
**How it should work:**
Should be able to inspect the artifacts for quest completion
**Database links:**
https://cata-twinhead.twinstar.cz/?quest=13650 | priority | quest bug level loch modan rembember add links to things related to the bug using for example cata twinhead twinstar cz description quest keep your hands off the merchandise does not allow for interaction with the quest objects they don t sparkle either how to reproduce have the quest and walk into the dig site on two pcs we had no interact ability with any of the artifacts how it should work should be able to inspect the artifacts for quest completion database links | 1 |
517,921 | 15,020,968,052 | IssuesEvent | 2021-02-01 15:17:55 | plotly/Dash.NET | https://api.github.com/repos/plotly/Dash.NET | opened | Add DSL for Component Properties | Area:Backend Priority: Medium | Should be straightforward to implement a union case for the most used properties in callbacks, such as `children` or `value`. The rest can be captured by `Custom`:
```fsharp
type ComponentProperty =
| Children
| Value
| Custom of string
static member convert =
//do the mapping to the correct string version here
```
| 1.0 | Add DSL for Component Properties - Should be straightforward to implement a union case for the most used properties in callbacks, such as `children` or `value`. The rest can be captured by `Custom`:
```fsharp
type ComponentProperty =
| Children
| Value
| Custom of string
static member convert =
//do the mapping to the correct string version here
```
| priority | add dsl for component properties should be straightforward to implement a union case for the most used properties in callbacks such as children or value the rest can be captured by custom fsharp type componentproperty children value custom of string static member convert do the mapping to the correct string version here | 1 |
688,145 | 23,550,016,054 | IssuesEvent | 2022-08-21 17:39:26 | crushten/go_endpoint_cloud | https://api.github.com/repos/crushten/go_endpoint_cloud | closed | Create scheduled security scan workflow | priority: medium github: actions security | This should be ran daily. See `https://github.com/securego/gosec/blob/master/.github/workflows/scan.yml` or similar.
Can use the audit job from the ci/cd workflow. | 1.0 | Create scheduled security scan workflow - This should be ran daily. See `https://github.com/securego/gosec/blob/master/.github/workflows/scan.yml` or similar.
Can use the audit job from the ci/cd workflow. | priority | create scheduled security scan workflow this should be ran daily see or similar can use the audit job from the ci cd workflow | 1 |
489,605 | 14,108,763,484 | IssuesEvent | 2020-11-06 18:22:20 | airshipit/airshipctl | https://api.github.com/repos/airshipit/airshipctl | closed | [CI related] enable linter and copyright jobs to be run against all files | bug good first issue priority/medium ready for review | **Describe the bug**
With our current CI setup lint checks run only when go files are modified, which allowed trailing whitespace to be merged into airshipctl, which essentially broke all jobs that had linter included in them.
**Proposed solution**
Add lint job to be run against all files, perhaps we could also split current lint-unit test job into separate smaller jobs, because we may not want to run unit-tests against document changes or bash scripts, and at the same time we want to run lint test against those. | 1.0 | [CI related] enable linter and copyright jobs to be run against all files - **Describe the bug**
With our current CI setup lint checks run only when go files are modified, which allowed trailing whitespace to be merged into airshipctl, which essentially broke all jobs that had linter included in them.
**Proposed solution**
Add lint job to be run against all files, perhaps we could also split current lint-unit test job into separate smaller jobs, because we may not want to run unit-tests against document changes or bash scripts, and at the same time we want to run lint test against those. | priority | enable linter and copyright jobs to be run against all files describe the bug with our current ci setup lint checks run only when go files are modified which allowed trailing whitespace to be merged into airshipctl which essentially broke all jobs that had linter included in them proposed solution add lint job to be run against all files perhaps we could also split current lint unit test job into separate smaller jobs because we may not want to run unit tests against document changes or bash scripts and at the same time we want to run lint test against those | 1 |
202,449 | 7,048,009,535 | IssuesEvent | 2018-01-02 15:57:32 | bioinformatics-ua/dicoogle | https://api.github.com/repos/bioinformatics-ua/dicoogle | closed | Create roles.xml on startup if missing | dicoogle-core good first issue medium priority | A new Dicoogle deployment will print a stack trace because of a missing roles.xml, whereas other configuration files are automatically created. We should make Dicoogle create a barebones file instead.
Example roles.xml:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Roles>
<Role name="pen" />
<Role name="healthcare" />
</Roles>
``` | 1.0 | Create roles.xml on startup if missing - A new Dicoogle deployment will print a stack trace because of a missing roles.xml, whereas other configuration files are automatically created. We should make Dicoogle create a barebones file instead.
Example roles.xml:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Roles>
<Role name="pen" />
<Role name="healthcare" />
</Roles>
``` | priority | create roles xml on startup if missing a new dicoogle deployment will print a stack trace because of a missing roles xml whereas other configuration files are automatically created we should make dicoogle create a barebones file instead example roles xml xml | 1 |
348,218 | 10,440,242,843 | IssuesEvent | 2019-09-18 08:18:30 | borgia-app/Borgia | https://api.github.com/repos/borgia-app/Borgia | closed | Merge "Edit user" page | medium-priority | There are two pages to edit the user information:
- Self edit
- Admin edit
The user can now edit all his information, so there is no need to keep two separate pages | 1.0 | Merge "Edit user" page - There are two pages to edit the user information:
- Self edit
- Admin edit
The user can now edit all his information, so there is no need to keep two separate pages | priority | merge edit user page there are two pages to edit the user information self edit admin edit the user can now edit all his information so there is no need to keep two separate pages | 1 |
689,992 | 23,642,295,450 | IssuesEvent | 2022-08-25 18:16:57 | SETI/pds-opus | https://api.github.com/repos/SETI/pds-opus | closed | Add green hint numbers for collapsed categories | A-Enhancement Effort 2 Medium B-OPUS JS Priority 4 Useful | Add green hint numbers for categories such as planets and "Ground-based telescopes", automatically calculated from the green hint number present in the mults under the category. This can probably be done entirely in JS.
| 1.0 | Add green hint numbers for collapsed categories - Add green hint numbers for categories such as planets and "Ground-based telescopes", automatically calculated from the green hint number present in the mults under the category. This can probably be done entirely in JS.
| priority | add green hint numbers for collapsed categories add green hint numbers for categories such as planets and ground based telescopes automatically calculated from the green hint number present in the mults under the category this can probably be done entirely in js | 1 |
714,152 | 24,552,857,252 | IssuesEvent | 2022-10-12 13:50:58 | rstudio/gt | https://api.github.com/repos/rstudio/gt | closed | Add option to override `tab_source_note()` | Difficulty: [3] Advanced Effort: [3] High Priority: [2] Medium Type: ★ Enhancement | I find it quite neat that gt allows to override (delete) existing optional table parts like headers by using existing gt objects and re-applying the `tab_*()` and setting the label to `NULL`. This comes handy for different journals sometimes requiring to have headers and footers outside the table object. However, this currently only seems to work for `tab_header()` and not for `tab_source_note()`. Would be nice to also have the ability to reset existing source notes.
``` r
library(gt)
tab_1 <-
gtcars %>%
dplyr::select(mfr, model, msrp) %>%
dplyr::slice(1:5) %>%
gt() %>%
tab_header(title = "A simple Table",
subtitle = "with a subtitle") %>%
tab_source_note(
source_note = "From edmunds.com"
)
```
overriding headers works, but overriding tab\_source\_note does not work:
``` r
tab_1 %>%
tab_header(title = NULL,
subtitle = NULL) %>%
tab_source_note(source_note = NULL)
```
<div id="gqehiatkcg" style="overflow-x:auto;overflow-y:auto;width:auto;height:auto;">
<table class="gt_table">
<thead class="gt_col_headings">
<tr>
<th class="gt_col_heading gt_columns_bottom_border gt_left" rowspan="1" colspan="1">mfr</th>
<th class="gt_col_heading gt_columns_bottom_border gt_left" rowspan="1" colspan="1">model</th>
<th class="gt_col_heading gt_columns_bottom_border gt_right" rowspan="1" colspan="1">msrp</th>
</tr>
</thead>
<tbody class="gt_table_body">
<tr><td class="gt_row gt_left">Ford</td>
<td class="gt_row gt_left">GT</td>
<td class="gt_row gt_right">447000</td></tr>
<tr><td class="gt_row gt_left">Ferrari</td>
<td class="gt_row gt_left">458 Speciale</td>
<td class="gt_row gt_right">291744</td></tr>
<tr><td class="gt_row gt_left">Ferrari</td>
<td class="gt_row gt_left">458 Spider</td>
<td class="gt_row gt_right">263553</td></tr>
<tr><td class="gt_row gt_left">Ferrari</td>
<td class="gt_row gt_left">458 Italia</td>
<td class="gt_row gt_right">233509</td></tr>
<tr><td class="gt_row gt_left">Ferrari</td>
<td class="gt_row gt_left">488 GTB</td>
<td class="gt_row gt_right">245400</td></tr>
</tbody>
<tfoot class="gt_sourcenotes">
<tr>
<td class="gt_sourcenote" colspan="3">From edmunds.com</td>
</tr>
</tfoot>
</table>
</div>
<sup>Created on 2021-06-08 by the [reprex package](https://reprex.tidyverse.org) (v2.0.0)</sup>
<details style="margin-bottom:10px;">
<summary>
Session info
</summary>
``` r
sessioninfo::session_info()
#> - Session info ---------------------------------------------------------------
#> setting value
#> version R version 4.0.5 (2021-03-31)
#> os Windows 10 x64
#> system x86_64, mingw32
#> ui RTerm
#> language (EN)
#> collate German_Germany.1252
#> ctype German_Germany.1252
#> tz Europe/Berlin
#> date 2021-06-08
#>
#> - Packages -------------------------------------------------------------------
#> package * version date lib source
#> assertthat 0.2.1 2019-03-21 [1] CRAN (R 4.0.0)
#> backports 1.2.1 2020-12-09 [1] CRAN (R 4.0.3)
#> checkmate 2.0.0 2020-02-06 [1] CRAN (R 4.0.2)
#> cli 2.5.0 2021-04-26 [1] CRAN (R 4.0.5)
#> colorspace 2.0-1 2021-05-04 [1] CRAN (R 4.0.5)
#> crayon 1.4.1 2021-02-08 [1] CRAN (R 4.0.3)
#> DBI 1.1.1 2021-01-15 [1] CRAN (R 4.0.3)
#> digest 0.6.27 2020-10-24 [1] CRAN (R 4.0.3)
#> dplyr 1.0.6 2021-05-05 [1] CRAN (R 4.0.5)
#> ellipsis 0.3.2 2021-04-29 [1] CRAN (R 4.0.5)
#> evaluate 0.14 2019-05-28 [1] CRAN (R 4.0.0)
#> fansi 0.5.0 2021-05-25 [1] CRAN (R 4.0.5)
#> fs 1.5.0 2020-07-31 [1] CRAN (R 4.0.2)
#> generics 0.1.0 2020-10-31 [1] CRAN (R 4.0.3)
#> ggplot2 3.3.3 2020-12-30 [1] CRAN (R 4.0.3)
#> glue 1.4.2 2020-08-27 [1] CRAN (R 4.0.2)
#> gt * 0.3.0 2021-05-12 [1] CRAN (R 4.0.5)
#> gtable 0.3.0 2019-03-25 [1] CRAN (R 4.0.0)
#> highr 0.9 2021-04-16 [1] CRAN (R 4.0.5)
#> htmltools 0.5.1.1 2021-01-22 [1] CRAN (R 4.0.3)
#> knitr 1.33 2021-04-24 [1] CRAN (R 4.0.5)
#> lifecycle 1.0.0 2021-02-15 [1] CRAN (R 4.0.3)
#> magrittr 2.0.1 2020-11-17 [1] CRAN (R 4.0.3)
#> munsell 0.5.0 2018-06-12 [1] CRAN (R 4.0.0)
#> pillar 1.6.1 2021-05-16 [1] CRAN (R 4.0.5)
#> pkgconfig 2.0.3 2019-09-22 [1] CRAN (R 4.0.0)
#> purrr 0.3.4 2020-04-17 [1] CRAN (R 4.0.0)
#> R6 2.5.0 2020-10-28 [1] CRAN (R 4.0.3)
#> reprex 2.0.0 2021-04-02 [1] CRAN (R 4.0.5)
#> rlang 0.4.11 2021-04-30 [1] CRAN (R 4.0.5)
#> rmarkdown 2.8 2021-05-07 [1] CRAN (R 4.0.5)
#> sass 0.4.0 2021-05-12 [1] CRAN (R 4.0.5)
#> scales 1.1.1 2020-05-11 [1] CRAN (R 4.0.2)
#> sessioninfo 1.1.1 2018-11-05 [1] CRAN (R 4.0.0)
#> stringi 1.6.2 2021-05-17 [1] CRAN (R 4.0.5)
#> stringr 1.4.0 2019-02-10 [1] CRAN (R 4.0.0)
#> styler 1.4.1 2021-03-30 [1] CRAN (R 4.0.4)
#> tibble 3.1.2 2021-05-16 [1] CRAN (R 4.0.5)
#> tidyselect 1.1.1 2021-04-30 [1] CRAN (R 4.0.5)
#> utf8 1.2.1 2021-03-12 [1] CRAN (R 4.0.3)
#> vctrs 0.3.8 2021-04-29 [1] CRAN (R 4.0.5)
#> withr 2.4.2 2021-04-18 [1] CRAN (R 4.0.5)
#> xfun 0.23 2021-05-15 [1] CRAN (R 4.0.5)
#> yaml 2.2.1 2020-02-01 [1] CRAN (R 4.0.0)
#>
#> [1] C:/Users/ga27jar/Documents/R/win-library/4.0
#> [2] C:/Program Files/R/R-4.0.5/library
```
</details>
| 1.0 | Add option to override `tab_source_note()` - I find it quite neat that gt allows to override (delete) existing optional table parts like headers by using existing gt objects and re-applying the `tab_*()` and setting the label to `NULL`. This comes handy for different journals sometimes requiring to have headers and footers outside the table object. However, this currently only seems to work for `tab_header()` and not for `tab_source_note()`. Would be nice to also have the ability to reset existing source notes.
``` r
library(gt)
tab_1 <-
gtcars %>%
dplyr::select(mfr, model, msrp) %>%
dplyr::slice(1:5) %>%
gt() %>%
tab_header(title = "A simple Table",
subtitle = "with a subtitle") %>%
tab_source_note(
source_note = "From edmunds.com"
)
```
overriding headers works, but overriding tab\_source\_note does not work:
``` r
tab_1 %>%
tab_header(title = NULL,
subtitle = NULL) %>%
tab_source_note(source_note = NULL)
```
<div id="gqehiatkcg" style="overflow-x:auto;overflow-y:auto;width:auto;height:auto;">
<table class="gt_table">
<thead class="gt_col_headings">
<tr>
<th class="gt_col_heading gt_columns_bottom_border gt_left" rowspan="1" colspan="1">mfr</th>
<th class="gt_col_heading gt_columns_bottom_border gt_left" rowspan="1" colspan="1">model</th>
<th class="gt_col_heading gt_columns_bottom_border gt_right" rowspan="1" colspan="1">msrp</th>
</tr>
</thead>
<tbody class="gt_table_body">
<tr><td class="gt_row gt_left">Ford</td>
<td class="gt_row gt_left">GT</td>
<td class="gt_row gt_right">447000</td></tr>
<tr><td class="gt_row gt_left">Ferrari</td>
<td class="gt_row gt_left">458 Speciale</td>
<td class="gt_row gt_right">291744</td></tr>
<tr><td class="gt_row gt_left">Ferrari</td>
<td class="gt_row gt_left">458 Spider</td>
<td class="gt_row gt_right">263553</td></tr>
<tr><td class="gt_row gt_left">Ferrari</td>
<td class="gt_row gt_left">458 Italia</td>
<td class="gt_row gt_right">233509</td></tr>
<tr><td class="gt_row gt_left">Ferrari</td>
<td class="gt_row gt_left">488 GTB</td>
<td class="gt_row gt_right">245400</td></tr>
</tbody>
<tfoot class="gt_sourcenotes">
<tr>
<td class="gt_sourcenote" colspan="3">From edmunds.com</td>
</tr>
</tfoot>
</table>
</div>
<sup>Created on 2021-06-08 by the [reprex package](https://reprex.tidyverse.org) (v2.0.0)</sup>
<details style="margin-bottom:10px;">
<summary>
Session info
</summary>
``` r
sessioninfo::session_info()
#> - Session info ---------------------------------------------------------------
#> setting value
#> version R version 4.0.5 (2021-03-31)
#> os Windows 10 x64
#> system x86_64, mingw32
#> ui RTerm
#> language (EN)
#> collate German_Germany.1252
#> ctype German_Germany.1252
#> tz Europe/Berlin
#> date 2021-06-08
#>
#> - Packages -------------------------------------------------------------------
#> package * version date lib source
#> assertthat 0.2.1 2019-03-21 [1] CRAN (R 4.0.0)
#> backports 1.2.1 2020-12-09 [1] CRAN (R 4.0.3)
#> checkmate 2.0.0 2020-02-06 [1] CRAN (R 4.0.2)
#> cli 2.5.0 2021-04-26 [1] CRAN (R 4.0.5)
#> colorspace 2.0-1 2021-05-04 [1] CRAN (R 4.0.5)
#> crayon 1.4.1 2021-02-08 [1] CRAN (R 4.0.3)
#> DBI 1.1.1 2021-01-15 [1] CRAN (R 4.0.3)
#> digest 0.6.27 2020-10-24 [1] CRAN (R 4.0.3)
#> dplyr 1.0.6 2021-05-05 [1] CRAN (R 4.0.5)
#> ellipsis 0.3.2 2021-04-29 [1] CRAN (R 4.0.5)
#> evaluate 0.14 2019-05-28 [1] CRAN (R 4.0.0)
#> fansi 0.5.0 2021-05-25 [1] CRAN (R 4.0.5)
#> fs 1.5.0 2020-07-31 [1] CRAN (R 4.0.2)
#> generics 0.1.0 2020-10-31 [1] CRAN (R 4.0.3)
#> ggplot2 3.3.3 2020-12-30 [1] CRAN (R 4.0.3)
#> glue 1.4.2 2020-08-27 [1] CRAN (R 4.0.2)
#> gt * 0.3.0 2021-05-12 [1] CRAN (R 4.0.5)
#> gtable 0.3.0 2019-03-25 [1] CRAN (R 4.0.0)
#> highr 0.9 2021-04-16 [1] CRAN (R 4.0.5)
#> htmltools 0.5.1.1 2021-01-22 [1] CRAN (R 4.0.3)
#> knitr 1.33 2021-04-24 [1] CRAN (R 4.0.5)
#> lifecycle 1.0.0 2021-02-15 [1] CRAN (R 4.0.3)
#> magrittr 2.0.1 2020-11-17 [1] CRAN (R 4.0.3)
#> munsell 0.5.0 2018-06-12 [1] CRAN (R 4.0.0)
#> pillar 1.6.1 2021-05-16 [1] CRAN (R 4.0.5)
#> pkgconfig 2.0.3 2019-09-22 [1] CRAN (R 4.0.0)
#> purrr 0.3.4 2020-04-17 [1] CRAN (R 4.0.0)
#> R6 2.5.0 2020-10-28 [1] CRAN (R 4.0.3)
#> reprex 2.0.0 2021-04-02 [1] CRAN (R 4.0.5)
#> rlang 0.4.11 2021-04-30 [1] CRAN (R 4.0.5)
#> rmarkdown 2.8 2021-05-07 [1] CRAN (R 4.0.5)
#> sass 0.4.0 2021-05-12 [1] CRAN (R 4.0.5)
#> scales 1.1.1 2020-05-11 [1] CRAN (R 4.0.2)
#> sessioninfo 1.1.1 2018-11-05 [1] CRAN (R 4.0.0)
#> stringi 1.6.2 2021-05-17 [1] CRAN (R 4.0.5)
#> stringr 1.4.0 2019-02-10 [1] CRAN (R 4.0.0)
#> styler 1.4.1 2021-03-30 [1] CRAN (R 4.0.4)
#> tibble 3.1.2 2021-05-16 [1] CRAN (R 4.0.5)
#> tidyselect 1.1.1 2021-04-30 [1] CRAN (R 4.0.5)
#> utf8 1.2.1 2021-03-12 [1] CRAN (R 4.0.3)
#> vctrs 0.3.8 2021-04-29 [1] CRAN (R 4.0.5)
#> withr 2.4.2 2021-04-18 [1] CRAN (R 4.0.5)
#> xfun 0.23 2021-05-15 [1] CRAN (R 4.0.5)
#> yaml 2.2.1 2020-02-01 [1] CRAN (R 4.0.0)
#>
#> [1] C:/Users/ga27jar/Documents/R/win-library/4.0
#> [2] C:/Program Files/R/R-4.0.5/library
```
</details>
| priority | add option to override tab source note i find it quite neat that gt allows to override delete existing optional table parts like headers by using existing gt objects and re applying the tab and setting the label to null this comes handy for different journals sometimes requiring to have headers and footers outside the table object however this currently only seems to work for tab header and not for tab source note would be nice to also have the ability to reset existing source notes r library gt tab gtcars dplyr select mfr model msrp dplyr slice gt tab header title a simple table subtitle with a subtitle tab source note source note from edmunds com overriding headers works but overriding tab source note does not work r tab tab header title null subtitle null tab source note source note null mfr model msrp ford gt ferrari speciale ferrari spider ferrari italia ferrari gtb from edmunds com created on by the session info r sessioninfo session info session info setting value version r version os windows system ui rterm language en collate german germany ctype german germany tz europe berlin date packages package version date lib source assertthat cran r backports cran r checkmate cran r cli cran r colorspace cran r crayon cran r dbi cran r digest cran r dplyr cran r ellipsis cran r evaluate cran r fansi cran r fs cran r generics cran r cran r glue cran r gt cran r gtable cran r highr cran r htmltools cran r knitr cran r lifecycle cran r magrittr cran r munsell cran r pillar cran r pkgconfig cran r purrr cran r cran r reprex cran r rlang cran r rmarkdown cran r sass cran r scales cran r sessioninfo cran r stringi cran r stringr cran r styler cran r tibble cran r tidyselect cran r cran r vctrs cran r withr cran r xfun cran r yaml cran r c users documents r win library c program files r r library | 1 |
415,103 | 12,124,781,751 | IssuesEvent | 2020-04-22 14:38:52 | stsrki/Blazorise | https://api.github.com/repos/stsrki/Blazorise | closed | DateTimeOffset control support. | Priority: Medium Type: Feature Request ⛱ | **Is your feature request related to a problem? Please describe.**
I use the `DateTimeOffset` fairly often due to its way of handling time offsets. At the moment your date picker control only supports `DateTime`.
**Describe the solution you'd like**
A version that supports `DateTimeOffset`. I know other blazor frameworks tend to use a generic for achieving this result.
| 1.0 | DateTimeOffset control support. - **Is your feature request related to a problem? Please describe.**
I use the `DateTimeOffset` fairly often due to its way of handling time offsets. At the moment your date picker control only supports `DateTime`.
**Describe the solution you'd like**
A version that supports `DateTimeOffset`. I know other blazor frameworks tend to use a generic for achieving this result.
| priority | datetimeoffset control support is your feature request related to a problem please describe i use the datetimeoffset fairly often due to its way of handling time offsets at the moment your date picker control only supports datetime describe the solution you d like a version that supports datetimeoffset i know other blazor frameworks tend to use a generic for achieving this result | 1 |
389,410 | 11,501,890,503 | IssuesEvent | 2020-02-12 18:01:42 | trufflesuite/ganache-core | https://api.github.com/repos/trufflesuite/ganache-core | closed | Inconsistencies with JSON RPC Spec | correctness/consistency priority-medium | There is a really well written JSON-RPC standard.
https://github.com/ethereum/wiki/wiki/JSON-RPC
With description and list of fields.
Why do you randomly pick fields for different RPC calls ?
`eth_getTransactionReceipt` does not have fields `r,v,s` why ganache returns this fields ?
`eth_getTransactionByHash` do have this fields but they don't have `null` values.
And every new release adds/remove more random fields with non documented values. So every release several projects have to push fixes only for ganache.
Just follow standard or write your strict documentation for you JSON RPC. | 1.0 | Inconsistencies with JSON RPC Spec - There is a really well written JSON-RPC standard.
https://github.com/ethereum/wiki/wiki/JSON-RPC
With description and list of fields.
Why do you randomly pick fields for different RPC calls ?
`eth_getTransactionReceipt` does not have fields `r,v,s` why ganache returns this fields ?
`eth_getTransactionByHash` do have this fields but they don't have `null` values.
And every new release adds/remove more random fields with non documented values. So every release several projects have to push fixes only for ganache.
Just follow standard or write your strict documentation for you JSON RPC. | priority | inconsistencies with json rpc spec there is a really well written json rpc standard with description and list of fields why do you randomly pick fields for different rpc calls eth gettransactionreceipt does not have fields r v s why ganache returns this fields eth gettransactionbyhash do have this fields but they don t have null values and every new release adds remove more random fields with non documented values so every release several projects have to push fixes only for ganache just follow standard or write your strict documentation for you json rpc | 1 |
316,359 | 9,646,458,571 | IssuesEvent | 2019-05-17 11:22:00 | jandix/sealr | https://api.github.com/repos/jandix/sealr | closed | Google - anti-forgery state token (CSRF) | priority::medium strategy::google oauth | https://developers.google.com/identity/protocols/OpenIDConnect#createxsrftoken
"You must protect the security of your users by preventing request forgery attacks. The first step is creating a unique session token that holds state between your app and the user's client. You later match this unique session token with the authentication response returned by the Google OAuth Login service to verify that the user is making the request and not a malicious attacker. These tokens are often referred to as cross-site request forgery (CSRF) tokens." | 1.0 | Google - anti-forgery state token (CSRF) - https://developers.google.com/identity/protocols/OpenIDConnect#createxsrftoken
"You must protect the security of your users by preventing request forgery attacks. The first step is creating a unique session token that holds state between your app and the user's client. You later match this unique session token with the authentication response returned by the Google OAuth Login service to verify that the user is making the request and not a malicious attacker. These tokens are often referred to as cross-site request forgery (CSRF) tokens." | priority | google anti forgery state token csrf you must protect the security of your users by preventing request forgery attacks the first step is creating a unique session token that holds state between your app and the user s client you later match this unique session token with the authentication response returned by the google oauth login service to verify that the user is making the request and not a malicious attacker these tokens are often referred to as cross site request forgery csrf tokens | 1 |
623,371 | 19,666,183,881 | IssuesEvent | 2022-01-10 22:53:09 | AZMAG/Peoria-Business-Resources-Tool | https://api.github.com/repos/AZMAG/Peoria-Business-Resources-Tool | closed | New business - Crown Produce Solutions | Priority: Medium Issue: Discussion Status: Completed | Crown Produce Solutions
9132 W Cactus Road, Suite K
CrownProduceSolutions.com
6232488328
| 1.0 | New business - Crown Produce Solutions - Crown Produce Solutions
9132 W Cactus Road, Suite K
CrownProduceSolutions.com
6232488328
| priority | new business crown produce solutions crown produce solutions w cactus road suite k crownproducesolutions com | 1 |
76,306 | 3,487,125,249 | IssuesEvent | 2016-01-01 14:48:08 | PowerPointLabs/PowerPointLabs | https://api.github.com/repos/PowerPointLabs/PowerPointLabs | opened | Give more flexibility in multiclone grid | Feature.DrawingLab Priority.Medium type-enhancement | Currently, the two objects are taken as adjacent objects of the grid. The user may want to use them as the two opposite corners instead.

| 1.0 | Give more flexibility in multiclone grid - Currently, the two objects are taken as adjacent objects of the grid. The user may want to use them as the two opposite corners instead.

| priority | give more flexibility in multiclone grid currently the two objects are taken as adjacent objects of the grid the user may want to use them as the two opposite corners instead | 1 |
581,160 | 17,287,113,251 | IssuesEvent | 2021-07-24 00:30:56 | ChaosInitiative/Chaos-Source | https://api.github.com/repos/ChaosInitiative/Chaos-Source | closed | Bug: Rendering in engine viewport in tools mode is absolutely broken | Priority 2: Medium Type: Bug What: Graphics/Render What: Tools | ### Describe the bug
Rendering in the tools mode engine viewport is completely broken.
### To Reproduce
Steps to reproduce the behavior:
1. Run engine in tools mode
2. Observe that the game is completely broken
### Expected behavior
The game should draw normally
### Operating System (Optional: Only if OS Specific)
- OS: Linux (Not tested on Windows)
## Additional content

https://user-images.githubusercontent.com/19717056/114568013-9fe2d500-9c28-11eb-87bd-da353e628108.mp4
| 1.0 | Bug: Rendering in engine viewport in tools mode is absolutely broken - ### Describe the bug
Rendering in the tools mode engine viewport is completely broken.
### To Reproduce
Steps to reproduce the behavior:
1. Run engine in tools mode
2. Observe that the game is completely broken
### Expected behavior
The game should draw normally
### Operating System (Optional: Only if OS Specific)
- OS: Linux (Not tested on Windows)
## Additional content

https://user-images.githubusercontent.com/19717056/114568013-9fe2d500-9c28-11eb-87bd-da353e628108.mp4
| priority | bug rendering in engine viewport in tools mode is absolutely broken describe the bug rendering in the tools mode engine viewport is completely broken to reproduce steps to reproduce the behavior run engine in tools mode observe that the game is completely broken expected behavior the game should draw normally operating system optional only if os specific os linux not tested on windows additional content | 1 |
215,161 | 7,290,813,876 | IssuesEvent | 2018-02-24 06:28:50 | HabitRPG/habitica | https://api.github.com/repos/HabitRPG/habitica | closed | Can't view/join//edit/close/delete a challenge you own if you've left its private guild/party | priority: medium section: Challenges: all section: Challenges: creating / editing section: Challenges: judging status: issue: in progress type: medium level coding | When a user creates a challenge in a private guild or party and then leaves that group, they are still able to see the challenge under My Challenges or Discover Challenges (which is correct) but they are not able to open the challenge into its own page and so they can't use any of the features that should be available on that page (e.g., to close the challenge). When they try to view the challenge, they see the `challengeNotFound` message ("Challenge not found or you don't have access.")
This is because of code like this which checks to see if the user is able to see the group that the challenge is in:
https://github.com/HabitRPG/habitica/blob/3b4b459e6861fd5e1c1abc5471fff95007559ff1/website/server/controllers/api-v3/challenges.js#L502-L503
That code is correct for the case where the user is not the challenge owner, but it should be bypassed for the owner in both that location and probably everywhere else that we have code checking for group permissions.
| 1.0 | Can't view/join//edit/close/delete a challenge you own if you've left its private guild/party - When a user creates a challenge in a private guild or party and then leaves that group, they are still able to see the challenge under My Challenges or Discover Challenges (which is correct) but they are not able to open the challenge into its own page and so they can't use any of the features that should be available on that page (e.g., to close the challenge). When they try to view the challenge, they see the `challengeNotFound` message ("Challenge not found or you don't have access.")
This is because of code like this which checks to see if the user is able to see the group that the challenge is in:
https://github.com/HabitRPG/habitica/blob/3b4b459e6861fd5e1c1abc5471fff95007559ff1/website/server/controllers/api-v3/challenges.js#L502-L503
That code is correct for the case where the user is not the challenge owner, but it should be bypassed for the owner in both that location and probably everywhere else that we have code checking for group permissions.
| priority | can t view join edit close delete a challenge you own if you ve left its private guild party when a user creates a challenge in a private guild or party and then leaves that group they are still able to see the challenge under my challenges or discover challenges which is correct but they are not able to open the challenge into its own page and so they can t use any of the features that should be available on that page e g to close the challenge when they try to view the challenge they see the challengenotfound message challenge not found or you don t have access this is because of code like this which checks to see if the user is able to see the group that the challenge is in that code is correct for the case where the user is not the challenge owner but it should be bypassed for the owner in both that location and probably everywhere else that we have code checking for group permissions | 1 |
716,002 | 24,617,908,177 | IssuesEvent | 2022-10-15 14:57:48 | vrchatapi/specification | https://api.github.com/repos/vrchatapi/specification | closed | ?type= on "List Notifcations" endpoint does nothing | Type: Bug Priority: Medium | tested with ?type=invite and ? type=aaaaa and empty value, no reaction, always shows all notifications of all types no matter what. | 1.0 | ?type= on "List Notifcations" endpoint does nothing - tested with ?type=invite and ? type=aaaaa and empty value, no reaction, always shows all notifications of all types no matter what. | priority | type on list notifcations endpoint does nothing tested with type invite and type aaaaa and empty value no reaction always shows all notifications of all types no matter what | 1 |
680,991 | 23,293,376,126 | IssuesEvent | 2022-08-06 06:55:55 | skelly37/nupac | https://api.github.com/repos/skelly37/nupac | closed | Remove #TODOs and config.nu usage relicts | refactor priority: Medium | Basically go through the code and:
- [ ] remove (or solve) all the TODOs (e.g. [modules/nupac.nu/L221](https://github.com/skelly37/nupac/blob/main/modules/nupac.nu#L221))
- [ ] rename variables like `add-to-config` (e.g. [modules/nupac.nu/L266](https://github.com/skelly37/nupac/blob/main/modules/nupac.nu#L266)) to something closer to the actual nupac's workflow
- [ ] update [docs/TODO.md](https://github.com/skelly37/nupac/blob/main/docs/TODO.md)
| 1.0 | Remove #TODOs and config.nu usage relicts - Basically go through the code and:
- [ ] remove (or solve) all the TODOs (e.g. [modules/nupac.nu/L221](https://github.com/skelly37/nupac/blob/main/modules/nupac.nu#L221))
- [ ] rename variables like `add-to-config` (e.g. [modules/nupac.nu/L266](https://github.com/skelly37/nupac/blob/main/modules/nupac.nu#L266)) to something closer to the actual nupac's workflow
- [ ] update [docs/TODO.md](https://github.com/skelly37/nupac/blob/main/docs/TODO.md)
| priority | remove todos and config nu usage relicts basically go through the code and remove or solve all the todos e g rename variables like add to config e g to something closer to the actual nupac s workflow update | 1 |
704,169 | 24,187,931,392 | IssuesEvent | 2022-09-23 14:48:26 | StephanAkkerman/FinTwit_Bot | https://api.github.com/repos/StephanAkkerman/FinTwit_Bot | closed | Use get request for getting stablecoins | Priority: Low :3rd_place_medal: New feature :star: Difficulty: Medium 😐 | Better than hardcoding list of possible stablecoins, which is the case in multiple files.
Use: https://www.binance.com/bapi/composite/v1/public/promo/cmc/cryptocurrency/category?id=604f2753ebccdd50cd175fc1&limit=10 to get the top 10 stable coins on Binance | 1.0 | Use get request for getting stablecoins - Better than hardcoding list of possible stablecoins, which is the case in multiple files.
Use: https://www.binance.com/bapi/composite/v1/public/promo/cmc/cryptocurrency/category?id=604f2753ebccdd50cd175fc1&limit=10 to get the top 10 stable coins on Binance | priority | use get request for getting stablecoins better than hardcoding list of possible stablecoins which is the case in multiple files use to get the top stable coins on binance | 1 |
57,546 | 3,082,706,554 | IssuesEvent | 2015-08-24 00:22:33 | magro/memcached-session-manager | https://api.github.com/repos/magro/memcached-session-manager | closed | about NotSerializableException | bug imported invalid Priority-Medium | _From [xiaolian...@gmail.com](https://code.google.com/u/111950605265423305308/) on June 27, 2012 08:48:19_
Caused by: java.io.NotSerializableException: com.ibatis.sqlmap.engine.mapping.statement.PaginatedDataList
I use JpetStore to test session manager but this object cannot Serialize.
please help me
_Original issue: http://code.google.com/p/memcached-session-manager/issues/detail?id=147_ | 1.0 | about NotSerializableException - _From [xiaolian...@gmail.com](https://code.google.com/u/111950605265423305308/) on June 27, 2012 08:48:19_
Caused by: java.io.NotSerializableException: com.ibatis.sqlmap.engine.mapping.statement.PaginatedDataList
I use JpetStore to test session manager but this object cannot Serialize.
please help me
_Original issue: http://code.google.com/p/memcached-session-manager/issues/detail?id=147_ | priority | about notserializableexception from on june caused by java io notserializableexception com ibatis sqlmap engine mapping statement paginateddatalist i use jpetstore to test session manager but this object cannot serialize please help me original issue | 1 |
655,925 | 21,714,507,245 | IssuesEvent | 2022-05-10 16:32:11 | gravityview/GravityView | https://api.github.com/repos/gravityview/GravityView | closed | Add a multi-feature submit button in Edit Entry | Enhancement Core: Edit Entry Difficulty: Medium Priority: Medium | Customers don't always want to just save the entry.
- Submit as new entry
- Save and Continue Editing
- Save and View
This would be addressable with a split button: the main default action and an arrow showing the other options. Examples include GitHub "Merge Pull Request" button:

As mentioned here:
- https://gravityview.uservoice.com/forums/238941-gravityview-ideas/suggestions/6121590-new-button-edit-entry-next-to-save-send-as-new
- https://gravityview.uservoice.com/forums/238941-gravityview-ideas/suggestions/41491822-conditional-logic-for-redirect-after-editing-entry | 1.0 | Add a multi-feature submit button in Edit Entry - Customers don't always want to just save the entry.
- Submit as new entry
- Save and Continue Editing
- Save and View
This would be addressable with a split button: the main default action and an arrow showing the other options. Examples include GitHub "Merge Pull Request" button:

As mentioned here:
- https://gravityview.uservoice.com/forums/238941-gravityview-ideas/suggestions/6121590-new-button-edit-entry-next-to-save-send-as-new
- https://gravityview.uservoice.com/forums/238941-gravityview-ideas/suggestions/41491822-conditional-logic-for-redirect-after-editing-entry | priority | add a multi feature submit button in edit entry customers don t always want to just save the entry submit as new entry save and continue editing save and view this would be addressable with a split button the main default action and an arrow showing the other options examples include github merge pull request button as mentioned here | 1 |
699,777 | 24,031,842,783 | IssuesEvent | 2022-09-15 15:36:07 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | [YSQL][Colocation] yb-admin compact_table deletes colocation data | kind/bug area/ysql priority/medium | Jira Link: [DB-2642](https://yugabyte.atlassian.net/browse/DB-2642)
### Description
In rf=1 node with (colocated) table in tablegroup, _after restarting the node_, a `yb-admin compact_table` deletes its data. No TRUNCATE needed to repro. Tested on recent master commit b661d0a0a71302b3c57097db402f90a6ae11b938:
```sh
bin/yb-ctl create
```
```sql
CREATE TABLEGROUP g;
CREATE TABLE t (i int) TABLEGROUP g;
INSERT INTO t VALUES (1), (2), (3);
```
```sh
bin/yb-ctl restart
```
```sql
SELECT * FROM t; -- returns 3 rows
```
```sh
/path/to/bin/yb-admin flush_table ysql.yugabyte t
/path/to/bin/sst_dump --output_format=decoded_regulardb --command=scan --file=$(ls -d /path/to/yugabyte-data/node-1/disk-1/yb-data/tserver/data/rocksdb/table-????????????????????????????????.tablegroup.parent.uuid/tablet-????????????????????????????????) # returns several records
/path/to/bin/yb-admin compact_table ysql.yugabyte t
/path/to/bin/sst_dump --output_format=decoded_regulardb --command=scan --file=$(ls -d /path/to/yugabyte-data/node-1/disk-1/yb-data/tserver/data/rocksdb/table-????????????????????????????????.tablegroup.parent.uuid/tablet-????????????????????????????????) # returns no records
```
```sql
SELECT * FROM t; -- returns 0 rows
``` | 1.0 | [YSQL][Colocation] yb-admin compact_table deletes colocation data - Jira Link: [DB-2642](https://yugabyte.atlassian.net/browse/DB-2642)
### Description
In rf=1 node with (colocated) table in tablegroup, _after restarting the node_, a `yb-admin compact_table` deletes its data. No TRUNCATE needed to repro. Tested on recent master commit b661d0a0a71302b3c57097db402f90a6ae11b938:
```sh
bin/yb-ctl create
```
```sql
CREATE TABLEGROUP g;
CREATE TABLE t (i int) TABLEGROUP g;
INSERT INTO t VALUES (1), (2), (3);
```
```sh
bin/yb-ctl restart
```
```sql
SELECT * FROM t; -- returns 3 rows
```
```sh
/path/to/bin/yb-admin flush_table ysql.yugabyte t
/path/to/bin/sst_dump --output_format=decoded_regulardb --command=scan --file=$(ls -d /path/to/yugabyte-data/node-1/disk-1/yb-data/tserver/data/rocksdb/table-????????????????????????????????.tablegroup.parent.uuid/tablet-????????????????????????????????) # returns several records
/path/to/bin/yb-admin compact_table ysql.yugabyte t
/path/to/bin/sst_dump --output_format=decoded_regulardb --command=scan --file=$(ls -d /path/to/yugabyte-data/node-1/disk-1/yb-data/tserver/data/rocksdb/table-????????????????????????????????.tablegroup.parent.uuid/tablet-????????????????????????????????) # returns no records
```
```sql
SELECT * FROM t; -- returns 0 rows
``` | priority | yb admin compact table deletes colocation data jira link description in rf node with colocated table in tablegroup after restarting the node a yb admin compact table deletes its data no truncate needed to repro tested on recent master commit sh bin yb ctl create sql create tablegroup g create table t i int tablegroup g insert into t values sh bin yb ctl restart sql select from t returns rows sh path to bin yb admin flush table ysql yugabyte t path to bin sst dump output format decoded regulardb command scan file ls d path to yugabyte data node disk yb data tserver data rocksdb table tablegroup parent uuid tablet returns several records path to bin yb admin compact table ysql yugabyte t path to bin sst dump output format decoded regulardb command scan file ls d path to yugabyte data node disk yb data tserver data rocksdb table tablegroup parent uuid tablet returns no records sql select from t returns rows | 1 |
155,331 | 5,954,170,721 | IssuesEvent | 2017-05-27 15:19:45 | mkdo/kapow-skeleton | https://api.github.com/repos/mkdo/kapow-skeleton | closed | Add select2 to Bower dependencies | Priority: Medium Status: Completed Type: Enhancement | Given that select2 is being used a lot more frequently, it would make sense to add this into the stack. It doesn't have to be included for concatenation out of the box, but it would make sense to plumb this is in to save time when it's required. | 1.0 | Add select2 to Bower dependencies - Given that select2 is being used a lot more frequently, it would make sense to add this into the stack. It doesn't have to be included for concatenation out of the box, but it would make sense to plumb this is in to save time when it's required. | priority | add to bower dependencies given that is being used a lot more frequently it would make sense to add this into the stack it doesn t have to be included for concatenation out of the box but it would make sense to plumb this is in to save time when it s required | 1 |
297,001 | 9,159,192,969 | IssuesEvent | 2019-03-01 01:24:21 | C3DSU/edefpr-backend | https://api.github.com/repos/C3DSU/edefpr-backend | closed | Melhorar mecanismo de rotas | Category: Backend Priority: Medium Stage: Review Type: Improvement | Melhorar o mecanismo de rotas onde o arquivo web.php e api.php estão ficando muito grandes.
https://medium.com/@thesourav/organize-your-laravel-routes-for-better-and-maintainable-code-4ad9b76aed0f | 1.0 | Melhorar mecanismo de rotas - Melhorar o mecanismo de rotas onde o arquivo web.php e api.php estão ficando muito grandes.
https://medium.com/@thesourav/organize-your-laravel-routes-for-better-and-maintainable-code-4ad9b76aed0f | priority | melhorar mecanismo de rotas melhorar o mecanismo de rotas onde o arquivo web php e api php estão ficando muito grandes | 1 |
77,001 | 3,506,236,223 | IssuesEvent | 2016-01-08 04:58:00 | OregonCore/OregonCore | https://api.github.com/repos/OregonCore/OregonCore | closed | [Talent] Entrapment (BB #61) | Category: Miscellaneous migrated Priority: Medium Type: Bug | This issue was migrated from bitbucket.
**Original Reporter:** d3mogorgon
**Original Date:** 07.03.2010 23:15:41 GMT+0000
**Original Priority:** major
**Original Type:** bug
**Original State:** resolved
**Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/61
<hr>
The Hunter talent entrapment ( http://www.wowhead.com/?spell=19184 ) does not work | 1.0 | [Talent] Entrapment (BB #61) - This issue was migrated from bitbucket.
**Original Reporter:** d3mogorgon
**Original Date:** 07.03.2010 23:15:41 GMT+0000
**Original Priority:** major
**Original Type:** bug
**Original State:** resolved
**Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/61
<hr>
The Hunter talent entrapment ( http://www.wowhead.com/?spell=19184 ) does not work | priority | entrapment bb this issue was migrated from bitbucket original reporter original date gmt original priority major original type bug original state resolved direct link the hunter talent entrapment does not work | 1 |
438,658 | 12,642,707,386 | IssuesEvent | 2020-06-16 08:37:01 | algernon-A/Ploppable-RICO-Revisited | https://api.github.com/repos/algernon-A/Ploppable-RICO-Revisited | closed | Changing Worker/household count should automatically fill jobs for the different education levels | Priority: medium Type: enhancement | Changing Worker/household count should automatically fill jobs for the different education levels
https://i.imgur.com/WDqPVMS.jpg | 1.0 | Changing Worker/household count should automatically fill jobs for the different education levels - Changing Worker/household count should automatically fill jobs for the different education levels
https://i.imgur.com/WDqPVMS.jpg | priority | changing worker household count should automatically fill jobs for the different education levels changing worker household count should automatically fill jobs for the different education levels | 1 |
77,822 | 3,507,279,202 | IssuesEvent | 2016-01-08 12:21:37 | OregonCore/OregonCore | https://api.github.com/repos/OregonCore/OregonCore | closed | Shaman - Earth Shield (BB #804) | Category: Miscellaneous migrated Priority: Medium Type: Bug | This issue was migrated from bitbucket.
**Original Reporter:** smoldar
**Original Date:** 02.02.2015 10:10:32 GMT+0000
**Original Priority:** major
**Original Type:** bug
**Original State:** invalid
**Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/804
<hr>
When shaman use Earth Shield, all working fine.
But when Shaman restore stacks of spell by again apply of spell, Earth Shield healing without bonus healing. | 1.0 | Shaman - Earth Shield (BB #804) - This issue was migrated from bitbucket.
**Original Reporter:** smoldar
**Original Date:** 02.02.2015 10:10:32 GMT+0000
**Original Priority:** major
**Original Type:** bug
**Original State:** invalid
**Direct Link:** https://bitbucket.org/oregon/oregoncore/issues/804
<hr>
When shaman use Earth Shield, all working fine.
But when Shaman restore stacks of spell by again apply of spell, Earth Shield healing without bonus healing. | priority | shaman earth shield bb this issue was migrated from bitbucket original reporter smoldar original date gmt original priority major original type bug original state invalid direct link when shaman use earth shield all working fine but when shaman restore stacks of spell by again apply of spell earth shield healing without bonus healing | 1 |
529,356 | 15,387,170,196 | IssuesEvent | 2021-03-03 09:11:58 | code4moldova/voluntar-backend | https://api.github.com/repos/code4moldova/voluntar-backend | closed | add filter by date | enhancement help wanted medium priority | GET /api/requests/1/5?date_from=25-11-2020
returns all the request added in the period 25-11-2020 to present | 1.0 | add filter by date - GET /api/requests/1/5?date_from=25-11-2020
returns all the request added in the period 25-11-2020 to present | priority | add filter by date get api requests date from returns all the request added in the period to present | 1 |
155,818 | 5,961,324,149 | IssuesEvent | 2017-05-29 16:54:59 | salesagility/SuiteCRM | https://api.github.com/repos/salesagility/SuiteCRM | closed | Custom files not overriding SuiteP core - 7.9 Beta | bug Fix Proposed Medium Priority | <!--- Provide a general summary of the issue in the **Title** above -->
<!--- Before you open an issue, please check if a similar issue already exists or has been closed before. --->
#### Issue
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug -->
I wanted to override some language strings as well as some tpls in SuiteP.
I edited the login.tpl and en_us.lang.php files and placed the tpls in /custom/themes/SuiteP/tpls/ and the lang file in /custom/languages/
I then did a quick repair which did not do anything as the old strings were still showing. I also did a rebuild javascript languages which also had no effect.
I also edited the footer.tpl and placed it in the custom folder, which DID work, a custom style.css also worked fine.
#### Expected Behavior
<!--- Tell us what should happen -->
Placing tpl and and lang files in the custom folder did not override the core SuiteP files.
#### Actual Behavior
<!--- Tell us what happens instead -->
Old string values remain.
#### Possible Fix
<!--- Not obligatory, but suggest a fix or reason for the bug -->
#### Steps to Reproduce
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug include code to reproduce, if relevant -->
1. Edit a tpl listed above or a lang file and place it in the appropriate custom folder.
2. Run a quick repair
#### Context
<!--- How has this bug affected you? What were you trying to accomplish? -->
<!--- If you feel this should be a low/medium/high priority then please state so -->
#### Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* SuiteCRM Version used: 7.9 Beta
* Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): 57.0.2987.133 (64-bit)
* Environment name and version (e.g. MySQL, PHP 7): MySQL, PHP 5.5.9
* Operating System and version (e.g Ubuntu 16.04): OSX
| 1.0 | Custom files not overriding SuiteP core - 7.9 Beta - <!--- Provide a general summary of the issue in the **Title** above -->
<!--- Before you open an issue, please check if a similar issue already exists or has been closed before. --->
#### Issue
<!--- Provide a more detailed introduction to the issue itself, and why you consider it to be a bug -->
I wanted to override some language strings as well as some tpls in SuiteP.
I edited the login.tpl and en_us.lang.php files and placed the tpls in /custom/themes/SuiteP/tpls/ and the lang file in /custom/languages/
I then did a quick repair which did not do anything as the old strings were still showing. I also did a rebuild javascript languages which also had no effect.
I also edited the footer.tpl and placed it in the custom folder, which DID work, a custom style.css also worked fine.
#### Expected Behavior
<!--- Tell us what should happen -->
Placing tpl and and lang files in the custom folder did not override the core SuiteP files.
#### Actual Behavior
<!--- Tell us what happens instead -->
Old string values remain.
#### Possible Fix
<!--- Not obligatory, but suggest a fix or reason for the bug -->
#### Steps to Reproduce
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug include code to reproduce, if relevant -->
1. Edit a tpl listed above or a lang file and place it in the appropriate custom folder.
2. Run a quick repair
#### Context
<!--- How has this bug affected you? What were you trying to accomplish? -->
<!--- If you feel this should be a low/medium/high priority then please state so -->
#### Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* SuiteCRM Version used: 7.9 Beta
* Browser name and version (e.g. Chrome Version 51.0.2704.63 (64-bit)): 57.0.2987.133 (64-bit)
* Environment name and version (e.g. MySQL, PHP 7): MySQL, PHP 5.5.9
* Operating System and version (e.g Ubuntu 16.04): OSX
| priority | custom files not overriding suitep core beta issue i wanted to override some language strings as well as some tpls in suitep i edited the login tpl and en us lang php files and placed the tpls in custom themes suitep tpls and the lang file in custom languages i then did a quick repair which did not do anything as the old strings were still showing i also did a rebuild javascript languages which also had no effect i also edited the footer tpl and placed it in the custom folder which did work a custom style css also worked fine expected behavior placing tpl and and lang files in the custom folder did not override the core suitep files actual behavior old string values remain possible fix steps to reproduce edit a tpl listed above or a lang file and place it in the appropriate custom folder run a quick repair context your environment suitecrm version used beta browser name and version e g chrome version bit bit environment name and version e g mysql php mysql php operating system and version e g ubuntu osx | 1 |
349,210 | 10,465,827,098 | IssuesEvent | 2019-09-21 14:12:51 | diamm/diamm | https://api.github.com/repos/diamm/diamm | closed | Problem reports view | Component: Project Administration Priority: Medium Type: Feature Request | Would it be possible to have a subject line on problem reports? It would be easier to sort through multiple reports to find ones that need specific types of action (e.g. images not loading). | 1.0 | Problem reports view - Would it be possible to have a subject line on problem reports? It would be easier to sort through multiple reports to find ones that need specific types of action (e.g. images not loading). | priority | problem reports view would it be possible to have a subject line on problem reports it would be easier to sort through multiple reports to find ones that need specific types of action e g images not loading | 1 |
496,781 | 14,354,385,845 | IssuesEvent | 2020-11-30 08:34:31 | EyeSeeTea/training-app | https://api.github.com/repos/EyeSeeTea/training-app | closed | Create settings page | complexity - med (1-5 hr) priority - medium type - feature | - [x] Settings access (Similar to ``Bulk-Load``)
- [x] Translation settings
- [x] Content configuration (optional)
- [x] Poeditor connection (https://poeditor.com/account/api) | 1.0 | Create settings page - - [x] Settings access (Similar to ``Bulk-Load``)
- [x] Translation settings
- [x] Content configuration (optional)
- [x] Poeditor connection (https://poeditor.com/account/api) | priority | create settings page settings access similar to bulk load translation settings content configuration optional poeditor connection | 1 |
20,397 | 2,622,846,654 | IssuesEvent | 2015-03-04 08:02:55 | max99x/pagemon-chrome-ext | https://api.github.com/repos/max99x/pagemon-chrome-ext | closed | Changes view have no highlighting | auto-migrated Priority-Medium | ```
I have pages marked as changed, but when I bring them up, they have nothing
highlighted. What's going on?
```
Original issue reported on code.google.com by `bryce.schober` on 2 Sep 2010 at 3:53 | 1.0 | Changes view have no highlighting - ```
I have pages marked as changed, but when I bring them up, they have nothing
highlighted. What's going on?
```
Original issue reported on code.google.com by `bryce.schober` on 2 Sep 2010 at 3:53 | priority | changes view have no highlighting i have pages marked as changed but when i bring them up they have nothing highlighted what s going on original issue reported on code google com by bryce schober on sep at | 1 |
622,971 | 19,659,597,885 | IssuesEvent | 2022-01-10 15:46:34 | BIDMCDigitalPsychiatry/LAMP-platform | https://api.github.com/repos/BIDMCDigitalPsychiatry/LAMP-platform | closed | Alphabetical filtering and sort option | feature 7day frontend priority MEDIUM | We want it so the filter list in the the deselect/select users area to be alphabetized in both the 'users' tab and the 'activities' tab. Can we also have it so that the list of users in the users tab are alphabetical? Additionally, we have a sort button added next to the filter button that alphabetizes from A-Z by default and when clicked, reverse alphabetizes from Z-A. Lastly, when you add an activity, the list of users/groups that show up are in no particular order, can that be alphabetized as well? Essentially, alphabetization will make ordering easier. | 1.0 | Alphabetical filtering and sort option - We want it so the filter list in the the deselect/select users area to be alphabetized in both the 'users' tab and the 'activities' tab. Can we also have it so that the list of users in the users tab are alphabetical? Additionally, we have a sort button added next to the filter button that alphabetizes from A-Z by default and when clicked, reverse alphabetizes from Z-A. Lastly, when you add an activity, the list of users/groups that show up are in no particular order, can that be alphabetized as well? Essentially, alphabetization will make ordering easier. | priority | alphabetical filtering and sort option we want it so the filter list in the the deselect select users area to be alphabetized in both the users tab and the activities tab can we also have it so that the list of users in the users tab are alphabetical additionally we have a sort button added next to the filter button that alphabetizes from a z by default and when clicked reverse alphabetizes from z a lastly when you add an activity the list of users groups that show up are in no particular order can that be alphabetized as well essentially alphabetization will make ordering easier | 1 |
581,052 | 17,272,249,934 | IssuesEvent | 2021-07-22 21:38:36 | getting-things-gnome/gtg | https://api.github.com/repos/getting-things-gnome/gtg | closed | Tag icon selector window empty after first open | bug priority:medium reproducible-in-git | When selecting an icon for a tag, it pops up a rather small selection of icons to pick and works. But opening it a second time within the lifetime of the same gtg process, it opens an empty dialog with no icons and other UI controls in it. Need to restart the app to be able to set another tag icon. | 1.0 | Tag icon selector window empty after first open - When selecting an icon for a tag, it pops up a rather small selection of icons to pick and works. But opening it a second time within the lifetime of the same gtg process, it opens an empty dialog with no icons and other UI controls in it. Need to restart the app to be able to set another tag icon. | priority | tag icon selector window empty after first open when selecting an icon for a tag it pops up a rather small selection of icons to pick and works but opening it a second time within the lifetime of the same gtg process it opens an empty dialog with no icons and other ui controls in it need to restart the app to be able to set another tag icon | 1 |
656,486 | 21,765,817,000 | IssuesEvent | 2022-05-13 01:38:48 | kubesphere/console | https://api.github.com/repos/kubesphere/console | closed | The created time of service in Service Topology is error | kind/bug kind/need-to-verify priority/medium | **Describe the bug**
Shows standard time, no conversion

**Versions used(KubeSphere/Kubernetes)**
KubeSphere: `v3.3.0-alpha.2`
Kubernetes: (If KubeSphere installer used, you can skip this)
/priority medium
/assign @kubesphere/sig-console | 1.0 | The created time of service in Service Topology is error - **Describe the bug**
Shows standard time, no conversion

**Versions used(KubeSphere/Kubernetes)**
KubeSphere: `v3.3.0-alpha.2`
Kubernetes: (If KubeSphere installer used, you can skip this)
/priority medium
/assign @kubesphere/sig-console | priority | the created time of service in service topology is error describe the bug shows standard time no conversion versions used kubesphere kubernetes kubesphere alpha kubernetes if kubesphere installer used you can skip this priority medium assign kubesphere sig console | 1 |
706,034 | 24,257,991,027 | IssuesEvent | 2022-09-27 19:35:45 | gammapy/gammapy | https://api.github.com/repos/gammapy/gammapy | closed | Gammapy validation: Fermi-LAT 3FHL | effort-medium package-novice priority-high | As part of the Gammapy validation effort while preparing v1.0, we should try to reproduce some of the Fermi-LAT 3FHL high-energy catalog analysis results.
A task description and references are here:
- https://github.com/gammapy/gammapy-benchmarks
- https://github.com/gammapy/gammapy-benchmarks/blob/master/validation
- https://github.com/gammapy/gammapy-benchmarks/tree/master/validation/fermi-3fhl
This is on a best-effort basis, ideally we'd have 1-2 sources scripted ASAP, and then a complex region, or an AGN lightcurve also, but that can come later.
For this, you don't have to be a Gammapy developer, what's required is some Python & Gammapy & Fermi-LAT experience, and a few days of free time in Nov 2019.
We're looking for help! If you can contribute, please leave a comment here, or contact me on Slack. | 1.0 | Gammapy validation: Fermi-LAT 3FHL - As part of the Gammapy validation effort while preparing v1.0, we should try to reproduce some of the Fermi-LAT 3FHL high-energy catalog analysis results.
A task description and references are here:
- https://github.com/gammapy/gammapy-benchmarks
- https://github.com/gammapy/gammapy-benchmarks/blob/master/validation
- https://github.com/gammapy/gammapy-benchmarks/tree/master/validation/fermi-3fhl
This is on a best-effort basis, ideally we'd have 1-2 sources scripted ASAP, and then a complex region, or an AGN lightcurve also, but that can come later.
For this, you don't have to be a Gammapy developer, what's required is some Python & Gammapy & Fermi-LAT experience, and a few days of free time in Nov 2019.
We're looking for help! If you can contribute, please leave a comment here, or contact me on Slack. | priority | gammapy validation fermi lat as part of the gammapy validation effort while preparing we should try to reproduce some of the fermi lat high energy catalog analysis results a task description and references are here this is on a best effort basis ideally we d have sources scripted asap and then a complex region or an agn lightcurve also but that can come later for this you don t have to be a gammapy developer what s required is some python gammapy fermi lat experience and a few days of free time in nov we re looking for help if you can contribute please leave a comment here or contact me on slack | 1 |
25,469 | 2,683,809,287 | IssuesEvent | 2015-03-28 10:29:44 | ConEmu/old-issues | https://api.github.com/repos/ConEmu/old-issues | closed | ConEmu.Maximus5.090627d.7z недоступны другие консоли при работающем PictureView | 2–5 stars bug imported Priority-Medium | _From [Zero...@gmail.com](https://code.google.com/u/103642962356045697092/) on June 28, 2009 06:47:06_
Версия ОС:xpsp3
Версия FAR:1.75 build 2596 x86 Описание бага... запущены несколько фаров в одном Conemu
если в одном включить просмотр картинки через PictureView то в остальных
FAR'ах ничего сделать уже нельзя, при переключении на них тоже
показывается картинка.
PictureView
0PictureView.dl_ 2007.3.14.0
0PictureView.dll 1, 9, 2, 14
EmuPic.dll 1, 9, 2, 13
повтор 100%
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=33_ | 1.0 | ConEmu.Maximus5.090627d.7z недоступны другие консоли при работающем PictureView - _From [Zero...@gmail.com](https://code.google.com/u/103642962356045697092/) on June 28, 2009 06:47:06_
Версия ОС:xpsp3
Версия FAR:1.75 build 2596 x86 Описание бага... запущены несколько фаров в одном Conemu
если в одном включить просмотр картинки через PictureView то в остальных
FAR'ах ничего сделать уже нельзя, при переключении на них тоже
показывается картинка.
PictureView
0PictureView.dl_ 2007.3.14.0
0PictureView.dll 1, 9, 2, 14
EmuPic.dll 1, 9, 2, 13
повтор 100%
_Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=33_ | priority | conemu недоступны другие консоли при работающем pictureview from on june версия ос версия far build описание бага запущены несколько фаров в одном conemu если в одном включить просмотр картинки через pictureview то в остальных far ах ничего сделать уже нельзя при переключении на них тоже показывается картинка pictureview dl dll emupic dll повтор original issue | 1 |
138,731 | 5,346,047,894 | IssuesEvent | 2017-02-17 18:36:46 | mPowering/django-orb | https://api.github.com/repos/mPowering/django-orb | closed | Bookmarking link not working | bug medium priority | From a resource, clicking the 'bookmark this' doesn't do anything. In the json request the response returns:
<h1>Forbidden <span>(403)</span></h1>
<p>CSRF verification failed. Request aborted.</p> | 1.0 | Bookmarking link not working - From a resource, clicking the 'bookmark this' doesn't do anything. In the json request the response returns:
<h1>Forbidden <span>(403)</span></h1>
<p>CSRF verification failed. Request aborted.</p> | priority | bookmarking link not working from a resource clicking the bookmark this doesn t do anything in the json request the response returns forbidden csrf verification failed request aborted | 1 |
816,000 | 30,583,113,561 | IssuesEvent | 2023-07-21 11:16:21 | calcom/cal.com | https://api.github.com/repos/calcom/cal.com | closed | [CAL-2061] Embed - UI instruction has layout effectively typed as 'any' | 🐛 bug Medium priority embed | The reason is that the UI instruction uses UIConfig from embed-iframe which uses `import { BookerLayouts } from "@calcom/prisma/zod-utils"` and `@calcom/prisma` isn't available to published package.
Two things here
- Use a typing that doesn't rely on zod-utils
- Ensure that embed-core, embed-react and embed-snippet can't import anything else from @calcom except themselves.
<sub>[CAL-2061](https://linear.app/calcom/issue/CAL-2061/embed-ui-instruction-has-layout-effectively-typed-as-any)</sub> | 1.0 | [CAL-2061] Embed - UI instruction has layout effectively typed as 'any' - The reason is that the UI instruction uses UIConfig from embed-iframe which uses `import { BookerLayouts } from "@calcom/prisma/zod-utils"` and `@calcom/prisma` isn't available to published package.
Two things here
- Use a typing that doesn't rely on zod-utils
- Ensure that embed-core, embed-react and embed-snippet can't import anything else from @calcom except themselves.
<sub>[CAL-2061](https://linear.app/calcom/issue/CAL-2061/embed-ui-instruction-has-layout-effectively-typed-as-any)</sub> | priority | embed ui instruction has layout effectively typed as any the reason is that the ui instruction uses uiconfig from embed iframe which uses import bookerlayouts from calcom prisma zod utils and calcom prisma isn t available to published package two things here use a typing that doesn t rely on zod utils ensure that embed core embed react and embed snippet can t import anything else from calcom except themselves | 1 |
447,192 | 12,885,292,248 | IssuesEvent | 2020-07-13 06:10:22 | vmware/singleton | https://api.github.com/repos/vmware/singleton | opened | [BUG] [Java Client]When getMessages() returns to service default locale's translation, cache can't get updated translation(default locale) after it is expired. | area/java-client kind/bug priority/medium | **Describe the bug**
Online or Mixed mode: When getMessages() returns to service default locale's translation, cache can't get updated translation(default locale) after it is expired.
**To Reproduce**
Steps to reproduce the behavior:
1. Set config with pure online or mixed mode.
2. Request a locale doesn't have its translation in service with getMessages(locale, component), then it will return default locale's translation from service.
3. Get one key's value from step2 returned result.
4. Update the default locale's value of that key and set the cache expired.
5. Repeat the request in step 2.
6. Repeat the request in step 2.
7. Repeat step 3.
Still get the original translation of default locale rather than the updated translation in step 4.
**Expected behavior**
Should get the updated translation of default locale once cache is expired and request is sent. | 1.0 | [BUG] [Java Client]When getMessages() returns to service default locale's translation, cache can't get updated translation(default locale) after it is expired. - **Describe the bug**
Online or Mixed mode: When getMessages() returns to service default locale's translation, cache can't get updated translation(default locale) after it is expired.
**To Reproduce**
Steps to reproduce the behavior:
1. Set config with pure online or mixed mode.
2. Request a locale doesn't have its translation in service with getMessages(locale, component), then it will return default locale's translation from service.
3. Get one key's value from step2 returned result.
4. Update the default locale's value of that key and set the cache expired.
5. Repeat the request in step 2.
6. Repeat the request in step 2.
7. Repeat step 3.
Still get the original translation of default locale rather than the updated translation in step 4.
**Expected behavior**
Should get the updated translation of default locale once cache is expired and request is sent. | priority | when getmessages returns to service default locale s translation cache can t get updated translation default locale after it is expired describe the bug online or mixed mode when getmessages returns to service default locale s translation cache can t get updated translation default locale after it is expired to reproduce steps to reproduce the behavior set config with pure online or mixed mode request a locale doesn t have its translation in service with getmessages locale component then it will return default locale s translation from service get one key s value from returned result update the default locale s value of that key and set the cache expired repeat the request in step repeat the request in step repeat step still get the original translation of default locale rather than the updated translation in step expected behavior should get the updated translation of default locale once cache is expired and request is sent | 1 |
486,562 | 14,011,129,974 | IssuesEvent | 2020-10-29 06:44:55 | buddyboss/buddyboss-platform | https://api.github.com/repos/buddyboss/buddyboss-platform | opened | Media result from Header Search bar is showing user's photos plage instead of respective image | feature: enhancement priority: medium | **Is your feature request related to a problem? Please describe.**
When searching any media then this is redirecting to photos page instead of particular media so if any image is listing in bottom of photos page after load more then it's hard to find.
Particular searched image should appear on clicking search result.
**Describe the solution you'd like**
It simply open the respective image only when click on image from search result instead of listing all images.
https://www.loom.com/share/36516962e61448e7ba7d6076a5fd8eac
**Support ticket links**
NA. Reported by QA.
| 1.0 | Media result from Header Search bar is showing user's photos plage instead of respective image - **Is your feature request related to a problem? Please describe.**
When searching any media then this is redirecting to photos page instead of particular media so if any image is listing in bottom of photos page after load more then it's hard to find.
Particular searched image should appear on clicking search result.
**Describe the solution you'd like**
It simply open the respective image only when click on image from search result instead of listing all images.
https://www.loom.com/share/36516962e61448e7ba7d6076a5fd8eac
**Support ticket links**
NA. Reported by QA.
| priority | media result from header search bar is showing user s photos plage instead of respective image is your feature request related to a problem please describe when searching any media then this is redirecting to photos page instead of particular media so if any image is listing in bottom of photos page after load more then it s hard to find particular searched image should appear on clicking search result describe the solution you d like it simply open the respective image only when click on image from search result instead of listing all images support ticket links na reported by qa | 1 |
660,337 | 21,961,788,021 | IssuesEvent | 2022-05-24 16:27:36 | zephyrproject-rtos/zephyr | https://api.github.com/repos/zephyrproject-rtos/zephyr | closed | up_squared:the test shows pass in the twister.log it but does not seem to finish | bug priority: medium area: Twister platform: X86 | **Describe the bug**
The test shows pass in the twister.log but it does not seem to finish, according to observation the twister log is not complete.
Take tests/posix/common as an example.
**To Reproduce**
Steps to reproduce the behavior:
1. source zephyr-env.sh
2. twister -p up_squared --device-testing --device-serial $serial_name -T tests/posix/common/ --west-flash=$HOME/$USER/up_squared_efi.sh -vv
4. See error
or
2.west build -p always -b up_squared tests/posix/common/
3.screen /dev/ttyUP2 115200
4.west flash $HOME/$USER/up_squared_efi.sh
5.See error
**Expected behavior**
The test pass both in twister log and in daily report.
**Impact**
The test shows pass in the twister log but it does not seem to finish.
**Logs and console output**
```
Version 2.18.1263. Copyright (C) 2018 American Megatrends, Inc.
Press <DEL> or <ESC> to enter setup.
DEBUG - DEVICE: >>Checking Media Presence......
DEBUG - DEVICE: >>No Media Present......
DEBUG - DEVICE: >>Checking Media Presence......
DEBUG - DEVICE: >>Media Present......
DEBUG - DEVICE: >>Start PXE over IPv4.
DEBUG - DEVICE: Station IP address is 192.165.1.56
DEBUG - DEVICE:
DEBUG - DEVICE: Server IP address is 192.165.1.1
DEBUG - DEVICE: NBP filename is up_squared/zephyr.efi
DEBUG - DEVICE: NBP filesize is 2246389 Bytes
DEBUG - DEVICE: >>Checking Media Presence......
DEBUG - DEVICE: >>Media Present......
DEBUG - DEVICE: Downloading NBP file...
DEBUG - DEVICE:
DEBUG - DEVICE: Succeed to download NBP file.
DEBUG - DEVICE: *** Zephyr EFI Loader ***
DEBUG - DEVICE: RSDP found at 0x79c34000
DEBUG - DEVICE: Zeroing 5075584 bytes of memory at 0x117000
DEBUG - DEVICE: Copying 32768 data bytes to 0x1000 from image offset
DEBUG - DEVICE: Copying 94208 data bytes to 0x100000 from image offset 32768
DEBUG - DEVICE: Copying 2112896 data bytes to 0x5ee280 from image offset 126976
DEBUG - DEVICE: Jumping to Entry Point: 0x1137 (48 31 c0 48 31 d2 48)
DEBUG - DEVICE: Running TESTSUITE posix_apis
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_pthread_execution
DEBUG - DEVICE: Thread 0 starting with scheduling policy 0 & priority 15
DEBUG - DEVICE: Thread 1 starting with scheduling policy 0 & priority 15
DEBUG - DEVICE: Thread 2 starting with scheduling policy 0 & priority 15
DEBUG - DEVICE: Bounce test OK
DEBUG - DEVICE: Barrier test OK
DEBUG - DEVICE: PASS - test_posix_pthread_execution in 0.521 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_pthread_error_condition
DEBUG - DEVICE: PASS - test_posix_pthread_error_condition in 0.1 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_pthread_termination
DEBUG - DEVICE: Thread 0 starting with a priority of 4
DEBUG - DEVICE: Cancelling thread 0
DEBUG - DEVICE: Thread 1 starting with a priority of 3
DEBUG - DEVICE: Cancelling thread 1
DEBUG - DEVICE: Thread 1 could not be cancelled
DEBUG - DEVICE: Thread 2 starting with a priority of 2
DEBUG - DEVICE: Cancelling thread 2
DEBUG - DEVICE: Thread 3 starting with a priority of 1
DEBUG - DEVICE: Cancelling thread 3
DEBUG - DEVICE: Thread 3 could not be cancelled
DEBUG - DEVICE: PASS - test_posix_pthread_termination in 1.16 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_multiple_threads_single_key
DEBUG - DEVICE:
DEBUG - DEVICE: Different threads set different values to same key:
DEBUG - DEVICE: thread 0: set value = 6214384 and retrieved value = 6214384
DEBUG - DEVICE: thread 1: set value = 6214832 and retrieved value = 6214832
DEBUG - DEVICE:
DEBUG - DEVICE: PASS - test_posix_multiple_threads_single_key in 0.18 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_single_thread_multiple_keys
DEBUG - DEVICE:
DEBUG - DEVICE: Single thread associates its value with different keys:
DEBUG - DEVICE: key 0: set value = 6215232 and retrieved value = 6215232
DEBUG - DEVICE: key 1: set value = 6215232 and retrieved value = 6215232
DEBUG - DEVICE:
DEBUG - DEVICE: PASS - test_posix_single_thread_multiple_keys in 0.18 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_thread_attr_stacksize
DEBUG - DEVICE: PASS - test_posix_thread_attr_stacksize in 0.1 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_clock
DEBUG - DEVICE: POSIX clock APIs
DEBUG - DEVICE: POSIX clock APIs test done
DEBUG - DEVICE: PASS - test_posix_clock in 2.5 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_semaphore
DEBUG - DEVICE: PASS - test_posix_semaphore in 2.305 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_normal_mutex
DEBUG - DEVICE: mutex lock is taken
DEBUG - DEVICE: PASS - test_posix_normal_mutex in 0.203 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_recursive_mutex
DEBUG - DEVICE: recursive mutex lock is taken
DEBUG - DEVICE: PASS - test_posix_recursive_mutex in 0.4 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_mqueue
DEBUG - DEVICE: PASS - test_posix_mqueue in 0.11 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_realtime
DEBUG - DEVICE: PASS - test_posix_realtime in 1.802 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_timer
DEBUG - DEVICE: POSIX timer test
DEBUG - DEVICE: Timer fires every 0 secs and 100000000 nsecs
DEBUG - DEVICE: Time remaining to fire 0 secs and 899000000 nsecs
DEBUG - DEVICE: Handler Signal value :20 for 1 times
DEBUG - DEVICE: Handler Signal value :20 for 2 times
DEBUG - DEVICE: Handler Signal value :20 for 3 times
DEBUG - DEVICE: Handler Signal value :20 for 4 times
DEBUG - DEVICE: Handler Signal value :20 for 5 times
DEBUG - DEVICE: Handler Signal value :20 for 6 times
DEBUG - DEVICE: Handler Signal value :20 for 7 times
DEBUG - DEVICE: Handler Signal value :20 for 8 times
DEBUG - DEVICE: Handler Signal value :20 for 9 times
DEBUG - DEVICE: Handler Signal value :20 for 10 times
DEBUG - DEVICE: Handler Signal value :20 for 11 times
DEBUG - DEVICE: Handler Signal value :20 for 12 times
DEBUG - DEVICE: PASS - test_posix_timer in 2.112 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_rw_lock
DEBUG - DEVICE:
DEBUG - DEVICE: main acquire WR lock and 3 threads acquire RD lock
```
**Environment:**
OS: Linux,
Toolchain Zephyr SDK 0.14.1
Commit SHA or Version: 4cc5c56d8c4a4727bcfb6a49cdc2d6ffba39295f
| 1.0 | up_squared:the test shows pass in the twister.log it but does not seem to finish - **Describe the bug**
The test shows pass in the twister.log but it does not seem to finish, according to observation the twister log is not complete.
Take tests/posix/common as an example.
**To Reproduce**
Steps to reproduce the behavior:
1. source zephyr-env.sh
2. twister -p up_squared --device-testing --device-serial $serial_name -T tests/posix/common/ --west-flash=$HOME/$USER/up_squared_efi.sh -vv
4. See error
or
2.west build -p always -b up_squared tests/posix/common/
3.screen /dev/ttyUP2 115200
4.west flash $HOME/$USER/up_squared_efi.sh
5.See error
**Expected behavior**
The test pass both in twister log and in daily report.
**Impact**
The test shows pass in the twister log but it does not seem to finish.
**Logs and console output**
```
Version 2.18.1263. Copyright (C) 2018 American Megatrends, Inc.
Press <DEL> or <ESC> to enter setup.
DEBUG - DEVICE: >>Checking Media Presence......
DEBUG - DEVICE: >>No Media Present......
DEBUG - DEVICE: >>Checking Media Presence......
DEBUG - DEVICE: >>Media Present......
DEBUG - DEVICE: >>Start PXE over IPv4.
DEBUG - DEVICE: Station IP address is 192.165.1.56
DEBUG - DEVICE:
DEBUG - DEVICE: Server IP address is 192.165.1.1
DEBUG - DEVICE: NBP filename is up_squared/zephyr.efi
DEBUG - DEVICE: NBP filesize is 2246389 Bytes
DEBUG - DEVICE: >>Checking Media Presence......
DEBUG - DEVICE: >>Media Present......
DEBUG - DEVICE: Downloading NBP file...
DEBUG - DEVICE:
DEBUG - DEVICE: Succeed to download NBP file.
DEBUG - DEVICE: *** Zephyr EFI Loader ***
DEBUG - DEVICE: RSDP found at 0x79c34000
DEBUG - DEVICE: Zeroing 5075584 bytes of memory at 0x117000
DEBUG - DEVICE: Copying 32768 data bytes to 0x1000 from image offset
DEBUG - DEVICE: Copying 94208 data bytes to 0x100000 from image offset 32768
DEBUG - DEVICE: Copying 2112896 data bytes to 0x5ee280 from image offset 126976
DEBUG - DEVICE: Jumping to Entry Point: 0x1137 (48 31 c0 48 31 d2 48)
DEBUG - DEVICE: Running TESTSUITE posix_apis
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_pthread_execution
DEBUG - DEVICE: Thread 0 starting with scheduling policy 0 & priority 15
DEBUG - DEVICE: Thread 1 starting with scheduling policy 0 & priority 15
DEBUG - DEVICE: Thread 2 starting with scheduling policy 0 & priority 15
DEBUG - DEVICE: Bounce test OK
DEBUG - DEVICE: Barrier test OK
DEBUG - DEVICE: PASS - test_posix_pthread_execution in 0.521 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_pthread_error_condition
DEBUG - DEVICE: PASS - test_posix_pthread_error_condition in 0.1 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_pthread_termination
DEBUG - DEVICE: Thread 0 starting with a priority of 4
DEBUG - DEVICE: Cancelling thread 0
DEBUG - DEVICE: Thread 1 starting with a priority of 3
DEBUG - DEVICE: Cancelling thread 1
DEBUG - DEVICE: Thread 1 could not be cancelled
DEBUG - DEVICE: Thread 2 starting with a priority of 2
DEBUG - DEVICE: Cancelling thread 2
DEBUG - DEVICE: Thread 3 starting with a priority of 1
DEBUG - DEVICE: Cancelling thread 3
DEBUG - DEVICE: Thread 3 could not be cancelled
DEBUG - DEVICE: PASS - test_posix_pthread_termination in 1.16 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_multiple_threads_single_key
DEBUG - DEVICE:
DEBUG - DEVICE: Different threads set different values to same key:
DEBUG - DEVICE: thread 0: set value = 6214384 and retrieved value = 6214384
DEBUG - DEVICE: thread 1: set value = 6214832 and retrieved value = 6214832
DEBUG - DEVICE:
DEBUG - DEVICE: PASS - test_posix_multiple_threads_single_key in 0.18 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_single_thread_multiple_keys
DEBUG - DEVICE:
DEBUG - DEVICE: Single thread associates its value with different keys:
DEBUG - DEVICE: key 0: set value = 6215232 and retrieved value = 6215232
DEBUG - DEVICE: key 1: set value = 6215232 and retrieved value = 6215232
DEBUG - DEVICE:
DEBUG - DEVICE: PASS - test_posix_single_thread_multiple_keys in 0.18 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_thread_attr_stacksize
DEBUG - DEVICE: PASS - test_posix_thread_attr_stacksize in 0.1 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_clock
DEBUG - DEVICE: POSIX clock APIs
DEBUG - DEVICE: POSIX clock APIs test done
DEBUG - DEVICE: PASS - test_posix_clock in 2.5 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_semaphore
DEBUG - DEVICE: PASS - test_posix_semaphore in 2.305 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_normal_mutex
DEBUG - DEVICE: mutex lock is taken
DEBUG - DEVICE: PASS - test_posix_normal_mutex in 0.203 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_recursive_mutex
DEBUG - DEVICE: recursive mutex lock is taken
DEBUG - DEVICE: PASS - test_posix_recursive_mutex in 0.4 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_mqueue
DEBUG - DEVICE: PASS - test_posix_mqueue in 0.11 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_realtime
DEBUG - DEVICE: PASS - test_posix_realtime in 1.802 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_timer
DEBUG - DEVICE: POSIX timer test
DEBUG - DEVICE: Timer fires every 0 secs and 100000000 nsecs
DEBUG - DEVICE: Time remaining to fire 0 secs and 899000000 nsecs
DEBUG - DEVICE: Handler Signal value :20 for 1 times
DEBUG - DEVICE: Handler Signal value :20 for 2 times
DEBUG - DEVICE: Handler Signal value :20 for 3 times
DEBUG - DEVICE: Handler Signal value :20 for 4 times
DEBUG - DEVICE: Handler Signal value :20 for 5 times
DEBUG - DEVICE: Handler Signal value :20 for 6 times
DEBUG - DEVICE: Handler Signal value :20 for 7 times
DEBUG - DEVICE: Handler Signal value :20 for 8 times
DEBUG - DEVICE: Handler Signal value :20 for 9 times
DEBUG - DEVICE: Handler Signal value :20 for 10 times
DEBUG - DEVICE: Handler Signal value :20 for 11 times
DEBUG - DEVICE: Handler Signal value :20 for 12 times
DEBUG - DEVICE: PASS - test_posix_timer in 2.112 seconds
DEBUG - DEVICE: ===================================================================
DEBUG - DEVICE: START - test_posix_rw_lock
DEBUG - DEVICE:
DEBUG - DEVICE: main acquire WR lock and 3 threads acquire RD lock
```
**Environment:**
OS: Linux,
Toolchain Zephyr SDK 0.14.1
Commit SHA or Version: 4cc5c56d8c4a4727bcfb6a49cdc2d6ffba39295f
| priority | up squared:the test shows pass in the twister log it but does not seem to finish describe the bug the test shows pass in the twister log but it does not seem to finish according to observation the twister log is not complete take tests posix common as an example to reproduce steps to reproduce the behavior source zephyr env sh twister p up squared device testing device serial serial name t tests posix common west flash home user up squared efi sh vv see error or west build p always b up squared tests posix common screen dev west flash home user up squared efi sh see error expected behavior the test pass both in twister log and in daily report impact the test shows pass in the twister log but it does not seem to finish logs and console output version copyright c american megatrends inc press or to enter setup debug device checking media presence debug device no media present debug device checking media presence debug device media present debug device start pxe over debug device station ip address is debug device debug device server ip address is debug device nbp filename is up squared zephyr efi debug device nbp filesize is bytes debug device checking media presence debug device media present debug device downloading nbp file debug device debug device succeed to download nbp file debug device zephyr efi loader debug device rsdp found at debug device zeroing bytes of memory at debug device copying data bytes to from image offset debug device copying data bytes to from image offset debug device copying data bytes to from image offset debug device jumping to entry point debug device running testsuite posix apis debug device debug device start test posix pthread execution debug device thread starting with scheduling policy priority debug device thread starting with scheduling policy priority debug device thread starting with scheduling policy priority debug device bounce test ok debug device barrier test ok debug device pass test posix pthread execution in seconds debug device debug device start test posix pthread error condition debug device pass test posix pthread error condition in seconds debug device debug device start test posix pthread termination debug device thread starting with a priority of debug device cancelling thread debug device thread starting with a priority of debug device cancelling thread debug device thread could not be cancelled debug device thread starting with a priority of debug device cancelling thread debug device thread starting with a priority of debug device cancelling thread debug device thread could not be cancelled debug device pass test posix pthread termination in seconds debug device debug device start test posix multiple threads single key debug device debug device different threads set different values to same key debug device thread set value and retrieved value debug device thread set value and retrieved value debug device debug device pass test posix multiple threads single key in seconds debug device debug device start test posix single thread multiple keys debug device debug device single thread associates its value with different keys debug device key set value and retrieved value debug device key set value and retrieved value debug device debug device pass test posix single thread multiple keys in seconds debug device debug device start test posix thread attr stacksize debug device pass test posix thread attr stacksize in seconds debug device debug device start test posix clock debug device posix clock apis debug device posix clock apis test done debug device pass test posix clock in seconds debug device debug device start test posix semaphore debug device pass test posix semaphore in seconds debug device debug device start test posix normal mutex debug device mutex lock is taken debug device pass test posix normal mutex in seconds debug device debug device start test posix recursive mutex debug device recursive mutex lock is taken debug device pass test posix recursive mutex in seconds debug device debug device start test posix mqueue debug device pass test posix mqueue in seconds debug device debug device start test posix realtime debug device pass test posix realtime in seconds debug device debug device start test posix timer debug device posix timer test debug device timer fires every secs and nsecs debug device time remaining to fire secs and nsecs debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device handler signal value for times debug device pass test posix timer in seconds debug device debug device start test posix rw lock debug device debug device main acquire wr lock and threads acquire rd lock environment os linux toolchain zephyr sdk commit sha or version | 1 |
636,310 | 20,596,976,027 | IssuesEvent | 2022-03-05 17:03:36 | robotframework/robotframework | https://api.github.com/repos/robotframework/robotframework | closed | `--flattenkeywords` does not work with tags if keyword does not have documentation | bug priority: medium | For example, `Keyword` in the following example won't be flattened when using `--flattenkeywords tag:flat`. If `[Documentation]` is added to the keyword, flattening works.
```robotframework
*** Test Cases ***
Test
Keyword
*** Keywords ***
Keyword
[Tags] flat
Log This is message
```
Thanks @Snooz82 for reporting the problem on Slack. | 1.0 | `--flattenkeywords` does not work with tags if keyword does not have documentation - For example, `Keyword` in the following example won't be flattened when using `--flattenkeywords tag:flat`. If `[Documentation]` is added to the keyword, flattening works.
```robotframework
*** Test Cases ***
Test
Keyword
*** Keywords ***
Keyword
[Tags] flat
Log This is message
```
Thanks @Snooz82 for reporting the problem on Slack. | priority | flattenkeywords does not work with tags if keyword does not have documentation for example keyword in the following example won t be flattened when using flattenkeywords tag flat if is added to the keyword flattening works robotframework test cases test keyword keywords keyword flat log this is message thanks for reporting the problem on slack | 1 |
51,393 | 3,012,922,788 | IssuesEvent | 2015-07-29 04:12:01 | yawlfoundation/yawl | https://api.github.com/repos/yawlfoundation/yawl | closed | Introduce implicit net-level vars for timer states | auto-migrated Priority-Medium Type-Enhancement | ```
I propose that, when a net becomes active, for each workitem timer an
implicit net-var called _taskid_timer will be created, and will have its
status updated (and persisted) at the appropriate times and remain
accessible for the life of the net instance. A timer will have one of four
statuses:
* dormant: the timer hasn’t yet been triggered
* active: the timer has started
* closed: the task completed before the timer expired
* expired: the timer expired before the task completed
Such variables can then be queried in flow predicates, for example:
/myNet/_myTask_9_timer = ‘expired’
```
Original issue reported on code.google.com by `yawl.mic...@gmail.com` on 17 Oct 2008 at 10:14 | 1.0 | Introduce implicit net-level vars for timer states - ```
I propose that, when a net becomes active, for each workitem timer an
implicit net-var called _taskid_timer will be created, and will have its
status updated (and persisted) at the appropriate times and remain
accessible for the life of the net instance. A timer will have one of four
statuses:
* dormant: the timer hasn’t yet been triggered
* active: the timer has started
* closed: the task completed before the timer expired
* expired: the timer expired before the task completed
Such variables can then be queried in flow predicates, for example:
/myNet/_myTask_9_timer = ‘expired’
```
Original issue reported on code.google.com by `yawl.mic...@gmail.com` on 17 Oct 2008 at 10:14 | priority | introduce implicit net level vars for timer states i propose that when a net becomes active for each workitem timer an implicit net var called taskid timer will be created and will have its status updated and persisted at the appropriate times and remain accessible for the life of the net instance a timer will have one of four statuses dormant the timer hasn’t yet been triggered active the timer has started closed the task completed before the timer expired expired the timer expired before the task completed such variables can then be queried in flow predicates for example mynet mytask timer ‘expired’ original issue reported on code google com by yawl mic gmail com on oct at | 1 |
257,783 | 8,141,903,233 | IssuesEvent | 2018-08-21 05:05:38 | magda-io/magda | https://api.github.com/repos/magda-io/magda | closed | Investigate doubling up of data sets | priority: medium | ### Problem description
Magda seems to have nearly double the number of data sets compared to data.gov.au.
Need to investigate to check and confirm that this is not due to duplicates and that the data sets are legitimate.
### Problem reproduction steps
### Screenshot / Design / File reference
| 1.0 | Investigate doubling up of data sets - ### Problem description
Magda seems to have nearly double the number of data sets compared to data.gov.au.
Need to investigate to check and confirm that this is not due to duplicates and that the data sets are legitimate.
### Problem reproduction steps
### Screenshot / Design / File reference
| priority | investigate doubling up of data sets problem description magda seems to have nearly double the number of data sets compared to data gov au need to investigate to check and confirm that this is not due to duplicates and that the data sets are legitimate problem reproduction steps screenshot design file reference | 1 |
499,094 | 14,440,268,166 | IssuesEvent | 2020-12-07 15:22:13 | citi-onboarding/acervusej-onepage | https://api.github.com/repos/citi-onboarding/acervusej-onepage | closed | Create the Contact section and make it responsive | medium priority | Create the website Contact section using the Mobile first concept
- [x] Create the Contact section responsively
**Links that can help**
- [Mockup](https://www.figma.com/file/ZMpFkRY7WXLHoyNMF1XjXY/Acervus?node-id=0%3A1) | 1.0 | Create the Contact section and make it responsive - Create the website Contact section using the Mobile first concept
- [x] Create the Contact section responsively
**Links that can help**
- [Mockup](https://www.figma.com/file/ZMpFkRY7WXLHoyNMF1XjXY/Acervus?node-id=0%3A1) | priority | create the contact section and make it responsive create the website contact section using the mobile first concept create the contact section responsively links that can help | 1 |
233,396 | 7,697,487,376 | IssuesEvent | 2018-05-18 18:57:43 | MARKETProtocol/website | https://api.github.com/repos/MARKETProtocol/website | closed | [Press] Create new press page | Bounty Attached Good First Issue Help Wanted Priority: Medium Status: In Progress | ## Before you `start work`
Please read our contribution [guidelines](https://docs.marketprotocol.io/#contributing) and if there is a bounty involved please also see [here](https://docs.marketprotocol.io/#gitcoin-and-bounties)
If you have ongoing work from other bounties with us where funding has not been released, please do not pick up a new issue. We would like to involve as many contributors as possible and parallelize the work flow as much as possible.
Please make sure to comment in the issue here immediately after starting work so we know your plans for implementation and a timeline.
Please also note that in order for work to be accepted, all code must be accompanied by test cases as well.
### User Story
[comment]: # (As a <user type>, I want to <task> so that <goal>.)
As a user I want to be able to see information about MARKET Protocol in the press
### Why Is this Needed?
[comment]: # (Describe the problem and why this task is needed. Provide description of the current state, what you would like to happen, and what actually happen)
*Summary*: To learn more about our protocol and see what people think about us!
### Description
[comment]: # (Feature or Bug? i.e Type: Bug)
*Type*: Feature
### Current Behavior
[comment]: # (Describe what actually happened.)
No press page
### Expected Behavior
[comment]: # (Describe what you expected to happen.)
Press page!
### Solution
[comment]: # (Provide a summary of the solution and a task list on what needs to be fixed.)
*Summary*: Willing to let someone take some of their creativity to create a nice looking page. This will be a standalone page, that has a link in the footer to it. We will possibly add a different link to it later, but for now just a footer link is all that is needed.
See Additional Information for some examples and the needed links we want added
### NOTE YOU MUST FOLLOW OUR [DESIGN STYLE GUIDE](https://github.com/MARKETProtocol/assets/blob/master/Branding/MARKET_Protocol-Style-Guide.pdf)
### Definition of Done
- [ ] Design and implement new Press Page- marketprotocol.io/press in line with our [style guide](https://github.com/MARKETProtocol/assets/blob/master/Branding/MARKET_Protocol-Style-Guide.pdf)
- [ ] Plan for additional media links in design
- [ ] Create needed tests
- [ ] Create link in footer to new Press Page
- [ ] Follow all branding guidelines
- [ ] Allocate time for a few revisions as we decide on any style issues that may exists.
### Additional Information
[comment]: # (Any other information that would be useful, content, screenshots, etc.)
###
this could possibly look somthing like https://bluzelle.com/latest-news/press/ is
Needed press links -
1. https://themerkle.com/what-is-the-market-protocol/
2. https://www.youtube.com/watch?v=iRipt7d5LPc
3. https://themerkle.com/top-four-upcoming-cryptocurrencies-sans-icos/
4. https://www.cryptoninjas.net/2018/04/23/market-protocol-to-integrate-the-dgx-gold-backed-stablecoin/
5. https://bitcoinexchangeguide.com/market-protocol-ico/
| 1.0 | [Press] Create new press page - ## Before you `start work`
Please read our contribution [guidelines](https://docs.marketprotocol.io/#contributing) and if there is a bounty involved please also see [here](https://docs.marketprotocol.io/#gitcoin-and-bounties)
If you have ongoing work from other bounties with us where funding has not been released, please do not pick up a new issue. We would like to involve as many contributors as possible and parallelize the work flow as much as possible.
Please make sure to comment in the issue here immediately after starting work so we know your plans for implementation and a timeline.
Please also note that in order for work to be accepted, all code must be accompanied by test cases as well.
### User Story
[comment]: # (As a <user type>, I want to <task> so that <goal>.)
As a user I want to be able to see information about MARKET Protocol in the press
### Why Is this Needed?
[comment]: # (Describe the problem and why this task is needed. Provide description of the current state, what you would like to happen, and what actually happen)
*Summary*: To learn more about our protocol and see what people think about us!
### Description
[comment]: # (Feature or Bug? i.e Type: Bug)
*Type*: Feature
### Current Behavior
[comment]: # (Describe what actually happened.)
No press page
### Expected Behavior
[comment]: # (Describe what you expected to happen.)
Press page!
### Solution
[comment]: # (Provide a summary of the solution and a task list on what needs to be fixed.)
*Summary*: Willing to let someone take some of their creativity to create a nice looking page. This will be a standalone page, that has a link in the footer to it. We will possibly add a different link to it later, but for now just a footer link is all that is needed.
See Additional Information for some examples and the needed links we want added
### NOTE YOU MUST FOLLOW OUR [DESIGN STYLE GUIDE](https://github.com/MARKETProtocol/assets/blob/master/Branding/MARKET_Protocol-Style-Guide.pdf)
### Definition of Done
- [ ] Design and implement new Press Page- marketprotocol.io/press in line with our [style guide](https://github.com/MARKETProtocol/assets/blob/master/Branding/MARKET_Protocol-Style-Guide.pdf)
- [ ] Plan for additional media links in design
- [ ] Create needed tests
- [ ] Create link in footer to new Press Page
- [ ] Follow all branding guidelines
- [ ] Allocate time for a few revisions as we decide on any style issues that may exists.
### Additional Information
[comment]: # (Any other information that would be useful, content, screenshots, etc.)
###
this could possibly look somthing like https://bluzelle.com/latest-news/press/ is
Needed press links -
1. https://themerkle.com/what-is-the-market-protocol/
2. https://www.youtube.com/watch?v=iRipt7d5LPc
3. https://themerkle.com/top-four-upcoming-cryptocurrencies-sans-icos/
4. https://www.cryptoninjas.net/2018/04/23/market-protocol-to-integrate-the-dgx-gold-backed-stablecoin/
5. https://bitcoinexchangeguide.com/market-protocol-ico/
| priority | create new press page before you start work please read our contribution and if there is a bounty involved please also see if you have ongoing work from other bounties with us where funding has not been released please do not pick up a new issue we would like to involve as many contributors as possible and parallelize the work flow as much as possible please make sure to comment in the issue here immediately after starting work so we know your plans for implementation and a timeline please also note that in order for work to be accepted all code must be accompanied by test cases as well user story as a i want to so that as a user i want to be able to see information about market protocol in the press why is this needed describe the problem and why this task is needed provide description of the current state what you would like to happen and what actually happen summary to learn more about our protocol and see what people think about us description feature or bug i e type bug type feature current behavior describe what actually happened no press page expected behavior describe what you expected to happen press page solution provide a summary of the solution and a task list on what needs to be fixed summary willing to let someone take some of their creativity to create a nice looking page this will be a standalone page that has a link in the footer to it we will possibly add a different link to it later but for now just a footer link is all that is needed see additional information for some examples and the needed links we want added note you must follow our definition of done design and implement new press page marketprotocol io press in line with our plan for additional media links in design create needed tests create link in footer to new press page follow all branding guidelines allocate time for a few revisions as we decide on any style issues that may exists additional information any other information that would be useful content screenshots etc this could possibly look somthing like is needed press links | 1 |
112,705 | 4,536,088,926 | IssuesEvent | 2016-09-08 19:19:26 | isawnyu/isaw.web | https://api.github.com/repos/isawnyu/isaw.web | opened | batch biblio creation script fails with AttributeError on staging | bug medium priority | **reviewing [scrumdo story 125](https://www.scrumdo.com/projects/story_permalink/1098339)**
Steps to recreate:
- ssh into staging
- change user to "plone"
- ```cd /srv/isaw.web/```
- ```bin/client1 run scripts/batch_bibliography.py /home/telliott/bibitems.txt members/paregorian/fooberts --title "Fun with biblio again" --site isaw```
- get the following output and traceback (plone startup warnings omitted):
```
Starting batch content creation...
Created new folder isaw/paregorian
Created new folder isaw/paregorian/fooberts
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "scripts/batch_bibliography.py", line 91, in <module>
print "Error fetching {}: {}".format(bib_url, data.error)
AttributeError: 'dict' object has no attribute 'error'
```
| 1.0 | batch biblio creation script fails with AttributeError on staging - **reviewing [scrumdo story 125](https://www.scrumdo.com/projects/story_permalink/1098339)**
Steps to recreate:
- ssh into staging
- change user to "plone"
- ```cd /srv/isaw.web/```
- ```bin/client1 run scripts/batch_bibliography.py /home/telliott/bibitems.txt members/paregorian/fooberts --title "Fun with biblio again" --site isaw```
- get the following output and traceback (plone startup warnings omitted):
```
Starting batch content creation...
Created new folder isaw/paregorian
Created new folder isaw/paregorian/fooberts
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "scripts/batch_bibliography.py", line 91, in <module>
print "Error fetching {}: {}".format(bib_url, data.error)
AttributeError: 'dict' object has no attribute 'error'
```
| priority | batch biblio creation script fails with attributeerror on staging reviewing steps to recreate ssh into staging change user to plone cd srv isaw web bin run scripts batch bibliography py home telliott bibitems txt members paregorian fooberts title fun with biblio again site isaw get the following output and traceback plone startup warnings omitted starting batch content creation created new folder isaw paregorian created new folder isaw paregorian fooberts traceback most recent call last file line in file scripts batch bibliography py line in print error fetching format bib url data error attributeerror dict object has no attribute error | 1 |
55,988 | 3,075,610,079 | IssuesEvent | 2015-08-20 14:30:41 | RobotiumTech/robotium | https://api.github.com/repos/RobotiumTech/robotium | closed | robotium can't click button on the H5 page in the web view | bug imported invalid Priority-Medium | _From [tytia...@gmail.com](https://code.google.com/u/109454879016325840659/) on July 10, 2014 19:55:40_
What steps will reproduce the problem? 1.load the H5 page in the webview
2.enter the text in the text view
3.click on the button
I add the
\<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="19" /> to the test application and the
\<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" />
to the application. And the
\<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="14" /> is in the test application, too. What is the expected output? What do you see instead? expected: click on the button, it clicked on the text view, the keyboard poped uo. What version of the product are you using? On what operating system? robotium record 2.0.42 which is the eclipse plugin on Windows 7. Please provide any additional information below. you can mail me tytian08@gmail.com if some information I missed, thanks.
_Original issue: http://code.google.com/p/robotium/issues/detail?id=622_ | 1.0 | robotium can't click button on the H5 page in the web view - _From [tytia...@gmail.com](https://code.google.com/u/109454879016325840659/) on July 10, 2014 19:55:40_
What steps will reproduce the problem? 1.load the H5 page in the webview
2.enter the text in the text view
3.click on the button
I add the
\<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="19" /> to the test application and the
\<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" />
to the application. And the
\<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="14" /> is in the test application, too. What is the expected output? What do you see instead? expected: click on the button, it clicked on the text view, the keyboard poped uo. What version of the product are you using? On what operating system? robotium record 2.0.42 which is the eclipse plugin on Windows 7. Please provide any additional information below. you can mail me tytian08@gmail.com if some information I missed, thanks.
_Original issue: http://code.google.com/p/robotium/issues/detail?id=622_ | priority | robotium can t click button on the page in the web view from on july what steps will reproduce the problem load the page in the webview enter the text in the text view click on the button i add the uses sdk android minsdkversion android targetsdkversion to the test application and the supports screens android anydensity true android largescreens true android normalscreens true android resizeable true android smallscreens true to the application and the uses sdk android minsdkversion android targetsdkversion is in the test application too what is the expected output what do you see instead expected click on the button it clicked on the text view the keyboard poped uo what version of the product are you using on what operating system robotium record which is the eclipse plugin on windows please provide any additional information below you can mail me gmail com if some information i missed thanks original issue | 1 |
200,356 | 7,006,301,037 | IssuesEvent | 2017-12-19 07:51:19 | bwsw/cloudstack-ui | https://api.github.com/repos/bwsw/cloudstack-ui | closed | Dialog Volume Limit Exceeded appears several times | bug priority: medium | http://cs-ui-ci.z1.netpoint-dc.com:8888/master/storage
develop
Browsers: FF, Chrome
Steps:
1. Login by user and go to Storage
2. Create new Volume with big size to exceed the limit
Expected result: Dialog Volume Limit Exceeded appears once
Actual result: Dialog Volume Limit Exceeded appears several times
**Connected feature ID:** _storage_disk_create_

| 1.0 | Dialog Volume Limit Exceeded appears several times - http://cs-ui-ci.z1.netpoint-dc.com:8888/master/storage
develop
Browsers: FF, Chrome
Steps:
1. Login by user and go to Storage
2. Create new Volume with big size to exceed the limit
Expected result: Dialog Volume Limit Exceeded appears once
Actual result: Dialog Volume Limit Exceeded appears several times
**Connected feature ID:** _storage_disk_create_

| priority | dialog volume limit exceeded appears several times develop browsers ff chrome steps login by user and go to storage create new volume with big size to exceed the limit expected result dialog volume limit exceeded appears once actual result dialog volume limit exceeded appears several times connected feature id storage disk create | 1 |
58,216 | 3,088,161,546 | IssuesEvent | 2015-08-25 15:20:58 | starteam/starcellbio_html | https://api.github.com/repos/starteam/starcellbio_html | closed | Microscopy set up page: 2 conditions per line | Medium Priority Needs Review | Because this is mentioned in another issue but doesn't fit with the other issue, I'm creating a new one. As a user, it would be easier to read the microscopy setup page if I could see two conditions per line. This will avoid having to scroll too much. | 1.0 | Microscopy set up page: 2 conditions per line - Because this is mentioned in another issue but doesn't fit with the other issue, I'm creating a new one. As a user, it would be easier to read the microscopy setup page if I could see two conditions per line. This will avoid having to scroll too much. | priority | microscopy set up page conditions per line because this is mentioned in another issue but doesn t fit with the other issue i m creating a new one as a user it would be easier to read the microscopy setup page if i could see two conditions per line this will avoid having to scroll too much | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.