Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 855 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 13 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 240k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
521,656 | 15,113,246,964 | IssuesEvent | 2021-02-08 23:17:09 | sonia-auv/octopus-telemetry | https://api.github.com/repos/sonia-auv/octopus-telemetry | closed | Ros-bridge test data/replay bag | Priority: High Type: Feature | **Warning :** Before creating an issue or task, make sure that it does not already exists in the [issue tracker](../). Thank you.
## Context
Installer ROS-bridge et essayer de simuler du data
## Changes
<!-- Give a brief description of the components that need to change and how -->
## Comments
<!-- Add further comments if needed -->
| 1.0 | Ros-bridge test data/replay bag - **Warning :** Before creating an issue or task, make sure that it does not already exists in the [issue tracker](../). Thank you.
## Context
Installer ROS-bridge et essayer de simuler du data
## Changes
<!-- Give a brief description of the components that need to change and how -->
## Comments
<!-- Add further comments if needed -->
| priority | ros bridge test data replay bag warning before creating an issue or task make sure that it does not already exists in the thank you context installer ros bridge et essayer de simuler du data changes comments | 1 |
548,402 | 16,063,570,475 | IssuesEvent | 2021-04-23 15:37:57 | mypyc/mypyc | https://api.github.com/repos/mypyc/mypyc | closed | typing.NamedTuple does not work when using "new" syntax | feature help wanted priority-0-high | I'm playing with using mypyc on a proprietary project to boost performance and am hitting an issue with using the "new" class-based `typing.NamedTuple` syntax.
With `foo.py`:
```python
from typing import NamedTuple, Set
class MyDiff(NamedTuple):
added: Set[str]
removed: Set[str]
```
I get:
```bash
(virtualenv) $ mypyc foo.py
foo.py:3: error: Inheriting from most builtin types is unimplemented
```
Versions used:
```
(virtualenv) $ mypyc --version
mypy 0.770
(virtualenv) $ python --version
Python 3.8.0
```
Using the old mypyc syntax it works fine.
Given `foo_old.py`:
```python
from typing import NamedTuple, Set
MyDiff = NamedTuple('MyDiff', [
('added', Set[str]),
('removed', Set[str])
])
```
I get:
```bash
(virtualenv) $ mypyc foo_old.py
running build_ext
building 'foo_old' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/home/cellsons/Projects/supernamed/virtualenv/lib/python3.8/site-packages/mypyc/lib-rt -I/home/cellsons/Projects/supernamed/virtualenv/include -I/usr/include/python3.8 -c build/__native.c -o build/temp.linux-x86_64-3.8/build/__native.o -O3 -Werror -Wno-unused-function -Wno-unused-label -Wno-unreachable-code -Wno-unused-variable -Wno-unused-command-line-argument -Wno-unknown-warning-option -Wno-unused-but-set-variable
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.8/build/__native.o -o /home/cellsons/Projects/supernamed/foo_old.cpython-38-x86_64-linux-gnu.so
```
Edit: Thanks for a great project! I'm seeing 10x performance boosts on the small but important module I'm testing this on. | 1.0 | typing.NamedTuple does not work when using "new" syntax - I'm playing with using mypyc on a proprietary project to boost performance and am hitting an issue with using the "new" class-based `typing.NamedTuple` syntax.
With `foo.py`:
```python
from typing import NamedTuple, Set
class MyDiff(NamedTuple):
added: Set[str]
removed: Set[str]
```
I get:
```bash
(virtualenv) $ mypyc foo.py
foo.py:3: error: Inheriting from most builtin types is unimplemented
```
Versions used:
```
(virtualenv) $ mypyc --version
mypy 0.770
(virtualenv) $ python --version
Python 3.8.0
```
Using the old mypyc syntax it works fine.
Given `foo_old.py`:
```python
from typing import NamedTuple, Set
MyDiff = NamedTuple('MyDiff', [
('added', Set[str]),
('removed', Set[str])
])
```
I get:
```bash
(virtualenv) $ mypyc foo_old.py
running build_ext
building 'foo_old' extension
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/home/cellsons/Projects/supernamed/virtualenv/lib/python3.8/site-packages/mypyc/lib-rt -I/home/cellsons/Projects/supernamed/virtualenv/include -I/usr/include/python3.8 -c build/__native.c -o build/temp.linux-x86_64-3.8/build/__native.o -O3 -Werror -Wno-unused-function -Wno-unused-label -Wno-unreachable-code -Wno-unused-variable -Wno-unused-command-line-argument -Wno-unknown-warning-option -Wno-unused-but-set-variable
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.8/build/__native.o -o /home/cellsons/Projects/supernamed/foo_old.cpython-38-x86_64-linux-gnu.so
```
Edit: Thanks for a great project! I'm seeing 10x performance boosts on the small but important module I'm testing this on. | priority | typing namedtuple does not work when using new syntax i m playing with using mypyc on a proprietary project to boost performance and am hitting an issue with using the new class based typing namedtuple syntax with foo py python from typing import namedtuple set class mydiff namedtuple added set removed set i get bash virtualenv mypyc foo py foo py error inheriting from most builtin types is unimplemented versions used virtualenv mypyc version mypy virtualenv python version python using the old mypyc syntax it works fine given foo old py python from typing import namedtuple set mydiff namedtuple mydiff added set removed set i get bash virtualenv mypyc foo old py running build ext building foo old extension linux gnu gcc pthread wno unused result wsign compare dndebug g fwrapv wall g fstack protector strong wformat werror format security g fwrapv g fstack protector strong wformat werror format security wdate time d fortify source fpic i home cellsons projects supernamed virtualenv lib site packages mypyc lib rt i home cellsons projects supernamed virtualenv include i usr include c build native c o build temp linux build native o werror wno unused function wno unused label wno unreachable code wno unused variable wno unused command line argument wno unknown warning option wno unused but set variable linux gnu gcc pthread shared wl wl bsymbolic functions wl bsymbolic functions wl z relro g fwrapv wl bsymbolic functions wl z relro g fwrapv g fstack protector strong wformat werror format security wdate time d fortify source build temp linux build native o o home cellsons projects supernamed foo old cpython linux gnu so edit thanks for a great project i m seeing performance boosts on the small but important module i m testing this on | 1 |
81,449 | 3,591,181,989 | IssuesEvent | 2016-02-01 10:30:50 | ceylon/ceylon-ide-eclipse | https://api.github.com/repos/ceylon/ceylon-ide-eclipse | closed | `ModelResolutionException` when filtering the `Open Declaration` dialog content | bug on last release bug on master high priority | ```
com.redhat.ceylon.model.loader.ModelResolutionException: The Model Loader corresponding to the type 'org.eclipse.jdt.internal.debug.core.model.PatchedForCeylonJDIThread' was not available
at com.redhat.ceylon.eclipse.core.model.LookupEnvironmentUtilities.doWithReferenceBinding(LookupEnvironmentUtilities.java:73)
at com.redhat.ceylon.eclipse.core.model.mirror.JDTClass.doWithBindings(JDTClass.java:402)
at com.redhat.ceylon.eclipse.core.model.mirror.JDTClass.retrieveAnnotations(JDTClass.java:330)
at com.redhat.ceylon.eclipse.core.model.mirror.JDTClass.isInnerClass(JDTClass.java:533)
at com.redhat.ceylon.eclipse.core.model.mirror.JDTClass.isCeylonToplevelAttribute(JDTClass.java:494)
at com.redhat.ceylon.model.loader.AbstractModelLoader.getClassType(AbstractModelLoader.java:1235)
at com.redhat.ceylon.model.loader.AbstractModelLoader.findCachedDeclaration(AbstractModelLoader.java:1018)
at com.redhat.ceylon.model.loader.AbstractModelLoader.convertToDeclaration(AbstractModelLoader.java:607)
at com.redhat.ceylon.model.loader.AbstractModelLoader.convertToDeclaration(AbstractModelLoader.java:597)
at com.redhat.ceylon.ide.common.model.BaseIdeModelLoader.convertToDeclaration(IdeModelLoader.ceylon:506)
at com.redhat.ceylon.ide.common.model.IdeModelLoader$3$1.$call$(IdeModelLoader.ceylon:788)
at ceylon.language.Iterable$impl.each(Iterable.ceylon:323)
at ceylon.language.impl.BaseIterable.each(bases.ceylon)
at com.redhat.ceylon.ide.common.model.IdeModelLoader$3.$call$(IdeModelLoader.ceylon:782)
at com.redhat.ceylon.ide.common.model.IdeModelLoader$3.$call$(IdeModelLoader.ceylon:744)
at com.redhat.ceylon.ide.common.util.synchronize_.synchronize(synchronize_.java:33)
at com.redhat.ceylon.ide.common.model.IdeModelLoader.loadPackage(IdeModelLoader.ceylon:801)
at com.redhat.ceylon.model.loader.model.LazyPackage.getMembers(LazyPackage.java:177)
at com.redhat.ceylon.eclipse.code.open.OpenDeclarationDialog.fill(OpenDeclarationDialog.java:953)
at com.redhat.ceylon.eclipse.code.open.OpenDeclarationDialog.fillContentProvider(OpenDeclarationDialog.java:935)
at com.redhat.ceylon.eclipse.code.open.FilteredItemsSelectionDialog$FilterJob.filterContent(FilteredItemsSelectionDialog.java:2235)
at com.redhat.ceylon.eclipse.code.open.FilteredItemsSelectionDialog$FilterJob.internalRun(FilteredItemsSelectionDialog.java:2186)
at com.redhat.ceylon.eclipse.code.open.FilteredItemsSelectionDialog$FilterJob.doRun(FilteredItemsSelectionDialog.java:2158)
at com.redhat.ceylon.eclipse.code.open.FilteredItemsSelectionDialog$FilterJob.run(FilteredItemsSelectionDialog.java:2145)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
``` | 1.0 | `ModelResolutionException` when filtering the `Open Declaration` dialog content - ```
com.redhat.ceylon.model.loader.ModelResolutionException: The Model Loader corresponding to the type 'org.eclipse.jdt.internal.debug.core.model.PatchedForCeylonJDIThread' was not available
at com.redhat.ceylon.eclipse.core.model.LookupEnvironmentUtilities.doWithReferenceBinding(LookupEnvironmentUtilities.java:73)
at com.redhat.ceylon.eclipse.core.model.mirror.JDTClass.doWithBindings(JDTClass.java:402)
at com.redhat.ceylon.eclipse.core.model.mirror.JDTClass.retrieveAnnotations(JDTClass.java:330)
at com.redhat.ceylon.eclipse.core.model.mirror.JDTClass.isInnerClass(JDTClass.java:533)
at com.redhat.ceylon.eclipse.core.model.mirror.JDTClass.isCeylonToplevelAttribute(JDTClass.java:494)
at com.redhat.ceylon.model.loader.AbstractModelLoader.getClassType(AbstractModelLoader.java:1235)
at com.redhat.ceylon.model.loader.AbstractModelLoader.findCachedDeclaration(AbstractModelLoader.java:1018)
at com.redhat.ceylon.model.loader.AbstractModelLoader.convertToDeclaration(AbstractModelLoader.java:607)
at com.redhat.ceylon.model.loader.AbstractModelLoader.convertToDeclaration(AbstractModelLoader.java:597)
at com.redhat.ceylon.ide.common.model.BaseIdeModelLoader.convertToDeclaration(IdeModelLoader.ceylon:506)
at com.redhat.ceylon.ide.common.model.IdeModelLoader$3$1.$call$(IdeModelLoader.ceylon:788)
at ceylon.language.Iterable$impl.each(Iterable.ceylon:323)
at ceylon.language.impl.BaseIterable.each(bases.ceylon)
at com.redhat.ceylon.ide.common.model.IdeModelLoader$3.$call$(IdeModelLoader.ceylon:782)
at com.redhat.ceylon.ide.common.model.IdeModelLoader$3.$call$(IdeModelLoader.ceylon:744)
at com.redhat.ceylon.ide.common.util.synchronize_.synchronize(synchronize_.java:33)
at com.redhat.ceylon.ide.common.model.IdeModelLoader.loadPackage(IdeModelLoader.ceylon:801)
at com.redhat.ceylon.model.loader.model.LazyPackage.getMembers(LazyPackage.java:177)
at com.redhat.ceylon.eclipse.code.open.OpenDeclarationDialog.fill(OpenDeclarationDialog.java:953)
at com.redhat.ceylon.eclipse.code.open.OpenDeclarationDialog.fillContentProvider(OpenDeclarationDialog.java:935)
at com.redhat.ceylon.eclipse.code.open.FilteredItemsSelectionDialog$FilterJob.filterContent(FilteredItemsSelectionDialog.java:2235)
at com.redhat.ceylon.eclipse.code.open.FilteredItemsSelectionDialog$FilterJob.internalRun(FilteredItemsSelectionDialog.java:2186)
at com.redhat.ceylon.eclipse.code.open.FilteredItemsSelectionDialog$FilterJob.doRun(FilteredItemsSelectionDialog.java:2158)
at com.redhat.ceylon.eclipse.code.open.FilteredItemsSelectionDialog$FilterJob.run(FilteredItemsSelectionDialog.java:2145)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
``` | priority | modelresolutionexception when filtering the open declaration dialog content com redhat ceylon model loader modelresolutionexception the model loader corresponding to the type org eclipse jdt internal debug core model patchedforceylonjdithread was not available at com redhat ceylon eclipse core model lookupenvironmentutilities dowithreferencebinding lookupenvironmentutilities java at com redhat ceylon eclipse core model mirror jdtclass dowithbindings jdtclass java at com redhat ceylon eclipse core model mirror jdtclass retrieveannotations jdtclass java at com redhat ceylon eclipse core model mirror jdtclass isinnerclass jdtclass java at com redhat ceylon eclipse core model mirror jdtclass isceylontoplevelattribute jdtclass java at com redhat ceylon model loader abstractmodelloader getclasstype abstractmodelloader java at com redhat ceylon model loader abstractmodelloader findcacheddeclaration abstractmodelloader java at com redhat ceylon model loader abstractmodelloader converttodeclaration abstractmodelloader java at com redhat ceylon model loader abstractmodelloader converttodeclaration abstractmodelloader java at com redhat ceylon ide common model baseidemodelloader converttodeclaration idemodelloader ceylon at com redhat ceylon ide common model idemodelloader call idemodelloader ceylon at ceylon language iterable impl each iterable ceylon at ceylon language impl baseiterable each bases ceylon at com redhat ceylon ide common model idemodelloader call idemodelloader ceylon at com redhat ceylon ide common model idemodelloader call idemodelloader ceylon at com redhat ceylon ide common util synchronize synchronize synchronize java at com redhat ceylon ide common model idemodelloader loadpackage idemodelloader ceylon at com redhat ceylon model loader model lazypackage getmembers lazypackage java at com redhat ceylon eclipse code open opendeclarationdialog fill opendeclarationdialog java at com redhat ceylon eclipse code open opendeclarationdialog fillcontentprovider opendeclarationdialog java at com redhat ceylon eclipse code open filtereditemsselectiondialog filterjob filtercontent filtereditemsselectiondialog java at com redhat ceylon eclipse code open filtereditemsselectiondialog filterjob internalrun filtereditemsselectiondialog java at com redhat ceylon eclipse code open filtereditemsselectiondialog filterjob dorun filtereditemsselectiondialog java at com redhat ceylon eclipse code open filtereditemsselectiondialog filterjob run filtereditemsselectiondialog java at org eclipse core internal jobs worker run worker java | 1 |
506,968 | 14,677,188,361 | IssuesEvent | 2020-12-30 22:27:00 | Instant-Visio/InstantVisio-WebApp | https://api.github.com/repos/Instant-Visio/InstantVisio-WebApp | closed | Persist login state | high priority webApp | - Investigate need to persist anonymous [login state](https://firebase.google.com/docs/auth/web/auth-state-persistence#supported_types_of_auth_state_persistence). It seems the anonymous user is signed up again (new account created) on page reload
- check if we should trigger `onAuthStateChanged` instead | 1.0 | Persist login state - - Investigate need to persist anonymous [login state](https://firebase.google.com/docs/auth/web/auth-state-persistence#supported_types_of_auth_state_persistence). It seems the anonymous user is signed up again (new account created) on page reload
- check if we should trigger `onAuthStateChanged` instead | priority | persist login state investigate need to persist anonymous it seems the anonymous user is signed up again new account created on page reload check if we should trigger onauthstatechanged instead | 1 |
25,019 | 2,675,555,198 | IssuesEvent | 2015-03-25 13:17:17 | knime-mpicbg/knime-scripting | https://api.github.com/repos/knime-mpicbg/knime-scripting | closed | Rgg-panel issues | bug high priority | The panel which shows the RGG-GUI does not use full width/height of the window. | 1.0 | Rgg-panel issues - The panel which shows the RGG-GUI does not use full width/height of the window. | priority | rgg panel issues the panel which shows the rgg gui does not use full width height of the window | 1 |
734,684 | 25,358,668,989 | IssuesEvent | 2022-11-20 16:41:48 | vortexntnu/vortex-asv | https://api.github.com/repos/vortexntnu/vortex-asv | closed | ASV waypoint tracking | High priority | **Time estimate:** 15hrs
**Deadline:** 13.02
**Description of task:** The LOS guidance right now allows us to follow a single straight line, but there are some issues with waypoint management, causing the track to be deleted upon reaching the first goal. Care should also be put into the CLI, making it easy to see what the system is doing.
| 1.0 | ASV waypoint tracking - **Time estimate:** 15hrs
**Deadline:** 13.02
**Description of task:** The LOS guidance right now allows us to follow a single straight line, but there are some issues with waypoint management, causing the track to be deleted upon reaching the first goal. Care should also be put into the CLI, making it easy to see what the system is doing.
| priority | asv waypoint tracking time estimate deadline description of task the los guidance right now allows us to follow a single straight line but there are some issues with waypoint management causing the track to be deleted upon reaching the first goal care should also be put into the cli making it easy to see what the system is doing | 1 |
374,383 | 11,088,910,949 | IssuesEvent | 2019-12-14 14:46:05 | owntracks/frontend | https://api.github.com/repos/owntracks/frontend | closed | Feature: Add time into the date selectors | Priority: High Status: In progress Type: Feature | It would be really useful to be able to select a time window as well as date. This is because the traces can get very busy even within 1 day so being able to narrow down to a time window would help massively. | 1.0 | Feature: Add time into the date selectors - It would be really useful to be able to select a time window as well as date. This is because the traces can get very busy even within 1 day so being able to narrow down to a time window would help massively. | priority | feature add time into the date selectors it would be really useful to be able to select a time window as well as date this is because the traces can get very busy even within day so being able to narrow down to a time window would help massively | 1 |
686,472 | 23,492,522,010 | IssuesEvent | 2022-08-17 20:17:52 | microsoft/fluentui | https://api.github.com/repos/microsoft/fluentui | closed | List cannot be used safely from function components | Type: Bug :bug: Priority 1: High Component: List Status: In PR Fluent UI react (v8) | I originally wrote this up as issue https://github.com/microsoft/fluentui/issues/17616 but it was closed with a comment of
> Still require assistance? Please, create a new issue with up-to date details.
### Describe the issue:
The List component cannot be used consistently from non-class components.
In _getDerivedStateFromProps (old versions used _componentWillReceiveProps) the new props are passed to _updatePages. However, the building process involves other methods, such as _getPageSpecification which uses this.props.getPageSpecification.
If the parent component is a functional component then there is a good chance that the function in this.props.getPageSpecification is not the same function as the new props.getPageSpecification. If its closure contains references to any other props, the function being called will be referencing older props.
#### Actual behavior:
When the items prop is updated, the previous version of the getPageSpecification prop is called.
#### Expected behavior:
When any prop is updated, only the latest props are used.
### If applicable, please provide a codepen repro:
https://codepen.io/kokuda/pen/qBRayjJ
### Priorities and help requested (not applicable if asking question):
Are you willing to submit a PR to fix? (Yes, No)
No
It is unclear how to fix this without a major refactor. Either don't use getDerivedStateFromProps or pass all props to all methods?
Requested priority: (Blocking, High, Normal, Low)
High
I will work around this, but it was difficult to find and should either be well documented or fixed. The component functions behaving in such an unexpected fashion causes some subtle issues and not always exceptions.
The workaround is to use refs within the getPageSpecification implementation so that it always references the current value of the state and not closure captured values. The implementation of the callback getPageSpecification then doesn't depend on closure props or state so it is the same function on each render (like a function component)
| 1.0 | List cannot be used safely from function components - I originally wrote this up as issue https://github.com/microsoft/fluentui/issues/17616 but it was closed with a comment of
> Still require assistance? Please, create a new issue with up-to date details.
### Describe the issue:
The List component cannot be used consistently from non-class components.
In _getDerivedStateFromProps (old versions used _componentWillReceiveProps) the new props are passed to _updatePages. However, the building process involves other methods, such as _getPageSpecification which uses this.props.getPageSpecification.
If the parent component is a functional component then there is a good chance that the function in this.props.getPageSpecification is not the same function as the new props.getPageSpecification. If its closure contains references to any other props, the function being called will be referencing older props.
#### Actual behavior:
When the items prop is updated, the previous version of the getPageSpecification prop is called.
#### Expected behavior:
When any prop is updated, only the latest props are used.
### If applicable, please provide a codepen repro:
https://codepen.io/kokuda/pen/qBRayjJ
### Priorities and help requested (not applicable if asking question):
Are you willing to submit a PR to fix? (Yes, No)
No
It is unclear how to fix this without a major refactor. Either don't use getDerivedStateFromProps or pass all props to all methods?
Requested priority: (Blocking, High, Normal, Low)
High
I will work around this, but it was difficult to find and should either be well documented or fixed. The component functions behaving in such an unexpected fashion causes some subtle issues and not always exceptions.
The workaround is to use refs within the getPageSpecification implementation so that it always references the current value of the state and not closure captured values. The implementation of the callback getPageSpecification then doesn't depend on closure props or state so it is the same function on each render (like a function component)
| priority | list cannot be used safely from function components i originally wrote this up as issue but it was closed with a comment of still require assistance please create a new issue with up to date details describe the issue the list component cannot be used consistently from non class components in getderivedstatefromprops old versions used componentwillreceiveprops the new props are passed to updatepages however the building process involves other methods such as getpagespecification which uses this props getpagespecification if the parent component is a functional component then there is a good chance that the function in this props getpagespecification is not the same function as the new props getpagespecification if its closure contains references to any other props the function being called will be referencing older props actual behavior when the items prop is updated the previous version of the getpagespecification prop is called expected behavior when any prop is updated only the latest props are used if applicable please provide a codepen repro priorities and help requested not applicable if asking question are you willing to submit a pr to fix yes no no it is unclear how to fix this without a major refactor either don t use getderivedstatefromprops or pass all props to all methods requested priority blocking high normal low high i will work around this but it was difficult to find and should either be well documented or fixed the component functions behaving in such an unexpected fashion causes some subtle issues and not always exceptions the workaround is to use refs within the getpagespecification implementation so that it always references the current value of the state and not closure captured values the implementation of the callback getpagespecification then doesn t depend on closure props or state so it is the same function on each render like a function component | 1 |
508,598 | 14,703,373,567 | IssuesEvent | 2021-01-04 14:57:33 | NOAA-OWP/cahaba | https://api.github.com/repos/NOAA-OWP/cahaba | opened | [2pt] NWS LID static library creation errors | High Priority | There are a number of HUCs that produce errors when creating NWS LID static libraries. Investigate. | 1.0 | [2pt] NWS LID static library creation errors - There are a number of HUCs that produce errors when creating NWS LID static libraries. Investigate. | priority | nws lid static library creation errors there are a number of hucs that produce errors when creating nws lid static libraries investigate | 1 |
600,714 | 18,353,179,631 | IssuesEvent | 2021-10-08 14:47:52 | AY2122S1-CS2113T-W13-4/tp | https://api.github.com/repos/AY2122S1-CS2113T-W13-4/tp | closed | Implement storage for storing list of registered users | type.Enhancement type.Story priority.High | Save user data to a text file whenever a new user is registered to the system. Loads data whenever Cooper is launched. | 1.0 | Implement storage for storing list of registered users - Save user data to a text file whenever a new user is registered to the system. Loads data whenever Cooper is launched. | priority | implement storage for storing list of registered users save user data to a text file whenever a new user is registered to the system loads data whenever cooper is launched | 1 |
143,910 | 5,532,527,456 | IssuesEvent | 2017-03-21 10:51:44 | commons-app/apps-android-commons | https://api.github.com/repos/commons-app/apps-android-commons | closed | Issues with new theme | bug high priority pre-release | @domdomegg @neslihanturan @maskaravivek I've been doing more in-depth testing before releasing the new version (on a Nexus S emulator API 23 and 25, prior to real device testing), and a few things that I noticed with the new themes/icons:
1. When sent to the overflow menu due to the action bar being full, "From gallery" shows up with its icon on the left. Besides being the only item in the overflow menu with an icon, when the light theme is selected, the icon isn't visible due to being white.

2. The subtext in the tutorial is black now, while the text is white. IMO keeping the text and subtext roughly the same color is a lot more aesthetic.

3. I think it might be a good idea to make the dark theme the default instead of the light theme, so that people start out with the theme that they are used to, and have the option to change it if they prefer light. What do you guys think?
4. Very minor issue, and could just be a personal preference, but in the media details pane, landscape images have a large white band above them. IMO this looks okay in the dark theme, but rather jarring in the light theme.

| 1.0 | Issues with new theme - @domdomegg @neslihanturan @maskaravivek I've been doing more in-depth testing before releasing the new version (on a Nexus S emulator API 23 and 25, prior to real device testing), and a few things that I noticed with the new themes/icons:
1. When sent to the overflow menu due to the action bar being full, "From gallery" shows up with its icon on the left. Besides being the only item in the overflow menu with an icon, when the light theme is selected, the icon isn't visible due to being white.

2. The subtext in the tutorial is black now, while the text is white. IMO keeping the text and subtext roughly the same color is a lot more aesthetic.

3. I think it might be a good idea to make the dark theme the default instead of the light theme, so that people start out with the theme that they are used to, and have the option to change it if they prefer light. What do you guys think?
4. Very minor issue, and could just be a personal preference, but in the media details pane, landscape images have a large white band above them. IMO this looks okay in the dark theme, but rather jarring in the light theme.

| priority | issues with new theme domdomegg neslihanturan maskaravivek i ve been doing more in depth testing before releasing the new version on a nexus s emulator api and prior to real device testing and a few things that i noticed with the new themes icons when sent to the overflow menu due to the action bar being full from gallery shows up with its icon on the left besides being the only item in the overflow menu with an icon when the light theme is selected the icon isn t visible due to being white the subtext in the tutorial is black now while the text is white imo keeping the text and subtext roughly the same color is a lot more aesthetic i think it might be a good idea to make the dark theme the default instead of the light theme so that people start out with the theme that they are used to and have the option to change it if they prefer light what do you guys think very minor issue and could just be a personal preference but in the media details pane landscape images have a large white band above them imo this looks okay in the dark theme but rather jarring in the light theme | 1 |
434,995 | 12,530,281,946 | IssuesEvent | 2020-06-04 12:50:02 | oppia/oppia-android | https://api.github.com/repos/oppia/oppia-android | closed | Onboarding Flow - Tablet (Landscape) (Highfi) | Priority: Essential Status: In implementation Type: Task Where: Starting flows Workstream: Highfi UI | Mock link: https://xd.adobe.com/view/d405de00-a871-4f0f-73a0-f8acef30349b-a234/
Implement high-fi UI for **Onboarding Flow** tablet landscape mode
**Target PR date**: 12 June 2020
**Target completion date**: 16 June 2020 | 1.0 | Onboarding Flow - Tablet (Landscape) (Highfi) - Mock link: https://xd.adobe.com/view/d405de00-a871-4f0f-73a0-f8acef30349b-a234/
Implement high-fi UI for **Onboarding Flow** tablet landscape mode
**Target PR date**: 12 June 2020
**Target completion date**: 16 June 2020 | priority | onboarding flow tablet landscape highfi mock link implement high fi ui for onboarding flow tablet landscape mode target pr date june target completion date june | 1 |
3,747 | 2,539,825,828 | IssuesEvent | 2015-01-27 17:40:50 | duckduckgo/community-platform | https://api.github.com/repos/duckduckgo/community-platform | opened | Schema migration policy. | Improvement Priority: High | [`script/ddgc_db_autoupgrade.pl`](https://github.com/duckduckgo/community-platform/blob/dev/script/ddgc_db_autoupgrade.pl) should be considered informational for developers working on schema changes, not the canonical source of diffs post-merge/deployment.
I'd like to discuss options for making schema changes available to developers and for deployment. High-level proposal, we have a `sql/` or `migration/` directory which contains a script containing DDL and data migration for each task or version. These scripts can then be run on every required instance, plus we have a reasonably easy-to-reference history of changes.
So, say the last version was 1.006, in preparing for version 1.007 we would have:
`sql/1.007/task-branchname.sql`
`sql/1.007/other-task-branchname.sql`
...containing the required DDL and data updates for that version - you bear the responsibility for defining the DDL when schema changes are made. I'm not sure if the idea needs much expansion beyond this :)
@jdorweiler @MariagraziaAlastra @russellholt Thanks! | 1.0 | Schema migration policy. - [`script/ddgc_db_autoupgrade.pl`](https://github.com/duckduckgo/community-platform/blob/dev/script/ddgc_db_autoupgrade.pl) should be considered informational for developers working on schema changes, not the canonical source of diffs post-merge/deployment.
I'd like to discuss options for making schema changes available to developers and for deployment. High-level proposal, we have a `sql/` or `migration/` directory which contains a script containing DDL and data migration for each task or version. These scripts can then be run on every required instance, plus we have a reasonably easy-to-reference history of changes.
So, say the last version was 1.006, in preparing for version 1.007 we would have:
`sql/1.007/task-branchname.sql`
`sql/1.007/other-task-branchname.sql`
...containing the required DDL and data updates for that version - you bear the responsibility for defining the DDL when schema changes are made. I'm not sure if the idea needs much expansion beyond this :)
@jdorweiler @MariagraziaAlastra @russellholt Thanks! | priority | schema migration policy should be considered informational for developers working on schema changes not the canonical source of diffs post merge deployment i d like to discuss options for making schema changes available to developers and for deployment high level proposal we have a sql or migration directory which contains a script containing ddl and data migration for each task or version these scripts can then be run on every required instance plus we have a reasonably easy to reference history of changes so say the last version was in preparing for version we would have sql task branchname sql sql other task branchname sql containing the required ddl and data updates for that version you bear the responsibility for defining the ddl when schema changes are made i m not sure if the idea needs much expansion beyond this jdorweiler mariagraziaalastra russellholt thanks | 1 |
768,812 | 26,982,009,040 | IssuesEvent | 2023-02-09 13:46:16 | VeriFIT/mata | https://api.github.com/repos/VeriFIT/mata | closed | Bug in determinize() | For:library Module:nfa Type:bug Priority:high | The following test produces an assertion failure.
```cpp
Nfa x{};
x.initial.add(0);
x.final.add(4);
x.delta.add(0, 1, 3);
x.delta.add(3, 1, 3);
x.delta.add(3, 2, 3);
x.delta.add(3, 0, 1);
x.delta.add(1, 1, 1);
x.delta.add(1, 2, 1);
x.delta.add(1, 0, 2);
x.delta.add(2, 0, 2);
x.delta.add(2, 1, 2);
x.delta.add(2, 2, 2);
x.delta.add(2, 0, 4);
OnTheFlyAlphabet alphabet{};
auto complement_result{ determinize(x) };
``` | 1.0 | Bug in determinize() - The following test produces an assertion failure.
```cpp
Nfa x{};
x.initial.add(0);
x.final.add(4);
x.delta.add(0, 1, 3);
x.delta.add(3, 1, 3);
x.delta.add(3, 2, 3);
x.delta.add(3, 0, 1);
x.delta.add(1, 1, 1);
x.delta.add(1, 2, 1);
x.delta.add(1, 0, 2);
x.delta.add(2, 0, 2);
x.delta.add(2, 1, 2);
x.delta.add(2, 2, 2);
x.delta.add(2, 0, 4);
OnTheFlyAlphabet alphabet{};
auto complement_result{ determinize(x) };
``` | priority | bug in determinize the following test produces an assertion failure cpp nfa x x initial add x final add x delta add x delta add x delta add x delta add x delta add x delta add x delta add x delta add x delta add x delta add x delta add ontheflyalphabet alphabet auto complement result determinize x | 1 |
674,472 | 23,052,138,495 | IssuesEvent | 2022-07-24 19:45:57 | meshery/meshery | https://api.github.com/repos/meshery/meshery | closed | [Server] Multi-Cluster: GraphQL Session Hijacked | kind/bug component/meshsync priority/high framework/graphql | #### Current Behavior
Meshery has erratic behavior with three local Kubernetes clusters connected and is unusable. Clusters:
1. Docker Desktop
1. Minikube
1. KinD
Meshery Operator is deployed to each cluster. Meshery Server built and running locally. Local system has enough free resources (CPU and Mem).
Note: _WriteHeader on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError_
#### Screenshots/Logs
```
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] write tcp [::1]:9081->[::1]:62537: write: broken pipe app=meshery code=2013 probable-cause="Object is not a valid json object" severity=2 short-description="Unable to marshal the : .user config data" suggested-remediation="Make sure if the object passed has json tags"
server.go:3160: http: superfluous response.WriteHeader call from github.com/layer5io/meshery/handlers.(*Handler).SessionSyncHandler (session_sync_handler.go:80)
INFO[2022-07-14T17:53:37-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:53:37-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:37-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:53:42-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:53:42-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:42-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:53:47-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:53:47-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:47-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:53:52-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:53:52-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:52-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:53:57-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:53:57-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:57-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:02-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:02-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:02-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:07-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:54:07-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:07-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:12-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:12-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:12-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
websocket.go:79: unable to upgrade *http.response to websocket write tcp [::1]:9081->[::1]:62586: write: broken pipe:
server.go:3160: http: response.WriteHeader on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError (error.go:15)
server.go:3160: http: response.Write on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError (error.go:20)
INFO[2022-07-14T17:54:17-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:54:17-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:17-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:22-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:22-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:22-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:27-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:54:27-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:27-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
DEBU[0596] token : eyJhY2Nlc3NfdG9rZW4iOiJleUpoYkdjaU9pSlNVekkxTmlJc0ltdHBaQ0k2SW5CMVlteHBZenBsT0dWbU5ERmpNeTFpWldWbUxUUmlZakV0T0dVNE1DMHpOakExTVRZeU4yTTJNakVpTENKMGVYQWlPaUpLVjFRaWZRLmV5SmhkV1FpT2x0ZExDSmpiR2xsYm5SZmFXUWlPaUp0WlhOb1pYSjVMV05zYjNWa0lpd2laWGh3SWpveE5qVTNPRFF5T0RZM0xDSmxlSFFpT250OUxDSnBZWFFpT2pFMk5UYzRNemt5Tmpjc0ltbHpjeUk2SW1oMGRIQnpPaTh2YldWemFHVnllUzVzWVhsbGNqVXVhVzh2YUhsa2NtRXZJaXdpYW5ScElqb2lNek14TkdVM056SXRORFprT1MwME1HTmhMVGt6WTJRdE0yTmxaRFE0T0dVeE9UZzBJaXdpYm1KbUlqb3hOalUzT0RNNU1qWTNMQ0p6WTNBaU9sc2liM0JsYm1sa0lpd2liMlptYkdsdVpTSmRMQ0p6ZFdJaU9pSmlSMDVvWWtkT2RtUkhWVDA2WkVoa2NHUklVbXhqWnowOUluMC4yc0NwOGo0SlNLaE11M3dmaGJtdlZlaTZrek9CdkpKeFZkcDdqZXpnU1FnTkdodWZGcUJiX2sxbmF5cjlWVzI3UDdsbUxZXy1GTk9kOEhQbVdmV2taN28xSnZkVEFnOHFEVDk4OVJWZmU3MG1ueHFvOWI0TFlwYWNZeDVfd0wtZjREVnZTUVExMkE4TU42M1QxX2NDVUtYT1J1Njljd1NsUF9OTlpHdU5OSEd2eVNvR1l2bTBWR1JPS2dETXBLUGs3cE5MRXlpbkVEOExWb2hscmR6c3R0MlJWMUg5MU92QW9FelNpNHpfeTdUaHc3SVktT0tSTUI3clBtMWZwUGpRYklBX09CU0poMGpLcmdKcERRdWZVQVA1VFBraU1kck9iakFwWk15RU9wdFRDZDVoQ2k2VmZhdlNFUzFIR19aenpzWTBwaGoxYkV6Zk1ZVWFJNWVKZFVIM0VSaHRkcElPNHdJWDVPTlF1akhWTnBvYnJ6RHg3ejdSYXBsRV95cXFmQ3ROZVpOU2RNUTdyNEh5MmE1bTRFVC1WdVByVG1XTDJHYkFQdm94YTZHQzZ6S19uLW5aMzdqaGxjdWxKLW85NXpYQUl5X0d6eGcwbkd4RUxYUk9VQUNveXhiRkt6V2RIdnFiZHNJQUI3UGdlMnlFT0FSSHlxcjRXQzNoYmFwaFNtbEVNQV9lV3BfODF5MnJ2Q05lUk9jNWlOQXJ3NUpTZ0Z4NkEwNWktWXprNkliLVVCRUVKZl9UZ0VUYWtlaDM0QUtiRzMxdUFHSEhoRnRhVzJEZ2l0Q0kyUUZqbmVpeFFqVHFFNXpFaWtDUmF3aVVYNndqQlpQaDBmRWRQb3RjaFZDSVZET1V5UTFJZ1dTU2RDdml4eWs4TXRLUlF0dTBLUnRnSU5kZ2R1dyIsInRva2VuX3R5cGUiOiJiZWFyZXIiLCJyZWZyZXNoX3Rva2VuIjoiYWFBcFpoTUhxa1J1QUxnS0o3WWJaMEVyWVZnallFdzlKcDc0Q3p0a0FzZy51d1UzSkN3cGVha3ZVNUZxbDY0VU1fLXRCUUU5Q0otRUM5anlmYmNBd3RBIiwiZXhwaXJ5IjoiMjAyMi0wNy0xNFQyMzo1NDoyNi4zNjg5MjA4NDhaIn0
DEBU[0596] [Initialize]: Package found at /Users/lee/.meshery/provider/Meshery/v0.6.0-rc.6b-3 skipping download
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] kubernetes contexts successfully retrieved from remote provider
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] kubernetes contexts successfully retrieved from remote provider
INFO[0596] kubernetes contexts successfully retrieved from remote provider
INFO[0597] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0599] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0599] kubernetes contexts successfully retrieved from remote provider
INFO[0600] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0600] kubernetes contexts successfully retrieved from remote provider
INFO[2022-07-14T17:54:32-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:32-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:32-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[0603] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0603] kubernetes contexts successfully retrieved from remote provider
INFO[2022-07-14T17:54:37-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:54:37-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:37-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[0607] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0608] kubernetes contexts successfully retrieved from remote provider
INFO[2022-07-14T17:54:42-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:42-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:42-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
websocket.go:79: unable to upgrade *http.response to websocket write tcp [::1]:9081->[::1]:62594: write: broken pipe:
server.go:3160: http: response.WriteHeader on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError (error.go:15)
server.go:3160: http: response.Write on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError (error.go:20)
INFO[0612] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0613] kubernetes contexts successfully retrieved from remote provider
```
#### Environment
- **Host OS:** Mac
- **Meshery Server Version:** stable-v0.6.0-rc.6b
- **Meshery Client Version:** stable-v0.6.0-rc.6b
---
#### Contributor [Guides](https://docs.meshery.io/project/contributing) and Resources
- 🛠 [Meshery Build & Release Strategy](https://docs.meshery.io/project/build-and-release)
- 📚 [Instructions for contributing to documentation](https://github.com/meshery/meshery/blob/master/CONTRIBUTING.md#documentation-contribution-flow)
- Meshery documentation [site](https://docs.meshery.io/) and [source](https://github.com/meshery/meshery/tree/master/docs)
- 🎨 Wireframes and designs for Meshery UI in [Figma](https://www.figma.com/file/SMP3zxOjZztdOLtgN4dS2W/Meshery-UI)
- 🙋🏾🙋🏼 Questions: [Discussion Forum](https://discuss.layer5.io) and [Community Slack](http://slack.layer5.io)
| 1.0 | [Server] Multi-Cluster: GraphQL Session Hijacked - #### Current Behavior
Meshery has erratic behavior with three local Kubernetes clusters connected and is unusable. Clusters:
1. Docker Desktop
1. Minikube
1. KinD
Meshery Operator is deployed to each cluster. Meshery Server built and running locally. Local system has enough free resources (CPU and Mem).
Note: _WriteHeader on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError_
#### Screenshots/Logs
```
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] rpc error: code = Canceled desc = context canceled app=meshery code=2041 probable-cause="unable to retrieve the requested data" severity=2 short-description="Error getting operations for the mesh.Error getting service mesh name" suggested-remediation="Make sure adapter is reachable and running"
ERRO[2022-07-14T17:53:32-05:00] write tcp [::1]:9081->[::1]:62537: write: broken pipe app=meshery code=2013 probable-cause="Object is not a valid json object" severity=2 short-description="Unable to marshal the : .user config data" suggested-remediation="Make sure if the object passed has json tags"
server.go:3160: http: superfluous response.WriteHeader call from github.com/layer5io/meshery/handlers.(*Handler).SessionSyncHandler (session_sync_handler.go:80)
INFO[2022-07-14T17:53:37-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:53:37-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:37-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:53:42-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:53:42-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:42-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:53:47-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:53:47-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:47-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:53:52-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:53:52-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:52-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:53:57-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:53:57-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:53:57-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:02-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:02-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:02-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:07-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:54:07-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:07-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:12-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:12-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:12-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
websocket.go:79: unable to upgrade *http.response to websocket write tcp [::1]:9081->[::1]:62586: write: broken pipe:
server.go:3160: http: response.WriteHeader on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError (error.go:15)
server.go:3160: http: response.Write on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError (error.go:20)
INFO[2022-07-14T17:54:17-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:54:17-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:17-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:22-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:22-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:22-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[2022-07-14T17:54:27-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:54:27-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:27-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
DEBU[0596] token : eyJhY2Nlc3NfdG9rZW4iOiJleUpoYkdjaU9pSlNVekkxTmlJc0ltdHBaQ0k2SW5CMVlteHBZenBsT0dWbU5ERmpNeTFpWldWbUxUUmlZakV0T0dVNE1DMHpOakExTVRZeU4yTTJNakVpTENKMGVYQWlPaUpLVjFRaWZRLmV5SmhkV1FpT2x0ZExDSmpiR2xsYm5SZmFXUWlPaUp0WlhOb1pYSjVMV05zYjNWa0lpd2laWGh3SWpveE5qVTNPRFF5T0RZM0xDSmxlSFFpT250OUxDSnBZWFFpT2pFMk5UYzRNemt5Tmpjc0ltbHpjeUk2SW1oMGRIQnpPaTh2YldWemFHVnllUzVzWVhsbGNqVXVhVzh2YUhsa2NtRXZJaXdpYW5ScElqb2lNek14TkdVM056SXRORFprT1MwME1HTmhMVGt6WTJRdE0yTmxaRFE0T0dVeE9UZzBJaXdpYm1KbUlqb3hOalUzT0RNNU1qWTNMQ0p6WTNBaU9sc2liM0JsYm1sa0lpd2liMlptYkdsdVpTSmRMQ0p6ZFdJaU9pSmlSMDVvWWtkT2RtUkhWVDA2WkVoa2NHUklVbXhqWnowOUluMC4yc0NwOGo0SlNLaE11M3dmaGJtdlZlaTZrek9CdkpKeFZkcDdqZXpnU1FnTkdodWZGcUJiX2sxbmF5cjlWVzI3UDdsbUxZXy1GTk9kOEhQbVdmV2taN28xSnZkVEFnOHFEVDk4OVJWZmU3MG1ueHFvOWI0TFlwYWNZeDVfd0wtZjREVnZTUVExMkE4TU42M1QxX2NDVUtYT1J1Njljd1NsUF9OTlpHdU5OSEd2eVNvR1l2bTBWR1JPS2dETXBLUGs3cE5MRXlpbkVEOExWb2hscmR6c3R0MlJWMUg5MU92QW9FelNpNHpfeTdUaHc3SVktT0tSTUI3clBtMWZwUGpRYklBX09CU0poMGpLcmdKcERRdWZVQVA1VFBraU1kck9iakFwWk15RU9wdFRDZDVoQ2k2VmZhdlNFUzFIR19aenpzWTBwaGoxYkV6Zk1ZVWFJNWVKZFVIM0VSaHRkcElPNHdJWDVPTlF1akhWTnBvYnJ6RHg3ejdSYXBsRV95cXFmQ3ROZVpOU2RNUTdyNEh5MmE1bTRFVC1WdVByVG1XTDJHYkFQdm94YTZHQzZ6S19uLW5aMzdqaGxjdWxKLW85NXpYQUl5X0d6eGcwbkd4RUxYUk9VQUNveXhiRkt6V2RIdnFiZHNJQUI3UGdlMnlFT0FSSHlxcjRXQzNoYmFwaFNtbEVNQV9lV3BfODF5MnJ2Q05lUk9jNWlOQXJ3NUpTZ0Z4NkEwNWktWXprNkliLVVCRUVKZl9UZ0VUYWtlaDM0QUtiRzMxdUFHSEhoRnRhVzJEZ2l0Q0kyUUZqbmVpeFFqVHFFNXpFaWtDUmF3aVVYNndqQlpQaDBmRWRQb3RjaFZDSVZET1V5UTFJZ1dTU2RDdml4eWs4TXRLUlF0dTBLUnRnSU5kZ2R1dyIsInRva2VuX3R5cGUiOiJiZWFyZXIiLCJyZWZyZXNoX3Rva2VuIjoiYWFBcFpoTUhxa1J1QUxnS0o3WWJaMEVyWVZnallFdzlKcDc0Q3p0a0FzZy51d1UzSkN3cGVha3ZVNUZxbDY0VU1fLXRCUUU5Q0otRUM5anlmYmNBd3RBIiwiZXhwaXJ5IjoiMjAyMi0wNy0xNFQyMzo1NDoyNi4zNjg5MjA4NDhaIn0
DEBU[0596] [Initialize]: Package found at /Users/lee/.meshery/provider/Meshery/v0.6.0-rc.6b-3 skipping download
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] kubernetes contexts successfully retrieved from remote provider
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0596] kubernetes contexts successfully retrieved from remote provider
INFO[0596] kubernetes contexts successfully retrieved from remote provider
INFO[0597] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0597] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0597] kubernetes contexts successfully retrieved from remote provider
INFO[0599] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0599] kubernetes contexts successfully retrieved from remote provider
INFO[0600] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0600] kubernetes contexts successfully retrieved from remote provider
INFO[2022-07-14T17:54:32-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:32-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:32-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
INFO[0603] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0603] kubernetes contexts successfully retrieved from remote provider
INFO[2022-07-14T17:54:37-05:00] found meshery-broker endpoint: localhost:31318 for contextId: fc89362d677d2e2ce4942792a1a506c4 app=meshery
WARN[2022-07-14T17:54:37-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:37-05:00] skipping meshsync data handler setup for contextId: fc89362d677d2e2ce4942792a1a506c4 due to: nats: no servers available for connection app=meshery
INFO[0607] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0608] kubernetes contexts successfully retrieved from remote provider
INFO[2022-07-14T17:54:42-05:00] found meshery-broker endpoint: localhost:31164 for contextId: e21ad3cc3711dd894fafda9050e3d4eb app=meshery
WARN[2022-07-14T17:54:42-05:00] nats: no servers available for connection app=meshery code=11000 probable-cause="Endpoint might not be reachable" severity=2 short-description="Connection to broker failed" suggested-remediation="Make sure the NATS endpoint is reachable"
INFO[2022-07-14T17:54:42-05:00] skipping meshsync data handler setup for contextId: e21ad3cc3711dd894fafda9050e3d4eb due to: nats: no servers available for connection app=meshery
websocket.go:79: unable to upgrade *http.response to websocket write tcp [::1]:9081->[::1]:62594: write: broken pipe:
server.go:3160: http: response.WriteHeader on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError (error.go:15)
server.go:3160: http: response.Write on hijacked connection from github.com/99designs/gqlgen/graphql/handler/transport.SendError (error.go:20)
INFO[0612] attempting to fetch kubernetes contexts from cloud for Meshery instance: 158c2256-ea2e-4d3a-8bb2-c2074329f533
INFO[0613] kubernetes contexts successfully retrieved from remote provider
```
#### Environment
- **Host OS:** Mac
- **Meshery Server Version:** stable-v0.6.0-rc.6b
- **Meshery Client Version:** stable-v0.6.0-rc.6b
---
#### Contributor [Guides](https://docs.meshery.io/project/contributing) and Resources
- 🛠 [Meshery Build & Release Strategy](https://docs.meshery.io/project/build-and-release)
- 📚 [Instructions for contributing to documentation](https://github.com/meshery/meshery/blob/master/CONTRIBUTING.md#documentation-contribution-flow)
- Meshery documentation [site](https://docs.meshery.io/) and [source](https://github.com/meshery/meshery/tree/master/docs)
- 🎨 Wireframes and designs for Meshery UI in [Figma](https://www.figma.com/file/SMP3zxOjZztdOLtgN4dS2W/Meshery-UI)
- 🙋🏾🙋🏼 Questions: [Discussion Forum](https://discuss.layer5.io) and [Community Slack](http://slack.layer5.io)
| priority | multi cluster graphql session hijacked current behavior meshery has erratic behavior with three local kubernetes clusters connected and is unusable clusters docker desktop minikube kind meshery operator is deployed to each cluster meshery server built and running locally local system has enough free resources cpu and mem note writeheader on hijacked connection from github com gqlgen graphql handler transport senderror screenshots logs erro rpc error code canceled desc context canceled app meshery code probable cause unable to retrieve the requested data severity short description error getting operations for the mesh error getting service mesh name suggested remediation make sure adapter is reachable and running erro rpc error code canceled desc context canceled app meshery code probable cause unable to retrieve the requested data severity short description error getting operations for the mesh error getting service mesh name suggested remediation make sure adapter is reachable and running erro rpc error code canceled desc context canceled app meshery code probable cause unable to retrieve the requested data severity short description error getting operations for the mesh error getting service mesh name suggested remediation make sure adapter is reachable and running erro rpc error code canceled desc context canceled app meshery code probable cause unable to retrieve the requested data severity short description error getting operations for the mesh error getting service mesh name suggested remediation make sure adapter is reachable and running erro rpc error code canceled desc context canceled app meshery code probable cause unable to retrieve the requested data severity short description error getting operations for the mesh error getting service mesh name suggested remediation make sure adapter is reachable and running erro rpc error code canceled desc context canceled app meshery code probable cause unable to retrieve the requested data severity short description error getting operations for the mesh error getting service mesh name suggested remediation make sure adapter is reachable and running erro write tcp write broken pipe app meshery code probable cause object is not a valid json object severity short description unable to marshal the user config data suggested remediation make sure if the object passed has json tags server go http superfluous response writeheader call from github com meshery handlers handler sessionsynchandler session sync handler go info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery websocket go unable to upgrade http response to websocket write tcp write broken pipe server go http response writeheader on hijacked connection from github com gqlgen graphql handler transport senderror error go server go http response write on hijacked connection from github com gqlgen graphql handler transport senderror error go info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery debu token debu package found at users lee meshery provider meshery rc skipping download info attempting to fetch kubernetes contexts from cloud for meshery instance info attempting to fetch kubernetes contexts from cloud for meshery instance info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info attempting to fetch kubernetes contexts from cloud for meshery instance info attempting to fetch kubernetes contexts from cloud for meshery instance info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info kubernetes contexts successfully retrieved from remote provider info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info kubernetes contexts successfully retrieved from remote provider info kubernetes contexts successfully retrieved from remote provider info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info kubernetes contexts successfully retrieved from remote provider info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider info found meshery broker endpoint localhost for contextid app meshery warn nats no servers available for connection app meshery code probable cause endpoint might not be reachable severity short description connection to broker failed suggested remediation make sure the nats endpoint is reachable info skipping meshsync data handler setup for contextid due to nats no servers available for connection app meshery websocket go unable to upgrade http response to websocket write tcp write broken pipe server go http response writeheader on hijacked connection from github com gqlgen graphql handler transport senderror error go server go http response write on hijacked connection from github com gqlgen graphql handler transport senderror error go info attempting to fetch kubernetes contexts from cloud for meshery instance info kubernetes contexts successfully retrieved from remote provider environment host os mac meshery server version stable rc meshery client version stable rc contributor and resources 🛠 📚 meshery documentation and 🎨 wireframes and designs for meshery ui in 🙋🏾🙋🏼 questions and | 1 |
371,453 | 10,966,932,407 | IssuesEvent | 2019-11-28 08:26:46 | CESNET/perun-web-apps | https://api.github.com/repos/CESNET/perun-web-apps | closed | Feedback dialog | high priority | * The goal of this task is to implement feedback dialog that would be always visible.
* It should be located on the top right side above all elements.
* It should provide an option to open a dialog which would send a message to a specific queue in RT (will be specified later)
* On mobile devices, it would be probably best to display it on the bottom and with full width. | 1.0 | Feedback dialog - * The goal of this task is to implement feedback dialog that would be always visible.
* It should be located on the top right side above all elements.
* It should provide an option to open a dialog which would send a message to a specific queue in RT (will be specified later)
* On mobile devices, it would be probably best to display it on the bottom and with full width. | priority | feedback dialog the goal of this task is to implement feedback dialog that would be always visible it should be located on the top right side above all elements it should provide an option to open a dialog which would send a message to a specific queue in rt will be specified later on mobile devices it would be probably best to display it on the bottom and with full width | 1 |
245,133 | 7,881,604,324 | IssuesEvent | 2018-06-26 19:38:11 | fecgov/fec-cms | https://api.github.com/repos/fecgov/fec-cms | closed | Implement new contact page design | High priority Work: Front-end | **What we're after:** We've reorganized and streamlined our contact page language and design to help users better find the FEC services they are looking for. Our next step is to implement the new design. Great background at: https://github.com/fecgov/fec-cms/issues/1895
**Designs:**

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

**Completion criteria:**
- [x] Create wagtail template, or discover applicable, mobile-friendly template to function similarly to the hard-coded version (column 1 (left), then column 2(right)) (also talk to Jonella about line spacing)
- [x] Front-end and content pair to build contact page in Wagtail
- [x] Publish new wagtail contact page live
- [x] Delete hard-coded contact page
- [x] Modify link to contact page to say `www.fec.gov/contact` and remove `-us`
- [x] Add a wagtail redirect for for `/contact-us/` to go to `/contact/` | priority | implement new contact page design what we re after we ve reorganized and streamlined our contact page language and design to help users better find the fec services they are looking for our next step is to implement the new design great background at designs completion criteria create wagtail template or discover applicable mobile friendly template to function similarly to the hard coded version column left then column right also talk to jonella about line spacing front end and content pair to build contact page in wagtail publish new wagtail contact page live delete hard coded contact page modify link to contact page to say and remove us add a wagtail redirect for for contact us to go to contact | 1 |
80,148 | 3,551,326,742 | IssuesEvent | 2016-01-21 02:45:14 | aces/cbrain | https://api.github.com/repos/aces/cbrain | opened | In user file view, "Download File" button crashes with "Couldn't find Userfile with id=download" error | Bug High Priority | Full trace:
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/relation/finder_methods.rb:344:in `find_one'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/relation/finder_methods.rb:315:in `find_with_ids'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/relation/finder_methods.rb:107:in `find'
app/models/userfile.rb:339:in `find_accessible_by_user'
app/controllers/userfiles_controller.rb:290:in `show'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/base.rb:167:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/rendering.rb:10:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:525:in `block in _run__2226815674746059455__process_action__2123525060749793347__callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:215:in `block in _conditional_callback_around_948'
app/controllers/application_controller.rb:101:in `activate_user_time_zone'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:214:in `_conditional_callback_around_948'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:513:in `_run__2226815674746059455__process_action__2123525060749793347__callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:405:in `__run_callback'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:81:in `run_callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/callbacks.rb:17:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/rescue.rb:29:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/notifications.rb:123:in `block in instrument'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/notifications.rb:123:in `instrument'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/base.rb:121:in `process'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/rendering.rb:45:in `process'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal.rb:203:in `dispatch'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal.rb:246:in `block in action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/routing/route_set.rb:73:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/routing/route_set.rb:36:in `call'
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
journey (1.0.4) lib/journey/router.rb:56:in `each'
journey (1.0.4) lib/journey/router.rb:56:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/routing/route_set.rb:608:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
rack (1.4.7) lib/rack/etag.rb:23:in `call'
rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/head.rb:14:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/flash.rb:242:in `call'
rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/cookies.rb:341:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/query_cache.rb:64:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:405:in `_run__4229444993978263647__call__2062213166809947372__callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:405:in `__run_callback'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:81:in `run_callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/reloader.rb:65:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/rack/logger.rb:32:in `call_app'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/rack/logger.rb:16:in `block in call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/tagged_logging.rb:22:in `tagged'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/rack/logger.rb:16:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/request_id.rb:22:in `call'
rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
rack (1.4.7) lib/rack/runtime.rb:17:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
rack (1.4.7) lib/rack/lock.rb:15:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/static.rb:83:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/engine.rb:484:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/application.rb:231:in `call'
rack (1.4.7) lib/rack/content_length.rb:14:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/rack/log_tailer.rb:17:in `call'
thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process'
thin (1.6.3) lib/thin/connection.rb:84:in `catch'
thin (1.6.3) lib/thin/connection.rb:84:in `pre_process'
thin (1.6.3) lib/thin/connection.rb:53:in `process'
thin (1.6.3) lib/thin/connection.rb:39:in `receive_data'
eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
thin (1.6.3) lib/thin/backends/base.rb:73:in `start'
thin (1.6.3) lib/thin/server.rb:162:in `start'
rack (1.4.7) lib/rack/handler/thin.rb:13:in `run'
rack (1.4.7) lib/rack/server.rb:268:in `start'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/commands/server.rb:70:in `start'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/commands.rb:55:in `block in <top (required)>'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/commands.rb:50:in `tap'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/commands.rb:50:in `<top (required)>'
script/rails:6:in `require'
script/rails:6:in `<main>'
| 1.0 | In user file view, "Download File" button crashes with "Couldn't find Userfile with id=download" error - Full trace:
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/relation/finder_methods.rb:344:in `find_one'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/relation/finder_methods.rb:315:in `find_with_ids'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/relation/finder_methods.rb:107:in `find'
app/models/userfile.rb:339:in `find_accessible_by_user'
app/controllers/userfiles_controller.rb:290:in `show'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/base.rb:167:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/rendering.rb:10:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:525:in `block in _run__2226815674746059455__process_action__2123525060749793347__callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:215:in `block in _conditional_callback_around_948'
app/controllers/application_controller.rb:101:in `activate_user_time_zone'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:214:in `_conditional_callback_around_948'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:513:in `_run__2226815674746059455__process_action__2123525060749793347__callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:405:in `__run_callback'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:81:in `run_callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/callbacks.rb:17:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/rescue.rb:29:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/notifications.rb:123:in `block in instrument'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/notifications.rb:123:in `instrument'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/base.rb:121:in `process'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/abstract_controller/rendering.rb:45:in `process'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal.rb:203:in `dispatch'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_controller/metal.rb:246:in `block in action'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/routing/route_set.rb:73:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/routing/route_set.rb:36:in `call'
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
journey (1.0.4) lib/journey/router.rb:56:in `each'
journey (1.0.4) lib/journey/router.rb:56:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/routing/route_set.rb:608:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
rack (1.4.7) lib/rack/etag.rb:23:in `call'
rack (1.4.7) lib/rack/conditionalget.rb:25:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/head.rb:14:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/flash.rb:242:in `call'
rack (1.4.7) lib/rack/session/abstract/id.rb:210:in `context'
rack (1.4.7) lib/rack/session/abstract/id.rb:205:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/cookies.rb:341:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/query_cache.rb:64:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:405:in `_run__4229444993978263647__call__2062213166809947372__callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:405:in `__run_callback'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/callbacks.rb:81:in `run_callbacks'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/reloader.rb:65:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/rack/logger.rb:32:in `call_app'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/rack/logger.rb:16:in `block in call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/tagged_logging.rb:22:in `tagged'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/rack/logger.rb:16:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/request_id.rb:22:in `call'
rack (1.4.7) lib/rack/methodoverride.rb:21:in `call'
rack (1.4.7) lib/rack/runtime.rb:17:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/activesupport/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
rack (1.4.7) lib/rack/lock.rb:15:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/actionpack/lib/action_dispatch/middleware/static.rb:83:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/engine.rb:484:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/application.rb:231:in `call'
rack (1.4.7) lib/rack/content_length.rb:14:in `call'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/rack/log_tailer.rb:17:in `call'
thin (1.6.3) lib/thin/connection.rb:86:in `block in pre_process'
thin (1.6.3) lib/thin/connection.rb:84:in `catch'
thin (1.6.3) lib/thin/connection.rb:84:in `pre_process'
thin (1.6.3) lib/thin/connection.rb:53:in `process'
thin (1.6.3) lib/thin/connection.rb:39:in `receive_data'
eventmachine (1.0.8) lib/eventmachine.rb:193:in `run_machine'
eventmachine (1.0.8) lib/eventmachine.rb:193:in `run'
thin (1.6.3) lib/thin/backends/base.rb:73:in `start'
thin (1.6.3) lib/thin/server.rb:162:in `start'
rack (1.4.7) lib/rack/handler/thin.rb:13:in `run'
rack (1.4.7) lib/rack/server.rb:268:in `start'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/commands/server.rb:70:in `start'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/commands.rb:55:in `block in <top (required)>'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/commands.rb:50:in `tap'
/home/cbrain/.rvm/gems/ruby-2.2.0/bundler/gems/rails-d94d77c55c59/railties/lib/rails/commands.rb:50:in `<top (required)>'
script/rails:6:in `require'
script/rails:6:in `<main>'
| priority | in user file view download file button crashes with couldn t find userfile with id download error full trace home cbrain rvm gems ruby bundler gems rails activerecord lib active record relation finder methods rb in find one home cbrain rvm gems ruby bundler gems rails activerecord lib active record relation finder methods rb in find with ids home cbrain rvm gems ruby bundler gems rails activerecord lib active record relation finder methods rb in find app models userfile rb in find accessible by user app controllers userfiles controller rb in show home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal implicit render rb in send action home cbrain rvm gems ruby bundler gems rails actionpack lib abstract controller base rb in process action home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal rendering rb in process action home cbrain rvm gems ruby bundler gems rails actionpack lib abstract controller callbacks rb in block in process action home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in block in run process action callbacks home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in block in conditional callback around app controllers application controller rb in activate user time zone home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in conditional callback around home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in run process action callbacks home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in run callback home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in run process action callbacks home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in run callbacks home cbrain rvm gems ruby bundler gems rails actionpack lib abstract controller callbacks rb in process action home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal rescue rb in process action home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal instrumentation rb in block in process action home cbrain rvm gems ruby bundler gems rails activesupport lib active support notifications rb in block in instrument home cbrain rvm gems ruby bundler gems rails activesupport lib active support notifications instrumenter rb in instrument home cbrain rvm gems ruby bundler gems rails activesupport lib active support notifications rb in instrument home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal instrumentation rb in process action home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal params wrapper rb in process action home cbrain rvm gems ruby bundler gems rails activerecord lib active record railties controller runtime rb in process action home cbrain rvm gems ruby bundler gems rails actionpack lib abstract controller base rb in process home cbrain rvm gems ruby bundler gems rails actionpack lib abstract controller rendering rb in process home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal rb in dispatch home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal rack delegation rb in dispatch home cbrain rvm gems ruby bundler gems rails actionpack lib action controller metal rb in block in action home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch routing route set rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch routing route set rb in dispatch home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch routing route set rb in call journey lib journey router rb in block in call journey lib journey router rb in each journey lib journey router rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch routing route set rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware best standards support rb in call rack lib rack etag rb in call rack lib rack conditionalget rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware head rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware params parser rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware flash rb in call rack lib rack session abstract id rb in context rack lib rack session abstract id rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware cookies rb in call home cbrain rvm gems ruby bundler gems rails activerecord lib active record query cache rb in call home cbrain rvm gems ruby bundler gems rails activerecord lib active record connection adapters abstract connection pool rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware callbacks rb in block in call home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in run call callbacks home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in run callback home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in run call callbacks home cbrain rvm gems ruby bundler gems rails activesupport lib active support callbacks rb in run callbacks home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware callbacks rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware reloader rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware remote ip rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware debug exceptions rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware show exceptions rb in call home cbrain rvm gems ruby bundler gems rails railties lib rails rack logger rb in call app home cbrain rvm gems ruby bundler gems rails railties lib rails rack logger rb in block in call home cbrain rvm gems ruby bundler gems rails activesupport lib active support tagged logging rb in tagged home cbrain rvm gems ruby bundler gems rails railties lib rails rack logger rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware request id rb in call rack lib rack methodoverride rb in call rack lib rack runtime rb in call home cbrain rvm gems ruby bundler gems rails activesupport lib active support cache strategy local cache rb in call rack lib rack lock rb in call home cbrain rvm gems ruby bundler gems rails actionpack lib action dispatch middleware static rb in call home cbrain rvm gems ruby bundler gems rails railties lib rails engine rb in call home cbrain rvm gems ruby bundler gems rails railties lib rails application rb in call rack lib rack content length rb in call home cbrain rvm gems ruby bundler gems rails railties lib rails rack log tailer rb in call thin lib thin connection rb in block in pre process thin lib thin connection rb in catch thin lib thin connection rb in pre process thin lib thin connection rb in process thin lib thin connection rb in receive data eventmachine lib eventmachine rb in run machine eventmachine lib eventmachine rb in run thin lib thin backends base rb in start thin lib thin server rb in start rack lib rack handler thin rb in run rack lib rack server rb in start home cbrain rvm gems ruby bundler gems rails railties lib rails commands server rb in start home cbrain rvm gems ruby bundler gems rails railties lib rails commands rb in block in home cbrain rvm gems ruby bundler gems rails railties lib rails commands rb in tap home cbrain rvm gems ruby bundler gems rails railties lib rails commands rb in script rails in require script rails in | 1 |
813,084 | 30,445,688,240 | IssuesEvent | 2023-07-15 16:31:11 | EvanNotFound/hexo-theme-redefine | https://api.github.com/repos/EvanNotFound/hexo-theme-redefine | closed | [BUG] 博客位于二级目录无法使用本地图片问题 | bug done priority: high | **提交前检查单**
- [x] 已经尝试执行 `hexo clean`,问题仍然存在
- [x] 已经更新到主题最新版本,详见 [官方文档 #更新](https://redefine-docs.ohevan.com/getting-started#%E6%9B%B4%E6%96%B0)
- [x] 如果刚更新完主题出现此问题,已经确认同步了主题配置文件,[官方文档 #同步配置文件](https://redefine-docs.ohevan.com/getting-started#%E8%BF%81%E7%A7%BB%E9%85%8D%E7%BD%AE)
**Bug 描述**
```
// _config.yml
# Hexo Configuration
## Docs: https://hexo.io/docs/configuration.html
## Source: https://github.com/hexojs/hexo/
# Site
title: DwGoing's Blog
subtitle: ""
description: ""
keywords: .NET Golang Solidity
author: DwGoing
language: en
timezone: Asia/Shanghai
# URL
## Set your site url here. For example, if you use GitHub Page, set url as 'https://username.github.io/project'
url: https://dwgoing.github.io/blog
permalink: /:year/:month/:day/:title/
permalink_defaults:
pretty_urls:
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
trailing_html: true # Set to false to remove trailing '.html' from permalinks
# Directory
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render:
# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
titlecase: false # Transform title into titlecase
external_link:
enable: true # Open external links in new tab
field: site # Apply to the whole site
exclude: ""
filename_case: 0
render_drafts: false
post_asset_folder: true
marked:
prependRoot: true
postAsset: true
relative_link: false
future: true
highlight:
enable: true
line_number: true
auto_detect: false
tab_replace: ""
wrap: true
hljs: false
prismjs:
enable: false
preprocess: true
line_number: true
tab_replace: ""
# Home page setting
# path: Root path for your blogs index page. (default = '')
# per_page: Posts displayed per page. (0 = disable pagination)
# order_by: Posts order. (Order by date descending by default)
index_generator:
path: ""
per_page: 10
order_by: -date
# Category & Tag
default_category: uncategorized
category_map:
tag_map:
# Metadata elements
## https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
meta_generator: true
# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: YYYY-MM-DD
time_format: HH:mm:ss
## updated_option supports 'mtime', 'date', 'empty'
updated_option: "mtime"
# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page
# Include / Exclude file(s)
## include:/exclude: options only apply to the 'source/' folder
include:
exclude:
ignore:
# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: redefine
# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
type: ""
```
```
// _config.redefine.yml
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
# THEME REDEFINE CONFIGURATION FILE V2
# BY EVANNOTFOUND
# GITHUB: https://github.com/EvanNotFound/hexo-theme-redefine
# DOCUMENTATION: https://redefine-docs.ohevan.com
# DEMO: https://redefine.ohevan.com
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# BASIC INFORMATION >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
info:
# Site title
title: DwGoing
# Author name
author: DwGoing
# Site URL
url: https://dwgoing.github.io/blog/
# BASIC INFORMATION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# IMAGE CONFIGURATION >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
defaults:
# Favicon
favicon: /images/redefine-favicon.svg
# Site logo
logo:
# Site avatar
avatar: /images/redefine-avatar.svg
# IMAGE CONFIGURATION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# COLORS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
colors:
#Primary color
primary: "#A31F34"
# Secondary color (beta)
secondary:
# COLORS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# SITE CUSTOMIZATION >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
global:
# Custom fonts
fonts:
# Chinese fonts
chinese:
enable: false # Whether to enable custom chinese font
family: # Font family
url: # Font URL to CSS file
# English fonts
english:
enable: false # Whether to enable custom chinese font
family: # Font family
url: # Font URL to CSS file
# Content max width
content_max_width: 1000px
# Sidebar width
sidebar_width: 210px
# Effects on mouse hover
hover:
shadow: true # shadow effect
scale: false # scale effect
# Scroll progress
scroll_progress:
bar: false # progress bar
percentage: true # percentage
# Website counter (powered by https://busuanzi.ibruce.info/)
busuanzi_counter:
enable: true # enable website counter or not
site_pv: true # site page view
site_uv: true # site unique visitor
post_pv: true # post page view
# Whether to enable PJAX
pjax: true
# Whether to enable open graph
open_graph: true
# Google Analytics
google_analytics:
enable: false # Whether to enable Google Analytics
id: # Google Analytics Measurement ID
# SITE CUSTOMIZATION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# FONTAWESOME >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
fontawesome: # Pro v6.2.1
# Thin version
thin: false
# Light version
light: false
# Duotone version
duotone: false
# Sharp Solid version
sharp_solid: false
# FONTAWESOME <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# HOME BANNER >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
home_banner:
# Whether to enable home banner
enable: true
# style of home banner
style: fixed # static or fixed
# Home banner image
image:
light: /images/wallhaven-wqery6-light.webp # light mode
dark: /images/wallhaven-wqery6-dark.webp # dark mode
# Home banner title
title: DwGoing
# Home banner subtitle
subtitle:
text: [] # subtitle text, array
hitokoto: # 一言配置
enable: false # Whether to enable hitokoto
api: https://v1.hitokoto.cn # API URL, can add types, see https://developer.hitokoto.cn/sentence/#%E5%8F%A5%E5%AD%90%E7%B1%BB%E5%9E%8B-%E5%8F%82%E6%95%B0
typing_speed: 100 # Typing speed (ms)
backing_speed: 80 # Backing speed (ms)
starting_delay: 500 # Start delay (ms)
backing_delay: 1500 # Backing delay (ms)
loop: true # Whether to loop
smart_backspace: true # Whether to smart backspace
# Color of home banner text
text_color:
light: "#fff" # light mode
dark: "#d1d1b6" # dark mode
# Specific style of the text
text_style:
# Title font size
title_size: 2.8rem
# Subtitle font size
subtitle_size: 1.5rem
# Line height between title and subtitle
line_height: 1.2
# Home banner custom font
custom_font:
# Whether to enable custom font
enable: false
# Font family
family:
# URL to font CSS file
url:
# Home banner social links
social_links:
# Whether to enable
enable: false
# Social links
links:
github: # your GitHub URL
instagram: # your Instagram URL
zhihu: # your ZhiHu URL
twitter: # your twitter URL
email: # your email
# ...... # you can add more
# HOME BANNER <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# NAVIGATION BAR >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
navbar:
# Auto hide navbar
auto_hide: false
# Navbar background color
color:
left: "#f78736" #left side
right: "#367df7" #right side
transparency: 35 #percent (10-99)
# Navbar links
links:
Home:
path: /
icon: fa-regular fa-house # can be empty
# Archives:
# path: /archives
# icon: fa-regular fa-archive # can be empty
# Status:
# path: https://status.evanluo.top/
# icon: fa-regular fa-chart-bar
# About:
# icon: fa-regular fa-user
# submenus:
# Me: /about
# Github: https://github.com/EvanNotFound/hexo-theme-redefine
# Blog: https://ohevan.com
# Friends: /friends
# Links:
# icon: fa-regular fa-link
# submenus:
# Link1: /link1
# Link2: /link2
# Link3: /link3
# ...... # you can add more
# Navbar search (local search). Requires hexo-generator-searchdb (npm i hexo-generator-searchdb). See https://github.com/theme-next/hexo-generator-searchdb
search:
# Whether to enable
enable: false
# Preload search data when the page loads
preload: true
# NAVIGATION BAR <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# HOME PAGE ARTICLE SETTINGS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
home:
# Sidebar settings
sidebar:
enable: true # Whether to enable sidebar
position: left # Sidebar position. left, right
first_item: menu # First item in sidebar. menu, info
announcement: # Announcement text
links:
# Archives:
# path: /archives
# icon: fa-regular fa-archive # can be empty
# Tags:
# path: /tags
# icon: fa-regular fa-tags # can be empty
# Categories:
# path: /categories
# icon: fa-regular fa-folder # can be empty
# ...... # you can add more
# Article date format
article_date_format: auto # auto, relative, YYYY-MM-DD, YYYY-MM-DD HH:mm:ss etc.
# Article categories visibility
categories:
enable: true # Whether to enable
limit: 3 # Max number of categories to display
# Article tags visibility
tags:
enable: true # Whether to enable
limit: 3 # Max number of tags to display
# HOME PAGE ARTICLE SETTINGS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# ARTICLE >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
articles:
# Set the styles of the article
style:
font_size: 16px # Font size
line_height: 1.5 # Line height
image_border_radius: 14px # image border radius
image_alignment: center # image alignment. left, center
image_caption: false # Whether to display image caption
link_icon: true # Whether to display link icon
# Word count. Requires hexo-wordcount (npm install hexo-wordcount). See https://github.com/willin/hexo-wordcount
word_count:
enable: true # Whether to enable
count: true # Whether to display word count
min2read: true # Whether to display reading time
# Author label
author_label:
enable: true # Whether to enable
auto: false # Whether to automatically add author label, e.g. Lv1, Lv2, Lv3...
list: []
# Code block settings
code_block:
copy: true # Whether to enable code block copy button
style: mac # mac | simple
font: # Custom font
enable: false # Whether to enable
family: # Font family
url: # Font URL to CSS file
# Table of contents settings
toc:
enable: true # Whether to enable TOC
max_depth: 3 # TOC depth
number: false # Whether to add number to TOC automatically
expand: true # Whether to expand TOC
init_open: true # Open toc by default
# Whether to enable copyright notice
copyright: true
# Whether to enable lazyload for images
lazyload: true
# Article recommendation. Requires nodejieba (npm install nodejieba). Transplanted from hexo-theme-volantis.
recommendation:
# Whether to enable article recommendation
enable: false
# Article recommendation title
title: 推荐阅读
# Max number of articles to display
limit: 3
# Max number of articles to display mobile
mobile_limit: 2
# Placeholder image
placeholder: /images/wallhaven-wqery6-light.webp
# Skip directory
skip_dirs: []
# ARTICLE <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# COMMENT >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
comment:
# Whether to enable comment
enable: true
# Comment system
system: waline # waline, gitalk, twikoo, giscus
# System configuration
config:
# Waline comment system. See https://waline.js.org/
waline:
serverUrl: https://example.example.com # Waline server URL. e.g. https://example.example.com
lang: zh-CN # Waline language. e.g. zh-CN, en-US. See https://waline.js.org/guide/client/i18n.html
# Gitalk comment system. See https://github.com/gitalk/gitalk
gitalk:
clientID: # GitHub Application Client ID
clientSecret: # GitHub Application Client Secret
repo: # GitHub repository
owner: # GitHub repository owner
# Twikoo comment system. See https://twikoo.js.org/
twikoo:
version: 1.6.10 # Twikoo version, do not modify if you dont know what it is
server_url: # Twikoo server URL. e.g. https://example.example.com
region: # Twikoo region. can be empty
# Giscus comment system. See https://giscus.app/
giscus:
repo: # Github repository name e.g. EvanNotFound/hexo-theme-redefine
repo_id: # Github repository id
category: # Github discussion category
category_id: # Github discussion category id
mapping: pathname # Which value to use as the unique identifier for the page. e.g. pathname, url, title, og:title. DO NOT USE og:title WITH PJAX ENABLED since pjax will not update og:title when the page changes
strict: 0 # Whether to enable strict mode. e.g. 0, 1
reactions_enabled: 1 # Whether to enable reactions. e.g. 0, 1
emit_metadata: 0 # Whether to emit metadata. e.g. 0, 1
lang: en # Giscus language. e.g. en, zh-CN, zh-TW
input_position: bottom # Place the comment box above/below the comments. e.g. top, bottom
loading: lazy # Load the comments lazily
# COMMENT <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# FOOTER >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
footer:
# Show website running time
runtime: true # show website running time or not
# Icon in footer, write fontawesome icon code here
icon: '<i class="fa-solid fa-heart fa-beat" style="--fa-animation-duration: 0.5s; color: #f54545"></i>'
# The start time of the website, format: YYYY/MM/DD HH:mm:ss
start: 2022/8/17 11:45:14
# Footer message
customize:
# ICP record number. See https://beian.miit.gov.cn/
icp:
enable: false # Whether to enable
number: # ICP record number
url: # ICP record url
# FOOTER <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# INJECT >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
inject:
# Whether to enable inject
enable: false
# Inject custom head html code
head:
-
-
# Inject custom footer html code
footer:
-
-
# INJECT <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# PLUGINS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
plugins:
# RSS feed. Requires hexo-generator-feed (npm i hexo-generator-feed). See https://github.com/hexojs/hexo-generator-feed
feed:
enable: false # Whether to enable
# Aplayer. See https://github.com/DIYgod/APlayer
aplayer:
enable: false # Whether to enable
type: fixed # fixed, mini
audios:
- name: # audio name
artist: # audio artist
url: # audio url
cover: # audio cover url
# - name: # audio name
# artist: # audio artist
# url: # audio url
# cover: # audio cover url
# .... you can add more audios here
# Mermaid JS. Requires hexo-filter-mermaid-diagrams (npm i hexo-filter-mermaid-diagrams). See https://mermaid.js.org/
mermaid:
enable: false # enable mermaid or not
version: "9.3.0" # default v9.3.0
# PLUGINS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# PAGE TEMPLATES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
page_templates:
# Friend Links page column number
friends_column: 2
# Tags page style
tags_style: blur # blur, cloud
# PAGE TEMPLATES <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# CDN >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
cdn:
# Whether to enable CDN
enable: false
# CDN Provider
provider: elemecdn # elemecdn, jsdelivr, unpkg, aliyun, custom
# Custom CDN URL
# format example: https://cdn.custom.com/hexo-theme-redefine/${version}/source/${path}
# The ${path} must be in the source folder of the theme
custom_url:
# CDN <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
```
**预期结果**
配置中相同的路径前缀,但生成的路径一个多一个项目名,一个少一个项目名,项目名为blog
**截图**
<img width="1956" alt="image" src="https://github.com/EvanNotFound/hexo-theme-redefine/assets/16076018/aff4b0d6-8934-4b50-99ff-62ea0ed48595">
<img width="706" alt="image" src="https://github.com/EvanNotFound/hexo-theme-redefine/assets/16076018/55c4b3a4-77e4-43f4-a0a5-269f6137f440">
<img width="689" alt="image" src="https://github.com/EvanNotFound/hexo-theme-redefine/assets/16076018/89a0c8ed-8d87-4fed-a416-8975c2c52b3a">
**电脑(请填写以下信息):**
- 操作系统:macOS
- 浏览器 Edge
| 1.0 | [BUG] 博客位于二级目录无法使用本地图片问题 - **提交前检查单**
- [x] 已经尝试执行 `hexo clean`,问题仍然存在
- [x] 已经更新到主题最新版本,详见 [官方文档 #更新](https://redefine-docs.ohevan.com/getting-started#%E6%9B%B4%E6%96%B0)
- [x] 如果刚更新完主题出现此问题,已经确认同步了主题配置文件,[官方文档 #同步配置文件](https://redefine-docs.ohevan.com/getting-started#%E8%BF%81%E7%A7%BB%E9%85%8D%E7%BD%AE)
**Bug 描述**
```
// _config.yml
# Hexo Configuration
## Docs: https://hexo.io/docs/configuration.html
## Source: https://github.com/hexojs/hexo/
# Site
title: DwGoing's Blog
subtitle: ""
description: ""
keywords: .NET Golang Solidity
author: DwGoing
language: en
timezone: Asia/Shanghai
# URL
## Set your site url here. For example, if you use GitHub Page, set url as 'https://username.github.io/project'
url: https://dwgoing.github.io/blog
permalink: /:year/:month/:day/:title/
permalink_defaults:
pretty_urls:
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
trailing_html: true # Set to false to remove trailing '.html' from permalinks
# Directory
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render:
# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
titlecase: false # Transform title into titlecase
external_link:
enable: true # Open external links in new tab
field: site # Apply to the whole site
exclude: ""
filename_case: 0
render_drafts: false
post_asset_folder: true
marked:
prependRoot: true
postAsset: true
relative_link: false
future: true
highlight:
enable: true
line_number: true
auto_detect: false
tab_replace: ""
wrap: true
hljs: false
prismjs:
enable: false
preprocess: true
line_number: true
tab_replace: ""
# Home page setting
# path: Root path for your blogs index page. (default = '')
# per_page: Posts displayed per page. (0 = disable pagination)
# order_by: Posts order. (Order by date descending by default)
index_generator:
path: ""
per_page: 10
order_by: -date
# Category & Tag
default_category: uncategorized
category_map:
tag_map:
# Metadata elements
## https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
meta_generator: true
# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: YYYY-MM-DD
time_format: HH:mm:ss
## updated_option supports 'mtime', 'date', 'empty'
updated_option: "mtime"
# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page
# Include / Exclude file(s)
## include:/exclude: options only apply to the 'source/' folder
include:
exclude:
ignore:
# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: redefine
# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
type: ""
```
```
// _config.redefine.yml
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
# THEME REDEFINE CONFIGURATION FILE V2
# BY EVANNOTFOUND
# GITHUB: https://github.com/EvanNotFound/hexo-theme-redefine
# DOCUMENTATION: https://redefine-docs.ohevan.com
# DEMO: https://redefine.ohevan.com
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# BASIC INFORMATION >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
info:
# Site title
title: DwGoing
# Author name
author: DwGoing
# Site URL
url: https://dwgoing.github.io/blog/
# BASIC INFORMATION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# IMAGE CONFIGURATION >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
defaults:
# Favicon
favicon: /images/redefine-favicon.svg
# Site logo
logo:
# Site avatar
avatar: /images/redefine-avatar.svg
# IMAGE CONFIGURATION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# COLORS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
colors:
#Primary color
primary: "#A31F34"
# Secondary color (beta)
secondary:
# COLORS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# SITE CUSTOMIZATION >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
global:
# Custom fonts
fonts:
# Chinese fonts
chinese:
enable: false # Whether to enable custom chinese font
family: # Font family
url: # Font URL to CSS file
# English fonts
english:
enable: false # Whether to enable custom chinese font
family: # Font family
url: # Font URL to CSS file
# Content max width
content_max_width: 1000px
# Sidebar width
sidebar_width: 210px
# Effects on mouse hover
hover:
shadow: true # shadow effect
scale: false # scale effect
# Scroll progress
scroll_progress:
bar: false # progress bar
percentage: true # percentage
# Website counter (powered by https://busuanzi.ibruce.info/)
busuanzi_counter:
enable: true # enable website counter or not
site_pv: true # site page view
site_uv: true # site unique visitor
post_pv: true # post page view
# Whether to enable PJAX
pjax: true
# Whether to enable open graph
open_graph: true
# Google Analytics
google_analytics:
enable: false # Whether to enable Google Analytics
id: # Google Analytics Measurement ID
# SITE CUSTOMIZATION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# FONTAWESOME >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
fontawesome: # Pro v6.2.1
# Thin version
thin: false
# Light version
light: false
# Duotone version
duotone: false
# Sharp Solid version
sharp_solid: false
# FONTAWESOME <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# HOME BANNER >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
home_banner:
# Whether to enable home banner
enable: true
# style of home banner
style: fixed # static or fixed
# Home banner image
image:
light: /images/wallhaven-wqery6-light.webp # light mode
dark: /images/wallhaven-wqery6-dark.webp # dark mode
# Home banner title
title: DwGoing
# Home banner subtitle
subtitle:
text: [] # subtitle text, array
hitokoto: # 一言配置
enable: false # Whether to enable hitokoto
api: https://v1.hitokoto.cn # API URL, can add types, see https://developer.hitokoto.cn/sentence/#%E5%8F%A5%E5%AD%90%E7%B1%BB%E5%9E%8B-%E5%8F%82%E6%95%B0
typing_speed: 100 # Typing speed (ms)
backing_speed: 80 # Backing speed (ms)
starting_delay: 500 # Start delay (ms)
backing_delay: 1500 # Backing delay (ms)
loop: true # Whether to loop
smart_backspace: true # Whether to smart backspace
# Color of home banner text
text_color:
light: "#fff" # light mode
dark: "#d1d1b6" # dark mode
# Specific style of the text
text_style:
# Title font size
title_size: 2.8rem
# Subtitle font size
subtitle_size: 1.5rem
# Line height between title and subtitle
line_height: 1.2
# Home banner custom font
custom_font:
# Whether to enable custom font
enable: false
# Font family
family:
# URL to font CSS file
url:
# Home banner social links
social_links:
# Whether to enable
enable: false
# Social links
links:
github: # your GitHub URL
instagram: # your Instagram URL
zhihu: # your ZhiHu URL
twitter: # your twitter URL
email: # your email
# ...... # you can add more
# HOME BANNER <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# NAVIGATION BAR >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
navbar:
# Auto hide navbar
auto_hide: false
# Navbar background color
color:
left: "#f78736" #left side
right: "#367df7" #right side
transparency: 35 #percent (10-99)
# Navbar links
links:
Home:
path: /
icon: fa-regular fa-house # can be empty
# Archives:
# path: /archives
# icon: fa-regular fa-archive # can be empty
# Status:
# path: https://status.evanluo.top/
# icon: fa-regular fa-chart-bar
# About:
# icon: fa-regular fa-user
# submenus:
# Me: /about
# Github: https://github.com/EvanNotFound/hexo-theme-redefine
# Blog: https://ohevan.com
# Friends: /friends
# Links:
# icon: fa-regular fa-link
# submenus:
# Link1: /link1
# Link2: /link2
# Link3: /link3
# ...... # you can add more
# Navbar search (local search). Requires hexo-generator-searchdb (npm i hexo-generator-searchdb). See https://github.com/theme-next/hexo-generator-searchdb
search:
# Whether to enable
enable: false
# Preload search data when the page loads
preload: true
# NAVIGATION BAR <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# HOME PAGE ARTICLE SETTINGS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
home:
# Sidebar settings
sidebar:
enable: true # Whether to enable sidebar
position: left # Sidebar position. left, right
first_item: menu # First item in sidebar. menu, info
announcement: # Announcement text
links:
# Archives:
# path: /archives
# icon: fa-regular fa-archive # can be empty
# Tags:
# path: /tags
# icon: fa-regular fa-tags # can be empty
# Categories:
# path: /categories
# icon: fa-regular fa-folder # can be empty
# ...... # you can add more
# Article date format
article_date_format: auto # auto, relative, YYYY-MM-DD, YYYY-MM-DD HH:mm:ss etc.
# Article categories visibility
categories:
enable: true # Whether to enable
limit: 3 # Max number of categories to display
# Article tags visibility
tags:
enable: true # Whether to enable
limit: 3 # Max number of tags to display
# HOME PAGE ARTICLE SETTINGS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# ARTICLE >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
articles:
# Set the styles of the article
style:
font_size: 16px # Font size
line_height: 1.5 # Line height
image_border_radius: 14px # image border radius
image_alignment: center # image alignment. left, center
image_caption: false # Whether to display image caption
link_icon: true # Whether to display link icon
# Word count. Requires hexo-wordcount (npm install hexo-wordcount). See https://github.com/willin/hexo-wordcount
word_count:
enable: true # Whether to enable
count: true # Whether to display word count
min2read: true # Whether to display reading time
# Author label
author_label:
enable: true # Whether to enable
auto: false # Whether to automatically add author label, e.g. Lv1, Lv2, Lv3...
list: []
# Code block settings
code_block:
copy: true # Whether to enable code block copy button
style: mac # mac | simple
font: # Custom font
enable: false # Whether to enable
family: # Font family
url: # Font URL to CSS file
# Table of contents settings
toc:
enable: true # Whether to enable TOC
max_depth: 3 # TOC depth
number: false # Whether to add number to TOC automatically
expand: true # Whether to expand TOC
init_open: true # Open toc by default
# Whether to enable copyright notice
copyright: true
# Whether to enable lazyload for images
lazyload: true
# Article recommendation. Requires nodejieba (npm install nodejieba). Transplanted from hexo-theme-volantis.
recommendation:
# Whether to enable article recommendation
enable: false
# Article recommendation title
title: 推荐阅读
# Max number of articles to display
limit: 3
# Max number of articles to display mobile
mobile_limit: 2
# Placeholder image
placeholder: /images/wallhaven-wqery6-light.webp
# Skip directory
skip_dirs: []
# ARTICLE <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# COMMENT >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
comment:
# Whether to enable comment
enable: true
# Comment system
system: waline # waline, gitalk, twikoo, giscus
# System configuration
config:
# Waline comment system. See https://waline.js.org/
waline:
serverUrl: https://example.example.com # Waline server URL. e.g. https://example.example.com
lang: zh-CN # Waline language. e.g. zh-CN, en-US. See https://waline.js.org/guide/client/i18n.html
# Gitalk comment system. See https://github.com/gitalk/gitalk
gitalk:
clientID: # GitHub Application Client ID
clientSecret: # GitHub Application Client Secret
repo: # GitHub repository
owner: # GitHub repository owner
# Twikoo comment system. See https://twikoo.js.org/
twikoo:
version: 1.6.10 # Twikoo version, do not modify if you dont know what it is
server_url: # Twikoo server URL. e.g. https://example.example.com
region: # Twikoo region. can be empty
# Giscus comment system. See https://giscus.app/
giscus:
repo: # Github repository name e.g. EvanNotFound/hexo-theme-redefine
repo_id: # Github repository id
category: # Github discussion category
category_id: # Github discussion category id
mapping: pathname # Which value to use as the unique identifier for the page. e.g. pathname, url, title, og:title. DO NOT USE og:title WITH PJAX ENABLED since pjax will not update og:title when the page changes
strict: 0 # Whether to enable strict mode. e.g. 0, 1
reactions_enabled: 1 # Whether to enable reactions. e.g. 0, 1
emit_metadata: 0 # Whether to emit metadata. e.g. 0, 1
lang: en # Giscus language. e.g. en, zh-CN, zh-TW
input_position: bottom # Place the comment box above/below the comments. e.g. top, bottom
loading: lazy # Load the comments lazily
# COMMENT <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# FOOTER >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
footer:
# Show website running time
runtime: true # show website running time or not
# Icon in footer, write fontawesome icon code here
icon: '<i class="fa-solid fa-heart fa-beat" style="--fa-animation-duration: 0.5s; color: #f54545"></i>'
# The start time of the website, format: YYYY/MM/DD HH:mm:ss
start: 2022/8/17 11:45:14
# Footer message
customize:
# ICP record number. See https://beian.miit.gov.cn/
icp:
enable: false # Whether to enable
number: # ICP record number
url: # ICP record url
# FOOTER <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# INJECT >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
inject:
# Whether to enable inject
enable: false
# Inject custom head html code
head:
-
-
# Inject custom footer html code
footer:
-
-
# INJECT <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# PLUGINS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
plugins:
# RSS feed. Requires hexo-generator-feed (npm i hexo-generator-feed). See https://github.com/hexojs/hexo-generator-feed
feed:
enable: false # Whether to enable
# Aplayer. See https://github.com/DIYgod/APlayer
aplayer:
enable: false # Whether to enable
type: fixed # fixed, mini
audios:
- name: # audio name
artist: # audio artist
url: # audio url
cover: # audio cover url
# - name: # audio name
# artist: # audio artist
# url: # audio url
# cover: # audio cover url
# .... you can add more audios here
# Mermaid JS. Requires hexo-filter-mermaid-diagrams (npm i hexo-filter-mermaid-diagrams). See https://mermaid.js.org/
mermaid:
enable: false # enable mermaid or not
version: "9.3.0" # default v9.3.0
# PLUGINS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# PAGE TEMPLATES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
page_templates:
# Friend Links page column number
friends_column: 2
# Tags page style
tags_style: blur # blur, cloud
# PAGE TEMPLATES <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
# CDN >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> start
cdn:
# Whether to enable CDN
enable: false
# CDN Provider
provider: elemecdn # elemecdn, jsdelivr, unpkg, aliyun, custom
# Custom CDN URL
# format example: https://cdn.custom.com/hexo-theme-redefine/${version}/source/${path}
# The ${path} must be in the source folder of the theme
custom_url:
# CDN <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< end
```
**预期结果**
配置中相同的路径前缀,但生成的路径一个多一个项目名,一个少一个项目名,项目名为blog
**截图**
<img width="1956" alt="image" src="https://github.com/EvanNotFound/hexo-theme-redefine/assets/16076018/aff4b0d6-8934-4b50-99ff-62ea0ed48595">
<img width="706" alt="image" src="https://github.com/EvanNotFound/hexo-theme-redefine/assets/16076018/55c4b3a4-77e4-43f4-a0a5-269f6137f440">
<img width="689" alt="image" src="https://github.com/EvanNotFound/hexo-theme-redefine/assets/16076018/89a0c8ed-8d87-4fed-a416-8975c2c52b3a">
**电脑(请填写以下信息):**
- 操作系统:macOS
- 浏览器 Edge
| priority | 博客位于二级目录无法使用本地图片问题 提交前检查单 已经尝试执行 hexo clean ,问题仍然存在 已经更新到主题最新版本,详见 如果刚更新完主题出现此问题,已经确认同步了主题配置文件, bug 描述 config yml hexo configuration docs source site title dwgoing s blog subtitle description keywords net golang solidity author dwgoing language en timezone asia shanghai url set your site url here for example if you use github page set url as url permalink year month day title permalink defaults pretty urls trailing index true set to false to remove trailing index html from permalinks trailing html true set to false to remove trailing html from permalinks directory source dir source public dir public tag dir tags archive dir archives category dir categories code dir downloads code dir lang skip render writing new post name title md file name of new posts default layout post titlecase false transform title into titlecase external link enable true open external links in new tab field site apply to the whole site exclude filename case render drafts false post asset folder true marked prependroot true postasset true relative link false future true highlight enable true line number true auto detect false tab replace wrap true hljs false prismjs enable false preprocess true line number true tab replace home page setting path root path for your blogs index page default per page posts displayed per page disable pagination order by posts order order by date descending by default index generator path per page order by date category tag default category uncategorized category map tag map metadata elements meta generator true date time format hexo uses moment js to parse and display date you can customize the date format as defined in date format yyyy mm dd time format hh mm ss updated option supports mtime date empty updated option mtime pagination set per page to to disable pagination per page pagination dir page include exclude file s include exclude options only apply to the source folder include exclude ignore extensions plugins themes theme redefine deployment docs deploy type config redefine yml start theme redefine configuration file by evannotfound github documentation demo end basic information start info site title title dwgoing author name author dwgoing site url url basic information end image configuration start defaults favicon favicon images redefine favicon svg site logo logo site avatar avatar images redefine avatar svg image configuration end colors start colors primary color primary secondary color beta secondary colors end site customization start global custom fonts fonts chinese fonts chinese enable false whether to enable custom chinese font family font family url font url to css file english fonts english enable false whether to enable custom chinese font family font family url font url to css file content max width content max width sidebar width sidebar width effects on mouse hover hover shadow true shadow effect scale false scale effect scroll progress scroll progress bar false progress bar percentage true percentage website counter powered by busuanzi counter enable true enable website counter or not site pv true site page view site uv true site unique visitor post pv true post page view whether to enable pjax pjax true whether to enable open graph open graph true google analytics google analytics enable false whether to enable google analytics id google analytics measurement id site customization end fontawesome start fontawesome pro thin version thin false light version light false duotone version duotone false sharp solid version sharp solid false fontawesome end home banner start home banner whether to enable home banner enable true style of home banner style fixed static or fixed home banner image image light images wallhaven light webp light mode dark images wallhaven dark webp dark mode home banner title title dwgoing home banner subtitle subtitle text subtitle text array hitokoto 一言配置 enable false whether to enable hitokoto api api url can add types see typing speed typing speed ms backing speed backing speed ms starting delay start delay ms backing delay backing delay ms loop true whether to loop smart backspace true whether to smart backspace color of home banner text text color light fff light mode dark dark mode specific style of the text text style title font size title size subtitle font size subtitle size line height between title and subtitle line height home banner custom font custom font whether to enable custom font enable false font family family url to font css file url home banner social links social links whether to enable enable false social links links github your github url instagram your instagram url zhihu your zhihu url twitter your twitter url email your email you can add more home banner end navigation bar start navbar auto hide navbar auto hide false navbar background color color left left side right right side transparency percent navbar links links home path icon fa regular fa house can be empty archives path archives icon fa regular fa archive can be empty status path icon fa regular fa chart bar about icon fa regular fa user submenus me about github blog friends friends links icon fa regular fa link submenus you can add more navbar search local search requires hexo generator searchdb npm i hexo generator searchdb see search whether to enable enable false preload search data when the page loads preload true navigation bar end home page article settings start home sidebar settings sidebar enable true whether to enable sidebar position left sidebar position left right first item menu first item in sidebar menu info announcement announcement text links archives path archives icon fa regular fa archive can be empty tags path tags icon fa regular fa tags can be empty categories path categories icon fa regular fa folder can be empty you can add more article date format article date format auto auto relative yyyy mm dd yyyy mm dd hh mm ss etc article categories visibility categories enable true whether to enable limit max number of categories to display article tags visibility tags enable true whether to enable limit max number of tags to display home page article settings end article start articles set the styles of the article style font size font size line height line height image border radius image border radius image alignment center image alignment left center image caption false whether to display image caption link icon true whether to display link icon word count requires hexo wordcount npm install hexo wordcount see word count enable true whether to enable count true whether to display word count true whether to display reading time author label author label enable true whether to enable auto false whether to automatically add author label e g list code block settings code block copy true whether to enable code block copy button style mac mac simple font custom font enable false whether to enable family font family url font url to css file table of contents settings toc enable true whether to enable toc max depth toc depth number false whether to add number to toc automatically expand true whether to expand toc init open true open toc by default whether to enable copyright notice copyright true whether to enable lazyload for images lazyload true article recommendation requires nodejieba npm install nodejieba transplanted from hexo theme volantis recommendation whether to enable article recommendation enable false article recommendation title title 推荐阅读 max number of articles to display limit max number of articles to display mobile mobile limit placeholder image placeholder images wallhaven light webp skip directory skip dirs article end comment start comment whether to enable comment enable true comment system system waline waline gitalk twikoo giscus system configuration config waline comment system see waline serverurl waline server url e g lang zh cn waline language e g zh cn en us see gitalk comment system see gitalk clientid github application client id clientsecret github application client secret repo github repository owner github repository owner twikoo comment system see twikoo version twikoo version do not modify if you dont know what it is server url twikoo server url e g region twikoo region can be empty giscus comment system see giscus repo github repository name e g evannotfound hexo theme redefine repo id github repository id category github discussion category category id github discussion category id mapping pathname which value to use as the unique identifier for the page e g pathname url title og title do not use og title with pjax enabled since pjax will not update og title when the page changes strict whether to enable strict mode e g reactions enabled whether to enable reactions e g emit metadata whether to emit metadata e g lang en giscus language e g en zh cn zh tw input position bottom place the comment box above below the comments e g top bottom loading lazy load the comments lazily comment end footer start footer show website running time runtime true show website running time or not icon in footer write fontawesome icon code here icon the start time of the website format yyyy mm dd hh mm ss start footer message customize icp record number see icp enable false whether to enable number icp record number url icp record url footer end inject start inject whether to enable inject enable false inject custom head html code head inject custom footer html code footer inject end plugins start plugins rss feed requires hexo generator feed npm i hexo generator feed see feed enable false whether to enable aplayer see aplayer enable false whether to enable type fixed fixed mini audios name audio name artist audio artist url audio url cover audio cover url name audio name artist audio artist url audio url cover audio cover url you can add more audios here mermaid js requires hexo filter mermaid diagrams npm i hexo filter mermaid diagrams see mermaid enable false enable mermaid or not version default plugins end page templates start page templates friend links page column number friends column tags page style tags style blur blur cloud page templates end cdn start cdn whether to enable cdn enable false cdn provider provider elemecdn elemecdn jsdelivr unpkg aliyun custom custom cdn url format example the path must be in the source folder of the theme custom url cdn end 预期结果 配置中相同的路径前缀,但生成的路径一个多一个项目名,一个少一个项目名,项目名为blog 截图 img width alt image src img width alt image src img width alt image src 电脑(请填写以下信息): 操作系统:macos 浏览器 edge | 1 |
545,296 | 15,947,667,595 | IssuesEvent | 2021-04-15 04:04:38 | AlaskaAirlines/auro-radio | https://api.github.com/repos/AlaskaAirlines/auro-radio | closed | auro-radio: incorrect a11y experience | Priority: High Status: Complete and Ready to Merge Status: Review Needed Type: Bug | ## Describe the bug
Not sure if this [pull request](https://github.com/AlaskaAirlines/WebCoreStyleSheets/pull/66) is the cause, but it's been discovered that when selecting a radio button option on a mobile device, there is a blue halo.
This is only appearing with a radio-group.
This is not the expected experience when working with an Auro element.
## To Reproduce
Steps to reproduce the behavior:
1. Go to https://auro.alaskaair.com/components/auro/radio
1. Click on any option in a radio group
1. See the error
## Expected behavior
When tapping on a radio option, there should be no halo.
## Screenshots
<img width="557" alt="Screen Shot 2021-03-22 at 9 09 05 AM" src="https://user-images.githubusercontent.com/181089/112021225-4b977a00-8aee-11eb-9cd4-67f3f6592fc3.png">
## Smartphone (please complete the following information):
- OS: iOS
- Browser: Safari
- Latest version
| 1.0 | auro-radio: incorrect a11y experience - ## Describe the bug
Not sure if this [pull request](https://github.com/AlaskaAirlines/WebCoreStyleSheets/pull/66) is the cause, but it's been discovered that when selecting a radio button option on a mobile device, there is a blue halo.
This is only appearing with a radio-group.
This is not the expected experience when working with an Auro element.
## To Reproduce
Steps to reproduce the behavior:
1. Go to https://auro.alaskaair.com/components/auro/radio
1. Click on any option in a radio group
1. See the error
## Expected behavior
When tapping on a radio option, there should be no halo.
## Screenshots
<img width="557" alt="Screen Shot 2021-03-22 at 9 09 05 AM" src="https://user-images.githubusercontent.com/181089/112021225-4b977a00-8aee-11eb-9cd4-67f3f6592fc3.png">
## Smartphone (please complete the following information):
- OS: iOS
- Browser: Safari
- Latest version
| priority | auro radio incorrect experience describe the bug not sure if this is the cause but it s been discovered that when selecting a radio button option on a mobile device there is a blue halo this is only appearing with a radio group this is not the expected experience when working with an auro element to reproduce steps to reproduce the behavior go to click on any option in a radio group see the error expected behavior when tapping on a radio option there should be no halo screenshots img width alt screen shot at am src smartphone please complete the following information os ios browser safari latest version | 1 |
309,858 | 9,480,804,646 | IssuesEvent | 2019-04-20 21:18:03 | cvfadmin/COVE | https://api.github.com/repos/cvfadmin/COVE | closed | Should have an SSL certificate | bug enhancement high priority | We shouldn't be passing unencrypted data between the client and the backend. We can get a good certificate for free from Let's Encrypt.
See helpful links:
- https://www.nginx.com/blog/using-free-ssltls-certificates-from-lets-encrypt-with-nginx/
- https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04 | 1.0 | Should have an SSL certificate - We shouldn't be passing unencrypted data between the client and the backend. We can get a good certificate for free from Let's Encrypt.
See helpful links:
- https://www.nginx.com/blog/using-free-ssltls-certificates-from-lets-encrypt-with-nginx/
- https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04 | priority | should have an ssl certificate we shouldn t be passing unencrypted data between the client and the backend we can get a good certificate for free from let s encrypt see helpful links | 1 |
297,196 | 9,161,718,921 | IssuesEvent | 2019-03-01 11:15:12 | srQianna/MDK | https://api.github.com/repos/srQianna/MDK | closed | Professions: Brewing Potions | * Help Feature Priority: High | Brewing potions requires a brewing stand or, from which players can take items regardless of who the owner of the ingredients is, creating inconsistency in regards to the personal loot distribution and an issue where reagents may be stolen from a player.
A possible solution is to check for ingredients a player throws and based on the items dropped the player would be given a potion and the dropped items deleted.
The issue with this is that it's inconsistent with other crafting implementations.
| 1.0 | Professions: Brewing Potions - Brewing potions requires a brewing stand or, from which players can take items regardless of who the owner of the ingredients is, creating inconsistency in regards to the personal loot distribution and an issue where reagents may be stolen from a player.
A possible solution is to check for ingredients a player throws and based on the items dropped the player would be given a potion and the dropped items deleted.
The issue with this is that it's inconsistent with other crafting implementations.
| priority | professions brewing potions brewing potions requires a brewing stand or from which players can take items regardless of who the owner of the ingredients is creating inconsistency in regards to the personal loot distribution and an issue where reagents may be stolen from a player a possible solution is to check for ingredients a player throws and based on the items dropped the player would be given a potion and the dropped items deleted the issue with this is that it s inconsistent with other crafting implementations | 1 |
610,679 | 18,921,018,319 | IssuesEvent | 2021-11-17 01:40:15 | boostcampwm-2021/web14-salondesrefuses | https://api.github.com/repos/boostcampwm-2021/web14-salondesrefuses | closed | (높음)[BE] NFT 개발 | 🛰 Back Priority: High | ## 📃 이슈 내용
사용자의 address 주소와 cid를 가지고 NFT를 발급한다.
## ✅ 체크 리스트
- [ ] 프로젝트 생성
- [ ] solidity 개발
- [ ] 서버 web3 연동
- [ ] web3로 사용자에게 NFT 토큰 발급
## 📌 레퍼런스
| 1.0 | (높음)[BE] NFT 개발 - ## 📃 이슈 내용
사용자의 address 주소와 cid를 가지고 NFT를 발급한다.
## ✅ 체크 리스트
- [ ] 프로젝트 생성
- [ ] solidity 개발
- [ ] 서버 web3 연동
- [ ] web3로 사용자에게 NFT 토큰 발급
## 📌 레퍼런스
| priority | 높음 nft 개발 📃 이슈 내용 사용자의 address 주소와 cid를 가지고 nft를 발급한다 ✅ 체크 리스트 프로젝트 생성 solidity 개발 서버 연동 사용자에게 nft 토큰 발급 📌 레퍼런스 | 1 |
381,069 | 11,273,037,062 | IssuesEvent | 2020-01-14 15:52:32 | Kaktushose/levelbot2 | https://api.github.com/repos/Kaktushose/levelbot2 | closed | Automatische Rollenzuweisung | bug high priority member | Trotz meinen 400 XPs bin ich immer noch Bronze statt Silber.
Vielleicht liegt es daran, dass ich 200XPs durch den Boost erhalten habe, die nicht zählen?
Wäre toll wenn der Fehler beseitigt wird, und ich dir Silber Rolle erhalte.
**Dein Discordname + Discriminator**
SkyGamer #0001
| 1.0 | Automatische Rollenzuweisung - Trotz meinen 400 XPs bin ich immer noch Bronze statt Silber.
Vielleicht liegt es daran, dass ich 200XPs durch den Boost erhalten habe, die nicht zählen?
Wäre toll wenn der Fehler beseitigt wird, und ich dir Silber Rolle erhalte.
**Dein Discordname + Discriminator**
SkyGamer #0001
| priority | automatische rollenzuweisung trotz meinen xps bin ich immer noch bronze statt silber vielleicht liegt es daran dass ich durch den boost erhalten habe die nicht zählen wäre toll wenn der fehler beseitigt wird und ich dir silber rolle erhalte dein discordname discriminator skygamer | 1 |
342,957 | 10,323,751,686 | IssuesEvent | 2019-09-01 01:28:15 | SkriptLang/Skript | https://api.github.com/repos/SkriptLang/Skript | closed | On right click event causing issues with boats and shields | bug completed priority: high | <!--- This is just a recommended template, but you should follow it --->
### Description
<!--- A clear and concise description of what the problem is --->
When using the on right click event no boats, shields of any right click events that a player would normally interact with air work
### Steps to Reproduce
<!--- Steps to reproduce the problem. If applicable, add a script or code snippet here --->
Use on right click event and try to place a boat in the middle of the ocean
### Expected Behavior
<!--- A clear and concise description of what you expected to happen --->
Boat places as it should
### Errors / Screenshots
<!--- If applicable, add errors and screenshots to help explain your problem --->
N/A
<!---
If you get a console error, you should send the full error. Also if the error contains a stack trace; you can remove the Server Information section below.
Also you should send long errors using a permanent and reliable paste service like Gist, not hastebin.
--->
### Server Information
* **Server version/platform:**
```[Wed, 21. Aug 2019 19:13:33 EDT INFO] This server is running Paper version git-Paper-174 (MC: 1.14.4) (Implementing API version 1.14.4-R0.1-SNAPSHOT)
[Wed, 21. Aug 2019 19:13:33 EDT INFO] Checking version, please wait...
[Wed, 21. Aug 2019 19:13:34 EDT INFO] Previous version: git-Paper-173 (MC: 1.14.4)
[Wed, 21. Aug 2019 19:13:34 EDT INFO] You are 1 version(s) behind
```
* **Skript version:**
```
[Wed, 21. Aug 2019 19:14:15 EDT INFO] Skript version 2.4-beta5
[Wed, 21. Aug 2019 19:14:15 EDT INFO] Customize Minecraft's mechanics with simple scripts written in plain English sentences.
[Wed, 21. Aug 2019 19:14:15 EDT INFO] Website: https://skriptlang.github.io/Skript
[Wed, 21. Aug 2019 19:14:15 EDT INFO] Authors: Njol, Mirreski, bensku, TheBentoBox, Snow-Pyon, Pikachu920, Nicofisi, tim740, Tuke-Nuke, TheLimeGlass, xXAndrew28Xx, Sashie, RoyCurtis, nfell2009, Syst3ms and Blueyescat
```
### Additional Context
N/A at this time | 1.0 | On right click event causing issues with boats and shields - <!--- This is just a recommended template, but you should follow it --->
### Description
<!--- A clear and concise description of what the problem is --->
When using the on right click event no boats, shields of any right click events that a player would normally interact with air work
### Steps to Reproduce
<!--- Steps to reproduce the problem. If applicable, add a script or code snippet here --->
Use on right click event and try to place a boat in the middle of the ocean
### Expected Behavior
<!--- A clear and concise description of what you expected to happen --->
Boat places as it should
### Errors / Screenshots
<!--- If applicable, add errors and screenshots to help explain your problem --->
N/A
<!---
If you get a console error, you should send the full error. Also if the error contains a stack trace; you can remove the Server Information section below.
Also you should send long errors using a permanent and reliable paste service like Gist, not hastebin.
--->
### Server Information
* **Server version/platform:**
```[Wed, 21. Aug 2019 19:13:33 EDT INFO] This server is running Paper version git-Paper-174 (MC: 1.14.4) (Implementing API version 1.14.4-R0.1-SNAPSHOT)
[Wed, 21. Aug 2019 19:13:33 EDT INFO] Checking version, please wait...
[Wed, 21. Aug 2019 19:13:34 EDT INFO] Previous version: git-Paper-173 (MC: 1.14.4)
[Wed, 21. Aug 2019 19:13:34 EDT INFO] You are 1 version(s) behind
```
* **Skript version:**
```
[Wed, 21. Aug 2019 19:14:15 EDT INFO] Skript version 2.4-beta5
[Wed, 21. Aug 2019 19:14:15 EDT INFO] Customize Minecraft's mechanics with simple scripts written in plain English sentences.
[Wed, 21. Aug 2019 19:14:15 EDT INFO] Website: https://skriptlang.github.io/Skript
[Wed, 21. Aug 2019 19:14:15 EDT INFO] Authors: Njol, Mirreski, bensku, TheBentoBox, Snow-Pyon, Pikachu920, Nicofisi, tim740, Tuke-Nuke, TheLimeGlass, xXAndrew28Xx, Sashie, RoyCurtis, nfell2009, Syst3ms and Blueyescat
```
### Additional Context
N/A at this time | priority | on right click event causing issues with boats and shields description when using the on right click event no boats shields of any right click events that a player would normally interact with air work steps to reproduce use on right click event and try to place a boat in the middle of the ocean expected behavior boat places as it should errors screenshots n a if you get a console error you should send the full error also if the error contains a stack trace you can remove the server information section below also you should send long errors using a permanent and reliable paste service like gist not hastebin server information server version platform this server is running paper version git paper mc implementing api version snapshot checking version please wait previous version git paper mc you are version s behind skript version skript version customize minecraft s mechanics with simple scripts written in plain english sentences website authors njol mirreski bensku thebentobox snow pyon nicofisi tuke nuke thelimeglass sashie roycurtis and blueyescat additional context n a at this time | 1 |
67,458 | 3,273,734,292 | IssuesEvent | 2015-10-26 05:44:31 | punongbayan-araullo/tickets | https://api.github.com/repos/punongbayan-araullo/tickets | closed | Hide button and fields (View DPC Activities, Fiscal Year, Filing Status, Filing Type) in QCC Home. (ASD only) | priority - high status - new system - QCC type - modification | Requested by Sir Third. | 1.0 | Hide button and fields (View DPC Activities, Fiscal Year, Filing Status, Filing Type) in QCC Home. (ASD only) - Requested by Sir Third. | priority | hide button and fields view dpc activities fiscal year filing status filing type in qcc home asd only requested by sir third | 1 |
483,565 | 13,926,319,334 | IssuesEvent | 2020-10-21 18:06:44 | schemathesis/schemathesis | https://api.github.com/repos/schemathesis/schemathesis | closed | [BUG] responses missing content-type pass response_schema_conformance/content_type_conformance | Difficulty: Easy Priority: High Type: Bug | **Describe the bug**
if you call `schemathesis.models.Case.validate_response` with a response that has no content-type (see below), it will swallow the KeyError and just return early:
```
def response_schema_conformance(response: GenericResponse, case: "Case") -> None:
if not isinstance(case.endpoint.schema, BaseOpenAPISchema):
raise TypeError("This check can be used only with Open API schemas")
try:
content_type = response.headers["Content-Type"]
except KeyError:
# Not all responses have a content-type
return
```
**To Reproduce**
call `validate_response(resp, (response_schema_conformance,))` on a response that has no content-type
**Expected behavior**
a reply missing the content-type should fail the conformance check unconditionally
**Environment (please complete the following information):**
- OS: Linux
- Python version: 3.9.0rc2
- Schemathesis version: 2.6.1
- Spec version: 3.0.0
**Additional context**
```
> /home/janus/.pyenv/versions/3.9.0rc2/lib/python3.9/site-packages/schemathesis/specs/openapi/checks.py(84)response_schema_conformance()
-> content_type = response.headers["Content-Type"]
(Pdb) p response.headers
{'server': 'Rocket', 'content-length': '152', 'date': 'Tue, 20 Oct 2020 20:00:08 GMT'}
(Pdb)
```
| 1.0 | [BUG] responses missing content-type pass response_schema_conformance/content_type_conformance - **Describe the bug**
if you call `schemathesis.models.Case.validate_response` with a response that has no content-type (see below), it will swallow the KeyError and just return early:
```
def response_schema_conformance(response: GenericResponse, case: "Case") -> None:
if not isinstance(case.endpoint.schema, BaseOpenAPISchema):
raise TypeError("This check can be used only with Open API schemas")
try:
content_type = response.headers["Content-Type"]
except KeyError:
# Not all responses have a content-type
return
```
**To Reproduce**
call `validate_response(resp, (response_schema_conformance,))` on a response that has no content-type
**Expected behavior**
a reply missing the content-type should fail the conformance check unconditionally
**Environment (please complete the following information):**
- OS: Linux
- Python version: 3.9.0rc2
- Schemathesis version: 2.6.1
- Spec version: 3.0.0
**Additional context**
```
> /home/janus/.pyenv/versions/3.9.0rc2/lib/python3.9/site-packages/schemathesis/specs/openapi/checks.py(84)response_schema_conformance()
-> content_type = response.headers["Content-Type"]
(Pdb) p response.headers
{'server': 'Rocket', 'content-length': '152', 'date': 'Tue, 20 Oct 2020 20:00:08 GMT'}
(Pdb)
```
| priority | responses missing content type pass response schema conformance content type conformance describe the bug if you call schemathesis models case validate response with a response that has no content type see below it will swallow the keyerror and just return early def response schema conformance response genericresponse case case none if not isinstance case endpoint schema baseopenapischema raise typeerror this check can be used only with open api schemas try content type response headers except keyerror not all responses have a content type return to reproduce call validate response resp response schema conformance on a response that has no content type expected behavior a reply missing the content type should fail the conformance check unconditionally environment please complete the following information os linux python version schemathesis version spec version additional context home janus pyenv versions lib site packages schemathesis specs openapi checks py response schema conformance content type response headers pdb p response headers server rocket content length date tue oct gmt pdb | 1 |
724,486 | 24,932,336,420 | IssuesEvent | 2022-10-31 12:41:39 | wfau/gaia-dmp | https://api.github.com/repos/wfau/gaia-dmp | closed | Error loading HDBSCAN | bug external bug high priority | Minimal test notebook:
```
%pyspark
import hdbscan
```
Error message:
```
Traceback (most recent call last):
File "/tmp/1664452959634-0/zeppelin_python.py", line 158, in <module>
exec(code, _zcUserQueryNameSpace)
File "<stdin>", line 2, in <module>
File "/usr/local/lib64/python3.7/site-packages/hdbscan/__init__.py", line 1, in <module>
from .hdbscan_ import HDBSCAN, hdbscan
File "/usr/local/lib64/python3.7/site-packages/hdbscan/hdbscan_.py", line 334, in <module>
algorithm='best', memory=Memory(cachedir=None, verbose=0),
TypeError: __init__() got an unexpected keyword argument 'cachedir'
```
* Deployment: `iris-gaia-blue-20220923`
* GitHub branch: [20220919-zrq-gardening](https://github.com/Zarquan/gaia-dmp/tree/20220919-zrq-gardening)
| 1.0 | Error loading HDBSCAN - Minimal test notebook:
```
%pyspark
import hdbscan
```
Error message:
```
Traceback (most recent call last):
File "/tmp/1664452959634-0/zeppelin_python.py", line 158, in <module>
exec(code, _zcUserQueryNameSpace)
File "<stdin>", line 2, in <module>
File "/usr/local/lib64/python3.7/site-packages/hdbscan/__init__.py", line 1, in <module>
from .hdbscan_ import HDBSCAN, hdbscan
File "/usr/local/lib64/python3.7/site-packages/hdbscan/hdbscan_.py", line 334, in <module>
algorithm='best', memory=Memory(cachedir=None, verbose=0),
TypeError: __init__() got an unexpected keyword argument 'cachedir'
```
* Deployment: `iris-gaia-blue-20220923`
* GitHub branch: [20220919-zrq-gardening](https://github.com/Zarquan/gaia-dmp/tree/20220919-zrq-gardening)
| priority | error loading hdbscan minimal test notebook pyspark import hdbscan error message traceback most recent call last file tmp zeppelin python py line in exec code zcuserquerynamespace file line in file usr local site packages hdbscan init py line in from hdbscan import hdbscan hdbscan file usr local site packages hdbscan hdbscan py line in algorithm best memory memory cachedir none verbose typeerror init got an unexpected keyword argument cachedir deployment iris gaia blue github branch | 1 |
547,016 | 16,023,519,472 | IssuesEvent | 2021-04-21 05:39:35 | wso2/product-apim | https://api.github.com/repos/wso2/product-apim | closed | Advanced throttle policies with conditional group | API-M 4.0.0 Priority/High REST APIs React-UI T1 Type/Improvement | ### Describe your problem(s)
When adding an advanced throttling policy, when it is required to add a header, query param, or JSON Web Token (JWT) claim condition, you need to set the enable_header_based_throttling , enable_jwt_claim_based_throttling or enable_query_param_based_throttling element to true (depending on which condition you need) under [apim.throttling] in the repository/conf/deployment.toml file. Without adding that config, the related conditions won't be applied. So it is required to add a note/warning to enable the configs/clarifying the requirement of configs in the page where "conditional groups" are added.
Without this warning/note users might try to add conditional groups and it has caused this known issue #10623. So it is a must to add this warning.
### Describe your solution
This warning message was there already in Jaggery Admin app (e.g. in 2.6.0) as below.
<img width="1440" alt="image" src="https://user-images.githubusercontent.com/2484781/113469850-78447d80-946e-11eb-8917-a31a7accc7d9.png">
But it is missing in the React Admin app. It should be to it, under "Conditional groups" section at an appropriate location.
<img width="920" alt="image" src="https://user-images.githubusercontent.com/2484781/113470205-63b5b480-9471-11eb-8caf-27efa7d52786.png">
<!-- Describe the feature/improvement -->
### How will you implement it
<!-- If you like to suggest an approach or a design -->
---
### Optional Fields
#### Related Issues:
<!-- Any related issues from this/other repositories-->
#### Suggested Labels:
<!--Only to be used by non-members-->
#### Suggested Assignees:
<!--Only to be used by non-members--> | 1.0 | Advanced throttle policies with conditional group - ### Describe your problem(s)
When adding an advanced throttling policy, when it is required to add a header, query param, or JSON Web Token (JWT) claim condition, you need to set the enable_header_based_throttling , enable_jwt_claim_based_throttling or enable_query_param_based_throttling element to true (depending on which condition you need) under [apim.throttling] in the repository/conf/deployment.toml file. Without adding that config, the related conditions won't be applied. So it is required to add a note/warning to enable the configs/clarifying the requirement of configs in the page where "conditional groups" are added.
Without this warning/note users might try to add conditional groups and it has caused this known issue #10623. So it is a must to add this warning.
### Describe your solution
This warning message was there already in Jaggery Admin app (e.g. in 2.6.0) as below.
<img width="1440" alt="image" src="https://user-images.githubusercontent.com/2484781/113469850-78447d80-946e-11eb-8917-a31a7accc7d9.png">
But it is missing in the React Admin app. It should be to it, under "Conditional groups" section at an appropriate location.
<img width="920" alt="image" src="https://user-images.githubusercontent.com/2484781/113470205-63b5b480-9471-11eb-8caf-27efa7d52786.png">
<!-- Describe the feature/improvement -->
### How will you implement it
<!-- If you like to suggest an approach or a design -->
---
### Optional Fields
#### Related Issues:
<!-- Any related issues from this/other repositories-->
#### Suggested Labels:
<!--Only to be used by non-members-->
#### Suggested Assignees:
<!--Only to be used by non-members--> | priority | advanced throttle policies with conditional group describe your problem s when adding an advanced throttling policy when it is required to add a header query param or json web token jwt claim condition you need to set the enable header based throttling enable jwt claim based throttling or enable query param based throttling element to true depending on which condition you need under in the repository conf deployment toml file without adding that config the related conditions won t be applied so it is required to add a note warning to enable the configs clarifying the requirement of configs in the page where conditional groups are added without this warning note users might try to add conditional groups and it has caused this known issue so it is a must to add this warning describe your solution this warning message was there already in jaggery admin app e g in as below img width alt image src but it is missing in the react admin app it should be to it under conditional groups section at an appropriate location img width alt image src how will you implement it optional fields related issues suggested labels suggested assignees | 1 |
120,299 | 4,787,787,521 | IssuesEvent | 2016-10-30 06:39:21 | cwrc/CWRC-Writer | https://api.github.com/repos/cwrc/CWRC-Writer | opened | editing of bibcits not working as it ought - standalone and embedded versions | high priority | @ajmacdonald
- [ ] you can apparently (sometimes, not reliably) edit the tag from the edit panel by right clicking the icon or between the icon and the parentheses, but the changes entered via the edit tag dialog do not always get saved, although they sometimes do
- [ ] if you try to edit a citation entity by clicking on the "edit tag" button in the dialog, you get an error message {replicated this in the standalone version}
 | 1.0 | editing of bibcits not working as it ought - standalone and embedded versions - @ajmacdonald
- [ ] you can apparently (sometimes, not reliably) edit the tag from the edit panel by right clicking the icon or between the icon and the parentheses, but the changes entered via the edit tag dialog do not always get saved, although they sometimes do
- [ ] if you try to edit a citation entity by clicking on the "edit tag" button in the dialog, you get an error message {replicated this in the standalone version}
 | priority | editing of bibcits not working as it ought standalone and embedded versions ajmacdonald you can apparently sometimes not reliably edit the tag from the edit panel by right clicking the icon or between the icon and the parentheses but the changes entered via the edit tag dialog do not always get saved although they sometimes do if you try to edit a citation entity by clicking on the edit tag button in the dialog you get an error message replicated this in the standalone version | 1 |
9,992 | 2,609,906,148 | IssuesEvent | 2015-02-26 17:23:06 | ImperialCollegeLondon/EpiCollectplus | https://api.github.com/repos/ImperialCollegeLondon/EpiCollectplus | opened | Wrong routing with valid url | High Priority (next release) | Calling the entry point directly like
http://plus.epicollect.net/main.php
gives an error, despite the entry point is perfectly valid
| 1.0 | Wrong routing with valid url - Calling the entry point directly like
http://plus.epicollect.net/main.php
gives an error, despite the entry point is perfectly valid
| priority | wrong routing with valid url calling the entry point directly like gives an error despite the entry point is perfectly valid | 1 |
46,437 | 2,957,549,718 | IssuesEvent | 2015-07-08 16:53:15 | c4fcm/MediaMeter-Dashboard | https://api.github.com/repos/c4fcm/MediaMeter-Dashboard | closed | pulse downloads are empty | bug priority: high | I get a blank file when I try to download a pulse csv using the 'download main query csv' link in the drop down. | 1.0 | pulse downloads are empty - I get a blank file when I try to download a pulse csv using the 'download main query csv' link in the drop down. | priority | pulse downloads are empty i get a blank file when i try to download a pulse csv using the download main query csv link in the drop down | 1 |
181,151 | 6,656,688,743 | IssuesEvent | 2017-09-29 21:45:51 | bukinoshita/pilot-styles | https://api.github.com/repos/bukinoshita/pilot-styles | closed | add tests | Priority: High Type: Enhancement | might be a good idea to add tests, just to make sure we are using the right colors and gradients | 1.0 | add tests - might be a good idea to add tests, just to make sure we are using the right colors and gradients | priority | add tests might be a good idea to add tests just to make sure we are using the right colors and gradients | 1 |
212,193 | 7,229,198,706 | IssuesEvent | 2018-02-11 17:35:23 | Asgaros/asgaros-forum | https://api.github.com/repos/Asgaros/asgaros-forum | closed | Moving Forums | Feature Priority: High | It would be great to have an admin tool to move topics from one Category to another. | 1.0 | Moving Forums - It would be great to have an admin tool to move topics from one Category to another. | priority | moving forums it would be great to have an admin tool to move topics from one category to another | 1 |
454,835 | 13,108,188,842 | IssuesEvent | 2020-08-04 16:24:42 | aces/cbrain | https://api.github.com/repos/aces/cbrain | closed | NeuroHub bugs checklist | NeuroHub Priority: High | Enter NeuroHub bugs/limitations below as a checklist. Checkboxes are created with dash, space, square bracket, space, square bracket, space (- [ ] Text).
- [ ] When account is created, the user is redirected to cbrain with no way of signing in to NeuroHub.
- [ ] Pagination defaults to 20 even if there are less than 20 items.
- [ ] In the upload file form, if the user doesn't fill in a required input, he/she is only notified of the error through flash notice after being redirected to the projects page. It would be nice to have a warning when there's missing information much like with the user register form.
- [ ] Check that all cbrain links are external and open in new tab. (I already checked but would like someone to double check if they have time in case I missed any. - Candice)
- [x] user should be able only add storage to a project if he is editor or maintainer at the least, remove irrelevant projects from the create new storage forms' project dropdown. IF I am wrong and it is fine for any contributor to add projects storage, put back the add storage button to non-editable projects. (Natacha note: I am able to add a DP to a PUBLIC project via CBRAIN, when I use a user (SiteManager) that is a member of this group but not an Editor. I should not be able to do that.)
- [x] If an Editor of a public project has the same right than the creator then it should be able to add a licence to the group. It is not the case for the moment. @prioux can you confirm that an editor should have this ability.
--------------------------------------------------------
For the list of bugs resolved by April 7 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-610424204)
For the list of bugs resolved by April 15 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-614157355)
For the list of bugs resolved by April 16 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-614682392)
For the list of bugs resolved by April 20 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-616731332)
For the list of bugs resolved by April 22 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-617980477)
For the list of bugs resolved by April 29 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-621251758) | 1.0 | NeuroHub bugs checklist - Enter NeuroHub bugs/limitations below as a checklist. Checkboxes are created with dash, space, square bracket, space, square bracket, space (- [ ] Text).
- [ ] When account is created, the user is redirected to cbrain with no way of signing in to NeuroHub.
- [ ] Pagination defaults to 20 even if there are less than 20 items.
- [ ] In the upload file form, if the user doesn't fill in a required input, he/she is only notified of the error through flash notice after being redirected to the projects page. It would be nice to have a warning when there's missing information much like with the user register form.
- [ ] Check that all cbrain links are external and open in new tab. (I already checked but would like someone to double check if they have time in case I missed any. - Candice)
- [x] user should be able only add storage to a project if he is editor or maintainer at the least, remove irrelevant projects from the create new storage forms' project dropdown. IF I am wrong and it is fine for any contributor to add projects storage, put back the add storage button to non-editable projects. (Natacha note: I am able to add a DP to a PUBLIC project via CBRAIN, when I use a user (SiteManager) that is a member of this group but not an Editor. I should not be able to do that.)
- [x] If an Editor of a public project has the same right than the creator then it should be able to add a licence to the group. It is not the case for the moment. @prioux can you confirm that an editor should have this ability.
--------------------------------------------------------
For the list of bugs resolved by April 7 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-610424204)
For the list of bugs resolved by April 15 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-614157355)
For the list of bugs resolved by April 16 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-614682392)
For the list of bugs resolved by April 20 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-616731332)
For the list of bugs resolved by April 22 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-617980477)
For the list of bugs resolved by April 29 click [here](https://github.com/aces/cbrain/issues/921#issuecomment-621251758) | priority | neurohub bugs checklist enter neurohub bugs limitations below as a checklist checkboxes are created with dash space square bracket space square bracket space text when account is created the user is redirected to cbrain with no way of signing in to neurohub pagination defaults to even if there are less than items in the upload file form if the user doesn t fill in a required input he she is only notified of the error through flash notice after being redirected to the projects page it would be nice to have a warning when there s missing information much like with the user register form check that all cbrain links are external and open in new tab i already checked but would like someone to double check if they have time in case i missed any candice user should be able only add storage to a project if he is editor or maintainer at the least remove irrelevant projects from the create new storage forms project dropdown if i am wrong and it is fine for any contributor to add projects storage put back the add storage button to non editable projects natacha note i am able to add a dp to a public project via cbrain when i use a user sitemanager that is a member of this group but not an editor i should not be able to do that if an editor of a public project has the same right than the creator then it should be able to add a licence to the group it is not the case for the moment prioux can you confirm that an editor should have this ability for the list of bugs resolved by april click for the list of bugs resolved by april click for the list of bugs resolved by april click for the list of bugs resolved by april click for the list of bugs resolved by april click for the list of bugs resolved by april click | 1 |
601,141 | 18,373,130,640 | IssuesEvent | 2021-10-11 04:06:32 | AY2122S1-CS2113-T14-1/tp | https://api.github.com/repos/AY2122S1-CS2113-T14-1/tp | closed | Implement the clue class | priority.High type.Epic | The clue class should inlcude:
- Name
- Image
- Description
- Suspect (who the clue belongs to) | 1.0 | Implement the clue class - The clue class should inlcude:
- Name
- Image
- Description
- Suspect (who the clue belongs to) | priority | implement the clue class the clue class should inlcude name image description suspect who the clue belongs to | 1 |
521,497 | 15,110,115,364 | IssuesEvent | 2021-02-08 18:46:02 | AbsaOSS/enceladus | https://api.github.com/repos/AbsaOSS/enceladus | closed | Import of PropertyDefinition does not update Essentiality | Menas bug priority: high | ## Describe the bug
When import and presumably update is used on the property definition it does not update essentiality
## To Reproduce
Steps to reproduce the behavior OR commands run:
1. have a property definition
2. update the definition with different essentiality
3. it does not update
## Expected behaviour
I expect it to update
| 1.0 | Import of PropertyDefinition does not update Essentiality - ## Describe the bug
When import and presumably update is used on the property definition it does not update essentiality
## To Reproduce
Steps to reproduce the behavior OR commands run:
1. have a property definition
2. update the definition with different essentiality
3. it does not update
## Expected behaviour
I expect it to update
| priority | import of propertydefinition does not update essentiality describe the bug when import and presumably update is used on the property definition it does not update essentiality to reproduce steps to reproduce the behavior or commands run have a property definition update the definition with different essentiality it does not update expected behaviour i expect it to update | 1 |
44,656 | 2,910,357,656 | IssuesEvent | 2015-06-21 17:34:46 | kendraio/kendra_home | https://api.github.com/repos/kendraio/kendra_home | opened | Deleting user also deletes organisation | High Priority | Deleting a user also deletes their organisation. This is not be desired. Also the organisation is delete even when shared with another user. | 1.0 | Deleting user also deletes organisation - Deleting a user also deletes their organisation. This is not be desired. Also the organisation is delete even when shared with another user. | priority | deleting user also deletes organisation deleting a user also deletes their organisation this is not be desired also the organisation is delete even when shared with another user | 1 |
235,146 | 7,735,049,531 | IssuesEvent | 2018-05-27 10:38:51 | agda/agda | https://api.github.com/repos/agda/agda | closed | slow type-checking for functions with many clauses | pattern-matching priority: high type: bug | ```
The attached file takes rather a long time (about 9 seconds) to check on my
machine. In discussion of this example on the Agda mailing list January 24-27,
2014, Andreas wrote:
> > * eps: Most of the time is spent type-checking individual clauses.
>
> There is definitely a source for quadratic behavior here: Each clause
> is checked individually, starting with variables for the function
> arguments and splitting them according to the patterns of this clause.
> If you have a datatype with n cases, and consequently a function with n
> clauses, Agda does n splits generating n reference clauses (lhss) each
> time.
I am attaching a simplified version of the test file, slow.agda.
I encountered this problem with Agda 2.3.2 on Ubuntu 12.04 Linux.
Aaron Stump
```
Original issue reported on code.google.com by `aaron.st...@gmail.com` on 28 Jan 2014 at 2:26
Attachments:
- [slow.agda](https://storage.googleapis.com/google-code-attachments/agda/issue-1034/comment-0/slow.agda)
| 1.0 | slow type-checking for functions with many clauses - ```
The attached file takes rather a long time (about 9 seconds) to check on my
machine. In discussion of this example on the Agda mailing list January 24-27,
2014, Andreas wrote:
> > * eps: Most of the time is spent type-checking individual clauses.
>
> There is definitely a source for quadratic behavior here: Each clause
> is checked individually, starting with variables for the function
> arguments and splitting them according to the patterns of this clause.
> If you have a datatype with n cases, and consequently a function with n
> clauses, Agda does n splits generating n reference clauses (lhss) each
> time.
I am attaching a simplified version of the test file, slow.agda.
I encountered this problem with Agda 2.3.2 on Ubuntu 12.04 Linux.
Aaron Stump
```
Original issue reported on code.google.com by `aaron.st...@gmail.com` on 28 Jan 2014 at 2:26
Attachments:
- [slow.agda](https://storage.googleapis.com/google-code-attachments/agda/issue-1034/comment-0/slow.agda)
| priority | slow type checking for functions with many clauses the attached file takes rather a long time about seconds to check on my machine in discussion of this example on the agda mailing list january andreas wrote eps most of the time is spent type checking individual clauses there is definitely a source for quadratic behavior here each clause is checked individually starting with variables for the function arguments and splitting them according to the patterns of this clause if you have a datatype with n cases and consequently a function with n clauses agda does n splits generating n reference clauses lhss each time i am attaching a simplified version of the test file slow agda i encountered this problem with agda on ubuntu linux aaron stump original issue reported on code google com by aaron st gmail com on jan at attachments | 1 |
503,295 | 14,583,285,651 | IssuesEvent | 2020-12-18 13:46:23 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.netflix.com - video or audio doesn't play | browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical | <!-- @browser: Firefox 85.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/63872 -->
**URL**: https://www.netflix.com/watch/81053941?trackId=14170286&tctx=2%2C0%2C06e3d582-36b9-41ba-8d38-f102455398fa-253634342%2C6632ebcc-9fdd-4537-aec5-157fb2319e06_25214222X3XX1608298013257%2C%2C
**Browser / Version**: Firefox 85.0
**Operating System**: Windows 10
**Tested Another Browser**: Yes Edge
**Problem type**: Video or audio doesn't play
**Description**: The video or audio does not play
**Steps to Reproduce**:
Netflix and Pogo stopped working on Firefox but they still work on edge. Have used Firefox for years now I have to get Google?? Really?
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/a34b4562-44a4-42cb-9654-aa1be3f4c750.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20201217185930</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/12/08738cce-823e-4204-8256-43c9bdb90d3f)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.netflix.com - video or audio doesn't play - <!-- @browser: Firefox 85.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/63872 -->
**URL**: https://www.netflix.com/watch/81053941?trackId=14170286&tctx=2%2C0%2C06e3d582-36b9-41ba-8d38-f102455398fa-253634342%2C6632ebcc-9fdd-4537-aec5-157fb2319e06_25214222X3XX1608298013257%2C%2C
**Browser / Version**: Firefox 85.0
**Operating System**: Windows 10
**Tested Another Browser**: Yes Edge
**Problem type**: Video or audio doesn't play
**Description**: The video or audio does not play
**Steps to Reproduce**:
Netflix and Pogo stopped working on Firefox but they still work on edge. Have used Firefox for years now I have to get Google?? Really?
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2020/12/a34b4562-44a4-42cb-9654-aa1be3f4c750.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20201217185930</li><li>channel: beta</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2020/12/08738cce-823e-4204-8256-43c9bdb90d3f)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | video or audio doesn t play url browser version firefox operating system windows tested another browser yes edge problem type video or audio doesn t play description the video or audio does not play steps to reproduce netflix and pogo stopped working on firefox but they still work on edge have used firefox for years now i have to get google really view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
36,152 | 2,796,050,584 | IssuesEvent | 2015-05-12 03:17:57 | phetsims/rosetta | https://api.github.com/repos/phetsims/rosetta | closed | UX mockups | high priority | On 2/17/15, @ariel-phet and I met to do UX design. The end result was a PDF file of my notebook sketches. The intention was to flesh those out and share them with the design team. In the past few design meetings, I've been feeling more urgency about this issue, since it's clear that we're not all entirely on the same page about the UX.
Assigning to @ariel-phet to move this forward. | 1.0 | UX mockups - On 2/17/15, @ariel-phet and I met to do UX design. The end result was a PDF file of my notebook sketches. The intention was to flesh those out and share them with the design team. In the past few design meetings, I've been feeling more urgency about this issue, since it's clear that we're not all entirely on the same page about the UX.
Assigning to @ariel-phet to move this forward. | priority | ux mockups on ariel phet and i met to do ux design the end result was a pdf file of my notebook sketches the intention was to flesh those out and share them with the design team in the past few design meetings i ve been feeling more urgency about this issue since it s clear that we re not all entirely on the same page about the ux assigning to ariel phet to move this forward | 1 |
161,494 | 6,130,531,304 | IssuesEvent | 2017-06-24 06:14:18 | cdnjs/cdnjs | https://api.github.com/repos/cdnjs/cdnjs | closed | [Request] Add tabulator@3.1.1 | High Priority Library - Request to Add/Update | **Library name:** tabulator
**Git repository url:** https://github.com/olifolkerd/tabulator
**npm package name or url** (if there is one): https://www.npmjs.com/package/jquery.tabulator
**License (List them all if it's multiple):** MIT https://github.com/olifolkerd/tabulator/blob/master/LICENSE
**Official homepage:** http://olifolkerd.github.io/tabulator/
**Wanna say something? Leave message here:** It appears that PeterBot added the latest 2.x version, but 3.x versions have not shown up. Is there something I can do to help the bot do its thing, or would creating a pull request be faster?
=====================
Notes from cdnjs maintainer:
Please read the [README.md](https://github.com/cdnjs/cdnjs#cdnjs-library-repository) and [CONTRIBUTING.md](https://github.com/cdnjs/cdnjs/blob/master/CONTRIBUTING.md) document first.
We encourage you to add a library via sending pull request,
it'll be faster than just opening a request issue,
since there are tons of issues, please wait with patience,
and please don't forget to read the guidelines for contributing, thanks!!
| 1.0 | [Request] Add tabulator@3.1.1 - **Library name:** tabulator
**Git repository url:** https://github.com/olifolkerd/tabulator
**npm package name or url** (if there is one): https://www.npmjs.com/package/jquery.tabulator
**License (List them all if it's multiple):** MIT https://github.com/olifolkerd/tabulator/blob/master/LICENSE
**Official homepage:** http://olifolkerd.github.io/tabulator/
**Wanna say something? Leave message here:** It appears that PeterBot added the latest 2.x version, but 3.x versions have not shown up. Is there something I can do to help the bot do its thing, or would creating a pull request be faster?
=====================
Notes from cdnjs maintainer:
Please read the [README.md](https://github.com/cdnjs/cdnjs#cdnjs-library-repository) and [CONTRIBUTING.md](https://github.com/cdnjs/cdnjs/blob/master/CONTRIBUTING.md) document first.
We encourage you to add a library via sending pull request,
it'll be faster than just opening a request issue,
since there are tons of issues, please wait with patience,
and please don't forget to read the guidelines for contributing, thanks!!
| priority | add tabulator library name tabulator git repository url npm package name or url if there is one license list them all if it s multiple mit official homepage wanna say something leave message here it appears that peterbot added the latest x version but x versions have not shown up is there something i can do to help the bot do its thing or would creating a pull request be faster notes from cdnjs maintainer please read the and document first we encourage you to add a library via sending pull request it ll be faster than just opening a request issue since there are tons of issues please wait with patience and please don t forget to read the guidelines for contributing thanks | 1 |
511,595 | 14,877,307,767 | IssuesEvent | 2021-01-20 02:50:14 | kubesphere/console | https://api.github.com/repos/kubesphere/console | closed | Need to refresh Pipeline running page manually instead of automatically | area/devops kind/feature priority/high | <!-- Please only use this template for submitting enhancement requests -->
**What would you like to be added**:
I suggest that the data on the Pipeline running page could be updated automatically instead of manually. As we can see from the screenshot, the status doesn't change until someone refresh it.

**Why is this needed**:
For a regular user, he will think this Pipeline just staying current status.
/area devops
/priority high | 1.0 | Need to refresh Pipeline running page manually instead of automatically - <!-- Please only use this template for submitting enhancement requests -->
**What would you like to be added**:
I suggest that the data on the Pipeline running page could be updated automatically instead of manually. As we can see from the screenshot, the status doesn't change until someone refresh it.

**Why is this needed**:
For a regular user, he will think this Pipeline just staying current status.
/area devops
/priority high | priority | need to refresh pipeline running page manually instead of automatically what would you like to be added i suggest that the data on the pipeline running page could be updated automatically instead of manually as we can see from the screenshot the status doesn t change until someone refresh it why is this needed for a regular user he will think this pipeline just staying current status area devops priority high | 1 |
163,400 | 6,197,878,846 | IssuesEvent | 2017-07-05 17:51:56 | phetsims/balloons-and-static-electricity | https://api.github.com/repos/phetsims/balloons-and-static-electricity | closed | Shouldn't accessibility features be hidden behind a query parameter? | priority:2-high | @phet-steele found that in [BASE 1.3.1-phetio](https://phet-io.colorado.edu/sims/balloons-and-static-electricity/1.3.1-phetio/wrappers/index) published to the phet-io website, accessibility is enabled without a query parameter. @jessegreenberg and I think it is probably best to hide that under `?accessibility` and Georgia Tech and others can add that parameter in if they want the incomplete accessibility features.
@ariel-phet @emily-phet please let me know if that doesn't align with your thoughts on the matter.
Otherwise I will continue with a maintenance release and hide it. | 1.0 | Shouldn't accessibility features be hidden behind a query parameter? - @phet-steele found that in [BASE 1.3.1-phetio](https://phet-io.colorado.edu/sims/balloons-and-static-electricity/1.3.1-phetio/wrappers/index) published to the phet-io website, accessibility is enabled without a query parameter. @jessegreenberg and I think it is probably best to hide that under `?accessibility` and Georgia Tech and others can add that parameter in if they want the incomplete accessibility features.
@ariel-phet @emily-phet please let me know if that doesn't align with your thoughts on the matter.
Otherwise I will continue with a maintenance release and hide it. | priority | shouldn t accessibility features be hidden behind a query parameter phet steele found that in published to the phet io website accessibility is enabled without a query parameter jessegreenberg and i think it is probably best to hide that under accessibility and georgia tech and others can add that parameter in if they want the incomplete accessibility features ariel phet emily phet please let me know if that doesn t align with your thoughts on the matter otherwise i will continue with a maintenance release and hide it | 1 |
743,535 | 25,903,200,253 | IssuesEvent | 2022-12-15 08:06:42 | ballerina-platform/ballerina-dev-website | https://api.github.com/repos/ballerina-platform/ballerina-dev-website | closed | Fix broken links in `blog.ballerina.io` | Priority/Highest Type/Bug Type/Task | ## Description
Need to fix the broken links below in `blog.ballerina.io`.
<img width="1117" alt="Screenshot 2022-12-06 at 09 28 53" src="https://user-images.githubusercontent.com/11707273/205809832-baa64a4e-be84-49d5-b5cd-82dc4c397d68.png">
## Related website/documentation area
> Add/Uncomment the relevant area label out of the following.
<!--Area/BBEs-->
<!--Area/HomePageSamples-->
<!--Area/LearnPages-->
<!--Area/CommonPages-->
<!--Area/Backend-->
<!--Area/UIUX-->
<!--Area/Workflows-->
<!--Area/Blog-->
## Describe your task(s)
> A detailed description of the task.
## Related issue(s) (optional)
> Any related issues such as sub tasks and issues reported in other repositories (e.g., component repositories), similar problems, etc.
## Suggested label(s) (optional)
> Optional comma-separated list of suggested labels. Non committers can’t assign labels to issues, and thereby, this will help issue creators who are not a committer to suggest possible labels.
## Suggested assignee(s) (optional)
> Optional comma-separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, and thereby, this will help issue creators who are not a committer to suggest possible assignees.
| 1.0 | Fix broken links in `blog.ballerina.io` - ## Description
Need to fix the broken links below in `blog.ballerina.io`.
<img width="1117" alt="Screenshot 2022-12-06 at 09 28 53" src="https://user-images.githubusercontent.com/11707273/205809832-baa64a4e-be84-49d5-b5cd-82dc4c397d68.png">
## Related website/documentation area
> Add/Uncomment the relevant area label out of the following.
<!--Area/BBEs-->
<!--Area/HomePageSamples-->
<!--Area/LearnPages-->
<!--Area/CommonPages-->
<!--Area/Backend-->
<!--Area/UIUX-->
<!--Area/Workflows-->
<!--Area/Blog-->
## Describe your task(s)
> A detailed description of the task.
## Related issue(s) (optional)
> Any related issues such as sub tasks and issues reported in other repositories (e.g., component repositories), similar problems, etc.
## Suggested label(s) (optional)
> Optional comma-separated list of suggested labels. Non committers can’t assign labels to issues, and thereby, this will help issue creators who are not a committer to suggest possible labels.
## Suggested assignee(s) (optional)
> Optional comma-separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, and thereby, this will help issue creators who are not a committer to suggest possible assignees.
| priority | fix broken links in blog ballerina io description need to fix the broken links below in blog ballerina io img width alt screenshot at src related website documentation area add uncomment the relevant area label out of the following describe your task s a detailed description of the task related issue s optional any related issues such as sub tasks and issues reported in other repositories e g component repositories similar problems etc suggested label s optional optional comma separated list of suggested labels non committers can’t assign labels to issues and thereby this will help issue creators who are not a committer to suggest possible labels suggested assignee s optional optional comma separated list of suggested team members who should attend the issue non committers can’t assign issues to assignees and thereby this will help issue creators who are not a committer to suggest possible assignees | 1 |
622,234 | 19,618,375,229 | IssuesEvent | 2022-01-07 00:56:48 | archesproject/arches | https://api.github.com/repos/archesproject/arches | closed | Filter label based graph data by nodegroup permissions | Type: Bug Priority: High Subject: Permissions Manager | Filter label based graph data by nodegroup permissions. Users should have read_nodegroup permissions to access these data. | 1.0 | Filter label based graph data by nodegroup permissions - Filter label based graph data by nodegroup permissions. Users should have read_nodegroup permissions to access these data. | priority | filter label based graph data by nodegroup permissions filter label based graph data by nodegroup permissions users should have read nodegroup permissions to access these data | 1 |
626,547 | 19,827,435,362 | IssuesEvent | 2022-01-20 08:27:20 | Xtao-Labs/PagerMaid-Modify | https://api.github.com/repos/Xtao-Labs/PagerMaid-Modify | closed | Aiohttp 访问超时 | bug priority: high | ### BUG 发生地址
`File "/var/lib/pagermaid/pagermaid/utils.py", line 325, in get`
### 预期是什么?
正常访问
### 实际发生了什么?
请求超时
### 额外信息(日志、报错等)
`concurrent.futures._base.TimeoutError`
### 解决方法
更换 httpx | 1.0 | Aiohttp 访问超时 - ### BUG 发生地址
`File "/var/lib/pagermaid/pagermaid/utils.py", line 325, in get`
### 预期是什么?
正常访问
### 实际发生了什么?
请求超时
### 额外信息(日志、报错等)
`concurrent.futures._base.TimeoutError`
### 解决方法
更换 httpx | priority | aiohttp 访问超时 bug 发生地址 file var lib pagermaid pagermaid utils py line in get 预期是什么? 正常访问 实际发生了什么? 请求超时 额外信息(日志、报错等) concurrent futures base timeouterror 解决方法 更换 httpx | 1 |
698,152 | 23,967,569,078 | IssuesEvent | 2022-09-13 03:34:57 | hamadayuuki/saisokukunn | https://api.github.com/repos/hamadayuuki/saisokukunn | closed | Main画面での「○day」部分のUI改造 | Priority: high | # 概要
Main画面での「○day」部分のUI改造
3日前などに表示文字を赤色にするとか。
# 理由
現状、焦らされている感が全く無い。
# タスク
# 参考
現状現状
<img width="600" alt="スクリーンショット 2022-09-05 18 36 30" src="https://user-images.githubusercontent.com/82198916/188418515-1bbbdf73-070a-4020-b999-8e5854a290af.png">
| 1.0 | Main画面での「○day」部分のUI改造 - # 概要
Main画面での「○day」部分のUI改造
3日前などに表示文字を赤色にするとか。
# 理由
現状、焦らされている感が全く無い。
# タスク
# 参考
現状現状
<img width="600" alt="スクリーンショット 2022-09-05 18 36 30" src="https://user-images.githubusercontent.com/82198916/188418515-1bbbdf73-070a-4020-b999-8e5854a290af.png">
| priority | main画面での「○day」部分のui改造 概要 main画面での「○day」部分のui改造 。 理由 現状、焦らされている感が全く無い。 タスク 参考 現状現状 img width alt スクリーンショット src | 1 |
631,405 | 20,151,553,803 | IssuesEvent | 2022-02-09 12:54:49 | nens/threedi-api-qgis-client | https://api.github.com/repos/nens/threedi-api-qgis-client | closed | Automatically update base URL from https://api.3di.live/v3.0 to https://api.3di.live | ⏰ Priority: 2. High | This is stored in the user profile, so updating the plugin will not update the URL. Please auto-update | 1.0 | Automatically update base URL from https://api.3di.live/v3.0 to https://api.3di.live - This is stored in the user profile, so updating the plugin will not update the URL. Please auto-update | priority | automatically update base url from to this is stored in the user profile so updating the plugin will not update the url please auto update | 1 |
689,550 | 23,624,304,060 | IssuesEvent | 2022-08-25 01:09:13 | City-Bureau/city-scrapers-atl | https://api.github.com/repos/City-Bureau/city-scrapers-atl | closed | New Scraper: Atlanta Citizen Review Board | priority-high | Create a new scraper for Atlanta Citizen Review Board
Website: https://acrbgov.org/
Jurisdiction: City of Atlanta
Classification: Policing
to provide citizen oversight of misconduct accusations against sworn members of the police and corrections departments in the City of Atlanta.
| 1.0 | New Scraper: Atlanta Citizen Review Board - Create a new scraper for Atlanta Citizen Review Board
Website: https://acrbgov.org/
Jurisdiction: City of Atlanta
Classification: Policing
to provide citizen oversight of misconduct accusations against sworn members of the police and corrections departments in the City of Atlanta.
| priority | new scraper atlanta citizen review board create a new scraper for atlanta citizen review board website jurisdiction city of atlanta classification policing to provide citizen oversight of misconduct accusations against sworn members of the police and corrections departments in the city of atlanta | 1 |
222,899 | 7,440,661,233 | IssuesEvent | 2018-03-27 10:50:34 | ODIQueensland/data-curator | https://api.github.com/repos/ODIQueensland/data-curator | closed | Quit (all work saved) behaviour doesn't match acceptance test | env:MacOS fn:Close-Quit priority:High problem:Bug | ### Expected Behaviour
https://app.cucumber.pro/projects/data-curator/documents/branch/master/test/features/data_curator/quit.feature#scenario-quit-the-application-all-work-saved
### Current Behaviour
If I create data and have saved my work, when I quit the Application I receive a prompt:
<img width="779" alt="screenshot 2017-09-30 06 59 56" src="https://user-images.githubusercontent.com/9379524/31035887-1123c286-a5ad-11e7-806a-60e9c63ce503.png">
- If I select Save from the prompt, the data isn't saved
- If I select Quit, the application quits
### Steps to Reproduce
- as above
### Your Environment
* Data Curator version 0.3.3
* Operating System macOS Sierra 10.12.6 | 1.0 | Quit (all work saved) behaviour doesn't match acceptance test - ### Expected Behaviour
https://app.cucumber.pro/projects/data-curator/documents/branch/master/test/features/data_curator/quit.feature#scenario-quit-the-application-all-work-saved
### Current Behaviour
If I create data and have saved my work, when I quit the Application I receive a prompt:
<img width="779" alt="screenshot 2017-09-30 06 59 56" src="https://user-images.githubusercontent.com/9379524/31035887-1123c286-a5ad-11e7-806a-60e9c63ce503.png">
- If I select Save from the prompt, the data isn't saved
- If I select Quit, the application quits
### Steps to Reproduce
- as above
### Your Environment
* Data Curator version 0.3.3
* Operating System macOS Sierra 10.12.6 | priority | quit all work saved behaviour doesn t match acceptance test expected behaviour current behaviour if i create data and have saved my work when i quit the application i receive a prompt img width alt screenshot src if i select save from the prompt the data isn t saved if i select quit the application quits steps to reproduce as above your environment data curator version operating system macos sierra | 1 |
151,289 | 5,809,467,804 | IssuesEvent | 2017-05-04 13:29:30 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | 'use cache' option is missing in layer properties | enhancement pending review Priority: High | The 'use cache' property is currently missing into the layer settings. This property
allows to set the TILED parameter to true or false in WMS requests. | 1.0 | 'use cache' option is missing in layer properties - The 'use cache' property is currently missing into the layer settings. This property
allows to set the TILED parameter to true or false in WMS requests. | priority | use cache option is missing in layer properties the use cache property is currently missing into the layer settings this property allows to set the tiled parameter to true or false in wms requests | 1 |
348,039 | 10,437,844,095 | IssuesEvent | 2019-09-17 23:34:04 | passlab/ompparser | https://api.github.com/repos/passlab/ompparser | closed | follow LLNL's code review&release process | high priority | The goal is to release the standalone omppaser to public before the workshop.
@ouankou Please briefly record current progress in this issue's comment area. Later you can convert it into a guide for other students to follow. | 1.0 | follow LLNL's code review&release process - The goal is to release the standalone omppaser to public before the workshop.
@ouankou Please briefly record current progress in this issue's comment area. Later you can convert it into a guide for other students to follow. | priority | follow llnl s code review release process the goal is to release the standalone omppaser to public before the workshop ouankou please briefly record current progress in this issue s comment area later you can convert it into a guide for other students to follow | 1 |
217,805 | 7,328,322,058 | IssuesEvent | 2018-03-04 19:37:20 | yanis333/SOEN341_Website | https://api.github.com/repos/yanis333/SOEN341_Website | closed | Bug concerning the total questions displayed in homepage | High value Priority 1 Risk2 Sprint 3 bug | Homepage displayed the number of questions but it doesn't keep track of the questions properly.
Usually is one off the right number. | 1.0 | Bug concerning the total questions displayed in homepage - Homepage displayed the number of questions but it doesn't keep track of the questions properly.
Usually is one off the right number. | priority | bug concerning the total questions displayed in homepage homepage displayed the number of questions but it doesn t keep track of the questions properly usually is one off the right number | 1 |
449,809 | 12,975,258,099 | IssuesEvent | 2020-07-21 16:41:43 | wearable-learning-cloud-platform/wlcp-issues | https://api.github.com/repos/wearable-learning-cloud-platform/wlcp-issues | opened | Game Editor: Adding Space to the Builder | bug game editor high priority | When using Chrome, dropping a state in the bottom of the white space (Builder) in the editor does not create enough extra space to be useful. The space added is like a quarter of an inch, but it should be at least enough space to fit another state.
Note: This does not occur in Firefox | 1.0 | Game Editor: Adding Space to the Builder - When using Chrome, dropping a state in the bottom of the white space (Builder) in the editor does not create enough extra space to be useful. The space added is like a quarter of an inch, but it should be at least enough space to fit another state.
Note: This does not occur in Firefox | priority | game editor adding space to the builder when using chrome dropping a state in the bottom of the white space builder in the editor does not create enough extra space to be useful the space added is like a quarter of an inch but it should be at least enough space to fit another state note this does not occur in firefox | 1 |
134,512 | 5,229,252,561 | IssuesEvent | 2017-01-29 00:54:22 | abentele/Fraise | https://api.github.com/repos/abentele/Fraise | closed | Update (or remove) Fraise Manual | enhancement priority:high | The fraise manual still contains information related to Smultron (icon, name, ...).
Update it...
or simply remove it (because no documentation should be needed) | 1.0 | Update (or remove) Fraise Manual - The fraise manual still contains information related to Smultron (icon, name, ...).
Update it...
or simply remove it (because no documentation should be needed) | priority | update or remove fraise manual the fraise manual still contains information related to smultron icon name update it or simply remove it because no documentation should be needed | 1 |
627,180 | 19,898,612,220 | IssuesEvent | 2022-01-25 03:58:45 | pytorch/text | https://api.github.com/repos/pytorch/text | closed | How to use TranslationDataset with an encoder-decoder architecture? | enhancement high priority | In an encoder-decoder architecture (see for example [1]) one would normally have an encoder module that learns to create a sparse vector representation of some input data, e.g. a text to be translated and a decoder that is trained to produce the translation from those vector while fed with its own previous output.
During training one would just feed the target text to the decoder shifted by one timestep forward instead of its own outputs.
See also the following graphics for a visualization:

Now I'm struggling really hard to implement such an model using Torchtext, in particular with the `TranslationDataset`s, up to a point where I wonder if this is actually possible at all without applying some indecent hacks.
Especially I can't figure out how to let the dataset produce two outputs for the same language data but where one is shifted by a timestep as described above. Ideally I would think of just using two fields for those outputs with the corresponding parameters and preprocessing which are then "assigned" to the same language data, but it seems like that TranslationDataset does strictly expect to receive two and only two fields and there is no trivial way to work around this.
A solution I could think of might be to change the behavior of TranslationDataset in such a way, that it takes a list of field lists, with each such field list being assigned to one language.
But I also see general potential for rethinking how the relation between Dataset and its fields look like. The problem is in my opinion, that the current approach lets the dataset define the columns and then just assigns exactly one Field as processor for each data column/field. But this introduces a lot of inflexibility. There are many use cases, for example such an encoder-decoder model or models which should be conditioned by meta-text features, e.g. the length of a text sample, where it would be necessary to produce data samples where multiple data points originate from the same data field but with different Field instances/processing applied. I could think of to either let a Field "pull" data from Dataset, but which on the other hand would make Field less flexible and reusable or to replace the static one-to-one assignments in the Dataset by a kind of mapping mechanism which allows to map single data columns to multiple Field instances.
[1] [Sequence to Sequence Learning with Neural Networks](https://arxiv.org/abs/1409.3215) | 1.0 | How to use TranslationDataset with an encoder-decoder architecture? - In an encoder-decoder architecture (see for example [1]) one would normally have an encoder module that learns to create a sparse vector representation of some input data, e.g. a text to be translated and a decoder that is trained to produce the translation from those vector while fed with its own previous output.
During training one would just feed the target text to the decoder shifted by one timestep forward instead of its own outputs.
See also the following graphics for a visualization:

Now I'm struggling really hard to implement such an model using Torchtext, in particular with the `TranslationDataset`s, up to a point where I wonder if this is actually possible at all without applying some indecent hacks.
Especially I can't figure out how to let the dataset produce two outputs for the same language data but where one is shifted by a timestep as described above. Ideally I would think of just using two fields for those outputs with the corresponding parameters and preprocessing which are then "assigned" to the same language data, but it seems like that TranslationDataset does strictly expect to receive two and only two fields and there is no trivial way to work around this.
A solution I could think of might be to change the behavior of TranslationDataset in such a way, that it takes a list of field lists, with each such field list being assigned to one language.
But I also see general potential for rethinking how the relation between Dataset and its fields look like. The problem is in my opinion, that the current approach lets the dataset define the columns and then just assigns exactly one Field as processor for each data column/field. But this introduces a lot of inflexibility. There are many use cases, for example such an encoder-decoder model or models which should be conditioned by meta-text features, e.g. the length of a text sample, where it would be necessary to produce data samples where multiple data points originate from the same data field but with different Field instances/processing applied. I could think of to either let a Field "pull" data from Dataset, but which on the other hand would make Field less flexible and reusable or to replace the static one-to-one assignments in the Dataset by a kind of mapping mechanism which allows to map single data columns to multiple Field instances.
[1] [Sequence to Sequence Learning with Neural Networks](https://arxiv.org/abs/1409.3215) | priority | how to use translationdataset with an encoder decoder architecture in an encoder decoder architecture see for example one would normally have an encoder module that learns to create a sparse vector representation of some input data e g a text to be translated and a decoder that is trained to produce the translation from those vector while fed with its own previous output during training one would just feed the target text to the decoder shifted by one timestep forward instead of its own outputs see also the following graphics for a visualization now i m struggling really hard to implement such an model using torchtext in particular with the translationdataset s up to a point where i wonder if this is actually possible at all without applying some indecent hacks especially i can t figure out how to let the dataset produce two outputs for the same language data but where one is shifted by a timestep as described above ideally i would think of just using two fields for those outputs with the corresponding parameters and preprocessing which are then assigned to the same language data but it seems like that translationdataset does strictly expect to receive two and only two fields and there is no trivial way to work around this a solution i could think of might be to change the behavior of translationdataset in such a way that it takes a list of field lists with each such field list being assigned to one language but i also see general potential for rethinking how the relation between dataset and its fields look like the problem is in my opinion that the current approach lets the dataset define the columns and then just assigns exactly one field as processor for each data column field but this introduces a lot of inflexibility there are many use cases for example such an encoder decoder model or models which should be conditioned by meta text features e g the length of a text sample where it would be necessary to produce data samples where multiple data points originate from the same data field but with different field instances processing applied i could think of to either let a field pull data from dataset but which on the other hand would make field less flexible and reusable or to replace the static one to one assignments in the dataset by a kind of mapping mechanism which allows to map single data columns to multiple field instances | 1 |
777,910 | 27,297,354,019 | IssuesEvent | 2023-02-23 21:37:23 | aws-solutions/amazon-marketing-cloud-uploader-from-aws | https://api.github.com/repos/aws-solutions/amazon-marketing-cloud-uploader-from-aws | closed | Add support for non-US locales | priority:high | Normalization for address, zip, and phone number is currently hardcoded to use 'US' as the country code.
We need to let users enter a country code in Step 3, then pass that to the Glue script so that it can normalize according to the right convention.
Make sure to implement all the normalization rules in [AdsAmcHashingTool](https://code.amazon.com/packages/AdsAmcHashingTool). | 1.0 | Add support for non-US locales - Normalization for address, zip, and phone number is currently hardcoded to use 'US' as the country code.
We need to let users enter a country code in Step 3, then pass that to the Glue script so that it can normalize according to the right convention.
Make sure to implement all the normalization rules in [AdsAmcHashingTool](https://code.amazon.com/packages/AdsAmcHashingTool). | priority | add support for non us locales normalization for address zip and phone number is currently hardcoded to use us as the country code we need to let users enter a country code in step then pass that to the glue script so that it can normalize according to the right convention make sure to implement all the normalization rules in | 1 |
138,017 | 5,326,363,602 | IssuesEvent | 2017-02-15 03:53:27 | Templarian/MaterialDesign | https://api.github.com/repos/Templarian/MaterialDesign | closed | Icon Name Fixes | Bug High Priority | I don't know how I made this mistake on two icons. But I noticed as I was writing the formal naming guidelines going forward. I know them pretty well, but it will be nice to have them written down.
- [x] `eye-outline-off` ... `eye-off-outline`
- [x] `cloud-outline-off` ... `cloud-off-outline` | 1.0 | Icon Name Fixes - I don't know how I made this mistake on two icons. But I noticed as I was writing the formal naming guidelines going forward. I know them pretty well, but it will be nice to have them written down.
- [x] `eye-outline-off` ... `eye-off-outline`
- [x] `cloud-outline-off` ... `cloud-off-outline` | priority | icon name fixes i don t know how i made this mistake on two icons but i noticed as i was writing the formal naming guidelines going forward i know them pretty well but it will be nice to have them written down eye outline off eye off outline cloud outline off cloud off outline | 1 |
391,194 | 11,570,319,894 | IssuesEvent | 2020-02-20 19:17:42 | carljustineoyales/decodetokyo-donationapp | https://api.github.com/repos/carljustineoyales/decodetokyo-donationapp | closed | editable localstorage permission item | high priority security | by editing the localstorage permission item gives access to admin permissions which is a big security breach | 1.0 | editable localstorage permission item - by editing the localstorage permission item gives access to admin permissions which is a big security breach | priority | editable localstorage permission item by editing the localstorage permission item gives access to admin permissions which is a big security breach | 1 |
816,844 | 30,614,197,354 | IssuesEvent | 2023-07-24 00:25:21 | ut-issl/c2a-aobc | https://api.github.com/repos/ut-issl/c2a-aobc | closed | ExampleでのvMicroビルド設定の修正 | :rocket: priority::high :fish: patch :wrench: tools | ## 詳細
ISSL内プロジェクトで使っている`c2a-aobc-衛星名`のレポジトリで、vMicroビルド設定を追加する必要があるとわかったので、Exampleも同様に修正する。
やることは次の通り。
- [x] `Include Directory`の設定
- [x] `USER_DEFINED_I2C_ADDRESS`マクロの設定
- [x] 必要なcコードをビルド対象に含める
## close条件
ビルド設定が更新されたら
## 備考
NA
## 注意
NA | 1.0 | ExampleでのvMicroビルド設定の修正 - ## 詳細
ISSL内プロジェクトで使っている`c2a-aobc-衛星名`のレポジトリで、vMicroビルド設定を追加する必要があるとわかったので、Exampleも同様に修正する。
やることは次の通り。
- [x] `Include Directory`の設定
- [x] `USER_DEFINED_I2C_ADDRESS`マクロの設定
- [x] 必要なcコードをビルド対象に含める
## close条件
ビルド設定が更新されたら
## 備考
NA
## 注意
NA | priority | exampleでのvmicroビルド設定の修正 詳細 issl内プロジェクトで使っている aobc 衛星名 のレポジトリで、vmicroビルド設定を追加する必要があるとわかったので、exampleも同様に修正する。 やることは次の通り。 include directory の設定 user defined address マクロの設定 必要なcコードをビルド対象に含める close条件 ビルド設定が更新されたら 備考 na 注意 na | 1 |
441,536 | 12,719,481,544 | IssuesEvent | 2020-06-24 09:21:31 | Haivision/srt | https://api.github.com/repos/Haivision/srt | closed | IPv6 seems not working on srt-live-transmit | Priority: High Type: Bug [apps] | Downloaded the latest main trunk and compiled, been testing IPv6 on srt-live-transmit, but seems not working.
Cmdlines used in the same machine:
srt-live-transmit udp://238.0.0.1:1234 srt://:5000 -s:500
srt-live-transmit srt://[::1]:5000 udp://127.0.0.1:5000 -s:500
But nothing happens, no connection at all.
However, if I did it on IPv4 works:
srt-live-transmit udp://238.0.0.1:1234 srt://:5000 -s:500
srt-live-transmit srt://127.0.0.1:5000 udp://127.0.0.1:5000 -s:500
Am I missing anything ?
Thanks
| 1.0 | IPv6 seems not working on srt-live-transmit - Downloaded the latest main trunk and compiled, been testing IPv6 on srt-live-transmit, but seems not working.
Cmdlines used in the same machine:
srt-live-transmit udp://238.0.0.1:1234 srt://:5000 -s:500
srt-live-transmit srt://[::1]:5000 udp://127.0.0.1:5000 -s:500
But nothing happens, no connection at all.
However, if I did it on IPv4 works:
srt-live-transmit udp://238.0.0.1:1234 srt://:5000 -s:500
srt-live-transmit srt://127.0.0.1:5000 udp://127.0.0.1:5000 -s:500
Am I missing anything ?
Thanks
| priority | seems not working on srt live transmit downloaded the latest main trunk and compiled been testing on srt live transmit but seems not working cmdlines used in the same machine srt live transmit udp srt s srt live transmit srt udp s but nothing happens no connection at all however if i did it on works srt live transmit udp srt s srt live transmit srt udp s am i missing anything thanks | 1 |
712,095 | 24,484,626,774 | IssuesEvent | 2022-10-09 09:06:58 | fyusuf-a/ft_transcendence | https://api.github.com/repos/fyusuf-a/ft_transcendence | closed | bug: avatar not properly loading occasionally | bug HIGH PRIORITY | Occasionally the avatar is not loaded properly and an almost white image with a strange pattern is shown instead (I didn't think to get a screenshot, but I'll try to update next time it happens)
It has definitely happened in the ChatView with the default avatar (King Pong). I don't know if it has happened with custom avatars or on other pages. I will keep trying to reproduce.
Either way, a page refresh solves the problem | 1.0 | bug: avatar not properly loading occasionally - Occasionally the avatar is not loaded properly and an almost white image with a strange pattern is shown instead (I didn't think to get a screenshot, but I'll try to update next time it happens)
It has definitely happened in the ChatView with the default avatar (King Pong). I don't know if it has happened with custom avatars or on other pages. I will keep trying to reproduce.
Either way, a page refresh solves the problem | priority | bug avatar not properly loading occasionally occasionally the avatar is not loaded properly and an almost white image with a strange pattern is shown instead i didn t think to get a screenshot but i ll try to update next time it happens it has definitely happened in the chatview with the default avatar king pong i don t know if it has happened with custom avatars or on other pages i will keep trying to reproduce either way a page refresh solves the problem | 1 |
354,698 | 10,571,201,245 | IssuesEvent | 2019-10-07 06:19:02 | AY1920S1-CS2113T-F11-2/main | https://api.github.com/repos/AY1920S1-CS2113T-F11-2/main | opened | D-Places | priority.High status.Ongoing type.Task | Support recording info about places e.g., info about restaurants visited, for future reference | 1.0 | D-Places - Support recording info about places e.g., info about restaurants visited, for future reference | priority | d places support recording info about places e g info about restaurants visited for future reference | 1 |
772,853 | 27,139,195,589 | IssuesEvent | 2023-02-16 15:14:32 | boostercloud/booster | https://api.github.com/repos/boostercloud/booster | closed | Add support for notification events | size: XL dev-experience difficulty: high priority: medium | ## Feature Request
## Description
Following up with the conversation in #894, we've found many scenarios whose implementation could be significantly simplified if we had support for notification events, that is, events that are not tied to any specific entity. The only thing these events can do is trigger an event handler that could potentially generate state change events to alter the state of some entities.
It could also make sense, as #894 suggests, to add support to reduce notification events directly from entities. Still, to ensure data consistency, it could be necessary to create separate state change events for each entity changed. However, this could be done implicitly by the framework to simplify the programming interface.
An especially interesting scenario that something like this could help to solve is broadcast events: An event that potentially alters the state of all entities of a specific type.
## Possible Solution
It'd be worth discussing options before committing to any particular solution. | 1.0 | Add support for notification events - ## Feature Request
## Description
Following up with the conversation in #894, we've found many scenarios whose implementation could be significantly simplified if we had support for notification events, that is, events that are not tied to any specific entity. The only thing these events can do is trigger an event handler that could potentially generate state change events to alter the state of some entities.
It could also make sense, as #894 suggests, to add support to reduce notification events directly from entities. Still, to ensure data consistency, it could be necessary to create separate state change events for each entity changed. However, this could be done implicitly by the framework to simplify the programming interface.
An especially interesting scenario that something like this could help to solve is broadcast events: An event that potentially alters the state of all entities of a specific type.
## Possible Solution
It'd be worth discussing options before committing to any particular solution. | priority | add support for notification events feature request description following up with the conversation in we ve found many scenarios whose implementation could be significantly simplified if we had support for notification events that is events that are not tied to any specific entity the only thing these events can do is trigger an event handler that could potentially generate state change events to alter the state of some entities it could also make sense as suggests to add support to reduce notification events directly from entities still to ensure data consistency it could be necessary to create separate state change events for each entity changed however this could be done implicitly by the framework to simplify the programming interface an especially interesting scenario that something like this could help to solve is broadcast events an event that potentially alters the state of all entities of a specific type possible solution it d be worth discussing options before committing to any particular solution | 1 |
752,460 | 26,286,632,294 | IssuesEvent | 2023-01-07 22:43:02 | sfuphantom/vcu-fw | https://api.github.com/repos/sfuphantom/vcu-fw | opened | 3A: Cleanup VCU data structure | High priority | Remove everything in the data structure and figure out how that logic and state will be supplemented | 1.0 | 3A: Cleanup VCU data structure - Remove everything in the data structure and figure out how that logic and state will be supplemented | priority | cleanup vcu data structure remove everything in the data structure and figure out how that logic and state will be supplemented | 1 |
587,643 | 17,627,517,414 | IssuesEvent | 2021-08-19 00:58:52 | ArctosDB/arctos | https://api.github.com/repos/ArctosDB/arctos | closed | Feature Request - rebuild exit_link | Priority-High (Needed for work) Enhancement | **Is your feature request related to a problem? Please describe.**
exit_link was built around URIs, which aren't particularly stable and require a lot of storage
**Describe what you're trying to accomplish**
* make joins easier
* reduce storage
* minimize log cost
**Describe the solution you'd like**
add media_uri, migrate to use, drop uri-fields | 1.0 | Feature Request - rebuild exit_link - **Is your feature request related to a problem? Please describe.**
exit_link was built around URIs, which aren't particularly stable and require a lot of storage
**Describe what you're trying to accomplish**
* make joins easier
* reduce storage
* minimize log cost
**Describe the solution you'd like**
add media_uri, migrate to use, drop uri-fields | priority | feature request rebuild exit link is your feature request related to a problem please describe exit link was built around uris which aren t particularly stable and require a lot of storage describe what you re trying to accomplish make joins easier reduce storage minimize log cost describe the solution you d like add media uri migrate to use drop uri fields | 1 |
667,259 | 22,441,925,715 | IssuesEvent | 2022-06-21 02:20:15 | CODAIT/nlp-editor | https://api.github.com/repos/CODAIT/nlp-editor | opened | Union execution shows results from one of the inputs, then fails | bug high-priority | This can be reproduced with this flow.

1. Create a union node for RevenueOfDivision1 and RevenueOfDivision2.
2. Run the union. Get results from one of the sequences, not the second sequence, and not the union.
3. Run the union again - we get an exception.
4. As the gif shows, running the sequences individually sometimes leads to the wrong results being shown. I.e., run RevenueOfDivision2 but get results from RevenueOfDivision1.

| 1.0 | Union execution shows results from one of the inputs, then fails - This can be reproduced with this flow.

1. Create a union node for RevenueOfDivision1 and RevenueOfDivision2.
2. Run the union. Get results from one of the sequences, not the second sequence, and not the union.
3. Run the union again - we get an exception.
4. As the gif shows, running the sequences individually sometimes leads to the wrong results being shown. I.e., run RevenueOfDivision2 but get results from RevenueOfDivision1.

| priority | union execution shows results from one of the inputs then fails this can be reproduced with this flow create a union node for and run the union get results from one of the sequences not the second sequence and not the union run the union again we get an exception as the gif shows running the sequences individually sometimes leads to the wrong results being shown i e run but get results from | 1 |
49,011 | 3,001,726,836 | IssuesEvent | 2015-07-24 13:24:17 | jpchanson/BeSeenium | https://api.github.com/repos/jpchanson/BeSeenium | closed | Add all Actions to ActionFactory | Core functionality High Priority | make sure the ActionFactory can create all AbstractAction derived's | 1.0 | Add all Actions to ActionFactory - make sure the ActionFactory can create all AbstractAction derived's | priority | add all actions to actionfactory make sure the actionfactory can create all abstractaction derived s | 1 |
292,231 | 8,954,986,428 | IssuesEvent | 2019-01-26 02:17:38 | franceme/rigorityj | https://api.github.com/repos/franceme/rigorityj | closed | Downgrade Project to 1.7 | Priority: High Status: In Progress Type: Bug | Since one of the core extended libraries runs on JRE 1.7, all of the 1.8 features will be removed.
The project will then be ran/worked with on 1.7 until the core libraries can be worked around. | 1.0 | Downgrade Project to 1.7 - Since one of the core extended libraries runs on JRE 1.7, all of the 1.8 features will be removed.
The project will then be ran/worked with on 1.7 until the core libraries can be worked around. | priority | downgrade project to since one of the core extended libraries runs on jre all of the features will be removed the project will then be ran worked with on until the core libraries can be worked around | 1 |
513,966 | 14,930,047,491 | IssuesEvent | 2021-01-25 01:43:48 | grannypron/uaf_levels | https://api.github.com/repos/grannypron/uaf_levels | closed | Can't scribe scrolls | Waiting For Approval bug game39 high priority | First attempt at scribing a scroll results in the message "Un-implemented code: 04D67AB9"
Subsequent attempts result in no action. A # sign appears next to the item name in the inventory screen, but that is it. Resting for any number of days does not add the spell to the PCs spellbook. | 1.0 | Can't scribe scrolls - First attempt at scribing a scroll results in the message "Un-implemented code: 04D67AB9"
Subsequent attempts result in no action. A # sign appears next to the item name in the inventory screen, but that is it. Resting for any number of days does not add the spell to the PCs spellbook. | priority | can t scribe scrolls first attempt at scribing a scroll results in the message un implemented code subsequent attempts result in no action a sign appears next to the item name in the inventory screen but that is it resting for any number of days does not add the spell to the pcs spellbook | 1 |
687,154 | 23,515,547,703 | IssuesEvent | 2022-08-18 20:56:10 | dequelabs/cauldron | https://api.github.com/repos/dequelabs/cauldron | closed | focus "jump" on TextField | High Priority Low Effort | Focusing a cauldron text field (not multiline) causes the UI to jump


| 1.0 | focus "jump" on TextField - Focusing a cauldron text field (not multiline) causes the UI to jump


| priority | focus jump on textfield focusing a cauldron text field not multiline causes the ui to jump | 1 |
220,486 | 7,360,330,094 | IssuesEvent | 2018-03-10 17:28:52 | bounswe/bounswe2018group5 | https://api.github.com/repos/bounswe/bounswe2018group5 | opened | Revise User Stories page | Effort: Medium Priority: High Status: In Progress Type: Wiki | Per Cihat's comment:
> Mockups
> * Do not forget to provide real data within the all of the pages :)
> * You can progress the scenario between each page with a couple of sentences.
> * That would be good to add 1-2 more pages to the 3rd scenario. Is this information (most bided project etc.) are available at the home page?
Precedent: Everybody should revise their mockup pages. | 1.0 | Revise User Stories page - Per Cihat's comment:
> Mockups
> * Do not forget to provide real data within the all of the pages :)
> * You can progress the scenario between each page with a couple of sentences.
> * That would be good to add 1-2 more pages to the 3rd scenario. Is this information (most bided project etc.) are available at the home page?
Precedent: Everybody should revise their mockup pages. | priority | revise user stories page per cihat s comment mockups do not forget to provide real data within the all of the pages you can progress the scenario between each page with a couple of sentences that would be good to add more pages to the scenario is this information most bided project etc are available at the home page precedent everybody should revise their mockup pages | 1 |
638,888 | 20,741,231,803 | IssuesEvent | 2022-03-14 17:53:34 | rstudio/learnr | https://api.github.com/repos/rstudio/learnr | closed | Chunk options aren't preserved for SQL exercise chunks | difficulty: intermediate priority: high type: bug | Reported on RStudio Community at https://community.rstudio.com/t/sql-exercises-in-learnr-return-only-errors-still/130065 by @rmccreath
> I'm creating a {learnr} tutorial and looking to include SQL exercises. However, I'm getting a " The 'connection' option (DBI connection) is required for sql chunks." if I pass the connection variable in the RMarkdown with quotes. If I try to pass the connection variable without quotes, the app crashes with an unexpected symbol error.
>
> I've attempted the test example given by [@grrrck](https://community.rstudio.com/u/grrrck) in the linked post and I'm using the latest GitHub version. Is there something else I'm missing or could give a try to get it working?
>
> Thanks! 🙂
>
It appears that the chunk options for the original `sql` exercise chunk aren't preserved when we render the user's code. Instead I see
````
```{sql "db"}
SELECT * FROM films
```
````
where I expect to see (reprex below)
````
```{sql "db", connection="db_con"}
SELECT * FROM films
```
````
<details>
<summary>Reprex</summary>
````markdown
---
title: "SQL Demo"
output: learnr::tutorial
runtime: shiny_prerendered
---
```{r setup, include=FALSE}
library(learnr)
# install.packages("starwarsdb")
library(starwarsdb)
db_con <- starwars_connect()
```
## Topic 1
### Exercise
```{sql db, exercise = TRUE, connection = "db_con"}
```
````
</details> | 1.0 | Chunk options aren't preserved for SQL exercise chunks - Reported on RStudio Community at https://community.rstudio.com/t/sql-exercises-in-learnr-return-only-errors-still/130065 by @rmccreath
> I'm creating a {learnr} tutorial and looking to include SQL exercises. However, I'm getting a " The 'connection' option (DBI connection) is required for sql chunks." if I pass the connection variable in the RMarkdown with quotes. If I try to pass the connection variable without quotes, the app crashes with an unexpected symbol error.
>
> I've attempted the test example given by [@grrrck](https://community.rstudio.com/u/grrrck) in the linked post and I'm using the latest GitHub version. Is there something else I'm missing or could give a try to get it working?
>
> Thanks! 🙂
>
It appears that the chunk options for the original `sql` exercise chunk aren't preserved when we render the user's code. Instead I see
````
```{sql "db"}
SELECT * FROM films
```
````
where I expect to see (reprex below)
````
```{sql "db", connection="db_con"}
SELECT * FROM films
```
````
<details>
<summary>Reprex</summary>
````markdown
---
title: "SQL Demo"
output: learnr::tutorial
runtime: shiny_prerendered
---
```{r setup, include=FALSE}
library(learnr)
# install.packages("starwarsdb")
library(starwarsdb)
db_con <- starwars_connect()
```
## Topic 1
### Exercise
```{sql db, exercise = TRUE, connection = "db_con"}
```
````
</details> | priority | chunk options aren t preserved for sql exercise chunks reported on rstudio community at by rmccreath i m creating a learnr tutorial and looking to include sql exercises however i m getting a the connection option dbi connection is required for sql chunks if i pass the connection variable in the rmarkdown with quotes if i try to pass the connection variable without quotes the app crashes with an unexpected symbol error i ve attempted the test example given by in the linked post and i m using the latest github version is there something else i m missing or could give a try to get it working thanks 🙂 it appears that the chunk options for the original sql exercise chunk aren t preserved when we render the user s code instead i see sql db select from films where i expect to see reprex below sql db connection db con select from films reprex markdown title sql demo output learnr tutorial runtime shiny prerendered r setup include false library learnr install packages starwarsdb library starwarsdb db con starwars connect topic exercise sql db exercise true connection db con | 1 |
205,574 | 7,103,398,665 | IssuesEvent | 2018-01-16 04:45:43 | wso2-incubator/testgrid | https://api.github.com/repos/wso2-incubator/testgrid | closed | Provide a default sample setup deployment against a local machine | Priority/High Severity/Major Type/New Feature | **description**
TestGrid should be intuitive enough for the users to understand. To improve the first-time user experience, we need to support:
1. local machine / h2 db / JDK8 as the infrastructure
2. single node deployment
3. All scenarios | 1.0 | Provide a default sample setup deployment against a local machine - **description**
TestGrid should be intuitive enough for the users to understand. To improve the first-time user experience, we need to support:
1. local machine / h2 db / JDK8 as the infrastructure
2. single node deployment
3. All scenarios | priority | provide a default sample setup deployment against a local machine description testgrid should be intuitive enough for the users to understand to improve the first time user experience we need to support local machine db as the infrastructure single node deployment all scenarios | 1 |
301,948 | 9,247,445,502 | IssuesEvent | 2019-03-15 00:49:20 | Polymer/lit-element | https://api.github.com/repos/Polymer/lit-element | closed | Exceptions in update lifecycle are not handled | Area: API Priority: High Status: Available Type: Bug | ### Description
If an exception is throw inside updated method, the next property changes do not updates the element
This occurs because, after the error is throw, the check `if (!this._hasRequestedUpdate)` in `_invalidate` never evaluates to true (the update Promise is never resolved)
#### Live Demo
https://codepen.io/blikblum/pen/zmEGXL?editors=1001
#### Steps to Reproduce
1. Throw an exception in updated method
2. Change an observed property
#### Expected Results
It should continue to update on property changes.
#### Actual Results
It stops to update on property changes
### Browsers Affected
<!-- Check all that apply -->
- [x] Chrome
- [x] Firefox
- [ ] Edge
- [ ] Safari 11
- [ ] Safari 10
- [ ] IE 11
### Versions
- lit-element: v0.6.2
- webcomponents: latest
| 1.0 | Exceptions in update lifecycle are not handled - ### Description
If an exception is throw inside updated method, the next property changes do not updates the element
This occurs because, after the error is throw, the check `if (!this._hasRequestedUpdate)` in `_invalidate` never evaluates to true (the update Promise is never resolved)
#### Live Demo
https://codepen.io/blikblum/pen/zmEGXL?editors=1001
#### Steps to Reproduce
1. Throw an exception in updated method
2. Change an observed property
#### Expected Results
It should continue to update on property changes.
#### Actual Results
It stops to update on property changes
### Browsers Affected
<!-- Check all that apply -->
- [x] Chrome
- [x] Firefox
- [ ] Edge
- [ ] Safari 11
- [ ] Safari 10
- [ ] IE 11
### Versions
- lit-element: v0.6.2
- webcomponents: latest
| priority | exceptions in update lifecycle are not handled description if an exception is throw inside updated method the next property changes do not updates the element this occurs because after the error is throw the check if this hasrequestedupdate in invalidate never evaluates to true the update promise is never resolved live demo steps to reproduce throw an exception in updated method change an observed property expected results it should continue to update on property changes actual results it stops to update on property changes browsers affected chrome firefox edge safari safari ie versions lit element webcomponents latest | 1 |
97,402 | 3,992,368,933 | IssuesEvent | 2016-05-10 01:13:48 | victorfeijo/gtkmm_app | https://api.github.com/repos/victorfeijo/gtkmm_app | opened | Implementar classe para objeto 3D | new feature priority: high | Implementar uma classe Objeto3D para representar um Modelo de Arame com as seguintes características:
- [ ] Possui uma lista de segmentos de reta constituídos por um par de Pontos3D.
- [ ] É capaz de realizar as 3 operações básicas e também a rotação em torno de um eixo arbitrário.
| 1.0 | Implementar classe para objeto 3D - Implementar uma classe Objeto3D para representar um Modelo de Arame com as seguintes características:
- [ ] Possui uma lista de segmentos de reta constituídos por um par de Pontos3D.
- [ ] É capaz de realizar as 3 operações básicas e também a rotação em torno de um eixo arbitrário.
| priority | implementar classe para objeto implementar uma classe para representar um modelo de arame com as seguintes características possui uma lista de segmentos de reta constituídos por um par de é capaz de realizar as operações básicas e também a rotação em torno de um eixo arbitrário | 1 |
501,689 | 14,531,282,283 | IssuesEvent | 2020-12-14 20:32:36 | kovitikus/hecate | https://api.github.com/repos/kovitikus/hecate | opened | Put Command and Containers | Enhancement High Priority | Put/Place needs to be looked at to make sure that it has all the functionality it could need.
This includes the ability to put a single item into a pile, even a pile of coins. This may seem contradictory, when the group command does that function, but the group command doesn't allow the player to combine items from their inventory into a stack in the room. This functionality of the put command will allow the command to be smart about what it does.
Piles of objects are inherently containers, except in the case of coins or other similar objects. | 1.0 | Put Command and Containers - Put/Place needs to be looked at to make sure that it has all the functionality it could need.
This includes the ability to put a single item into a pile, even a pile of coins. This may seem contradictory, when the group command does that function, but the group command doesn't allow the player to combine items from their inventory into a stack in the room. This functionality of the put command will allow the command to be smart about what it does.
Piles of objects are inherently containers, except in the case of coins or other similar objects. | priority | put command and containers put place needs to be looked at to make sure that it has all the functionality it could need this includes the ability to put a single item into a pile even a pile of coins this may seem contradictory when the group command does that function but the group command doesn t allow the player to combine items from their inventory into a stack in the room this functionality of the put command will allow the command to be smart about what it does piles of objects are inherently containers except in the case of coins or other similar objects | 1 |
825,943 | 31,479,302,243 | IssuesEvent | 2023-08-30 12:55:10 | gamefreedomgit/Maelstrom | https://api.github.com/repos/gamefreedomgit/Maelstrom | closed | Molten Front: mobs from another phase/layer are attacking warlock pets | Phasing Status: Need Info Priority: High Zone: MoltenFront | I started questing in Molten Front on my warlock yesterday and was wondering why I'd been taking so much more damage than on my other characters.
Turns out I'd had mobs from another phase or layer (or maybe even underground) somehow aggro my pets and then proceed to attack me as well. Just today I'd noticed Ancient Charhounds attack my pets while questing there (the pet was getting knocked around and kept losing health which prompted me to have a look at the combat log).
The mob wasn't visible nor were they the objective of any quests today. When the pet died, the mob proceeded to attack me.

| 1.0 | Molten Front: mobs from another phase/layer are attacking warlock pets - I started questing in Molten Front on my warlock yesterday and was wondering why I'd been taking so much more damage than on my other characters.
Turns out I'd had mobs from another phase or layer (or maybe even underground) somehow aggro my pets and then proceed to attack me as well. Just today I'd noticed Ancient Charhounds attack my pets while questing there (the pet was getting knocked around and kept losing health which prompted me to have a look at the combat log).
The mob wasn't visible nor were they the objective of any quests today. When the pet died, the mob proceeded to attack me.

| priority | molten front mobs from another phase layer are attacking warlock pets i started questing in molten front on my warlock yesterday and was wondering why i d been taking so much more damage than on my other characters turns out i d had mobs from another phase or layer or maybe even underground somehow aggro my pets and then proceed to attack me as well just today i d noticed ancient charhounds attack my pets while questing there the pet was getting knocked around and kept losing health which prompted me to have a look at the combat log the mob wasn t visible nor were they the objective of any quests today when the pet died the mob proceeded to attack me | 1 |
273,054 | 8,520,011,646 | IssuesEvent | 2018-11-01 16:07:37 | CS2103-AY1819S1-F10-4/main | https://api.github.com/repos/CS2103-AY1819S1-F10-4/main | closed | As a restaurant owner, I want to view the menu | priority.high type.story | so that I can see the changes made to the menu. | 1.0 | As a restaurant owner, I want to view the menu - so that I can see the changes made to the menu. | priority | as a restaurant owner i want to view the menu so that i can see the changes made to the menu | 1 |
436,167 | 12,546,299,220 | IssuesEvent | 2020-06-05 20:27:12 | aeternity/superhero-ui | https://api.github.com/repos/aeternity/superhero-ui | opened | Tip user always redirects to web-wallet | kind/bug priority/high | If the extension is installed and active it should not redirect to the web-wallet | 1.0 | Tip user always redirects to web-wallet - If the extension is installed and active it should not redirect to the web-wallet | priority | tip user always redirects to web wallet if the extension is installed and active it should not redirect to the web wallet | 1 |
301,602 | 9,222,288,517 | IssuesEvent | 2019-03-11 22:21:48 | blackbaud/skyux2-docs | https://api.github.com/repos/blackbaud/skyux2-docs | closed | Update recommendation for TSLint tool | Priority: High | TSLint by egamma extension is deprecated since Microsoft released TSLint extension. Update docs at https://developer.blackbaud.com/skyux/learn/get-started/prereqs/initial-setup#recommended-tools and https://developer.blackbaud.com/skyux/contribute/guidelines to reflect this. Also, create includes file for the 2 locations. See https://blackbaud.slack.com/conversation/C4FJT1171/p1550778871075900. | 1.0 | Update recommendation for TSLint tool - TSLint by egamma extension is deprecated since Microsoft released TSLint extension. Update docs at https://developer.blackbaud.com/skyux/learn/get-started/prereqs/initial-setup#recommended-tools and https://developer.blackbaud.com/skyux/contribute/guidelines to reflect this. Also, create includes file for the 2 locations. See https://blackbaud.slack.com/conversation/C4FJT1171/p1550778871075900. | priority | update recommendation for tslint tool tslint by egamma extension is deprecated since microsoft released tslint extension update docs at and to reflect this also create includes file for the locations see | 1 |
83,133 | 3,626,766,407 | IssuesEvent | 2016-02-10 03:11:41 | ArtemisEngine/Artemis-Engine | https://api.github.com/repos/ArtemisEngine/Artemis-Engine | opened | Activating and deactivating multiforms | high priority missing functionality task | Currently there is no way of activating and deactivating multiforms from within other multiforms (for definitions of _activating_ and _deactivating_, see [this wiki page](https://github.com/ArtemisEngine/Artemis-Engine/wiki/Multiforms#multiform-architecture-in-artemis)).
It should work something like this:
```
// Inside a multiform's updater...
Manager.Activate("OtherMultiformName");
Manager.Deactivate("OtherMultiformName");
Manager.Deactivate(this); // This is the same as "this.Deactivate()"
```
`Manager.Activate(string)` should activate the multiform registered with the given `string` name (i.e. construct it and add it to the list of currently active multiforms).
`Manager.Deactivate(string)` should deactivate the multiform registered with the given `string` name (i.e. remove it from the list of currently active multiforms).
`Manager.Deactive(Multiform)` should deactivate the given multiform instance, so long as it is a registered multiform. If it is not a registered multiform, throw an error **or** log the error and continue as usual.
`this.Deactivate()` should do the same thing as `Manager.Deactivate(this)`. | 1.0 | Activating and deactivating multiforms - Currently there is no way of activating and deactivating multiforms from within other multiforms (for definitions of _activating_ and _deactivating_, see [this wiki page](https://github.com/ArtemisEngine/Artemis-Engine/wiki/Multiforms#multiform-architecture-in-artemis)).
It should work something like this:
```
// Inside a multiform's updater...
Manager.Activate("OtherMultiformName");
Manager.Deactivate("OtherMultiformName");
Manager.Deactivate(this); // This is the same as "this.Deactivate()"
```
`Manager.Activate(string)` should activate the multiform registered with the given `string` name (i.e. construct it and add it to the list of currently active multiforms).
`Manager.Deactivate(string)` should deactivate the multiform registered with the given `string` name (i.e. remove it from the list of currently active multiforms).
`Manager.Deactive(Multiform)` should deactivate the given multiform instance, so long as it is a registered multiform. If it is not a registered multiform, throw an error **or** log the error and continue as usual.
`this.Deactivate()` should do the same thing as `Manager.Deactivate(this)`. | priority | activating and deactivating multiforms currently there is no way of activating and deactivating multiforms from within other multiforms for definitions of activating and deactivating see it should work something like this inside a multiform s updater manager activate othermultiformname manager deactivate othermultiformname manager deactivate this this is the same as this deactivate manager activate string should activate the multiform registered with the given string name i e construct it and add it to the list of currently active multiforms manager deactivate string should deactivate the multiform registered with the given string name i e remove it from the list of currently active multiforms manager deactive multiform should deactivate the given multiform instance so long as it is a registered multiform if it is not a registered multiform throw an error or log the error and continue as usual this deactivate should do the same thing as manager deactivate this | 1 |
111,538 | 4,478,380,787 | IssuesEvent | 2016-08-27 01:01:27 | chef/chef | https://api.github.com/repos/chef/chef | closed | Replace knife cookbook site with knife supermarket | Bug Dev Tools High Priority | See https://github.com/chef/knife-supermarket/issues/6
Knife cookbook site currently works off supermarket, but it's also a little strange that this is the name of the command. Shouldn't this command be "knife supermarket"?
| 1.0 | Replace knife cookbook site with knife supermarket - See https://github.com/chef/knife-supermarket/issues/6
Knife cookbook site currently works off supermarket, but it's also a little strange that this is the name of the command. Shouldn't this command be "knife supermarket"?
| priority | replace knife cookbook site with knife supermarket see knife cookbook site currently works off supermarket but it s also a little strange that this is the name of the command shouldn t this command be knife supermarket | 1 |
124,039 | 4,891,073,966 | IssuesEvent | 2016-11-18 15:42:53 | ufo-kit/concert | https://api.github.com/repos/ufo-kit/concert | closed | Temperature conversion is broken | bug high priority | Since pint 0.6 (that long we didn't test the ufo camera) temperature addition is ambiguous which means cameras with a temperature value will break Concert. A particular fix would turn any temperatures to Kelvin first and output as absolute Celsius at the end.
| 1.0 | Temperature conversion is broken - Since pint 0.6 (that long we didn't test the ufo camera) temperature addition is ambiguous which means cameras with a temperature value will break Concert. A particular fix would turn any temperatures to Kelvin first and output as absolute Celsius at the end.
| priority | temperature conversion is broken since pint that long we didn t test the ufo camera temperature addition is ambiguous which means cameras with a temperature value will break concert a particular fix would turn any temperatures to kelvin first and output as absolute celsius at the end | 1 |
726,295 | 24,994,048,102 | IssuesEvent | 2022-11-02 21:39:22 | TampaDevs/tampadevs | https://api.github.com/repos/TampaDevs/tampadevs | closed | FEATURE - /about page | high priority | this one is TBA, not sure how this would look
The context is sometimes you want to show a gallery of images quickly to people interested in TampaDevs. the video does work but its a 35 second video.
Some people need a static page with all the information on there
It's also useful if you want to share this to journalist or major news publications in Tampa when we are approaching and having a large event (Tech Event, Hackathon) to get more publicity in the area.
Basically, we want to get "hype interest", e.g. a potential press candidate wants to see how legitimate a group is based on past events, history, etc. **It should tell a story**
1. What is Tampa Devs
2. How was it founded
3. The people behind it
4. Which big companies and names are sponsoring it (carousel)
5. Galleria of images (carousel)
6. CTA (call to action)-> Here is a list of downloadable media and assets (marketing portfolio) for press coverage, etc. Contact information etc
this `/about` page might be used in the following:
1. Sent out to prospective people who want to help organize TampaDevs
2. Sent out alongside `/sponsor` for potential sponsors
3. Sent out alongside `/speakers` for potential speakers
**It's more of a generic "here's why you should get interested page if you want to show outside support" that isn't specific to who it's targeting**
----
For context on the other feature pages, this is how those links are going to be used For the other feature pages
- `/sponsor CTA`-> this is a hidden link. **It will have sponsors that we currently use**
- `/speaker CTA` -> this is a hidden link. **It will have speakers that have spoken before**
- ~`/groups` -> this is a public link, it might merge with `/about`.~
- ~It might even be hidden on the page and just have a direct link from `/about`~ merge with `/sponsors`
- `/about` -> this is a public link - aka this ticket. Might be renamed to `/press`
We have a sort of semi working /about page but it needs to be fleshed out
--
Some additional ideas with this page, it could be dynamic in nature and pull data/scraped assets from meetup.com
**The `about` page will be links to all the hidden links on the site as well**
It will be the first point of contact for a generic CTA into it's respective CTA depending on who and how different groups want to get involved, etc | 1.0 | FEATURE - /about page - this one is TBA, not sure how this would look
The context is sometimes you want to show a gallery of images quickly to people interested in TampaDevs. the video does work but its a 35 second video.
Some people need a static page with all the information on there
It's also useful if you want to share this to journalist or major news publications in Tampa when we are approaching and having a large event (Tech Event, Hackathon) to get more publicity in the area.
Basically, we want to get "hype interest", e.g. a potential press candidate wants to see how legitimate a group is based on past events, history, etc. **It should tell a story**
1. What is Tampa Devs
2. How was it founded
3. The people behind it
4. Which big companies and names are sponsoring it (carousel)
5. Galleria of images (carousel)
6. CTA (call to action)-> Here is a list of downloadable media and assets (marketing portfolio) for press coverage, etc. Contact information etc
this `/about` page might be used in the following:
1. Sent out to prospective people who want to help organize TampaDevs
2. Sent out alongside `/sponsor` for potential sponsors
3. Sent out alongside `/speakers` for potential speakers
**It's more of a generic "here's why you should get interested page if you want to show outside support" that isn't specific to who it's targeting**
----
For context on the other feature pages, this is how those links are going to be used For the other feature pages
- `/sponsor CTA`-> this is a hidden link. **It will have sponsors that we currently use**
- `/speaker CTA` -> this is a hidden link. **It will have speakers that have spoken before**
- ~`/groups` -> this is a public link, it might merge with `/about`.~
- ~It might even be hidden on the page and just have a direct link from `/about`~ merge with `/sponsors`
- `/about` -> this is a public link - aka this ticket. Might be renamed to `/press`
We have a sort of semi working /about page but it needs to be fleshed out
--
Some additional ideas with this page, it could be dynamic in nature and pull data/scraped assets from meetup.com
**The `about` page will be links to all the hidden links on the site as well**
It will be the first point of contact for a generic CTA into it's respective CTA depending on who and how different groups want to get involved, etc | priority | feature about page this one is tba not sure how this would look the context is sometimes you want to show a gallery of images quickly to people interested in tampadevs the video does work but its a second video some people need a static page with all the information on there it s also useful if you want to share this to journalist or major news publications in tampa when we are approaching and having a large event tech event hackathon to get more publicity in the area basically we want to get hype interest e g a potential press candidate wants to see how legitimate a group is based on past events history etc it should tell a story what is tampa devs how was it founded the people behind it which big companies and names are sponsoring it carousel galleria of images carousel cta call to action here is a list of downloadable media and assets marketing portfolio for press coverage etc contact information etc this about page might be used in the following sent out to prospective people who want to help organize tampadevs sent out alongside sponsor for potential sponsors sent out alongside speakers for potential speakers it s more of a generic here s why you should get interested page if you want to show outside support that isn t specific to who it s targeting for context on the other feature pages this is how those links are going to be used for the other feature pages sponsor cta this is a hidden link it will have sponsors that we currently use speaker cta this is a hidden link it will have speakers that have spoken before groups this is a public link it might merge with about it might even be hidden on the page and just have a direct link from about merge with sponsors about this is a public link aka this ticket might be renamed to press we have a sort of semi working about page but it needs to be fleshed out some additional ideas with this page it could be dynamic in nature and pull data scraped assets from meetup com the about page will be links to all the hidden links on the site as well it will be the first point of contact for a generic cta into it s respective cta depending on who and how different groups want to get involved etc | 1 |
46,123 | 2,947,876,146 | IssuesEvent | 2015-07-05 15:48:40 | andresriancho/w3af | https://api.github.com/repos/andresriancho/w3af | closed | Expose the KB fuzzable requests | improvement priority:high | ## User story
As a user I want to be able to query the known URLs / fuzzable requests during / after a scan
## Conditions of satisfaction
- [x] Expose the KB's fuzzable requests (how to serialize?)
- [x] Expose the URLs
- [x] Don't paginate, return all data in a list
- [x] Update the client | 1.0 | Expose the KB fuzzable requests - ## User story
As a user I want to be able to query the known URLs / fuzzable requests during / after a scan
## Conditions of satisfaction
- [x] Expose the KB's fuzzable requests (how to serialize?)
- [x] Expose the URLs
- [x] Don't paginate, return all data in a list
- [x] Update the client | priority | expose the kb fuzzable requests user story as a user i want to be able to query the known urls fuzzable requests during after a scan conditions of satisfaction expose the kb s fuzzable requests how to serialize expose the urls don t paginate return all data in a list update the client | 1 |
442,774 | 12,749,977,688 | IssuesEvent | 2020-06-27 01:22:10 | nkwsy/Wildmile | https://api.github.com/repos/nkwsy/Wildmile | opened | Allow user to submit only one type of plant per circle in module | bug effort: Low priority: High status: not started | Currently, if a user places a plant inside a module, it adds a value inside an array which gets passed within the form. If a user clicks a location twice or chooses a different plant for that same location the form passes multiple plants inside that location. A user should only be able to place one plant per location. The form should submit the most recent plant placement and disregard the previous selections | 1.0 | Allow user to submit only one type of plant per circle in module - Currently, if a user places a plant inside a module, it adds a value inside an array which gets passed within the form. If a user clicks a location twice or chooses a different plant for that same location the form passes multiple plants inside that location. A user should only be able to place one plant per location. The form should submit the most recent plant placement and disregard the previous selections | priority | allow user to submit only one type of plant per circle in module currently if a user places a plant inside a module it adds a value inside an array which gets passed within the form if a user clicks a location twice or chooses a different plant for that same location the form passes multiple plants inside that location a user should only be able to place one plant per location the form should submit the most recent plant placement and disregard the previous selections | 1 |
265,370 | 8,353,661,150 | IssuesEvent | 2018-10-02 10:48:03 | fedora-infra/fedimg | https://api.github.com/repos/fedora-infra/fedimg | closed | longer resource IDs in amazon before July 2018 | High Priority Refactor | We're going to need to update out code in any places that assume a certain length for resource ID.
We should plan this by opting in in the community account first.
https://aws.amazon.com/ec2/faqs/#longer-ids | 1.0 | longer resource IDs in amazon before July 2018 - We're going to need to update out code in any places that assume a certain length for resource ID.
We should plan this by opting in in the community account first.
https://aws.amazon.com/ec2/faqs/#longer-ids | priority | longer resource ids in amazon before july we re going to need to update out code in any places that assume a certain length for resource id we should plan this by opting in in the community account first | 1 |
429,383 | 12,423,526,579 | IssuesEvent | 2020-05-24 06:12:43 | annaked/ExpressEntryCalculator | https://api.github.com/repos/annaked/ExpressEntryCalculator | closed | Google Analytics tracking when people click "Calculate" | observability priority:high | Find the way to track people clicking "Calculate". Before it was a server call and new page with new address was rendered so GA was able to track it out of the box. Now it's SPA so needs so coding to track it. | 1.0 | Google Analytics tracking when people click "Calculate" - Find the way to track people clicking "Calculate". Before it was a server call and new page with new address was rendered so GA was able to track it out of the box. Now it's SPA so needs so coding to track it. | priority | google analytics tracking when people click calculate find the way to track people clicking calculate before it was a server call and new page with new address was rendered so ga was able to track it out of the box now it s spa so needs so coding to track it | 1 |
186,822 | 6,742,929,684 | IssuesEvent | 2017-10-20 09:48:39 | ballerinalang/composer | https://api.github.com/repos/ballerinalang/composer | closed | Cannot import a package after ballerina.net.http | 0.94-pre-release Priority/Highest Severity/Critical | Browser: Chrome Version 61.0.3163.100 (Official Build) (64-bit)
**Steps**
1. Add main function
2. Add http client connector
After the http import, add another import (e.g. ballerina.lang.system). As shown in the attached image some unknown issues occurs and afterwards the bal file becomes unusable, unless the import is removed.

| 1.0 | Cannot import a package after ballerina.net.http - Browser: Chrome Version 61.0.3163.100 (Official Build) (64-bit)
**Steps**
1. Add main function
2. Add http client connector
After the http import, add another import (e.g. ballerina.lang.system). As shown in the attached image some unknown issues occurs and afterwards the bal file becomes unusable, unless the import is removed.

| priority | cannot import a package after ballerina net http browser chrome version official build bit steps add main function add http client connector after the http import add another import e g ballerina lang system as shown in the attached image some unknown issues occurs and afterwards the bal file becomes unusable unless the import is removed | 1 |
288,546 | 8,848,432,063 | IssuesEvent | 2019-01-08 06:57:59 | metasfresh/metasfresh | https://api.github.com/repos/metasfresh/metasfresh | reopened | Calculation of variable gross margin in manufacturing | branch:master priority:high type:enhancement | Calculation of variable gross margin in manufacturing
- per product and sales order
--> Deckungsbeitrag 1
| 1.0 | Calculation of variable gross margin in manufacturing - Calculation of variable gross margin in manufacturing
- per product and sales order
--> Deckungsbeitrag 1
| priority | calculation of variable gross margin in manufacturing calculation of variable gross margin in manufacturing per product and sales order deckungsbeitrag | 1 |
517,506 | 15,015,051,964 | IssuesEvent | 2021-02-01 07:43:07 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | www.hao123.com - see bug description | browser-firefox engine-gecko ml-needsdiagnosis-false ml-probability-high priority-critical | <!-- @browser: Firefox 86.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/66503 -->
**URL**: https://www.hao123.com/?tn=48020221_25_hao_pg
**Browser / Version**: Firefox 86.0
**Operating System**: Windows 10
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: hijacked homepage
**Steps to Reproduce**:
hijacked homepage, and cannot remove
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/1/89c8075a-feda-4949-8671-606c2e0a6f32.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20210128185743</li><li>channel: aurora</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2021/1/79a8ee64-0964-4776-82a0-2ac1229ca485)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | www.hao123.com - see bug description - <!-- @browser: Firefox 86.0 -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/66503 -->
**URL**: https://www.hao123.com/?tn=48020221_25_hao_pg
**Browser / Version**: Firefox 86.0
**Operating System**: Windows 10
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: hijacked homepage
**Steps to Reproduce**:
hijacked homepage, and cannot remove
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2021/1/89c8075a-feda-4949-8671-606c2e0a6f32.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20210128185743</li><li>channel: aurora</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2021/1/79a8ee64-0964-4776-82a0-2ac1229ca485)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | see bug description url browser version firefox operating system windows tested another browser no problem type something else description hijacked homepage steps to reproduce hijacked homepage and cannot remove view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel aurora hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 1 |
262,058 | 8,250,216,565 | IssuesEvent | 2018-09-12 01:29:22 | SimpleSandman/TwitchBot | https://api.github.com/repos/SimpleSandman/TwitchBot | closed | Refactor All Database Objects For EF Core Code Generation | enhancement entire-project high priority | Stop pluralizing tables and column names unless it's needed | 1.0 | Refactor All Database Objects For EF Core Code Generation - Stop pluralizing tables and column names unless it's needed | priority | refactor all database objects for ef core code generation stop pluralizing tables and column names unless it s needed | 1 |
624,866 | 19,710,985,483 | IssuesEvent | 2022-01-13 05:16:44 | ballerina-platform/ballerina-standard-library | https://api.github.com/repos/ballerina-platform/ballerina-standard-library | opened | Add an API to subtract seconds from UTC | Priority/High Type/Improvement module/time | **Description:**
As a workaround ATM, users can use the following approach to subtract seconds from UTC.
```ballerina
time:Utc utc1 = check time:utcFromString("2021-04-12T23:20:50.520Z");
// Subtract 90 seconds
time:Utc utc2 = time:utcAddSeconds(utc1, -90);
```
However, from the user perspective, it is convenient to have another API to subtract seconds from UTC, similar to the `time:utcAddSeconds` API.
**Related Discussion**
- https://ballerina-platform.slack.com/archives/C47EAELR1/p1641914404048400 | 1.0 | Add an API to subtract seconds from UTC - **Description:**
As a workaround ATM, users can use the following approach to subtract seconds from UTC.
```ballerina
time:Utc utc1 = check time:utcFromString("2021-04-12T23:20:50.520Z");
// Subtract 90 seconds
time:Utc utc2 = time:utcAddSeconds(utc1, -90);
```
However, from the user perspective, it is convenient to have another API to subtract seconds from UTC, similar to the `time:utcAddSeconds` API.
**Related Discussion**
- https://ballerina-platform.slack.com/archives/C47EAELR1/p1641914404048400 | priority | add an api to subtract seconds from utc description as a workaround atm users can use the following approach to subtract seconds from utc ballerina time utc check time utcfromstring subtract seconds time utc time utcaddseconds however from the user perspective it is convenient to have another api to subtract seconds from utc similar to the time utcaddseconds api related discussion | 1 |
159,156 | 6,041,302,262 | IssuesEvent | 2017-06-10 22:57:12 | cdnjs/cdnjs | https://api.github.com/repos/cdnjs/cdnjs | closed | CDNJS Not Live in Libraries Page | Bug High Priority | When i visit (https://cdnjs.com/libraries/markdown-it-emoji) This pahe, I'm Seeing the Default Application Error Page by **Heroku** So Fix it Soon as Possible. | 1.0 | CDNJS Not Live in Libraries Page - When i visit (https://cdnjs.com/libraries/markdown-it-emoji) This pahe, I'm Seeing the Default Application Error Page by **Heroku** So Fix it Soon as Possible. | priority | cdnjs not live in libraries page when i visit this pahe i m seeing the default application error page by heroku so fix it soon as possible | 1 |
719,022 | 24,742,147,939 | IssuesEvent | 2022-10-21 06:33:23 | AY2223S1-CS2103T-W12-3/tp | https://api.github.com/repos/AY2223S1-CS2103T-W12-3/tp | closed | As a user, I can specify whether I want to filter by all fields passed or any field passed. | priority.High type.Enhancement | Filter /any /all | 1.0 | As a user, I can specify whether I want to filter by all fields passed or any field passed. - Filter /any /all | priority | as a user i can specify whether i want to filter by all fields passed or any field passed filter any all | 1 |
418,579 | 12,199,922,754 | IssuesEvent | 2020-04-30 03:05:26 | pombase/pombase-chado | https://api.github.com/repos/pombase/pombase-chado | closed | create a export file of chemical sensitivities and resistances | export files high priority next |
using all annotations to
increased sensitivity to chemical (FYPO:0002683) [single allele genotypes]
and
increased resistance to chemical (FYPO:0002682) [single allele genotypes]
and their descendants.
thanks
Val | 1.0 | create a export file of chemical sensitivities and resistances -
using all annotations to
increased sensitivity to chemical (FYPO:0002683) [single allele genotypes]
and
increased resistance to chemical (FYPO:0002682) [single allele genotypes]
and their descendants.
thanks
Val | priority | create a export file of chemical sensitivities and resistances using all annotations to increased sensitivity to chemical fypo and increased resistance to chemical fypo and their descendants thanks val | 1 |
302,777 | 9,292,170,714 | IssuesEvent | 2019-03-22 01:48:27 | projectacrn/acrn-hypervisor | https://api.github.com/repos/projectacrn/acrn-hypervisor | closed | GPU Mediator shall be compatible with operation of graphics safety watchdog | area: hypervisor priority: high status: new type: feature | GPU Mediator shall be compatible with operation of a graphics safety watchdog This safety watchdog process will run only in the service domain. This watchdog service will monitor the configuration of display HW to ensure that the output configuration is as expected and that critical content is being delivered to the desired display device in a system where there is a functional safety requirement (ie output of telltales to the IC display). The host i915 driver shall permit access to physical register contents such that the graphics safety service has direct, un'-mediated, visibility to the necessary content; this direct access must not impact the regular behavior of the graphics mediator.
Note: This feature is invalid for Apollo Lake SoC project. | 1.0 | GPU Mediator shall be compatible with operation of graphics safety watchdog - GPU Mediator shall be compatible with operation of a graphics safety watchdog This safety watchdog process will run only in the service domain. This watchdog service will monitor the configuration of display HW to ensure that the output configuration is as expected and that critical content is being delivered to the desired display device in a system where there is a functional safety requirement (ie output of telltales to the IC display). The host i915 driver shall permit access to physical register contents such that the graphics safety service has direct, un'-mediated, visibility to the necessary content; this direct access must not impact the regular behavior of the graphics mediator.
Note: This feature is invalid for Apollo Lake SoC project. | priority | gpu mediator shall be compatible with operation of graphics safety watchdog gpu mediator shall be compatible with operation of a graphics safety watchdog this safety watchdog process will run only in the service domain this watchdog service will monitor the configuration of display hw to ensure that the output configuration is as expected and that critical content is being delivered to the desired display device in a system where there is a functional safety requirement ie output of telltales to the ic display the host driver shall permit access to physical register contents such that the graphics safety service has direct un mediated visibility to the necessary content this direct access must not impact the regular behavior of the graphics mediator note this feature is invalid for apollo lake soc project | 1 |
408,078 | 11,941,427,870 | IssuesEvent | 2020-04-02 18:25:40 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | closed | 'cassandra' Role password reset to default each time one of yb-master reset. | community/request priority/high | On a 3 rf universe each time i reset one of my yb-master proccess the 'cassandra' role password reset to default('cassandra').
i'm using Yugabyte V2.1.2.0.
Is it a bug or it designed like this on purposely for restoring forgotten password? | 1.0 | 'cassandra' Role password reset to default each time one of yb-master reset. - On a 3 rf universe each time i reset one of my yb-master proccess the 'cassandra' role password reset to default('cassandra').
i'm using Yugabyte V2.1.2.0.
Is it a bug or it designed like this on purposely for restoring forgotten password? | priority | cassandra role password reset to default each time one of yb master reset on a rf universe each time i reset one of my yb master proccess the cassandra role password reset to default cassandra i m using yugabyte is it a bug or it designed like this on purposely for restoring forgotten password | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.